summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2014-10-13 14:11:47 (EDT)
committer P. J. McDermott <pj@pehjota.net>2014-10-13 14:11:47 (EDT)
commit82425d6978fd30dab700035e3dcb2b40556c124e (patch)
tree3e62671be72080bee9738f0c25a51adc97272f17
Initial commit
-rw-r--r--.gitignore11
-rwxr-xr-xbuild6
-rw-r--r--changelog5
-rw-r--r--control3
-rw-r--r--format1
-rw-r--r--keyring.gpgbin0 -> 122659 bytes
-rw-r--r--source.mk21
7 files changed, 47 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..213a9bf
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,11 @@
+# Swap and backup files
+.*.sw*
+.sw*
+*~
+Session.vim
+
+# Source archives
+*-*.orig.tar.*
+
+# Work area
+tmp/
diff --git a/build b/build
new file mode 100755
index 0000000..2a40656
--- /dev/null
+++ b/build
@@ -0,0 +1,6 @@
+#!/usr/bin/make -f
+
+include ../source.mk
+
+nop:
+ @:
diff --git a/changelog b/changelog
new file mode 100644
index 0000000..042b5ca
--- /dev/null
+++ b/changelog
@@ -0,0 +1,5 @@
+patch (2.7.1-1) trunk
+
+ * Initial release.
+
+ -- "P. J. McDermott" <pj@pehjota.net> Mon, 13 Oct 2014 14:00:15 -0400
diff --git a/control b/control
new file mode 100644
index 0000000..c68aa20
--- /dev/null
+++ b/control
@@ -0,0 +1,3 @@
+Maintainer: "P. J. McDermott" <pj@pehjota.net>
+Build-Depends: opkhelper-3.0
+Homepage: https://savannah.gnu.org/projects/patch/
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..f448245
--- /dev/null
+++ b/keyring.gpg
Binary files differ
diff --git a/source.mk b/source.mk
new file mode 100644
index 0000000..a9117a3
--- /dev/null
+++ b/source.mk
@@ -0,0 +1,21 @@
+upstream_archive = $(OPK_SOURCE)-$(OPK_SOURCE_VERSION_UPSTREAM).tar.gz
+upstream_url = http://ftp.gnu.org/gnu/$(OPK_SOURCE)/$(upstream_archive)
+source_archive = ../$(OPK_SOURCE)-$(OPK_SOURCE_VERSION_UPSTREAM).orig.tar.gz
+keys = \
+ '6CEF 9231 D6BF 2594 FABA 779E F7E8 72FE B971 54D3' \
+ '7768 CE4B 75E5 236F 1A37 4CEE C4C9 27CD 5D1B 36D7' \
+ '155D 3FC5 00C8 3448 6D1E EA67 7FD9 FCCB 000B EEEE'
+
+$(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; \
+ gpg --verify --keyring ../keyring.gpg \
+ '$(upstream_archive).sig'; \
+ fi
+ mv '$(upstream_archive)' '$(source_archive)'
+
+source: $(source_archive)