summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2019-04-01 17:03:18 (EDT)
committer P. J. McDermott <pj@pehjota.net>2019-04-01 17:03:18 (EDT)
commitfa3137d88c752c35477552595a3834dfbbacfa08 (patch)
tree571dff3c8e70aa14410692e485f5e3ccb01ba7c7
Initial commit
-rw-r--r--.gitignore11
-rwxr-xr-xbuild20
-rw-r--r--changelog5
-rw-r--r--control3
-rw-r--r--format1
-rw-r--r--keyring.gpgbin0 -> 95622 bytes
-rw-r--r--source.mk24
7 files changed, 64 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..b8502f4
--- /dev/null
+++ b/build
@@ -0,0 +1,20 @@
+#!/usr/bin/make -f
+
+include ../source.mk
+
+nop:
+ @:
+
+build:
+ oh-autoconfigure
+ oh-autobuild
+ if [ 'x$(OPK_BUILD_ARCH)' = 'x$(OPK_HOST_ARCH)' ]; then \
+ oh-autotest; \
+ fi
+ touch $@
+
+install: build
+ oh-autoinstall
+ oh-fixperms
+ oh-strip
+ oh-installfiles
diff --git a/changelog b/changelog
new file mode 100644
index 0000000..4051cbb
--- /dev/null
+++ b/changelog
@@ -0,0 +1,5 @@
+gpgme (1.13.0-1) trunk
+
+ * Initial release.
+
+ -- Patrick McDermott <patrick.mcdermott@libiquity.com> Mon, 01 Apr 2019 16:07:42 -0400
diff --git a/control b/control
new file mode 100644
index 0000000..28bd0f6
--- /dev/null
+++ b/control
@@ -0,0 +1,3 @@
+Maintainer: Patrick McDermott <patrick.mcdermott@libiquity.com>
+Build-Depends: gpg, dirmngr, opkhelper-3.0,
+Homepage: https://www.gnupg.org/software/gpgme/index.html
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..2cf7a0c
--- /dev/null
+++ b/keyring.gpg
Binary files differ
diff --git a/source.mk b/source.mk
new file mode 100644
index 0000000..ec28ccc
--- /dev/null
+++ b/source.mk
@@ -0,0 +1,24 @@
+upstream_archive = $(OPK_SOURCE)-$(OPK_SOURCE_VERSION_UPSTREAM).tar.bz2
+upstream_url = ftp://ftp.gnupg.org/gcrypt/$(OPK_SOURCE)/$(upstream_archive)
+source_archive = ../$(OPK_SOURCE)-$(OPK_SOURCE_VERSION_UPSTREAM).orig.tar.bz2
+keys = \
+ 'D869 2123 C406 5DEA 5E0F 3AB5 249B 39D2 4F25 E3B6' \
+ '031E C253 6E58 0D8E A286 A9F2 2071 B08A 33BD 3F06' \
+ '46CC 7308 65BB 5C78 EBAB ADCF 0437 6F3E E085 6959' \
+ '5B80 C575 4298 F0CB 55D8 ED6A BCEF 7E29 4B09 2E28'
+
+$(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 --no-default-keyring --keyring ../keyring.gpg \
+ --keyserver hkp://pool.sks-keyservers.net \
+ --recv-keys $(keys) || true; \
+ rm -f ../keyring.gpg~; \
+ gpg --no-default-keyring --keyring ../keyring.gpg \
+ --verify '$(upstream_archive).sig'; \
+ fi
+ mv '$(upstream_archive)' '$(source_archive)'
+
+source: $(source_archive)