[arch-commits] Commit in gnupg/repos (6 files)

2020-09-03 Thread Levente Polyak via arch-commits
Date: Thursday, September 3, 2020 @ 17:43:36
  Author: anthraxx
Revision: 395395

archrelease: copy trunk to testing-x86_64

Added:
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 395394, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/avoid-beta-warning.patch
(from rev 395394, gnupg/trunk/avoid-beta-warning.patch)
  gnupg/repos/testing-x86_64/do-not-rebuild-defsincdate.patch
(from rev 395394, gnupg/trunk/do-not-rebuild-defsincdate.patch)
  gnupg/repos/testing-x86_64/drop-import-clean.patch
(from rev 395394, gnupg/trunk/drop-import-clean.patch)
  gnupg/repos/testing-x86_64/install
(from rev 395394, gnupg/trunk/install)

--+
 PKGBUILD |   78 +
 avoid-beta-warning.patch |   56 ++
 do-not-rebuild-defsincdate.patch |   43 
 drop-import-clean.patch  |   54 +
 install  |   31 ++
 5 files changed, 262 insertions(+)

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 395394, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-09-03 17:43:36 UTC (rev 395395)
@@ -0,0 +1,78 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Lukas Fleischer 
+# Contributor: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.2.23
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='https://www.gnupg.org/'
+license=('GPL')
+arch=('x86_64')
+checkdepends=('openssh')
+makedepends=('libldap' 'libusb-compat' 'pcsclite')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'libreadline.so' 'gnutls'
+ 'sqlite' 'zlib' 'glibc')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon'
+'pcsclite: scdaemon')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  '5B80C5754298F0CB55D8ED6ABCEF7E294B092E28')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig}
+'drop-import-clean.patch'
+'avoid-beta-warning.patch'
+'do-not-rebuild-defsincdate.patch')
+sha256sums=('10b55e49d78b3e49f1edb58d7541ecbdad92ddaeeb885b6f486ed23d1cd1da5c'
+'SKIP'
+'02d375f0045f56f7dd82bacdb5ce559afd52ded8b75f6b2673c39ec666e81abc'
+'22fdf9490fad477f225e731c417867d9e7571ac654944e8be63a1fbaccd5c62d'
+'bb4dcba0328af6271ccfe992a64d8daa9f0a691ba52978491647f1dea05675ee')
+
+install=install
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   patch -p1 -i ../avoid-beta-warning.patch
+   patch -p1 -i ../drop-import-clean.patch
+
+   # improve reproducibility
+   patch -p1 -i ../do-not-rebuild-defsincdate.patch
+   rm doc/gnupg.info*
+
+   ./autogen.sh
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   ln -s gpg "${pkgdir}"/usr/bin/gpg2
+   ln -s gpgv "${pkgdir}"/usr/bin/gpgv2
+
+   install -Dm 644 doc/examples/systemd-user/*.* -t 
"${pkgdir}/usr/lib/systemd/user"
+}
+
+# vim: ts=2 sw=2 noet:

Copied: gnupg/repos/testing-x86_64/avoid-beta-warning.patch (from rev 395394, 
gnupg/trunk/avoid-beta-warning.patch)
===
--- testing-x86_64/avoid-beta-warning.patch (rev 0)
+++ testing-x86_64/avoid-beta-warning.patch 2020-09-03 17:43:36 UTC (rev 
395395)
@@ -0,0 +1,56 @@
+From 114ab3037de3b0f9b35cf023b64c8a9b76070065 Mon Sep 17 00:00:00 2001
+From: Debian GnuPG Maintainers 
+Date: Tue, 14 Apr 2015 10:02:31 -0400
+Subject: [PATCH 6/7] avoid beta warning
+
+avoid self-describing as a beta
+
+Using autoreconf against the source as distributed in tarball form
+invariably results in a package that thinks it's a "beta" package,
+which produces the "THIS IS A DEVELOPMENT VERSION" warning string.
+
+since we use dh_autoreconf, i need this patch to avoid producing
+builds that announce themselves as DEVELOPMENT VERSIONs.
+
+See discussion at:
+
+ http://lists.gnupg.org/pipermail/gnupg-devel/2014-November/029065.html
+---
+ autogen.sh | 6 +++---
+ 1 file changed, 3 

[arch-commits] Commit in gnupg/repos (6 files)

2020-08-30 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 30, 2020 @ 11:02:13
  Author: foutrelis
Revision: 394968

archrelease: copy trunk to testing-x86_64

Added:
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 394967, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/avoid-beta-warning.patch
(from rev 394967, gnupg/trunk/avoid-beta-warning.patch)
  gnupg/repos/testing-x86_64/do-not-rebuild-defsincdate.patch
(from rev 394967, gnupg/trunk/do-not-rebuild-defsincdate.patch)
  gnupg/repos/testing-x86_64/drop-import-clean.patch
(from rev 394967, gnupg/trunk/drop-import-clean.patch)
  gnupg/repos/testing-x86_64/install
(from rev 394967, gnupg/trunk/install)

--+
 PKGBUILD |   76 +
 avoid-beta-warning.patch |   56 +++
 do-not-rebuild-defsincdate.patch |   43 
 drop-import-clean.patch  |   54 ++
 install  |   31 +++
 5 files changed, 260 insertions(+)

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 394967, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-08-30 11:02:13 UTC (rev 394968)
@@ -0,0 +1,76 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.2.21
+pkgrel=2
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='https://www.gnupg.org/'
+license=('GPL')
+arch=('x86_64')
+checkdepends=('openssh')
+makedepends=('libldap' 'libusb-compat' 'pcsclite')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon'
+'pcsclite: scdaemon')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  '5B80C5754298F0CB55D8ED6ABCEF7E294B092E28')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig}
+'drop-import-clean.patch'
+'avoid-beta-warning.patch'
+'do-not-rebuild-defsincdate.patch')
+sha256sums=('61e83278fb5fa7336658a8b73ab26f379d41275bb1c7c6e694dd9f9a6e8e76ec'
+'SKIP'
+'02d375f0045f56f7dd82bacdb5ce559afd52ded8b75f6b2673c39ec666e81abc'
+'22fdf9490fad477f225e731c417867d9e7571ac654944e8be63a1fbaccd5c62d'
+'bb4dcba0328af6271ccfe992a64d8daa9f0a691ba52978491647f1dea05675ee')
+
+install=install
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   patch -p1 -i ../avoid-beta-warning.patch
+   patch -p1 -i ../drop-import-clean.patch
+
+   # improve reproducibility
+   patch -p1 -i ../do-not-rebuild-defsincdate.patch
+   rm doc/gnupg.info*
+
+   ./autogen.sh
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   ln -s gpg "${pkgdir}"/usr/bin/gpg2
+   ln -s gpgv "${pkgdir}"/usr/bin/gpgv2
+
+   cd doc/examples/systemd-user
+   for i in *.*; do
+   install -Dm644 "$i" "${pkgdir}/usr/lib/systemd/user/$i"
+   done
+}

Copied: gnupg/repos/testing-x86_64/avoid-beta-warning.patch (from rev 394967, 
gnupg/trunk/avoid-beta-warning.patch)
===
--- testing-x86_64/avoid-beta-warning.patch (rev 0)
+++ testing-x86_64/avoid-beta-warning.patch 2020-08-30 11:02:13 UTC (rev 
394968)
@@ -0,0 +1,56 @@
+From 114ab3037de3b0f9b35cf023b64c8a9b76070065 Mon Sep 17 00:00:00 2001
+From: Debian GnuPG Maintainers 
+Date: Tue, 14 Apr 2015 10:02:31 -0400
+Subject: [PATCH 6/7] avoid beta warning
+
+avoid self-describing as a beta
+
+Using autoreconf against the source as distributed in tarball form
+invariably results in a package that thinks it's a "beta" package,
+which produces the "THIS IS A DEVELOPMENT VERSION" warning string.
+
+since we use dh_autoreconf, i need this patch to avoid producing
+builds that announce themselves as DEVELOPMENT VERSIONs.
+
+See discussion at:
+
+ http://lists.gnupg.org/pipermail/gnupg-devel/2014-November/029065.html
+---
+ autogen.sh | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/autogen.sh b/autogen.sh
+index 

[arch-commits] Commit in gnupg/repos (6 files)

2020-07-10 Thread Gaëtan Bisson via arch-commits
Date: Friday, July 10, 2020 @ 08:40:02
  Author: bisson
Revision: 391526

archrelease: copy trunk to testing-x86_64

Added:
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 391525, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/avoid-beta-warning.patch
(from rev 391525, gnupg/trunk/avoid-beta-warning.patch)
  gnupg/repos/testing-x86_64/do-not-rebuild-defsincdate.patch
(from rev 391525, gnupg/trunk/do-not-rebuild-defsincdate.patch)
  gnupg/repos/testing-x86_64/drop-import-clean.patch
(from rev 391525, gnupg/trunk/drop-import-clean.patch)
  gnupg/repos/testing-x86_64/install
(from rev 391525, gnupg/trunk/install)

--+
 PKGBUILD |   76 +
 avoid-beta-warning.patch |   56 +++
 do-not-rebuild-defsincdate.patch |   43 
 drop-import-clean.patch  |   54 ++
 install  |   31 +++
 5 files changed, 260 insertions(+)

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 391525, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-07-10 08:40:02 UTC (rev 391526)
@@ -0,0 +1,76 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.2.21
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='https://www.gnupg.org/'
+license=('GPL')
+arch=('x86_64')
+checkdepends=('openssh')
+makedepends=('libldap' 'libusb-compat' 'pcsclite')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon'
+'pcsclite: scdaemon')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  '5B80C5754298F0CB55D8ED6ABCEF7E294B092E28')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig}
+'drop-import-clean.patch'
+'avoid-beta-warning.patch'
+'do-not-rebuild-defsincdate.patch')
+sha256sums=('61e83278fb5fa7336658a8b73ab26f379d41275bb1c7c6e694dd9f9a6e8e76ec'
+'SKIP'
+'02d375f0045f56f7dd82bacdb5ce559afd52ded8b75f6b2673c39ec666e81abc'
+'22fdf9490fad477f225e731c417867d9e7571ac654944e8be63a1fbaccd5c62d'
+'bb4dcba0328af6271ccfe992a64d8daa9f0a691ba52978491647f1dea05675ee')
+
+install=install
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   patch -p1 -i ../avoid-beta-warning.patch
+   patch -p1 -i ../drop-import-clean.patch
+
+   # improve reproducibility
+   patch -p1 -i ../do-not-rebuild-defsincdate.patch
+   rm doc/gnupg.info*
+
+   ./autogen.sh
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   ln -s gpg "${pkgdir}"/usr/bin/gpg2
+   ln -s gpgv "${pkgdir}"/usr/bin/gpgv2
+
+   cd doc/examples/systemd-user
+   for i in *.*; do
+   install -Dm644 "$i" "${pkgdir}/usr/lib/systemd/user/$i"
+   done
+}

Copied: gnupg/repos/testing-x86_64/avoid-beta-warning.patch (from rev 391525, 
gnupg/trunk/avoid-beta-warning.patch)
===
--- testing-x86_64/avoid-beta-warning.patch (rev 0)
+++ testing-x86_64/avoid-beta-warning.patch 2020-07-10 08:40:02 UTC (rev 
391526)
@@ -0,0 +1,56 @@
+From 114ab3037de3b0f9b35cf023b64c8a9b76070065 Mon Sep 17 00:00:00 2001
+From: Debian GnuPG Maintainers 
+Date: Tue, 14 Apr 2015 10:02:31 -0400
+Subject: [PATCH 6/7] avoid beta warning
+
+avoid self-describing as a beta
+
+Using autoreconf against the source as distributed in tarball form
+invariably results in a package that thinks it's a "beta" package,
+which produces the "THIS IS A DEVELOPMENT VERSION" warning string.
+
+since we use dh_autoreconf, i need this patch to avoid producing
+builds that announce themselves as DEVELOPMENT VERSIONs.
+
+See discussion at:
+
+ http://lists.gnupg.org/pipermail/gnupg-devel/2014-November/029065.html
+---
+ autogen.sh | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/autogen.sh b/autogen.sh
+index 

[arch-commits] Commit in gnupg/repos (6 files)

2019-07-18 Thread Gaëtan Bisson via arch-commits
Date: Thursday, July 18, 2019 @ 21:03:39
  Author: bisson
Revision: 358126

db-move: moved gnupg from [testing] to [core] (x86_64)

Added:
  gnupg/repos/core-x86_64/PKGBUILD
(from rev 358125, gnupg/repos/testing-x86_64/PKGBUILD)
  gnupg/repos/core-x86_64/install
(from rev 358125, gnupg/repos/testing-x86_64/install)
  gnupg/repos/core-x86_64/self-sigs-only.patch
(from rev 358125, gnupg/repos/testing-x86_64/self-sigs-only.patch)
Deleted:
  gnupg/repos/core-x86_64/PKGBUILD
  gnupg/repos/core-x86_64/install
  gnupg/repos/testing-x86_64/

--+
 /PKGBUILD|   66 +
 /install |   31 +
 core-x86_64/PKGBUILD |   63 ---
 core-x86_64/install  |   31 -
 core-x86_64/self-sigs-only.patch |   56 +++
 5 files changed, 153 insertions(+), 94 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2019-07-18 20:43:17 UTC (rev 358125)
+++ core-x86_64/PKGBUILD2019-07-18 21:03:39 UTC (rev 358126)
@@ -1,63 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Tobias Powalowski 
-# Contributor: Andreas Radke 
-# Contributor: Judd Vinet 
-
-pkgname=gnupg
-pkgver=2.2.16
-pkgrel=1
-pkgdesc='Complete and free implementation of the OpenPGP standard'
-url='https://www.gnupg.org/'
-license=('GPL')
-arch=('x86_64')
-checkdepends=('openssh')
-makedepends=('libldap' 'libusb-compat' 'pcsclite')
-depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
- 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
-optdepends=('libldap: gpg2keys_ldap'
-'libusb-compat: scdaemon'
-'pcsclite: scdaemon')
-validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
-  '46CC730865BB5C78EBABADCF04376F3EE0856959'
-  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
-  '5B80C5754298F0CB55D8ED6ABCEF7E294B092E28')
-source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
-sha256sums=('6cbe8d454bf5dc204621eed3016d721b66298fa95363395bb8eeceb1d2fd14cb'
-'SKIP')
-
-install=install
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --sbindir=/usr/bin \
-   --libexecdir=/usr/lib/gnupg \
-   --enable-maintainer-mode \
-   --enable-symcryptrun \
-
-   make
-}
-
-check() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make check
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   ln -s gpg "${pkgdir}"/usr/bin/gpg2
-   ln -s gpgv "${pkgdir}"/usr/bin/gpgv2
-
-   cd doc/examples/systemd-user
-   for i in *.*; do
-   install -Dm644 "$i" "${pkgdir}/usr/lib/systemd/user/$i"
-   done
-}

Copied: gnupg/repos/core-x86_64/PKGBUILD (from rev 358125, 
gnupg/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2019-07-18 21:03:39 UTC (rev 358126)
@@ -0,0 +1,66 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.2.17
+pkgrel=2
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='https://www.gnupg.org/'
+license=('GPL')
+arch=('x86_64')
+checkdepends=('openssh')
+makedepends=('libldap' 'libusb-compat' 'pcsclite')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon'
+'pcsclite: scdaemon')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  '5B80C5754298F0CB55D8ED6ABCEF7E294B092E28')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig}
+'self-sigs-only.patch')
+sha256sums=('afa262868e39b651a2db4c071fba90415154243e83a830ca00516f9a807fd514'
+'SKIP'
+'0130c43321c16f53ab2290833007212f8a26b1b73bd4edc2b2b1c9db2b2d0218')
+
+install=install
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+   patch -R -p1 -i ../self-sigs-only.patch
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+

[arch-commits] Commit in gnupg/repos (6 files)

2018-04-12 Thread Gaëtan Bisson via arch-commits
Date: Friday, April 13, 2018 @ 03:28:20
  Author: bisson
Revision: 321669

db-move: moved gnupg from [testing] to [core] (x86_64)

Added:
  gnupg/repos/core-x86_64/PKGBUILD
(from rev 321668, gnupg/repos/testing-x86_64/PKGBUILD)
  gnupg/repos/core-x86_64/install
(from rev 321668, gnupg/repos/testing-x86_64/install)
Deleted:
  gnupg/repos/core-x86_64/PKGBUILD
  gnupg/repos/core-x86_64/install
  gnupg/repos/core-x86_64/req_usage.patch
  gnupg/repos/testing-x86_64/

-+
 /PKGBUILD   |   68 +++
 /install|   41 +++
 core-x86_64/PKGBUILD|   73 --
 core-x86_64/install |   41 ---
 core-x86_64/req_usage.patch |   12 --
 5 files changed, 109 insertions(+), 126 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2018-04-12 23:23:33 UTC (rev 321668)
+++ core-x86_64/PKGBUILD2018-04-13 03:28:20 UTC (rev 321669)
@@ -1,73 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Tobias Powalowski 
-# Contributor: Andreas Radke 
-# Contributor: Judd Vinet 
-
-pkgname=gnupg
-pkgver=2.2.5
-pkgrel=2
-pkgdesc='Complete and free implementation of the OpenPGP standard'
-url='http://www.gnupg.org/'
-license=('GPL')
-arch=('x86_64')
-optdepends=('libldap: gpg2keys_ldap'
-'libusb-compat: scdaemon'
-'pcsclite: scdaemon')
-makedepends=('libldap' 'libusb-compat' 'pcsclite')
-checkdepends=('openssh')
-depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
- 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
-validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
-  '46CC730865BB5C78EBABADCF04376F3EE0856959'
-  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
-  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
-source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig}
-'req_usage.patch')
-sha256sums=('3fa189a32d4fb62147874eb1389047c267d9ba088f57ab521cb0df46f08aef57'
-'SKIP'
-'f8bef4891c1b9f81f305753dac7780ad4cfd56ec853502ba1d9d6400c69a518e')
-
-install=install
-
-conflicts=('dirmngr' 'gnupg2')
-provides=('dirmngr' "gnupg2=${pkgver}")
-replaces=('dirmngr' 'gnupg2')
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
-
-   # See: https://dev.gnupg.org/rGa17d2d1f690ebe5d005b4589a5fe378b6487c657
-   patch -p1 -i ../req_usage.patch
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --sbindir=/usr/bin \
-   --libexecdir=/usr/lib/gnupg \
-   --enable-maintainer-mode \
-   --enable-symcryptrun \
-
-   make
-}
-
-check() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make check
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   ln -s gpg "${pkgdir}"/usr/bin/gpg2
-   ln -s gpgv "${pkgdir}"/usr/bin/gpgv2
-
-   cd doc/examples/systemd-user
-   for i in *.*; do
-   install -Dm644 "$i" "${pkgdir}/usr/lib/systemd/user/$i"
-   done
-}

Copied: gnupg/repos/core-x86_64/PKGBUILD (from rev 321668, 
gnupg/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2018-04-13 03:28:20 UTC (rev 321669)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.2.6
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon'
+'pcsclite: scdaemon')
+makedepends=('libldap' 'libusb-compat' 'pcsclite')
+checkdepends=('openssh')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha256sums=('e64d8c5fa2d05938a5080cb784a98ac21be0812f2a26f844b18f0d6a0e711984'
+'SKIP')
+
+install=install
+

[arch-commits] Commit in gnupg/repos (6 files)

2018-04-08 Thread Gaëtan Bisson via arch-commits
Date: Monday, April 9, 2018 @ 01:29:17
  Author: bisson
Revision: 321323

db-move: moved gnupg from [testing] to [core] (x86_64)

Added:
  gnupg/repos/core-x86_64/PKGBUILD
(from rev 321322, gnupg/repos/testing-x86_64/PKGBUILD)
  gnupg/repos/core-x86_64/install
(from rev 321322, gnupg/repos/testing-x86_64/install)
  gnupg/repos/core-x86_64/req_usage.patch
(from rev 321322, gnupg/repos/testing-x86_64/req_usage.patch)
Deleted:
  gnupg/repos/core-x86_64/PKGBUILD
  gnupg/repos/core-x86_64/install
  gnupg/repos/testing-x86_64/

-+
 /PKGBUILD   |   73 ++
 /install|   41 +++
 core-x86_64/PKGBUILD|   68 ---
 core-x86_64/install |   41 ---
 core-x86_64/req_usage.patch |   12 ++
 5 files changed, 126 insertions(+), 109 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2018-04-09 01:28:44 UTC (rev 321322)
+++ core-x86_64/PKGBUILD2018-04-09 01:29:17 UTC (rev 321323)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Tobias Powalowski 
-# Contributor: Andreas Radke 
-# Contributor: Judd Vinet 
-
-pkgname=gnupg
-pkgver=2.2.5
-pkgrel=1
-pkgdesc='Complete and free implementation of the OpenPGP standard'
-url='http://www.gnupg.org/'
-license=('GPL')
-arch=('x86_64')
-optdepends=('libldap: gpg2keys_ldap'
-'libusb-compat: scdaemon'
-'pcsclite: scdaemon')
-makedepends=('libldap' 'libusb-compat' 'pcsclite')
-checkdepends=('openssh')
-depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
- 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
-validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
-  '46CC730865BB5C78EBABADCF04376F3EE0856959'
-  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
-  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
-source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
-sha256sums=('3fa189a32d4fb62147874eb1389047c267d9ba088f57ab521cb0df46f08aef57'
-'SKIP')
-
-install=install
-
-conflicts=('dirmngr' 'gnupg2')
-provides=('dirmngr' "gnupg2=${pkgver}")
-replaces=('dirmngr' 'gnupg2')
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --sbindir=/usr/bin \
-   --libexecdir=/usr/lib/gnupg \
-   --enable-maintainer-mode \
-   --enable-symcryptrun \
-
-   make
-}
-
-check() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make check
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   ln -s gpg "${pkgdir}"/usr/bin/gpg2
-   ln -s gpgv "${pkgdir}"/usr/bin/gpgv2
-
-   cd doc/examples/systemd-user
-   for i in *.*; do
-   install -Dm644 "$i" "${pkgdir}/usr/lib/systemd/user/$i"
-   done
-}

Copied: gnupg/repos/core-x86_64/PKGBUILD (from rev 321322, 
gnupg/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2018-04-09 01:29:17 UTC (rev 321323)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.2.5
+pkgrel=2
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon'
+'pcsclite: scdaemon')
+makedepends=('libldap' 'libusb-compat' 'pcsclite')
+checkdepends=('openssh')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig}
+'req_usage.patch')
+sha256sums=('3fa189a32d4fb62147874eb1389047c267d9ba088f57ab521cb0df46f08aef57'
+'SKIP'
+'f8bef4891c1b9f81f305753dac7780ad4cfd56ec853502ba1d9d6400c69a518e')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' "gnupg2=${pkgver}")

[arch-commits] Commit in gnupg/repos (6 files)

2017-11-07 Thread Gaëtan Bisson
Date: Tuesday, November 7, 2017 @ 21:00:08
  Author: bisson
Revision: 309022

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 309021, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 309021, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 309021, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 309021, gnupg/trunk/install)

-+
 testing-i686/PKGBUILD   |   67 ++
 testing-i686/install|   41 
 testing-x86_64/PKGBUILD |   67 ++
 testing-x86_64/install  |   41 
 4 files changed, 216 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 309021, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-11-07 21:00:08 UTC (rev 309022)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.2.2
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+checkdepends=('openssh')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha256sums=('bfb62c7412ceb3b9422c6c7134a34ff01a560f98eb981c2d96829c1517c08197'
+'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' "gnupg2=${pkgver}")
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   ln -s gpg "${pkgdir}"/usr/bin/gpg2
+   ln -s gpgv "${pkgdir}"/usr/bin/gpgv2
+
+   cd doc/examples/systemd-user
+   for i in *.*; do
+   install -Dm644 "$i" "${pkgdir}/usr/lib/systemd/user/$i"
+   done
+}

Copied: gnupg/repos/testing-i686/install (from rev 309021, gnupg/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2017-11-07 21:00:08 UTC (rev 309022)
@@ -0,0 +1,41 @@
+_global_units() {
+   _units=(dirmngr.socket gpg-agent.socket 
gpg-agent-{browser,extra,ssh}.socket)
+   _dir=/etc/systemd/user/sockets.target.wants
+
+   case $1 in
+   enable)
+   mkdir -p $_dir
+   for _u in "${_units[@]}"; do
+   ln -sf /usr/lib/systemd/user/$_u $_dir/$_u
+   done
+   ;;
+   disable)
+   for _u in "${_units[@]}"; do
+   rm -f $_dir/$_u
+   done
+   rmdir -p --ignore-fail-on-non-empty $_dir
+   ;;
+   esac
+}
+
+post_install() {
+   # See FS#42798 and FS#47371
+   dirmngr /dev/null
+
+   # Let systemd supervise daemons by default
+   _global_units enable
+}
+
+post_upgrade() {
+   if (( $(vercmp $2 2.1.13-1) < 0 )); then
+   echo "==> Please kill running gpg-agent and dirmngr processes 
before using this release."
+   fi
+
+   if (( $(vercmp $2 2.1.21-3) < 0 )); then
+   _global_units enable
+   fi
+}
+
+pre_remove() {
+   _global_units disable
+}

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 309021, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)

[arch-commits] Commit in gnupg/repos (6 files)

2017-09-19 Thread Gaëtan Bisson
Date: Tuesday, September 19, 2017 @ 17:32:25
  Author: bisson
Revision: 305860

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 305859, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 305859, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 305859, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 305859, gnupg/trunk/install)

-+
 testing-i686/PKGBUILD   |   67 ++
 testing-i686/install|   41 
 testing-x86_64/PKGBUILD |   67 ++
 testing-x86_64/install  |   41 
 4 files changed, 216 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 305859, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-09-19 17:32:25 UTC (rev 305860)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.2.1
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+checkdepends=('openssh')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha256sums=('34d70cd65b9c95f3f2f90a9f5c1e0b6a0fe039a8d685e2d66d69c33d1cbf62fb'
+'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' "gnupg2=${pkgver}")
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   ln -s gpg "${pkgdir}"/usr/bin/gpg2
+   ln -s gpgv "${pkgdir}"/usr/bin/gpgv2
+
+   cd doc/examples/systemd-user
+   for i in *.*; do
+   install -Dm644 "$i" "${pkgdir}/usr/lib/systemd/user/$i"
+   done
+}

Copied: gnupg/repos/testing-i686/install (from rev 305859, gnupg/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2017-09-19 17:32:25 UTC (rev 305860)
@@ -0,0 +1,41 @@
+_global_units() {
+   _units=(dirmngr.socket gpg-agent.socket 
gpg-agent-{browser,extra,ssh}.socket)
+   _dir=/etc/systemd/user/sockets.target.wants
+
+   case $1 in
+   enable)
+   mkdir -p $_dir
+   for _u in "${_units[@]}"; do
+   ln -sf /usr/lib/systemd/user/$_u $_dir/$_u
+   done
+   ;;
+   disable)
+   for _u in "${_units[@]}"; do
+   rm -f $_dir/$_u
+   done
+   rmdir -p --ignore-fail-on-non-empty $_dir
+   ;;
+   esac
+}
+
+post_install() {
+   # See FS#42798 and FS#47371
+   dirmngr /dev/null
+
+   # Let systemd supervise daemons by default
+   _global_units enable
+}
+
+post_upgrade() {
+   if (( $(vercmp $2 2.1.13-1) < 0 )); then
+   echo "==> Please kill running gpg-agent and dirmngr processes 
before using this release."
+   fi
+
+   if (( $(vercmp $2 2.1.21-3) < 0 )); then
+   _global_units enable
+   fi
+}
+
+pre_remove() {
+   _global_units disable
+}

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 305859, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 

[arch-commits] Commit in gnupg/repos (6 files)

2017-08-28 Thread Gaëtan Bisson
Date: Monday, August 28, 2017 @ 18:35:19
  Author: bisson
Revision: 304300

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 304299, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 304299, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 304299, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 304299, gnupg/trunk/install)

-+
 testing-i686/PKGBUILD   |   67 ++
 testing-i686/install|   41 
 testing-x86_64/PKGBUILD |   67 ++
 testing-x86_64/install  |   41 
 4 files changed, 216 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 304299, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-08-28 18:35:19 UTC (rev 304300)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.2.0
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+checkdepends=('openssh')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha256sums=('d4514a0be0f7a1ff263193330019eb4b53c82f0f5e230af3c14df371271a45e6'
+'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' "gnupg2=${pkgver}")
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   ln -s gpg "${pkgdir}"/usr/bin/gpg2
+   ln -s gpgv "${pkgdir}"/usr/bin/gpgv2
+
+   cd doc/examples/systemd-user
+   for i in *.*; do
+   install -Dm644 "$i" "${pkgdir}/usr/lib/systemd/user/$i"
+   done
+}

Copied: gnupg/repos/testing-i686/install (from rev 304299, gnupg/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2017-08-28 18:35:19 UTC (rev 304300)
@@ -0,0 +1,41 @@
+_global_units() {
+   _units=(dirmngr.socket gpg-agent.socket 
gpg-agent-{browser,extra,ssh}.socket)
+   _dir=/etc/systemd/user/sockets.target.wants
+
+   case $1 in
+   enable)
+   mkdir -p $_dir
+   for _u in "${_units[@]}"; do
+   ln -sf /usr/lib/systemd/user/$_u $_dir/$_u
+   done
+   ;;
+   disable)
+   for _u in "${_units[@]}"; do
+   rm -f $_dir/$_u
+   done
+   rmdir -p --ignore-fail-on-non-empty $_dir
+   ;;
+   esac
+}
+
+post_install() {
+   # See FS#42798 and FS#47371
+   dirmngr /dev/null
+
+   # Let systemd supervise daemons by default
+   _global_units enable
+}
+
+post_upgrade() {
+   if (( $(vercmp $2 2.1.13-1) < 0 )); then
+   echo "==> Please kill running gpg-agent and dirmngr processes 
before using this release."
+   fi
+
+   if (( $(vercmp $2 2.1.21-3) < 0 )); then
+   _global_units enable
+   fi
+}
+
+pre_remove() {
+   _global_units disable
+}

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 304299, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)

[arch-commits] Commit in gnupg/repos (6 files)

2017-08-09 Thread Gaëtan Bisson
Date: Thursday, August 10, 2017 @ 03:33:17
  Author: bisson
Revision: 301834

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 301833, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 301833, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 301833, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 301833, gnupg/trunk/install)

-+
 testing-i686/PKGBUILD   |   67 ++
 testing-i686/install|   41 
 testing-x86_64/PKGBUILD |   67 ++
 testing-x86_64/install  |   41 
 4 files changed, 216 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 301833, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-08-10 03:33:17 UTC (rev 301834)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.23
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+checkdepends=('openssh')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha256sums=('a94476391595e9351f219188767a9d6ea128e83be5ed3226a7890f49aa2d0d77'
+'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' "gnupg2=${pkgver}")
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   ln -s gpg "${pkgdir}"/usr/bin/gpg2
+   ln -s gpgv "${pkgdir}"/usr/bin/gpgv2
+
+   cd doc/examples/systemd-user
+   for i in *.*; do
+   install -Dm644 "$i" "${pkgdir}/usr/lib/systemd/user/$i"
+   done
+}

Copied: gnupg/repos/testing-i686/install (from rev 301833, gnupg/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2017-08-10 03:33:17 UTC (rev 301834)
@@ -0,0 +1,41 @@
+_global_units() {
+   _units=(dirmngr.socket gpg-agent.socket 
gpg-agent-{browser,extra,ssh}.socket)
+   _dir=/etc/systemd/user/sockets.target.wants
+
+   case $1 in
+   enable)
+   mkdir -p $_dir
+   for _u in "${_units[@]}"; do
+   ln -sf /usr/lib/systemd/user/$_u $_dir/$_u
+   done
+   ;;
+   disable)
+   for _u in "${_units[@]}"; do
+   rm -f $_dir/$_u
+   done
+   rmdir -p --ignore-fail-on-non-empty $_dir
+   ;;
+   esac
+}
+
+post_install() {
+   # See FS#42798 and FS#47371
+   dirmngr /dev/null
+
+   # Let systemd supervise daemons by default
+   _global_units enable
+}
+
+post_upgrade() {
+   if (( $(vercmp $2 2.1.13-1) < 0 )); then
+   echo "==> Please kill running gpg-agent and dirmngr processes 
before using this release."
+   fi
+
+   if (( $(vercmp $2 2.1.21-3) < 0 )); then
+   _global_units enable
+   fi
+}
+
+pre_remove() {
+   _global_units disable
+}

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 301833, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)

[arch-commits] Commit in gnupg/repos (6 files)

2017-07-28 Thread Gaëtan Bisson
Date: Saturday, July 29, 2017 @ 05:08:31
  Author: bisson
Revision: 301353

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 301352, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 301352, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 301352, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 301352, gnupg/trunk/install)

-+
 testing-i686/PKGBUILD   |   68 ++
 testing-i686/install|   41 +++
 testing-x86_64/PKGBUILD |   68 ++
 testing-x86_64/install  |   41 +++
 4 files changed, 218 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 301352, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-07-29 05:08:31 UTC (rev 301353)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.22
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+checkdepends=('openssh')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha256sums=('46716faf9e1b92cfca86609f3bfffbf5bb4b6804df90dc853ff7061cfcfb4ad7'
+'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' "gnupg2=${pkgver}")
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   ln -s gpg2 "${pkgdir}"/usr/bin/gpg
+   ln -s gpgv2 "${pkgdir}"/usr/bin/gpgv
+   ln -s gpg2.1.gz "${pkgdir}"/usr/share/man/man1/gpg.1.gz
+
+   cd doc/examples/systemd-user
+   for i in *.*; do
+   install -Dm644 "$i" "${pkgdir}/usr/lib/systemd/user/$i"
+   done
+}

Copied: gnupg/repos/testing-i686/install (from rev 301352, gnupg/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2017-07-29 05:08:31 UTC (rev 301353)
@@ -0,0 +1,41 @@
+_global_units() {
+   _units=(dirmngr.socket gpg-agent.socket 
gpg-agent-{browser,extra,ssh}.socket)
+   _dir=/etc/systemd/user/sockets.target.wants
+
+   case $1 in
+   enable)
+   mkdir -p $_dir
+   for _u in "${_units[@]}"; do
+   ln -sf /usr/lib/systemd/user/$_u $_dir/$_u
+   done
+   ;;
+   disable)
+   for _u in "${_units[@]}"; do
+   rm -f $_dir/$_u
+   done
+   rmdir -p --ignore-fail-on-non-empty $_dir
+   ;;
+   esac
+}
+
+post_install() {
+   # See FS#42798 and FS#47371
+   dirmngr /dev/null
+
+   # Let systemd supervise daemons by default
+   _global_units enable
+}
+
+post_upgrade() {
+   if (( $(vercmp $2 2.1.13-1) < 0 )); then
+   echo "==> Please kill running gpg-agent and dirmngr processes 
before using this release."
+   fi
+
+   if (( $(vercmp $2 2.1.21-3) < 0 )); then
+   _global_units enable
+   fi
+}
+
+pre_remove() {
+   _global_units disable
+}

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 301352, 
gnupg/trunk/PKGBUILD)
===
--- 

[arch-commits] Commit in gnupg/repos (6 files)

2017-05-15 Thread Gaëtan Bisson
Date: Monday, May 15, 2017 @ 20:49:41
  Author: bisson
Revision: 296144

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 296143, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 296143, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 296143, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 296143, gnupg/trunk/install)

-+
 testing-i686/PKGBUILD   |   67 ++
 testing-i686/install|   10 ++
 testing-x86_64/PKGBUILD |   67 ++
 testing-x86_64/install  |   10 ++
 4 files changed, 154 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 296143, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-05-15 20:49:41 UTC (rev 296144)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.21
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha256sums=('7aead8a8ba75b69866f583b6c747d91414d523bfdfbe9a8e0fe026b16ba427dd'
+'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' "gnupg2=${pkgver}")
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   ln -s gpg2 "${pkgdir}"/usr/bin/gpg
+   ln -s gpgv2 "${pkgdir}"/usr/bin/gpgv
+   ln -s gpg2.1.gz "${pkgdir}"/usr/share/man/man1/gpg.1.gz
+
+   cd doc/examples/systemd-user
+   for i in *.*; do
+   install -Dm644 "$i" "${pkgdir}/usr/lib/systemd/user/$i"
+   done
+}

Copied: gnupg/repos/testing-i686/install (from rev 296143, gnupg/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2017-05-15 20:49:41 UTC (rev 296144)
@@ -0,0 +1,10 @@
+post_install() {
+   # See FS#42798 and FS#47371
+   dirmngr /dev/null || true
+}
+
+post_upgrade() {
+   if [[ $(vercmp $2 2.1.13-1) = -1 ]]; then
+   echo "==> Please kill running gpg-agent and dirmngr processes 
before using this release."
+   fi
+}

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 296143, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-05-15 20:49:41 UTC (rev 296144)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.21
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  

[arch-commits] Commit in gnupg/repos (6 files)

2017-04-03 Thread Gaëtan Bisson
Date: Monday, April 3, 2017 @ 21:29:57
  Author: bisson
Revision: 292061

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 292060, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 292060, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 292060, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 292060, gnupg/trunk/install)

-+
 testing-i686/PKGBUILD   |   67 ++
 testing-i686/install|   10 ++
 testing-x86_64/PKGBUILD |   67 ++
 testing-x86_64/install  |   10 ++
 4 files changed, 154 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 292060, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-04-03 21:29:57 UTC (rev 292061)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.20
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha256sums=('24cf9a69369be64a9f6f8cc11a1be33ab7780ad77a6a1b93719438f49f69960d'
+'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' "gnupg2=${pkgver}")
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   ln -s gpg2 "${pkgdir}"/usr/bin/gpg
+   ln -s gpgv2 "${pkgdir}"/usr/bin/gpgv
+   ln -s gpg2.1.gz "${pkgdir}"/usr/share/man/man1/gpg.1.gz
+
+   cd doc/examples/systemd-user
+   for i in *.*; do
+   install -Dm644 "$i" "${pkgdir}/usr/lib/systemd/user/$i"
+   done
+}

Copied: gnupg/repos/testing-i686/install (from rev 292060, gnupg/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2017-04-03 21:29:57 UTC (rev 292061)
@@ -0,0 +1,10 @@
+post_install() {
+   # See FS#42798 and FS#47371
+   dirmngr /dev/null || true
+}
+
+post_upgrade() {
+   if [[ $(vercmp $2 2.1.13-1) = -1 ]]; then
+   echo "==> Please kill running gpg-agent and dirmngr processes 
before using this release."
+   fi
+}

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 292060, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-04-03 21:29:57 UTC (rev 292061)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.20
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  

[arch-commits] Commit in gnupg/repos (6 files)

2017-03-01 Thread Gaëtan Bisson
Date: Wednesday, March 1, 2017 @ 20:33:04
  Author: bisson
Revision: 289765

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 289764, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 289764, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 289764, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 289764, gnupg/trunk/install)

-+
 testing-i686/PKGBUILD   |   67 ++
 testing-i686/install|   10 ++
 testing-x86_64/PKGBUILD |   67 ++
 testing-x86_64/install  |   10 ++
 4 files changed, 154 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 289764, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-03-01 20:33:04 UTC (rev 289765)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.19
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha1sums=('10a088a6716789ac5c5cce2776952d8f4a5c57fc' 'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' "gnupg2=${pkgver}")
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check || true
+   # 
https://lists.gnupg.org/pipermail/gnupg-devel/2016-December/032364.html
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   ln -s gpg2 "${pkgdir}"/usr/bin/gpg
+   ln -s gpgv2 "${pkgdir}"/usr/bin/gpgv
+   ln -s gpg2.1.gz "${pkgdir}"/usr/share/man/man1/gpg.1.gz
+
+   cd doc/examples/systemd-user
+   for i in *.*; do
+   install -Dm644 "$i" "${pkgdir}/usr/lib/systemd/user/$i"
+   done
+}

Copied: gnupg/repos/testing-i686/install (from rev 289764, gnupg/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2017-03-01 20:33:04 UTC (rev 289765)
@@ -0,0 +1,10 @@
+post_install() {
+   # See FS#42798 and FS#47371
+   dirmngr /dev/null || true
+}
+
+post_upgrade() {
+   if [[ $(vercmp $2 2.1.13-1) = -1 ]]; then
+   echo "==> Please kill running gpg-agent and dirmngr processes 
before using this release."
+   fi
+}

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 289764, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-03-01 20:33:04 UTC (rev 289765)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.19
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  

[arch-commits] Commit in gnupg/repos (6 files)

2017-01-23 Thread Gaëtan Bisson
Date: Tuesday, January 24, 2017 @ 00:19:06
  Author: bisson
Revision: 287244

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 287243, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 287243, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 287243, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 287243, gnupg/trunk/install)

-+
 testing-i686/PKGBUILD   |   67 ++
 testing-i686/install|   10 ++
 testing-x86_64/PKGBUILD |   67 ++
 testing-x86_64/install  |   10 ++
 4 files changed, 154 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 287243, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-01-24 00:19:06 UTC (rev 287244)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.18
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha1sums=('b698012cc2d77c2652afd168a15e679d1394fa89' 'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' "gnupg2=${pkgver}")
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check || [[ $CARCH = i686 ]]
+   # 
https://lists.gnupg.org/pipermail/gnupg-devel/2016-December/032364.html
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   ln -s gpg2 "${pkgdir}"/usr/bin/gpg
+   ln -s gpgv2 "${pkgdir}"/usr/bin/gpgv
+   ln -s gpg2.1.gz "${pkgdir}"/usr/share/man/man1/gpg.1.gz
+
+   cd doc/examples/systemd-user
+   for i in *.*; do
+   install -Dm644 "$i" "${pkgdir}/usr/lib/systemd/user/$i"
+   done
+}

Copied: gnupg/repos/testing-i686/install (from rev 287243, gnupg/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2017-01-24 00:19:06 UTC (rev 287244)
@@ -0,0 +1,10 @@
+post_install() {
+   # See FS#42798 and FS#47371
+   dirmngr /dev/null || true
+}
+
+post_upgrade() {
+   if [[ $(vercmp $2 2.1.13-1) = -1 ]]; then
+   echo "==> Please kill running gpg-agent and dirmngr processes 
before using this release."
+   fi
+}

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 287243, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-01-24 00:19:06 UTC (rev 287244)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.18
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+

[arch-commits] Commit in gnupg/repos (6 files)

2016-12-20 Thread Gaëtan Bisson
Date: Wednesday, December 21, 2016 @ 07:28:01
  Author: bisson
Revision: 284364

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 284363, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 284363, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 284363, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 284363, gnupg/trunk/install)

-+
 testing-i686/PKGBUILD   |   67 ++
 testing-i686/install|   10 ++
 testing-x86_64/PKGBUILD |   67 ++
 testing-x86_64/install  |   10 ++
 4 files changed, 154 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 284363, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-12-21 07:28:01 UTC (rev 284364)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.17
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha1sums=('d83ab893faab35f37ace772ca29b939e6a5aa6a7' 'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' "gnupg2=${pkgver}")
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check || [[ $CARCH = i686 ]]
+   # 
https://lists.gnupg.org/pipermail/gnupg-devel/2016-December/032364.html
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   ln -s gpg2 "${pkgdir}"/usr/bin/gpg
+   ln -s gpgv2 "${pkgdir}"/usr/bin/gpgv
+   ln -s gpg2.1.gz "${pkgdir}"/usr/share/man/man1/gpg.1.gz
+
+   cd doc/examples/systemd-user
+   for i in *.*; do
+   install -Dm644 "$i" "${pkgdir}/usr/lib/systemd/user/$i"
+   done
+}

Copied: gnupg/repos/testing-i686/install (from rev 284363, gnupg/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2016-12-21 07:28:01 UTC (rev 284364)
@@ -0,0 +1,10 @@
+post_install() {
+   # See FS#42798 and FS#47371
+   dirmngr /dev/null || true
+}
+
+post_upgrade() {
+   if [[ $(vercmp $2 2.1.13-1) = -1 ]]; then
+   echo "==> Please kill running gpg-agent and dirmngr processes 
before using this release."
+   fi
+}

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 284363, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-12-21 07:28:01 UTC (rev 284364)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.17
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+ 

[arch-commits] Commit in gnupg/repos (6 files)

2016-12-09 Thread Gaëtan Bisson
Date: Saturday, December 10, 2016 @ 07:03:39
  Author: bisson
Revision: 282993

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 282992, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 282992, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 282992, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 282992, gnupg/trunk/install)

-+
 testing-i686/PKGBUILD   |   66 ++
 testing-i686/install|   10 ++
 testing-x86_64/PKGBUILD |   66 ++
 testing-x86_64/install  |   10 ++
 4 files changed, 152 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 282992, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-12-10 07:03:39 UTC (rev 282993)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.16
+pkgrel=2
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha1sums=('67540161c9fe289153c4a5ea60f7cdce0ef48897' 'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' "gnupg2=${pkgver}")
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   ln -s gpg2 "${pkgdir}"/usr/bin/gpg
+   ln -s gpgv2 "${pkgdir}"/usr/bin/gpgv
+   ln -s gpg2.1.gz "${pkgdir}"/usr/share/man/man1/gpg.1.gz
+
+   cd doc/examples/systemd-user
+   for i in *.*; do
+   install -Dm644 "$i" "${pkgdir}/usr/lib/systemd/user/$i"
+   done
+}

Copied: gnupg/repos/testing-i686/install (from rev 282992, gnupg/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2016-12-10 07:03:39 UTC (rev 282993)
@@ -0,0 +1,10 @@
+post_install() {
+   # See FS#42798 and FS#47371
+   dirmngr /dev/null || true
+}
+
+post_upgrade() {
+   if [[ $(vercmp $2 2.1.13-1) = -1 ]]; then
+   echo "==> Please kill running gpg-agent and dirmngr processes 
before using this release."
+   fi
+}

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 282992, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-12-10 07:03:39 UTC (rev 282993)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.16
+pkgrel=2
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  

[arch-commits] Commit in gnupg/repos (6 files)

2016-11-20 Thread Gaëtan Bisson
Date: Monday, November 21, 2016 @ 03:34:17
  Author: bisson
Revision: 281685

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 281684, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 281684, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 281684, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 281684, gnupg/trunk/install)

-+
 testing-i686/PKGBUILD   |   61 ++
 testing-i686/install|   10 +++
 testing-x86_64/PKGBUILD |   61 ++
 testing-x86_64/install  |   10 +++
 4 files changed, 142 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 281684, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-11-21 03:34:17 UTC (rev 281685)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.16
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha1sums=('67540161c9fe289153c4a5ea60f7cdce0ef48897' 'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' "gnupg2=${pkgver}")
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   ln -s gpg2 "${pkgdir}"/usr/bin/gpg
+   ln -s gpgv2 "${pkgdir}"/usr/bin/gpgv
+   ln -s gpg2.1.gz "${pkgdir}"/usr/share/man/man1/gpg.1.gz
+}

Copied: gnupg/repos/testing-i686/install (from rev 281684, gnupg/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2016-11-21 03:34:17 UTC (rev 281685)
@@ -0,0 +1,10 @@
+post_install() {
+   # See FS#42798 and FS#47371
+   dirmngr /dev/null || true
+}
+
+post_upgrade() {
+   if [[ $(vercmp $2 2.1.13-1) = -1 ]]; then
+   echo "==> Please kill running gpg-agent and dirmngr processes 
before using this release."
+   fi
+}

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 281684, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-11-21 03:34:17 UTC (rev 281685)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.16
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha1sums=('67540161c9fe289153c4a5ea60f7cdce0ef48897' 

[arch-commits] Commit in gnupg/repos (6 files)

2016-11-06 Thread Bartłomiej Piotrowski
Date: Sunday, November 6, 2016 @ 18:17:26
  Author: bpiotrowski
Revision: 279935

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  gnupg/repos/staging-i686/
  gnupg/repos/staging-i686/PKGBUILD
(from rev 279934, gnupg/trunk/PKGBUILD)
  gnupg/repos/staging-i686/install
(from rev 279934, gnupg/trunk/install)
  gnupg/repos/staging-x86_64/
  gnupg/repos/staging-x86_64/PKGBUILD
(from rev 279934, gnupg/trunk/PKGBUILD)
  gnupg/repos/staging-x86_64/install
(from rev 279934, gnupg/trunk/install)

-+
 staging-i686/PKGBUILD   |   61 ++
 staging-i686/install|   10 +++
 staging-x86_64/PKGBUILD |   61 ++
 staging-x86_64/install  |   10 +++
 4 files changed, 142 insertions(+)

Copied: gnupg/repos/staging-i686/PKGBUILD (from rev 279934, 
gnupg/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-11-06 18:17:26 UTC (rev 279935)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.15
+pkgrel=2
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha1sums=('908c86dac8e9a1fbf47e1605e570b11391b04ece' 'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' "gnupg2=${pkgver}")
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   ln -s gpg2 "${pkgdir}"/usr/bin/gpg
+   ln -s gpgv2 "${pkgdir}"/usr/bin/gpgv
+   ln -s gpg2.1.gz "${pkgdir}"/usr/share/man/man1/gpg.1.gz
+}

Copied: gnupg/repos/staging-i686/install (from rev 279934, gnupg/trunk/install)
===
--- staging-i686/install(rev 0)
+++ staging-i686/install2016-11-06 18:17:26 UTC (rev 279935)
@@ -0,0 +1,10 @@
+post_install() {
+   # See FS#42798 and FS#47371
+   dirmngr /dev/null || true
+}
+
+post_upgrade() {
+   if [[ $(vercmp $2 2.1.13-1) = -1 ]]; then
+   echo "==> Please kill running gpg-agent and dirmngr processes 
before using this release."
+   fi
+}

Copied: gnupg/repos/staging-x86_64/PKGBUILD (from rev 279934, 
gnupg/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-11-06 18:17:26 UTC (rev 279935)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.15
+pkgrel=2
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})

[arch-commits] Commit in gnupg/repos (6 files)

2016-08-18 Thread Gaëtan Bisson
Date: Friday, August 19, 2016 @ 00:49:17
  Author: bisson
Revision: 273931

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 273930, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 273930, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 273930, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 273930, gnupg/trunk/install)

-+
 testing-i686/PKGBUILD   |   61 ++
 testing-i686/install|   10 +++
 testing-x86_64/PKGBUILD |   61 ++
 testing-x86_64/install  |   10 +++
 4 files changed, 142 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 273930, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-19 00:49:17 UTC (rev 273931)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.15
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha1sums=('908c86dac8e9a1fbf47e1605e570b11391b04ece' 'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' "gnupg2=${pkgver}")
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   ln -s gpg2 "${pkgdir}"/usr/bin/gpg
+   ln -s gpgv2 "${pkgdir}"/usr/bin/gpgv
+   ln -s gpg2.1.gz "${pkgdir}"/usr/share/man/man1/gpg.1.gz
+}

Copied: gnupg/repos/testing-i686/install (from rev 273930, gnupg/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2016-08-19 00:49:17 UTC (rev 273931)
@@ -0,0 +1,10 @@
+post_install() {
+   # See FS#42798 and FS#47371
+   dirmngr /dev/null || true
+}
+
+post_upgrade() {
+   if [[ $(vercmp $2 2.1.13-1) = -1 ]]; then
+   echo "==> Please kill running gpg-agent and dirmngr processes 
before using this release."
+   fi
+}

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 273930, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-19 00:49:17 UTC (rev 273931)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.15
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha1sums=('908c86dac8e9a1fbf47e1605e570b11391b04ece' 

[arch-commits] Commit in gnupg/repos (6 files)

2016-07-14 Thread Gaëtan Bisson
Date: Friday, July 15, 2016 @ 00:29:13
  Author: bisson
Revision: 271877

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  gnupg/repos/staging-i686/
  gnupg/repos/staging-i686/PKGBUILD
(from rev 271876, gnupg/trunk/PKGBUILD)
  gnupg/repos/staging-i686/install
(from rev 271876, gnupg/trunk/install)
  gnupg/repos/staging-x86_64/
  gnupg/repos/staging-x86_64/PKGBUILD
(from rev 271876, gnupg/trunk/PKGBUILD)
  gnupg/repos/staging-x86_64/install
(from rev 271876, gnupg/trunk/install)

-+
 staging-i686/PKGBUILD   |   61 ++
 staging-i686/install|   10 +++
 staging-x86_64/PKGBUILD |   61 ++
 staging-x86_64/install  |   10 +++
 4 files changed, 142 insertions(+)

Copied: gnupg/repos/staging-i686/PKGBUILD (from rev 271876, 
gnupg/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-07-15 00:29:13 UTC (rev 271877)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.14
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha1sums=('bc7609a3a0daf0ed0efb22f77b43e82f28e20e34' 'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' "gnupg2=${pkgver}")
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   ln -s gpg2 "${pkgdir}"/usr/bin/gpg
+   ln -s gpgv2 "${pkgdir}"/usr/bin/gpgv
+   ln -s gpg2.1.gz "${pkgdir}"/usr/share/man/man1/gpg.1.gz
+}

Copied: gnupg/repos/staging-i686/install (from rev 271876, gnupg/trunk/install)
===
--- staging-i686/install(rev 0)
+++ staging-i686/install2016-07-15 00:29:13 UTC (rev 271877)
@@ -0,0 +1,10 @@
+post_install() {
+   # See FS#42798 and FS#47371
+   dirmngr /dev/null || true
+}
+
+post_upgrade() {
+   if [[ $(vercmp $2 2.1.13-1) = -1 ]]; then
+   echo "==> Please kill running gpg-agent and dirmngr processes 
before using this release."
+   fi
+}

Copied: gnupg/repos/staging-x86_64/PKGBUILD (from rev 271876, 
gnupg/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-07-15 00:29:13 UTC (rev 271877)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.14
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha1sums=('bc7609a3a0daf0ed0efb22f77b43e82f28e20e34' 

[arch-commits] Commit in gnupg/repos (6 files)

2016-06-16 Thread Gaëtan Bisson
Date: Thursday, June 16, 2016 @ 23:40:12
  Author: bisson
Revision: 270102

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 270101, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 270101, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 270101, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 270101, gnupg/trunk/install)

-+
 testing-i686/PKGBUILD   |   62 ++
 testing-i686/install|   10 +++
 testing-x86_64/PKGBUILD |   62 ++
 testing-x86_64/install  |   10 +++
 4 files changed, 144 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 270101, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-06-16 23:40:12 UTC (rev 270102)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.13
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha1sums=('6ec1ae6db7815fdbd4151fb6b0b7197b65b05d1f' 'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' "gnupg2=${pkgver}")
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   ln -s gpg2 "${pkgdir}"/usr/bin/gpg
+   ln -s gpgv2 "${pkgdir}"/usr/bin/gpgv
+   ln -s gpg2.1.gz "${pkgdir}"/usr/share/man/man1/gpg.1.gz
+   rm "${pkgdir}/usr/share/gnupg/com-certs.pem" # FS#33059
+}

Copied: gnupg/repos/testing-i686/install (from rev 270101, gnupg/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2016-06-16 23:40:12 UTC (rev 270102)
@@ -0,0 +1,10 @@
+post_install() {
+   # See FS#42798 and FS#47371
+   dirmngr /dev/null || true
+}
+
+post_upgrade() {
+   if [[ $(vercmp $2 2.1.13-1) = -1 ]]; then
+   echo "==> Please kill running gpg-agent and dirmngr processes 
before using this release."
+   fi
+}

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 270101, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-06-16 23:40:12 UTC (rev 270102)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.13
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')

[arch-commits] Commit in gnupg/repos (6 files)

2016-05-04 Thread Gaetan Bisson
Date: Thursday, May 5, 2016 @ 01:49:01
  Author: bisson
Revision: 266904

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 266903, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 266903, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 266903, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 266903, gnupg/trunk/install)

-+
 testing-i686/PKGBUILD   |   62 ++
 testing-i686/install|4 ++
 testing-x86_64/PKGBUILD |   62 ++
 testing-x86_64/install  |4 ++
 4 files changed, 132 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 266903, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-05-04 23:49:01 UTC (rev 266904)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.12
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha1sums=('3b01a35ac04277ea31cc01b4ac4e230e54b5480c' 'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' "gnupg2=${pkgver}")
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   ln -s gpg2 "${pkgdir}"/usr/bin/gpg
+   ln -s gpgv2 "${pkgdir}"/usr/bin/gpgv
+   ln -s gpg2.1.gz "${pkgdir}"/usr/share/man/man1/gpg.1.gz
+   rm "${pkgdir}/usr/share/gnupg/com-certs.pem" # FS#33059
+}

Copied: gnupg/repos/testing-i686/install (from rev 266903, gnupg/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2016-05-04 23:49:01 UTC (rev 266904)
@@ -0,0 +1,4 @@
+post_install() {
+   # See FS#42798 and FS#47371
+   dirmngr /dev/null || true
+}

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 266903, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-05-04 23:49:01 UTC (rev 266904)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.12
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha1sums=('3b01a35ac04277ea31cc01b4ac4e230e54b5480c' 'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' "gnupg2=${pkgver}")
+replaces=('dirmngr' 'gnupg2')
+

[arch-commits] Commit in gnupg/repos (6 files)

2016-01-28 Thread Gaetan Bisson
Date: Thursday, January 28, 2016 @ 22:56:50
  Author: bisson
Revision: 258683

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 258682, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 258682, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 258682, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 258682, gnupg/trunk/install)

-+
 testing-i686/PKGBUILD   |   62 ++
 testing-i686/install|   23 +
 testing-x86_64/PKGBUILD |   62 ++
 testing-x86_64/install  |   23 +
 4 files changed, 170 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 258682, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-01-28 21:56:50 UTC (rev 258683)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.11
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha1sums=('4af2032a60ff22e322b1c5b270d6d2228f59a3a3' 'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' "gnupg2=${pkgver}")
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   ln -s gpg2 "${pkgdir}"/usr/bin/gpg
+   ln -s gpgv2 "${pkgdir}"/usr/bin/gpgv
+   ln -s gpg2.1.gz "${pkgdir}"/usr/share/man/man1/gpg.1.gz
+   rm "${pkgdir}/usr/share/gnupg/com-certs.pem" # FS#33059
+}

Copied: gnupg/repos/testing-i686/install (from rev 258682, gnupg/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2016-01-28 21:56:50 UTC (rev 258683)
@@ -0,0 +1,23 @@
+info_dir=/usr/share/info
+info_files=(gnupg.info gnupg.info-1 gnupg.info-2)
+
+post_install() {
+   # See FS#42798 and FS#47371
+   dirmngr /dev/null
+
+   [ -x usr/bin/install-info ] || return 0
+   for f in ${info_files[@]}; do
+   usr/bin/install-info ${info_dir}/$f ${info_dir}/dir 2> /dev/null
+   done
+}
+
+pre_remove() {
+   [ -x usr/bin/install-info ] || return 0
+   for f in ${info_files[@]}; do
+   usr/bin/install-info --delete ${info_dir}/$f ${info_dir}/dir 2> 
/dev/null
+   done
+}
+
+post_upgrade() {
+   post_install
+}

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 258682, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-01-28 21:56:50 UTC (rev 258683)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.11
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 

[arch-commits] Commit in gnupg/repos (6 files)

2015-12-20 Thread Gaetan Bisson
Date: Monday, December 21, 2015 @ 05:49:20
  Author: bisson
Revision: 257057

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 257056, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 257056, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 257056, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 257056, gnupg/trunk/install)

-+
 testing-i686/PKGBUILD   |   62 ++
 testing-i686/install|   25 ++
 testing-x86_64/PKGBUILD |   62 ++
 testing-x86_64/install  |   25 ++
 4 files changed, 174 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 257056, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-12-21 04:49:20 UTC (rev 257057)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.10
+pkgrel=2
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha1sums=('4aa2594d2d364fe7708a9739ae7cebd251e536c4' 'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' "gnupg2=${pkgver}")
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   ln -s gpg2 "${pkgdir}"/usr/bin/gpg
+   ln -s gpgv2 "${pkgdir}"/usr/bin/gpgv
+   ln -s gpg2.1.gz "${pkgdir}"/usr/share/man/man1/gpg.1.gz
+   rm "${pkgdir}/usr/share/gnupg/com-certs.pem" # FS#33059
+}

Copied: gnupg/repos/testing-i686/install (from rev 257056, gnupg/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2015-12-21 04:49:20 UTC (rev 257057)
@@ -0,0 +1,25 @@
+info_dir=/usr/share/info
+info_files=(gnupg.info gnupg.info-1 gnupg.info-2)
+
+post_install() {
+   [ -x usr/bin/install-info ] || return 0
+   for f in ${info_files[@]}; do
+   usr/bin/install-info ${info_dir}/$f ${info_dir}/dir 2> /dev/null
+   done
+}
+
+pre_remove() {
+   [ -x usr/bin/install-info ] || return 0
+   for f in ${info_files[@]}; do
+   usr/bin/install-info --delete ${info_dir}/$f ${info_dir}/dir 2> 
/dev/null
+   done
+}
+
+post_upgrade() {
+   post_install
+
+   # Fix upgrade to 2.1; see FS#42798
+   [ $(vercmp $2 2.1.0-4) = -1 ] &&
+   dirmngr /dev/null ||
+   return 0
+}

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 257056, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-12-21 04:49:20 UTC (rev 257057)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.10
+pkgrel=2
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 

[arch-commits] Commit in gnupg/repos (6 files)

2015-12-04 Thread Gaetan Bisson
Date: Friday, December 4, 2015 @ 22:49:03
  Author: bisson
Revision: 252358

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  gnupg/repos/staging-i686/
  gnupg/repos/staging-i686/PKGBUILD
(from rev 252357, gnupg/trunk/PKGBUILD)
  gnupg/repos/staging-i686/install
(from rev 252357, gnupg/trunk/install)
  gnupg/repos/staging-x86_64/
  gnupg/repos/staging-x86_64/PKGBUILD
(from rev 252357, gnupg/trunk/PKGBUILD)
  gnupg/repos/staging-x86_64/install
(from rev 252357, gnupg/trunk/install)

-+
 staging-i686/PKGBUILD   |   63 ++
 staging-i686/install|   25 ++
 staging-x86_64/PKGBUILD |   63 ++
 staging-x86_64/install  |   25 ++
 4 files changed, 176 insertions(+)

Copied: gnupg/repos/staging-i686/PKGBUILD (from rev 252357, 
gnupg/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-12-04 21:49:03 UTC (rev 252358)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.10
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha1sums=('4aa2594d2d364fe7708a9739ae7cebd251e536c4' 'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' "gnupg2=${pkgver}")
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+   --enable-gpgtar \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   ln -s gpg2 "${pkgdir}"/usr/bin/gpg
+   ln -s gpgv2 "${pkgdir}"/usr/bin/gpgv
+   ln -s gpg2.1.gz "${pkgdir}"/usr/share/man/man1/gpg.1.gz
+   rm "${pkgdir}/usr/share/gnupg/com-certs.pem" # FS#33059
+}

Copied: gnupg/repos/staging-i686/install (from rev 252357, gnupg/trunk/install)
===
--- staging-i686/install(rev 0)
+++ staging-i686/install2015-12-04 21:49:03 UTC (rev 252358)
@@ -0,0 +1,25 @@
+info_dir=/usr/share/info
+info_files=(gnupg.info gnupg.info-1 gnupg.info-2)
+
+post_install() {
+   [ -x usr/bin/install-info ] || return 0
+   for f in ${info_files[@]}; do
+   usr/bin/install-info ${info_dir}/$f ${info_dir}/dir 2> /dev/null
+   done
+}
+
+pre_remove() {
+   [ -x usr/bin/install-info ] || return 0
+   for f in ${info_files[@]}; do
+   usr/bin/install-info --delete ${info_dir}/$f ${info_dir}/dir 2> 
/dev/null
+   done
+}
+
+post_upgrade() {
+   post_install
+
+   # Fix upgrade to 2.1; see FS#42798
+   [ $(vercmp $2 2.1.0-4) = -1 ] &&
+   dirmngr /dev/null ||
+   return 0
+}

Copied: gnupg/repos/staging-x86_64/PKGBUILD (from rev 252357, 
gnupg/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-12-04 21:49:03 UTC (rev 252358)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.10
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')

[arch-commits] Commit in gnupg/repos (6 files)

2015-10-10 Thread Gaetan Bisson
Date: Saturday, October 10, 2015 @ 18:34:49
  Author: bisson
Revision: 248866

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 248865, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 248865, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 248865, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 248865, gnupg/trunk/install)

-+
 testing-i686/PKGBUILD   |   63 ++
 testing-i686/install|   25 ++
 testing-x86_64/PKGBUILD |   63 ++
 testing-x86_64/install  |   25 ++
 4 files changed, 176 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 248865, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-10-10 16:34:49 UTC (rev 248866)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.9
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha1sums=('119bab38d2ff3a849be62914be9bf7333da68883' 'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' "gnupg2=${pkgver}")
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+   --enable-gpgtar \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   ln -s gpg2 "${pkgdir}"/usr/bin/gpg
+   ln -s gpgv2 "${pkgdir}"/usr/bin/gpgv
+   ln -s gpg2.1.gz "${pkgdir}"/usr/share/man/man1/gpg.1.gz
+   rm "${pkgdir}/usr/share/gnupg/com-certs.pem" # FS#33059
+}

Copied: gnupg/repos/testing-i686/install (from rev 248865, gnupg/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2015-10-10 16:34:49 UTC (rev 248866)
@@ -0,0 +1,25 @@
+info_dir=/usr/share/info
+info_files=(gnupg.info gnupg.info-1 gnupg.info-2)
+
+post_install() {
+   [ -x usr/bin/install-info ] || return 0
+   for f in ${info_files[@]}; do
+   usr/bin/install-info ${info_dir}/$f ${info_dir}/dir 2> /dev/null
+   done
+}
+
+pre_remove() {
+   [ -x usr/bin/install-info ] || return 0
+   for f in ${info_files[@]}; do
+   usr/bin/install-info --delete ${info_dir}/$f ${info_dir}/dir 2> 
/dev/null
+   done
+}
+
+post_upgrade() {
+   post_install
+
+   # Fix upgrade to 2.1; see FS#42798
+   [ $(vercmp $2 2.1.0-4) = -1 ] &&
+   dirmngr /dev/null ||
+   return 0
+}

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 248865, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-10-10 16:34:49 UTC (rev 248866)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.9
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')

[arch-commits] Commit in gnupg/repos (6 files)

2015-09-10 Thread Gaetan Bisson
Date: Thursday, September 10, 2015 @ 23:44:23
  Author: bisson
Revision: 245758

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 245757, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 245757, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 245757, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 245757, gnupg/trunk/install)

-+
 testing-i686/PKGBUILD   |   63 ++
 testing-i686/install|   25 ++
 testing-x86_64/PKGBUILD |   63 ++
 testing-x86_64/install  |   25 ++
 4 files changed, 176 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 245757, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-09-10 21:44:23 UTC (rev 245758)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.8
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha1sums=('61f5bc656dd7fddd4ab67b720d47ef0651bfb727' 'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' "gnupg2=${pkgver}")
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+   --enable-gpgtar \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   ln -s gpg2 "${pkgdir}"/usr/bin/gpg
+   ln -s gpgv2 "${pkgdir}"/usr/bin/gpgv
+   ln -s gpg2.1.gz "${pkgdir}"/usr/share/man/man1/gpg.1.gz
+   rm "${pkgdir}/usr/share/gnupg/com-certs.pem" # FS#33059
+}

Copied: gnupg/repos/testing-i686/install (from rev 245757, gnupg/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2015-09-10 21:44:23 UTC (rev 245758)
@@ -0,0 +1,25 @@
+info_dir=/usr/share/info
+info_files=(gnupg.info gnupg.info-1 gnupg.info-2)
+
+post_install() {
+   [ -x usr/bin/install-info ] || return 0
+   for f in ${info_files[@]}; do
+   usr/bin/install-info ${info_dir}/$f ${info_dir}/dir 2> /dev/null
+   done
+}
+
+pre_remove() {
+   [ -x usr/bin/install-info ] || return 0
+   for f in ${info_files[@]}; do
+   usr/bin/install-info --delete ${info_dir}/$f ${info_dir}/dir 2> 
/dev/null
+   done
+}
+
+post_upgrade() {
+   post_install
+
+   # Fix upgrade to 2.1; see FS#42798
+   [ $(vercmp $2 2.1.0-4) = -1 ] &&
+   dirmngr /dev/null ||
+   return 0
+}

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 245757, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-09-10 21:44:23 UTC (rev 245758)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.8
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 

[arch-commits] Commit in gnupg/repos (6 files)

2015-08-11 Thread Gaetan Bisson
Date: Tuesday, August 11, 2015 @ 17:05:44
  Author: bisson
Revision: 243160

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 243159, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 243159, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 243159, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 243159, gnupg/trunk/install)

-+
 testing-i686/PKGBUILD   |   63 ++
 testing-i686/install|   25 ++
 testing-x86_64/PKGBUILD |   63 ++
 testing-x86_64/install  |   25 ++
 4 files changed, 176 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 243159, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-08-11 15:05:44 UTC (rev 243160)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+# Contributor: Judd Vinet jvi...@zeroflux.org
+
+pkgname=gnupg
+pkgver=2.1.7
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha1sums=('1a345804f34a2acd05c1555e40ddfa297f38438b' 'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' gnupg2=${pkgver})
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+   --enable-gpgtar \
+
+   make
+}
+
+check() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make check
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+   ln -s gpg2 ${pkgdir}/usr/bin/gpg
+   ln -s gpgv2 ${pkgdir}/usr/bin/gpgv
+   ln -s gpg2.1.gz ${pkgdir}/usr/share/man/man1/gpg.1.gz
+   rm ${pkgdir}/usr/share/gnupg/com-certs.pem # FS#33059
+}

Copied: gnupg/repos/testing-i686/install (from rev 243159, gnupg/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2015-08-11 15:05:44 UTC (rev 243160)
@@ -0,0 +1,25 @@
+info_dir=/usr/share/info
+info_files=(gnupg.info gnupg.info-1 gnupg.info-2)
+
+post_install() {
+   [ -x usr/bin/install-info ] || return 0
+   for f in ${info_files[@]}; do
+   usr/bin/install-info ${info_dir}/$f ${info_dir}/dir 2 /dev/null
+   done
+}
+
+pre_remove() {
+   [ -x usr/bin/install-info ] || return 0
+   for f in ${info_files[@]}; do
+   usr/bin/install-info --delete ${info_dir}/$f ${info_dir}/dir 2 
/dev/null
+   done
+}
+
+post_upgrade() {
+   post_install
+
+   # Fix upgrade to 2.1; see FS#42798
+   [ $(vercmp $2 2.1.0-4) = -1 ] 
+   dirmngr /dev/null /dev/null ||
+   return 0
+}

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 243159, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-08-11 15:05:44 UTC (rev 243160)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+# Contributor: Judd Vinet jvi...@zeroflux.org
+
+pkgname=gnupg
+pkgver=2.1.7
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 

[arch-commits] Commit in gnupg/repos (6 files)

2015-07-01 Thread Gaetan Bisson
Date: Wednesday, July 1, 2015 @ 19:13:35
  Author: bisson
Revision: 241669

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 241668, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 241668, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 241668, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 241668, gnupg/trunk/install)

-+
 testing-i686/PKGBUILD   |   63 ++
 testing-i686/install|   25 ++
 testing-x86_64/PKGBUILD |   63 ++
 testing-x86_64/install  |   25 ++
 4 files changed, 176 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 241668, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-07-01 17:13:35 UTC (rev 241669)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+# Contributor: Judd Vinet jvi...@zeroflux.org
+
+pkgname=gnupg
+pkgver=2.1.6
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha1sums=('9e8157b3386da04760657ce3117fc4dc570c57c5' 'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' gnupg2=${pkgver})
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   sed '/noinst_SCRIPTS = gpg-zip/c bin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+   --enable-gpgtar \
+
+   make
+}
+
+check() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make check
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+   ln -s gpg2 ${pkgdir}/usr/bin/gpg
+   ln -s gpgv2 ${pkgdir}/usr/bin/gpgv
+   ln -s gpg2.1.gz ${pkgdir}/usr/share/man/man1/gpg.1.gz
+   rm ${pkgdir}/usr/share/gnupg/com-certs.pem # FS#33059
+}

Copied: gnupg/repos/testing-i686/install (from rev 241668, gnupg/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2015-07-01 17:13:35 UTC (rev 241669)
@@ -0,0 +1,25 @@
+info_dir=/usr/share/info
+info_files=(gnupg.info gnupg.info-1 gnupg.info-2)
+
+post_install() {
+   [ -x usr/bin/install-info ] || return 0
+   for f in ${info_files[@]}; do
+   usr/bin/install-info ${info_dir}/$f ${info_dir}/dir 2 /dev/null
+   done
+}
+
+pre_remove() {
+   [ -x usr/bin/install-info ] || return 0
+   for f in ${info_files[@]}; do
+   usr/bin/install-info --delete ${info_dir}/$f ${info_dir}/dir 2 
/dev/null
+   done
+}
+
+post_upgrade() {
+   post_install
+
+   # Fix upgrade to 2.1; see FS#42798
+   [ $(vercmp $2 2.1.0-4) = -1 ] 
+   dirmngr /dev/null /dev/null ||
+   return 0
+}

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 241668, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-07-01 17:13:35 UTC (rev 241669)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+# Contributor: Judd Vinet jvi...@zeroflux.org
+
+pkgname=gnupg
+pkgver=2.1.6
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 

[arch-commits] Commit in gnupg/repos (6 files)

2015-06-11 Thread Gaetan Bisson
Date: Thursday, June 11, 2015 @ 18:31:35
  Author: bisson
Revision: 240602

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 240601, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 240601, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 240601, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 240601, gnupg/trunk/install)

-+
 testing-i686/PKGBUILD   |   63 ++
 testing-i686/install|   25 ++
 testing-x86_64/PKGBUILD |   63 ++
 testing-x86_64/install  |   25 ++
 4 files changed, 176 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 240601, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-06-11 16:31:35 UTC (rev 240602)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+# Contributor: Judd Vinet jvi...@zeroflux.org
+
+pkgname=gnupg
+pkgver=2.1.5
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha1sums=('02bbe32e1ef3b06b3ae3c60c955fb767a1aa0f2f' 'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' gnupg2=${pkgver})
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   sed '/noinst_SCRIPTS = gpg-zip/c bin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+   --enable-gpgtar \
+
+   make
+}
+
+check() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make check
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+   ln -s gpg2 ${pkgdir}/usr/bin/gpg
+   ln -s gpgv2 ${pkgdir}/usr/bin/gpgv
+   ln -s gpg2.1.gz ${pkgdir}/usr/share/man/man1/gpg.1.gz
+   rm ${pkgdir}/usr/share/gnupg/com-certs.pem # FS#33059
+}

Copied: gnupg/repos/testing-i686/install (from rev 240601, gnupg/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2015-06-11 16:31:35 UTC (rev 240602)
@@ -0,0 +1,25 @@
+info_dir=/usr/share/info
+info_files=(gnupg.info gnupg.info-1 gnupg.info-2)
+
+post_install() {
+   [ -x usr/bin/install-info ] || return 0
+   for f in ${info_files[@]}; do
+   usr/bin/install-info ${info_dir}/$f ${info_dir}/dir 2 /dev/null
+   done
+}
+
+pre_remove() {
+   [ -x usr/bin/install-info ] || return 0
+   for f in ${info_files[@]}; do
+   usr/bin/install-info --delete ${info_dir}/$f ${info_dir}/dir 2 
/dev/null
+   done
+}
+
+post_upgrade() {
+   post_install
+
+   # Fix upgrade to 2.1; see FS#42798
+   [ $(vercmp $2 2.1.0-4) = -1 ] 
+   dirmngr /dev/null /dev/null ||
+   return 0
+}

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 240601, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-06-11 16:31:35 UTC (rev 240602)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+# Contributor: Judd Vinet jvi...@zeroflux.org
+
+pkgname=gnupg
+pkgver=2.1.5
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 

[arch-commits] Commit in gnupg/repos (6 files)

2015-05-12 Thread Gaetan Bisson
Date: Tuesday, May 12, 2015 @ 16:14:44
  Author: bisson
Revision: 239150

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 239149, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 239149, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 239149, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 239149, gnupg/trunk/install)

-+
 testing-i686/PKGBUILD   |   63 ++
 testing-i686/install|   25 ++
 testing-x86_64/PKGBUILD |   63 ++
 testing-x86_64/install  |   25 ++
 4 files changed, 176 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 239149, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-05-12 14:14:44 UTC (rev 239150)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+# Contributor: Judd Vinet jvi...@zeroflux.org
+
+pkgname=gnupg
+pkgver=2.1.4
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha1sums=('ad68d65c54698e3c781e17864ab5918442df155a' 'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' gnupg2=${pkgver})
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   sed '/noinst_SCRIPTS = gpg-zip/c bin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+   --enable-gpgtar \
+
+   make
+}
+
+check() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make check
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+   ln -s gpg2 ${pkgdir}/usr/bin/gpg
+   ln -s gpgv2 ${pkgdir}/usr/bin/gpgv
+   ln -s gpg2.1.gz ${pkgdir}/usr/share/man/man1/gpg.1.gz
+   rm ${pkgdir}/usr/share/gnupg/com-certs.pem # FS#33059
+}

Copied: gnupg/repos/testing-i686/install (from rev 239149, gnupg/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2015-05-12 14:14:44 UTC (rev 239150)
@@ -0,0 +1,25 @@
+info_dir=/usr/share/info
+info_files=(gnupg.info gnupg.info-1 gnupg.info-2)
+
+post_install() {
+   [ -x usr/bin/install-info ] || return 0
+   for f in ${info_files[@]}; do
+   usr/bin/install-info ${info_dir}/$f ${info_dir}/dir 2 /dev/null
+   done
+}
+
+pre_remove() {
+   [ -x usr/bin/install-info ] || return 0
+   for f in ${info_files[@]}; do
+   usr/bin/install-info --delete ${info_dir}/$f ${info_dir}/dir 2 
/dev/null
+   done
+}
+
+post_upgrade() {
+   post_install
+
+   # Fix upgrade to 2.1; see FS#42798
+   [ $(vercmp $2 2.1.0-4) = -1 ] 
+   dirmngr /dev/null /dev/null ||
+   return 0
+}

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 239149, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-05-12 14:14:44 UTC (rev 239150)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+# Contributor: Judd Vinet jvi...@zeroflux.org
+
+pkgname=gnupg
+pkgver=2.1.4
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 

[arch-commits] Commit in gnupg/repos (6 files)

2015-04-28 Thread Tobias Powalowski
Date: Tuesday, April 28, 2015 @ 16:46:22
  Author: tpowa
Revision: 238221

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 238220, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 238220, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 238220, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 238220, gnupg/trunk/install)

-+
 testing-i686/PKGBUILD   |   63 ++
 testing-i686/install|   25 ++
 testing-x86_64/PKGBUILD |   63 ++
 testing-x86_64/install  |   25 ++
 4 files changed, 176 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 238220, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-04-28 14:46:22 UTC (rev 238221)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+# Contributor: Judd Vinet jvi...@zeroflux.org
+
+pkgname=gnupg
+pkgver=2.1.3
+pkgrel=3
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha1sums=('091e69ec1ce3f0032e6b135e4da561e8d46d20a7' 'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' gnupg2=${pkgver})
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   sed '/noinst_SCRIPTS = gpg-zip/c bin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+   --enable-gpgtar \
+
+   make
+}
+
+check() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make check
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+   ln -s gpg2 ${pkgdir}/usr/bin/gpg
+   ln -s gpgv2 ${pkgdir}/usr/bin/gpgv
+   ln -s gpg2.1.gz ${pkgdir}/usr/share/man/man1/gpg.1.gz
+   rm ${pkgdir}/usr/share/gnupg/com-certs.pem # FS#33059
+}

Copied: gnupg/repos/testing-i686/install (from rev 238220, gnupg/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2015-04-28 14:46:22 UTC (rev 238221)
@@ -0,0 +1,25 @@
+info_dir=/usr/share/info
+info_files=(gnupg.info gnupg.info-1 gnupg.info-2)
+
+post_install() {
+   [ -x usr/bin/install-info ] || return 0
+   for f in ${info_files[@]}; do
+   usr/bin/install-info ${info_dir}/$f ${info_dir}/dir 2 /dev/null
+   done
+}
+
+pre_remove() {
+   [ -x usr/bin/install-info ] || return 0
+   for f in ${info_files[@]}; do
+   usr/bin/install-info --delete ${info_dir}/$f ${info_dir}/dir 2 
/dev/null
+   done
+}
+
+post_upgrade() {
+   post_install
+
+   # Fix upgrade to 2.1; see FS#42798
+   [ $(vercmp $2 2.1.0-4) = -1 ] 
+   dirmngr /dev/null /dev/null ||
+   return 0
+}

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 238220, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-04-28 14:46:22 UTC (rev 238221)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+# Contributor: Judd Vinet jvi...@zeroflux.org
+
+pkgname=gnupg
+pkgver=2.1.3
+pkgrel=3
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 

[arch-commits] Commit in gnupg/repos (6 files)

2015-04-11 Thread Gaetan Bisson
Date: Saturday, April 11, 2015 @ 23:14:43
  Author: bisson
Revision: 236277

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 236276, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 236276, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 236276, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 236276, gnupg/trunk/install)

-+
 testing-i686/PKGBUILD   |   63 ++
 testing-i686/install|   25 ++
 testing-x86_64/PKGBUILD |   63 ++
 testing-x86_64/install  |   25 ++
 4 files changed, 176 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 236276, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-04-11 21:14:43 UTC (rev 236277)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+# Contributor: Judd Vinet jvi...@zeroflux.org
+
+pkgname=gnupg
+pkgver=2.1.3
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha1sums=('091e69ec1ce3f0032e6b135e4da561e8d46d20a7' 'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' gnupg2=${pkgver})
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   sed '/noinst_SCRIPTS = gpg-zip/c bin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+   --enable-gpgtar \
+
+   make
+}
+
+check() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make check
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+   ln -s gpg2 ${pkgdir}/usr/bin/gpg
+   ln -s gpgv2 ${pkgdir}/usr/bin/gpgv
+   ln -s gpg2.1.gz ${pkgdir}/usr/share/man/man1/gpg.1.gz
+   rm ${pkgdir}/usr/share/gnupg/com-certs.pem # FS#33059
+}

Copied: gnupg/repos/testing-i686/install (from rev 236276, gnupg/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2015-04-11 21:14:43 UTC (rev 236277)
@@ -0,0 +1,25 @@
+info_dir=/usr/share/info
+info_files=(gnupg.info gnupg.info-1 gnupg.info-2)
+
+post_install() {
+   [ -x usr/bin/install-info ] || return 0
+   for f in ${info_files[@]}; do
+   usr/bin/install-info ${info_dir}/$f ${info_dir}/dir 2 /dev/null
+   done
+}
+
+pre_remove() {
+   [ -x usr/bin/install-info ] || return 0
+   for f in ${info_files[@]}; do
+   usr/bin/install-info --delete ${info_dir}/$f ${info_dir}/dir 2 
/dev/null
+   done
+}
+
+post_upgrade() {
+   post_install
+
+   # Fix upgrade to 2.1; see FS#42798
+   [ $(vercmp $2 2.1.0-4) = -1 ] 
+   dirmngr /dev/null /dev/null ||
+   return 0
+}

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 236276, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-04-11 21:14:43 UTC (rev 236277)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+# Contributor: Judd Vinet jvi...@zeroflux.org
+
+pkgname=gnupg
+pkgver=2.1.3
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 

[arch-commits] Commit in gnupg/repos (6 files)

2015-02-11 Thread Gaetan Bisson
Date: Thursday, February 12, 2015 @ 00:26:44
  Author: bisson
Revision: 231307

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 231306, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 231306, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 231306, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 231306, gnupg/trunk/install)

-+
 testing-i686/PKGBUILD   |   58 ++
 testing-i686/install|   25 +++
 testing-x86_64/PKGBUILD |   58 ++
 testing-x86_64/install  |   25 +++
 4 files changed, 166 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 231306, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-02-11 23:26:44 UTC (rev 231307)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+# Contributor: Judd Vinet jvi...@zeroflux.org
+
+pkgname=gnupg
+pkgver=2.1.2
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha1sums=('7e972cb9af47d9b8ce164dcf37fc4f32634d6cd6' 'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' gnupg2=${pkgver})
+replaces=('dirmngr' 'gnupg2')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+   --enable-gpgtar \
+
+   make
+}
+
+check() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make check
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+   ln -s gpg2 ${pkgdir}/usr/bin/gpg
+   ln -s gpgv2 ${pkgdir}/usr/bin/gpgv
+   ln -s gpg2.1.gz ${pkgdir}/usr/share/man/man1/gpg.1.gz
+   rm ${pkgdir}/usr/share/gnupg/com-certs.pem # FS#33059
+}

Copied: gnupg/repos/testing-i686/install (from rev 231306, gnupg/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2015-02-11 23:26:44 UTC (rev 231307)
@@ -0,0 +1,25 @@
+info_dir=/usr/share/info
+info_files=(gnupg.info gnupg.info-1 gnupg.info-2)
+
+post_install() {
+   [ -x usr/bin/install-info ] || return 0
+   for f in ${info_files[@]}; do
+   usr/bin/install-info ${info_dir}/$f ${info_dir}/dir 2 /dev/null
+   done
+}
+
+pre_remove() {
+   [ -x usr/bin/install-info ] || return 0
+   for f in ${info_files[@]}; do
+   usr/bin/install-info --delete ${info_dir}/$f ${info_dir}/dir 2 
/dev/null
+   done
+}
+
+post_upgrade() {
+   post_install
+
+   # Fix upgrade to 2.1; see FS#42798
+   [ $(vercmp $2 2.1.0-4) = -1 ] 
+   dirmngr /dev/null /dev/null ||
+   return 0
+}

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 231306, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-02-11 23:26:44 UTC (rev 231307)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+# Contributor: Judd Vinet jvi...@zeroflux.org
+
+pkgname=gnupg
+pkgver=2.1.2
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+

[arch-commits] Commit in gnupg/repos (6 files)

2014-12-16 Thread Gaetan Bisson
Date: Tuesday, December 16, 2014 @ 20:47:24
  Author: bisson
Revision: 227659

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 227658, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 227658, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 227658, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 227658, gnupg/trunk/install)

-+
 testing-i686/PKGBUILD   |   54 ++
 testing-i686/install|   25 +
 testing-x86_64/PKGBUILD |   54 ++
 testing-x86_64/install  |   25 +
 4 files changed, 158 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 227658, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-12-16 19:47:24 UTC (rev 227659)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+# Contributor: Judd Vinet jvi...@zeroflux.org
+
+pkgname=gnupg
+pkgver=2.1.1
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls')
+source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha1sums=('3d11fd150cf86f842d077437edb119a775c7325d' 'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' gnupg2=${pkgver})
+replaces=('dirmngr' 'gnupg2')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+   --enable-gpgtar \
+
+   make
+}
+
+check() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make check
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+   ln -s gpg2 ${pkgdir}/usr/bin/gpg
+   ln -s gpgv2 ${pkgdir}/usr/bin/gpgv
+   ln -s gpg2.1.gz ${pkgdir}/usr/share/man/man1/gpg.1.gz
+   rm ${pkgdir}/usr/share/gnupg/com-certs.pem # FS#33059
+}

Copied: gnupg/repos/testing-i686/install (from rev 227658, gnupg/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2014-12-16 19:47:24 UTC (rev 227659)
@@ -0,0 +1,25 @@
+info_dir=/usr/share/info
+info_files=(gnupg.info gnupg.info-1 gnupg.info-2)
+
+post_install() {
+   [ -x usr/bin/install-info ] || return 0
+   for f in ${info_files[@]}; do
+   usr/bin/install-info ${info_dir}/$f ${info_dir}/dir 2 /dev/null
+   done
+}
+
+pre_remove() {
+   [ -x usr/bin/install-info ] || return 0
+   for f in ${info_files[@]}; do
+   usr/bin/install-info --delete ${info_dir}/$f ${info_dir}/dir 2 
/dev/null
+   done
+}
+
+post_upgrade() {
+   post_install
+
+   # Fix upgrade to 2.1; see FS#42798
+   [ $(vercmp $2 2.1.0-4) = -1 ] 
+   dirmngr /dev/null /dev/null ||
+   return 0
+}

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 227658, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-12-16 19:47:24 UTC (rev 227659)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+# Contributor: Judd Vinet jvi...@zeroflux.org
+
+pkgname=gnupg
+pkgver=2.1.1
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls')
+source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha1sums=('3d11fd150cf86f842d077437edb119a775c7325d' 'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' gnupg2=${pkgver})
+replaces=('dirmngr' 'gnupg2')
+
+build() {
+   cd 

[arch-commits] Commit in gnupg/repos (6 files)

2014-11-10 Thread Gaetan Bisson
Date: Tuesday, November 11, 2014 @ 00:15:44
  Author: bisson
Revision: 225954

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 225951, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 225951, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 225951, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 225951, gnupg/trunk/install)

-+
 testing-i686/PKGBUILD   |   56 ++
 testing-i686/install|   20 
 testing-x86_64/PKGBUILD |   56 ++
 testing-x86_64/install  |   20 
 4 files changed, 152 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 225951, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-11-10 23:15:44 UTC (rev 225954)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+# Contributor: Judd Vinet jvi...@zeroflux.org
+
+pkgname=gnupg
+pkgver=2.1.0
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('curl: gpg2keys_curl'
+'libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('curl' 'libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline')
+source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha1sums=('2fcd0ca6889ef6cb59e3275e8411f8b7778c2f33' 'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' gnupg2=${pkgver})
+replaces=('dirmngr' 'dirmngr')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-standard-socket \
+   --enable-symcryptrun \
+   --enable-gpgtar \
+
+   make
+}
+
+check() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make check
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+   ln -s gpg2 ${pkgdir}/usr/bin/gpg
+   ln -s gpgv2 ${pkgdir}/usr/bin/gpgv
+   ln -s gpg2.1.gz ${pkgdir}/usr/share/man/man1/gpg.1.gz
+   rm ${pkgdir}/usr/share/gnupg/com-certs.pem # FS#33059
+}

Copied: gnupg/repos/testing-i686/install (from rev 225951, gnupg/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2014-11-10 23:15:44 UTC (rev 225954)
@@ -0,0 +1,20 @@
+info_dir=/usr/share/info
+info_files=(gnupg.info gnupg.info-1 gnupg.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+usr/bin/install-info ${info_dir}/$f ${info_dir}/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+usr/bin/install-info --delete ${info_dir}/$f ${info_dir}/dir 2 /dev/null
+  done
+}

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 225951, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-11-10 23:15:44 UTC (rev 225954)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+# Contributor: Judd Vinet jvi...@zeroflux.org
+
+pkgname=gnupg
+pkgver=2.1.0
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('curl: gpg2keys_curl'
+'libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('curl' 'libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline')
+source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha1sums=('2fcd0ca6889ef6cb59e3275e8411f8b7778c2f33' 'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' gnupg2=${pkgver})
+replaces=('dirmngr' 'dirmngr')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure \
+   --prefix=/usr \
+   

[arch-commits] Commit in gnupg/repos (6 files)

2012-04-19 Thread Gaetan Bisson
Date: Thursday, April 19, 2012 @ 19:08:56
  Author: bisson
Revision: 156501

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 156500, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 156500, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 156500, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 156500, gnupg/trunk/install)

-+
 testing-i686/PKGBUILD   |   47 ++
 testing-i686/install|   20 +++
 testing-x86_64/PKGBUILD |   47 ++
 testing-x86_64/install  |   20 +++
 4 files changed, 134 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 156500, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-04-19 23:08:56 UTC (rev 156501)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+# Contributor: Judd Vinet jvi...@zeroflux.org
+
+pkgname=gnupg
+pkgver=2.0.19
+pkgrel=2
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('curl: gpg2keys_curl'
+'libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon'
+'texinfo: documentation')
+makedepends=('curl' 'libldap' 'libusb-compat' 'texinfo')
+depends=('bzip2' 'libksba' 'libgcrypt' 'pth' 'libassuan' 'readline' 'pinentry' 
'dirmngr')
+source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha1sums=('190c09e6688f688fb0a5cf884d01e240d957ac1f'
+  'f6e6830610a8629b0aad69d789373bf8ca481733')
+
+install=install
+
+conflicts=('gnupg2')
+provides=(gnupg2=${pkgver})
+replaces=('gnupg2')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure --prefix=/usr --libexecdir=/usr/lib/gnupg
+   make
+}
+
+check() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make check
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+   ln -s gpg2 ${pkgdir}/usr/bin/gpg
+   ln -s gpg2 ${pkgdir}/usr/bin/gpgv
+   ln -s gpg2.1.gz ${pkgdir}/usr/share/man/man1/gpg.1.gz
+}

Copied: gnupg/repos/testing-i686/install (from rev 156500, gnupg/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2012-04-19 23:08:56 UTC (rev 156501)
@@ -0,0 +1,20 @@
+info_dir=/usr/share/info
+info_files=(gnupg.info gnupg.info-1 gnupg.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+usr/bin/install-info ${info_dir}/$f ${info_dir}/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+usr/bin/install-info --delete ${info_dir}/$f ${info_dir}/dir 2 /dev/null
+  done
+}

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 156500, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-04-19 23:08:56 UTC (rev 156501)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+# Contributor: Judd Vinet jvi...@zeroflux.org
+
+pkgname=gnupg
+pkgver=2.0.19
+pkgrel=2
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('curl: gpg2keys_curl'
+'libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon'
+'texinfo: documentation')
+makedepends=('curl' 'libldap' 'libusb-compat' 'texinfo')
+depends=('bzip2' 'libksba' 'libgcrypt' 'pth' 'libassuan' 'readline' 'pinentry' 
'dirmngr')
+source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha1sums=('190c09e6688f688fb0a5cf884d01e240d957ac1f'
+  'f6e6830610a8629b0aad69d789373bf8ca481733')
+
+install=install
+
+conflicts=('gnupg2')
+provides=(gnupg2=${pkgver})
+replaces=('gnupg2')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure --prefix=/usr --libexecdir=/usr/lib/gnupg
+   make
+}
+
+check() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make check
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+   ln -s gpg2 ${pkgdir}/usr/bin/gpg
+   

[arch-commits] Commit in gnupg/repos (6 files)

2012-03-27 Thread Gaetan Bisson
Date: Tuesday, March 27, 2012 @ 16:04:10
  Author: bisson
Revision: 154401

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 154400, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 154400, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 154400, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 154400, gnupg/trunk/install)

-+
 testing-i686/PKGBUILD   |   46 ++
 testing-i686/install|   20 
 testing-x86_64/PKGBUILD |   46 ++
 testing-x86_64/install  |   20 
 4 files changed, 132 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 154400, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-03-27 20:04:10 UTC (rev 154401)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+# Contributor: Judd Vinet jvi...@zeroflux.org
+
+pkgname=gnupg
+pkgver=2.0.19
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('curl: gpg2keys_curl'
+'libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon'
+'texinfo: documentation')
+makedepends=('curl' 'libldap' 'libusb-compat' 'texinfo')
+depends=('bzip2' 'libksba' 'libgcrypt' 'pth' 'libassuan' 'readline' 'pinentry' 
'dirmngr')
+source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha1sums=('190c09e6688f688fb0a5cf884d01e240d957ac1f'
+  'f6e6830610a8629b0aad69d789373bf8ca481733')
+
+install=install
+
+conflicts=('gnupg2')
+provides=(gnupg2=${pkgver})
+replaces=('gnupg2')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure --prefix=/usr --libexecdir=/usr/lib/gnupg
+   make
+}
+
+check() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make check
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+   ln -s gpg2 ${pkgdir}/usr/bin/gpg
+   ln -s gpg2.1.gz ${pkgdir}/usr/share/man/man1/gpg.1.gz
+}

Copied: gnupg/repos/testing-i686/install (from rev 154400, gnupg/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2012-03-27 20:04:10 UTC (rev 154401)
@@ -0,0 +1,20 @@
+info_dir=/usr/share/info
+info_files=(gnupg.info gnupg.info-1 gnupg.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+usr/bin/install-info ${info_dir}/$f ${info_dir}/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+usr/bin/install-info --delete ${info_dir}/$f ${info_dir}/dir 2 /dev/null
+  done
+}

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 154400, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-03-27 20:04:10 UTC (rev 154401)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+# Contributor: Judd Vinet jvi...@zeroflux.org
+
+pkgname=gnupg
+pkgver=2.0.19
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('curl: gpg2keys_curl'
+'libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon'
+'texinfo: documentation')
+makedepends=('curl' 'libldap' 'libusb-compat' 'texinfo')
+depends=('bzip2' 'libksba' 'libgcrypt' 'pth' 'libassuan' 'readline' 'pinentry' 
'dirmngr')
+source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha1sums=('190c09e6688f688fb0a5cf884d01e240d957ac1f'
+  'f6e6830610a8629b0aad69d789373bf8ca481733')
+
+install=install
+
+conflicts=('gnupg2')
+provides=(gnupg2=${pkgver})
+replaces=('gnupg2')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure --prefix=/usr --libexecdir=/usr/lib/gnupg
+   make
+}
+
+check() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make check
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+   ln -s gpg2 ${pkgdir}/usr/bin/gpg
+   ln -s gpg2.1.gz 

[arch-commits] Commit in gnupg/repos (6 files)

2012-03-24 Thread Gaetan Bisson
Date: Saturday, March 24, 2012 @ 09:39:37
  Author: bisson
Revision: 154236

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 154235, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/gnupg.install
(from rev 154235, gnupg/trunk/gnupg.install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 154235, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/gnupg.install
(from rev 154235, gnupg/trunk/gnupg.install)

--+
 testing-i686/PKGBUILD|   43 +
 testing-i686/gnupg.install   |   21 
 testing-x86_64/PKGBUILD  |   43 +
 testing-x86_64/gnupg.install |   21 
 4 files changed, 128 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 154235, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-03-24 13:39:37 UTC (rev 154236)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+# Contributor: Judd Vinet jvi...@zeroflux.org
+
+pkgname=gnupg
+pkgver=2.0.18
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('curl: gpg2keys_curl'
+'libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon'
+'texinfo: documentation')
+makedepends=('curl' 'libldap' 'libusb-compat' 'texinfo')
+depends=('bzip2' 'libksba' 'libgcrypt' 'pth' 'libassuan' 'readline' 'pinentry' 
'dirmngr')
+install=${pkgname}.install
+source=(ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-$pkgver.tar.bz2{,.sig})
+sha1sums=('5ec2f718760cc3121970a140aeea004b64545c46'
+  'c1b15a6c204434081e2bd8249dde233b6c88c4d0')
+
+conflicts=('gnupg2')
+provides=(gnupg2=${pkgver})
+replaces=('gnupg2')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --libexecdir=/usr/lib/gnupg
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  ln -s gpg2 ${pkgdir}/usr/bin/gpg
+}

Copied: gnupg/repos/testing-i686/gnupg.install (from rev 154235, 
gnupg/trunk/gnupg.install)
===
--- testing-i686/gnupg.install  (rev 0)
+++ testing-i686/gnupg.install  2012-03-24 13:39:37 UTC (rev 154236)
@@ -0,0 +1,21 @@
+info_dir=/usr/share/info
+info_files=(gnupg.info gnupg.info-1 gnupg.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+usr/bin/install-info ${info_dir}/$f ${info_dir}/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+usr/bin/install-info --delete ${info_dir}/$f ${info_dir}/dir 2 /dev/null
+  done
+}
+# vim:set ts=2 sw=2 et:

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 154235, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-03-24 13:39:37 UTC (rev 154236)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+# Contributor: Judd Vinet jvi...@zeroflux.org
+
+pkgname=gnupg
+pkgver=2.0.18
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('curl: gpg2keys_curl'
+'libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon'
+'texinfo: documentation')
+makedepends=('curl' 'libldap' 'libusb-compat' 'texinfo')
+depends=('bzip2' 'libksba' 'libgcrypt' 'pth' 'libassuan' 'readline' 'pinentry' 
'dirmngr')
+install=${pkgname}.install
+source=(ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-$pkgver.tar.bz2{,.sig})
+sha1sums=('5ec2f718760cc3121970a140aeea004b64545c46'
+  'c1b15a6c204434081e2bd8249dde233b6c88c4d0')
+
+conflicts=('gnupg2')
+provides=(gnupg2=${pkgver})
+replaces=('gnupg2')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --libexecdir=/usr/lib/gnupg
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  ln -s gpg2 ${pkgdir}/usr/bin/gpg
+}

Copied: gnupg/repos/testing-x86_64/gnupg.install (from rev 154235, 
gnupg/trunk/gnupg.install)
===
--- testing-x86_64/gnupg.install

[arch-commits] Commit in gnupg/repos (6 files)

2012-02-03 Thread andyrtr
Date: Friday, February 3, 2012 @ 09:51:21
  Author: andyrtr
Revision: 148532

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 148531, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/gnupg.install
(from rev 148531, gnupg/trunk/gnupg.install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 148531, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/gnupg.install
(from rev 148531, gnupg/trunk/gnupg.install)

--+
 testing-i686/PKGBUILD|   36 
 testing-i686/gnupg.install   |   21 +
 testing-x86_64/PKGBUILD  |   36 
 testing-x86_64/gnupg.install |   21 +
 4 files changed, 114 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 148531, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-02-03 14:51:21 UTC (rev 148532)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andreas Radke andyrtr at archlinux.org
+# Committer: Judd Vinet jvi...@zeroflux.org
+pkgname=gnupg
+pkgver=1.4.12
+pkgrel=1
+pkgdesc=GNU Privacy Guard - a PGP replacement tool
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('zlib' 'bzip2' 'libldap=2.4.18' 'libusb-compat' 'curl=7.16.2' 
'readline=6.0.00')
+source=(ftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt/gnupg/$pkgname-$pkgver.tar.bz2)
+install=gnupg.install
+url=http://www.gnupg.org/;
+md5sums=('ce3742e5c7912559cab7894ad8ba7f6b')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+   --libexecdir=/usr/lib \
+   --enable-noexecstack
+  make
+  #ln -s ${pkgname}-${pkgver}/scripts .. # seems obsolete now
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make -k check #All 27 tests passed
+}
+
+package () {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  
+  # fix fileconflict with gnupg2 pkg
+  rm ${pkgdir}/usr/share/man/man1/gpg-zip.1
+}

Copied: gnupg/repos/testing-i686/gnupg.install (from rev 148531, 
gnupg/trunk/gnupg.install)
===
--- testing-i686/gnupg.install  (rev 0)
+++ testing-i686/gnupg.install  2012-02-03 14:51:21 UTC (rev 148532)
@@ -0,0 +1,21 @@
+info_dir=/usr/share/info
+info_files=(gnupg1.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+usr/bin/install-info ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+usr/bin/install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2 
/dev/null
+  done
+}
+# vim:set ts=2 sw=2 et:

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 148531, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-02-03 14:51:21 UTC (rev 148532)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andreas Radke andyrtr at archlinux.org
+# Committer: Judd Vinet jvi...@zeroflux.org
+pkgname=gnupg
+pkgver=1.4.12
+pkgrel=1
+pkgdesc=GNU Privacy Guard - a PGP replacement tool
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('zlib' 'bzip2' 'libldap=2.4.18' 'libusb-compat' 'curl=7.16.2' 
'readline=6.0.00')
+source=(ftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt/gnupg/$pkgname-$pkgver.tar.bz2)
+install=gnupg.install
+url=http://www.gnupg.org/;
+md5sums=('ce3742e5c7912559cab7894ad8ba7f6b')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+   --libexecdir=/usr/lib \
+   --enable-noexecstack
+  make
+  #ln -s ${pkgname}-${pkgver}/scripts .. # seems obsolete now
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make -k check #All 27 tests passed
+}
+
+package () {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  
+  # fix fileconflict with gnupg2 pkg
+  rm ${pkgdir}/usr/share/man/man1/gpg-zip.1
+}

Copied: gnupg/repos/testing-x86_64/gnupg.install (from rev 148531, 
gnupg/trunk/gnupg.install)
===
--- testing-x86_64/gnupg.install(rev 0)
+++ testing-x86_64/gnupg.install2012-02-03 14:51:21 UTC (rev 148532)
@@ -0,0 +1,21 @@
+info_dir=/usr/share/info
+info_files=(gnupg1.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+usr/bin/install-info ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do