diff options
author | adam <adam@pkgsrc.org> | 2017-12-21 09:47:31 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2017-12-21 09:47:31 +0000 |
commit | 575146dcb9d7ca93e8ba28c2fb2de8372d3ca0b0 (patch) | |
tree | c8fd1f10fda44798b03c27c4a3329f7ce468e056 /security/gpgme/Makefile | |
parent | ef7d024669e1725a3b0114540c67a27641864bbe (diff) | |
download | pkgsrc-575146dcb9d7ca93e8ba28c2fb2de8372d3ca0b0.tar.gz |
gpgme: updated to 1.10.0
Noteworthy changes in version 1.10.0:
* Now returns more specific error codes for decryption to distinguish
between bad passphrase, user canceled, and no secret key.
* Now returns key origin information if available.
* Added context flag "auto-key-retrieve" to selectively enable the
corresponding gpg option.
* Added flag is_de_vs to decryption and verify results.
* py: Use SEEK_SET as default for data.seek.
* cpp: Various new APIs.
* Reduced spawn overhead on Linux again. Added new configure option
--disable-linux-getdents to disable this feature for very old
Linux versions.
* Improved the Python bindings build system.
* Made the test suite less fragile.
Diffstat (limited to 'security/gpgme/Makefile')
-rw-r--r-- | security/gpgme/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/security/gpgme/Makefile b/security/gpgme/Makefile index 39028160677..2b2f1f5d798 100644 --- a/security/gpgme/Makefile +++ b/security/gpgme/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.86 2017/08/29 12:31:35 wiz Exp $ +# $NetBSD: Makefile,v 1.87 2017/12/21 09:47:31 adam Exp $ -DISTNAME= gpgme-1.9.0 +DISTNAME= gpgme-1.10.0 CATEGORIES= security MASTER_SITES= ftp://ftp.gnupg.org/gcrypt/gpgme/ EXTRACT_SUFX= .tar.bz2 @@ -11,8 +11,8 @@ COMMENT= GnuPG Made Easy LICENSE= gnu-gpl-v2 USE_LANGUAGES+= c c++ - USE_LIBTOOL= yes +USE_TOOLS+= gmake GNU_CONFIGURE= yes PTHREAD_OPTS+= require INFO_FILES= yes @@ -26,8 +26,6 @@ SUBST_STAGE.pthread= post-patch CPPFLAGS.Darwin= -D_POSIX_C_SOURCE=200809L LIBS.SunOS+= -lnsl -lsocket -# 18 errors as of 1.9.0 -# https://dev.gnupg.org/T3056 TEST_TARGET= check #TEST_ENV+= GPGME_DEBUG=9 |