summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2013-08-03 15:55:25 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-07-01 20:40:15 (EDT)
commit9557f7ba4141bbf2c7696ed707e5bf7e8caeb884 (patch)
treeb549850b443ec75cc0e99b334dab03105fe40a77
Initial commit
-rw-r--r--.gitignore14
-rw-r--r--changelog5
-rw-r--r--control3
-rw-r--r--format1
-rw-r--r--keyring.gpgbin0 -> 5697 bytes
-rw-r--r--source.mk18
6 files changed, 41 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..7ce8beb
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,14 @@
+# Swap and backup files
+.*.sw*
+.sw*
+*~
+Session.vim
+
+# Source archives
+bison-*.orig.tar.*
+
+# Work area
+tmp/
+
+# Build logs
+*.log
diff --git a/changelog b/changelog
new file mode 100644
index 0000000..b6d0df9
--- /dev/null
+++ b/changelog
@@ -0,0 +1,5 @@
+bison (3.0-1) trunk
+
+ * Initial release.
+
+ -- "P. J. McDermott" <pjm@nac.net> Sat, 03 Aug 2013 15:49:42 -0400
diff --git a/control b/control
new file mode 100644
index 0000000..c00dde6
--- /dev/null
+++ b/control
@@ -0,0 +1,3 @@
+Maintainer: "P. J. McDermott" <pjm@nac.net>
+Build-Depends: opkhelper-3.0, gettext, m4
+Homepage: https://www.gnu.org/software/bison/
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/keyring.gpg b/keyring.gpg
new file mode 100644
index 0000000..25464f8
--- /dev/null
+++ b/keyring.gpg
Binary files differ
diff --git a/source.mk b/source.mk
new file mode 100644
index 0000000..0561c51
--- /dev/null
+++ b/source.mk
@@ -0,0 +1,18 @@
+upstream_archive = bison-$(OPK_SOURCE_VERSION_UPSTREAM).tar.gz
+upstream_url = http://ftp.gnu.org/pub/gnu/bison/$(upstream_archive)
+source_archive = ../bison-$(OPK_SOURCE_VERSION_UPSTREAM).orig.tar.gz
+keys = 78D5264E
+
+$(source_archive):
+ wget '$(upstream_url)'
+ set -e; if gpg --version >/dev/null 2>&1; then \
+ wget '$(upstream_url).sig'; \
+ [ -e ../keyring.gpg ] || \
+ gpg --keyring ../keyring.gpg --no-default-keyring \
+ --recv-keys $(keys) || true; \
+ gpg --verify --keyring ../keyring.gpg \
+ '$(upstream_archive).sig'; \
+ fi
+ mv '$(upstream_archive)' '$(source_archive)'
+
+source: $(source_archive)