diff options
-rw-r--r-- | .gitignore | 14 | ||||
-rwxr-xr-x | build | 22 | ||||
-rw-r--r-- | changelog | 5 | ||||
-rw-r--r-- | control | 3 | ||||
-rw-r--r-- | copyright | 18 | ||||
-rw-r--r-- | format | 1 | ||||
-rw-r--r-- | keyring.gpg | bin | 0 -> 1193 bytes | |||
-rw-r--r-- | source.mk | 19 | ||||
-rw-r--r-- | substvars | 1 |
9 files changed, 83 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a838d6c --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +# Swap and backup files +.*.sw* +.sw* +*~ +Session.vim + +# Source archives +gawk-*.orig.tar.* + +# Work area +tmp/ + +# Build logs +*.log @@ -0,0 +1,22 @@ +#!/usr/bin/make -f + +include ../source.mk + +nop: + @: + +configure: + oh-autoconfigure + touch $@ + +build: configure + oh-autobuild + touch $@ + +install: build + oh-autoinstall + # Remove GNU Info index. + rm -f dest/usr/share/info/dir + oh-fixperms + oh-strip -k + oh-installfiles diff --git a/changelog b/changelog new file mode 100644 index 0000000..845deec --- /dev/null +++ b/changelog @@ -0,0 +1,5 @@ +gawk (4.1.0-1) trunk + + * Initial release. + + -- "P. J. McDermott" <pjm@nac.net> Sun, 04 Aug 2013 14:21:59 -0400 @@ -0,0 +1,3 @@ +Maintainer: "P. J. McDermott" <pjm@nac.net> +Build-Depends: opkhelper-3.0, gettext, libreadline-dev, libsigsegv-dev +Homepage: https://www.gnu.org/software/gawk/ diff --git a/copyright b/copyright new file mode 100644 index 0000000..24713c5 --- /dev/null +++ b/copyright @@ -0,0 +1,18 @@ +Upstream Source +=============== + + +On this system, a copy of the GNU General Public License may be found at +<file:///usr/share/common-licenses/GPL-3>. + + +Distribution Packaging +====================== + +Copyright (C) 2013 Patrick "P. J." McDermott + +These files may be reproduced, distributed, modified, and otherwise dealt in +under the terms of the Expat License. + +On this system, a copy of the Expat License may be found at +<file:///usr/share/common-licenses/Expat>. @@ -0,0 +1 @@ +2.0 diff --git a/keyring.gpg b/keyring.gpg Binary files differnew file mode 100644 index 0000000..205dbbd --- /dev/null +++ b/keyring.gpg diff --git a/source.mk b/source.mk new file mode 100644 index 0000000..ea89f4d --- /dev/null +++ b/source.mk @@ -0,0 +1,19 @@ +upstream_archive = gawk-$(OPK_SOURCE_VERSION_UPSTREAM).tar.gz +upstream_url = http://ftp.gnu.org/pub/gnu/gawk/$(upstream_archive) +source_archive = ../gawk-$(OPK_SOURCE_VERSION_UPSTREAM).orig.tar.gz +keys = 937EC0D2 + +$(source_archive): + wget -c '$(upstream_url)' + set -e; if gpg --version >/dev/null 2>&1; then \ + wget -c '$(upstream_url).sig'; \ + [ -e ../keyring.gpg ] || \ + gpg --keyring ../keyring.gpg --no-default-keyring \ + --recv-keys $(keys) || true; \ + rm -f ../keyring.gpg~; \ + gpg --verify --keyring ../keyring.gpg \ + '$(upstream_archive).sig'; \ + fi + mv '$(upstream_archive)' '$(source_archive)' + +source: $(source_archive) diff --git a/substvars b/substvars new file mode 100644 index 0000000..3f84c69 --- /dev/null +++ b/substvars @@ -0,0 +1 @@ +Common-Description: |