From f578a28996e66d9b0460aed465f611d560579095 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Sun, 04 Aug 2013 14:27:29 -0400 Subject: Initial commit. --- 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 diff --git a/build b/build new file mode 100755 index 0000000..ce80e13 --- /dev/null +++ b/build @@ -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" Sun, 04 Aug 2013 14:21:59 -0400 diff --git a/control b/control new file mode 100644 index 0000000..4a4e4e3 --- /dev/null +++ b/control @@ -0,0 +1,3 @@ +Maintainer: "P. J. McDermott" +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 +. + + +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 +. 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..205dbbd --- /dev/null +++ b/keyring.gpg Binary files differ 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: -- cgit v0.9.1