diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-07-01 21:42:25 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-07-01 21:42:25 (EDT) |
commit | f0b2437f4209057dd527999559173958e1bd9553 (patch) | |
tree | 3f4cfd8662302cdf649fcf0f2ae21b68e9c99f9e |
Initial commit
-rw-r--r-- | .gitignore | 9 | ||||
-rwxr-xr-x | build | 16 | ||||
-rw-r--r-- | changelog | 5 | ||||
-rw-r--r-- | control | 3 | ||||
-rw-r--r-- | format | 1 | ||||
-rwxr-xr-x | release | 13 |
6 files changed, 47 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..46688c5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +# Vim swap and other dot files +.* +!.gitignore + +# Source archives +*-*.orig.tar.* + +# Work area +tmp/ @@ -0,0 +1,16 @@ +#!/usr/bin/make -f + +nop: + @: + +build: + oh-autoconfigure + oh-autobuild + touch $@ + +install: build + oh-autoinstall + oh-fixperms + oh-strip + oh-installfiles + oh-shlibdeps diff --git a/changelog b/changelog new file mode 100644 index 0000000..18e2629 --- /dev/null +++ b/changelog @@ -0,0 +1,5 @@ +flex (2.6.4-1) trunk + + * Initial release. + + -- Patrick McDermott <patrick.mcdermott@libiquity.com> Mon, 01 Jul 2019 21:34:00 -0400 @@ -0,0 +1,3 @@ +Maintainer: Patrick McDermott <patrick.mcdermott@libiquity.com> +Build-Depends: opkbuild (>= 4.0.1), opkhelper-3.0 (>= 3.1.2), m4, bison +Homepage: https://github.com/westes/flex @@ -0,0 +1 @@ +2.0 @@ -0,0 +1,13 @@ +#!/bin/sh + +set -eu + +read src ver <<-EOF + $(sed '1s/^\(.*\) (\(.*\)) .*$/\1 \2/; q;' changelog) + EOF + +sed '/^ -- .* /{ s/^\( -- .* \).*$/\1'"$(LC_ALL='POSIX' date \ + '+%a, %d %b %Y %H:%M:%S %z')"'/; :l; n; b l; };' changelog >changelog~ +mv changelog~ changelog +git commit -m "changelog: Release ${src} ${ver}" -- changelog +git tag "${src}/${ver}" HEAD |