diff options
author | jmmv <jmmv@pkgsrc.org> | 2004-10-20 19:09:11 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2004-10-20 19:09:11 +0000 |
commit | a7e926f8f60e70651f75ddbdb143b0283c78bfaa (patch) | |
tree | 0e69d09232e183962e105061326bb4560c61bb11 /security/gpgme | |
parent | 14fd23dc227f43c71e6cd4aad232a3fc86ae5484 (diff) | |
download | pkgsrc-a7e926f8f60e70651f75ddbdb143b0283c78bfaa.tar.gz |
Update to 1.0.0:
* Version 1.0.0! We are proud to present you with a thoroughly
tested and stable version of the GPGME library. A big Thank You!
to all the people who made this possible.
The development will be branched into a stable 1.x.y series and the
head.
* The gpgme.m4 macro supports checking the API version. Just prepend
it to the required version string, separated by a colon. For
example, this release has the version "1:1.0.0". The last release
to which this version is (mostly) ABI compatible is "1:0.4.2",
which is the default required version.
Diffstat (limited to 'security/gpgme')
-rw-r--r-- | security/gpgme/Makefile | 5 | ||||
-rw-r--r-- | security/gpgme/distinfo | 7 | ||||
-rw-r--r-- | security/gpgme/patches/patch-ac | 13 |
3 files changed, 19 insertions, 6 deletions
diff --git a/security/gpgme/Makefile b/security/gpgme/Makefile index b7f74ac15e4..b0e073c7ded 100644 --- a/security/gpgme/Makefile +++ b/security/gpgme/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.21 2004/10/03 00:18:09 tv Exp $ +# $NetBSD: Makefile,v 1.22 2004/10/20 19:09:11 jmmv Exp $ # -DISTNAME= gpgme-0.9.0 -PKGREVISION= 1 +DISTNAME= gpgme-1.0.0 CATEGORIES= security MASTER_SITES= ftp://ftp.gnupg.org/gcrypt/gpgme/ \ ftp://ftp.gnupg.org/gcrypt/alpha/gpgme/ diff --git a/security/gpgme/distinfo b/security/gpgme/distinfo index 24248ae4766..c5b08a0e1f7 100644 --- a/security/gpgme/distinfo +++ b/security/gpgme/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.9 2004/08/22 17:52:26 recht Exp $ +$NetBSD: distinfo,v 1.10 2004/10/20 19:09:12 jmmv Exp $ -SHA1 (gpgme-0.9.0.tar.gz) = aba7d94689f1a747ee5a207c32c564b5c2c6afaf -Size (gpgme-0.9.0.tar.gz) = 816291 bytes +SHA1 (gpgme-1.0.0.tar.gz) = 812b66971ded42baf7828d0c6380850e7691b577 +Size (gpgme-1.0.0.tar.gz) = 810646 bytes SHA1 (patch-aa) = 27f98c23d89a0a030398e1e5cfefff84b23d2658 SHA1 (patch-ab) = d73b151c643d6ae5b2a321e58291a6b48892fd03 +SHA1 (patch-ac) = b63a3da29b94531ead9e9b2dc54d1b7e1868ad17 diff --git a/security/gpgme/patches/patch-ac b/security/gpgme/patches/patch-ac new file mode 100644 index 00000000000..64c3ff0ce74 --- /dev/null +++ b/security/gpgme/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.1 2004/10/20 19:09:12 jmmv Exp $ + +--- configure.orig 2004-09-30 04:44:16.000000000 +0200 ++++ configure +@@ -21872,7 +21872,7 @@ _ACEOF + fi + + +-if test -n "$GPGSM"; then ++if test "$GPGSM" != no; then + HAVE_GPGSM_TRUE= + HAVE_GPGSM_FALSE='#' + else |