From: Fredrik Fornwall Date: Fri, 15 Apr 2016 00:48:07 +0000 (-0400) Subject: gnupg2: Make gpgconf output correctly (see #152) X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/termux-packages/commitdiff_plain/c71b9734f77500563b05bec65f5572003dc23903 gnupg2: Make gpgconf output correctly (see #152) --- diff --git a/packages/gnupg2/build.sh b/packages/gnupg2/build.sh index 7a564b6d..d6ffefaa 100755 --- a/packages/gnupg2/build.sh +++ b/packages/gnupg2/build.sh @@ -1,7 +1,7 @@ TERMUX_PKG_HOMEPAGE=http://www.gnupg.org/ TERMUX_PKG_DESCRIPTION="Implementation of the OpenPGP standard for encrypting and signing data and communication" TERMUX_PKG_VERSION=2.1.11 -TERMUX_PKG_BUILD_REVISION=1 +TERMUX_PKG_BUILD_REVISION=2 TERMUX_PKG_SRCURL=ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-${TERMUX_PKG_VERSION}.tar.bz2 TERMUX_PKG_DEPENDS="libassuan,libbz2,libgcrypt,libksba,libnpth,readline,pinentry" TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--disable-ldap --disable-sqlite" diff --git a/packages/gnupg2/tools-gpgconf.c.patch b/packages/gnupg2/tools-gpgconf.c.patch new file mode 100644 index 00000000..9b2c2835 --- /dev/null +++ b/packages/gnupg2/tools-gpgconf.c.patch @@ -0,0 +1,12 @@ +diff -u -r ../gnupg-2.1.11/tools/gpgconf.c ./tools/gpgconf.c +--- ../gnupg-2.1.11/tools/gpgconf.c 2016-01-18 02:14:56.000000000 -0500 ++++ ./tools/gpgconf.c 2016-04-14 20:06:56.058590579 -0400 +@@ -393,5 +395,8 @@ + if (es_fclose (outfp)) + gc_error (1, errno, "error closing '%s'", opt.outfile); + ++ /* XXX: Workaround for libgpg-error atexit()-callback not working. */ ++ es_fflush(NULL); ++ + return 0; + }