summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick 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)
commitf0b2437f4209057dd527999559173958e1bd9553 (patch)
tree3f4cfd8662302cdf649fcf0f2ae21b68e9c99f9e
Initial commit
-rw-r--r--.gitignore9
-rwxr-xr-xbuild16
-rw-r--r--changelog5
-rw-r--r--control3
-rw-r--r--format1
-rwxr-xr-xrelease13
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/
diff --git a/build b/build
new file mode 100755
index 0000000..a024c3f
--- /dev/null
+++ b/build
@@ -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
diff --git a/control b/control
new file mode 100644
index 0000000..f20fe02
--- /dev/null
+++ b/control
@@ -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
diff --git a/format b/format
new file mode 100644
index 0000000..cd5ac03
--- /dev/null
+++ b/format
@@ -0,0 +1 @@
+2.0
diff --git a/release b/release
new file mode 100755
index 0000000..871cb4a
--- /dev/null
+++ b/release
@@ -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