diff options
author | Patrick 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) |
commit | 9557f7ba4141bbf2c7696ed707e5bf7e8caeb884 (patch) | |
tree | b549850b443ec75cc0e99b334dab03105fe40a77 |
Initial commit
-rw-r--r-- | .gitignore | 14 | ||||
-rw-r--r-- | changelog | 5 | ||||
-rw-r--r-- | control | 3 | ||||
-rw-r--r-- | format | 1 | ||||
-rw-r--r-- | keyring.gpg | bin | 0 -> 5697 bytes | |||
-rw-r--r-- | source.mk | 18 |
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 @@ -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/ @@ -0,0 +1 @@ +2.0 diff --git a/keyring.gpg b/keyring.gpg Binary files differnew file mode 100644 index 0000000..25464f8 --- /dev/null +++ b/keyring.gpg 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) |