summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-12-11 02:08:20 -0800
committerroot <root@rshg054.dnsready.net>2012-12-11 02:08:20 -0800
commit37d560a05f516614c5765f171a5defb494a55acf (patch)
tree8fb8668e185033a9b8972b460d843aa6d23f829b /core
parent4aef0a374e20e36cf2bf6e779d93789d9a5791ae (diff)
Tue Dec 11 02:05:08 PST 2012
Diffstat (limited to 'core')
-rw-r--r--core/gnupg/PKGBUILD16
-rw-r--r--core/gnupg/protect-tool-env.patch28
2 files changed, 37 insertions, 7 deletions
diff --git a/core/gnupg/PKGBUILD b/core/gnupg/PKGBUILD
index cfc51b06a..24b478db1 100644
--- a/core/gnupg/PKGBUILD
+++ b/core/gnupg/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 156582 2012-04-21 09:42:46Z bisson $
+# $Id: PKGBUILD 173102 2012-12-11 00:42:05Z bisson $
# Maintainer: Gaetan Bisson <bisson@archlinux.org>
# Contributor: Tobias Powalowski <tpowa@archlinux.org>
# Contributor: Andreas Radke <andyrtr@archlinux.org>
@@ -6,20 +6,21 @@
pkgname=gnupg
pkgver=2.0.19
-pkgrel=2
+pkgrel=3
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')
+ 'libusb-compat: scdaemon')
+makedepends=('curl' 'libldap' 'libusb-compat')
depends=('bzip2' 'libksba' 'libgcrypt' 'pth' 'libassuan' 'readline' 'pinentry' 'dirmngr')
-source=("ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+source=("ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig}
+ 'protect-tool-env.patch')
sha1sums=('190c09e6688f688fb0a5cf884d01e240d957ac1f'
- 'f6e6830610a8629b0aad69d789373bf8ca481733')
+ 'f6e6830610a8629b0aad69d789373bf8ca481733'
+ '2ec97ba55ae47ff0d63bc813b8c64cb79cef11db')
install=install
@@ -29,6 +30,7 @@ replaces=('gnupg2')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
+ patch -p1 -i ../protect-tool-env.patch # FS#31900
./configure --prefix=/usr --libexecdir=/usr/lib/gnupg
make
}
diff --git a/core/gnupg/protect-tool-env.patch b/core/gnupg/protect-tool-env.patch
new file mode 100644
index 000000000..132791fdd
--- /dev/null
+++ b/core/gnupg/protect-tool-env.patch
@@ -0,0 +1,28 @@
+diff -Naur old/agent/protect-tool.c new/agent/protect-tool.c
+--- old/agent/protect-tool.c 2012-12-08 13:53:17.067611957 +1100
++++ new/agent/protect-tool.c 2012-12-08 13:53:28.247633012 +1100
+@@ -102,6 +102,7 @@
+ static int opt_status_msg;
+ static const char *opt_p12_charset;
+ static const char *opt_agent_program;
++static session_env_t opt_session_env;
+
+ static char *get_passphrase (int promptno);
+ static void release_passphrase (char *pw);
+@@ -1040,6 +1041,7 @@
+
+ opt_homedir = default_homedir ();
+
++ opt_session_env = session_env_new ();
+
+ pargs.argc = &argc;
+ pargs.argv = &argv;
+@@ -1091,7 +1093,7 @@
+ opt.verbose,
+ opt_homedir,
+ opt_agent_program,
+- NULL, NULL, NULL);
++ NULL, NULL, opt_session_env);
+
+ if (opt_prompt)
+ opt_prompt = percent_plus_unescape (opt_prompt, 0);