pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/security/gnupg-devel Update to 1.9.16.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/7fc27a1bad2c
branches:  trunk
changeset: 492951:7fc27a1bad2c
user:      shannonjr <shannonjr%pkgsrc.org@localhost>
date:      Sat Apr 23 12:38:05 2005 +0000

description:
Update to 1.9.16.

GnuPG 1.9 is the development version of GnuPG; it is based on some old
GnuPG 1.3 code and the previous NewPG package.  It will eventually
lead to a GnuPG 2.0 release.  Note that GnuPG 1.4 and 1.9 are not yet
in sync and thus features and bug fixes done in 1.4 are not available
in 1.9.  *Please keep on using 1.4.x for OpenPGP*; 1.9.x and 1.4.x may
be installed simultaneously.

You should use GnuPG 1.9 if you want to use the gpg-agent or gpgsm
(the S/MIME variant of gpg).  The gpg-agent is also helpful when using
the stable gpg version 1.4 (as well as the old 1.2 series).

This is mainly a bug fix release but comes with some new features as
well:

 * gpg-agent does now support the ssh-agent protocol and thus allows
   to use the pinentry as well as the OpenPGP smartcard with ssh.

 * New tool gpg-connect-agent as a general client for the gpg-agent.

 * New tool symcryptrun as a wrapper for certain encryption tools.

 * The gpg tool is not anymore build by default because those gpg
   versions available in the gnupg 1.4 series are far more matured.

diffstat:

 security/gnupg-devel/Makefile         |  15 ++++++++-------
 security/gnupg-devel/buildlink3.mk    |   3 ++-
 security/gnupg-devel/distinfo         |  16 +++++++---------
 security/gnupg-devel/patches/patch-ab |  13 -------------
 security/gnupg-devel/patches/patch-ac |  22 ----------------------
 5 files changed, 17 insertions(+), 52 deletions(-)

diffs (125 lines):

diff -r 6271d429fe53 -r 7fc27a1bad2c security/gnupg-devel/Makefile
--- a/security/gnupg-devel/Makefile     Sat Apr 23 12:28:04 2005 +0000
+++ b/security/gnupg-devel/Makefile     Sat Apr 23 12:38:05 2005 +0000
@@ -1,14 +1,15 @@
-# $NetBSD: Makefile,v 1.9 2005/04/11 21:47:11 tv Exp $
+# $NetBSD: Makefile,v 1.10 2005/04/23 12:38:05 shannonjr Exp $
 #
 
-DISTNAME=              gnupg-1.9.15
+DISTNAME=              gnupg-1.9.16
 PKGNAME=               ${DISTNAME:S/gnupg/gnupg-devel/}
 #PKGREVISION=          1
 CATEGORIES=            security
 MASTER_SITES=          ftp://ftp.gnupg.org/gcrypt/alpha/gnupg/
+EXTRACT_SUFX=          .tar.bz2
 DISTFILES=             ${DISTNAME}${EXTRACT_SUFX}
-DISTFILES+=            pth-2.0.3.tar.gz
-SITES_pth-2.0.3.tar.gz=        ${MASTER_SITE_GNU:=pth/}
+DISTFILES+=            pth-2.0.4.tar.gz
+SITES_pth-2.0.4.tar.gz=        ${MASTER_SITE_GNU:=pth/}
 
 MAINTAINER=            shannonjr%NetBSD.org@localhost
 HOMEPAGE=              ftp://ftp.gnupg.org/gcrypt/alpha/gnupg/
@@ -37,8 +38,8 @@
 
 ## If no options are specified, only gpg-agent is built. This
 ## is sufficient for OpenPGP/MIME support in Kmail
-## SMIME support is provided by gpgsm. This support is 
-## in the alpha stage of development. 
+## SMIME support is provided by gpgsm. This support is
+## in the alpha stage of development.
 PLIST_SRC=     ${.CURDIR}/PLIST
 .if empty(PKG_OPTIONS:Mgpgsm)
 CONFIGURE_ARGS+=       --enable-agent-only
@@ -50,7 +51,7 @@
 # We are building a static pth library and linking against it
 # While this is not very satisfying, gpgme hangs in it's gpgsm tests if we depend on the shared (pkgsrc) pth library
 pre-configure:
-       cd  ${WRKDIR}/pth-2.0.3 && ./configure --prefix=${WRKDIR}/pth --enable-pthread --enable-static --disable-shared && ${MAKE} install
+       cd  ${WRKDIR}/pth-2.0.4 && ./configure --prefix=${WRKDIR}/pth --enable-pthread --enable-static --disable-shared && ${MAKE} install
 
 BUILDLINK_DEPENDS.libgpg-error+=       libgpg-error>=1.0.0
 
diff -r 6271d429fe53 -r 7fc27a1bad2c security/gnupg-devel/buildlink3.mk
--- a/security/gnupg-devel/buildlink3.mk        Sat Apr 23 12:28:04 2005 +0000
+++ b/security/gnupg-devel/buildlink3.mk        Sat Apr 23 12:38:05 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.1 2004/10/23 14:46:16 shannonjr Exp $
+# $NetBSD: buildlink3.mk,v 1.2 2005/04/23 12:38:05 shannonjr Exp $
 
 BUILDLINK_DEPTH:=              ${BUILDLINK_DEPTH}+
 GNUPG_DEVEL_BUILDLINK3_MK:=    ${GNUPG_DEVEL_BUILDLINK3_MK}+
@@ -12,6 +12,7 @@
 
 .if !empty(GNUPG_DEVEL_BUILDLINK3_MK:M+)
 BUILDLINK_DEPENDS.gnupg-devel+=        gnupg-devel>=1.9.11
+BUILDLINK_RECOMMENDED.gnupg-devel+=    gnupg-devel>=1.9.16
 BUILDLINK_PKGSRCDIR.gnupg-devel?=      ../../security/gnupg-devel
 .endif # GNUPG_DEVEL_BUILDLINK3_MK
 BUILDLINK_PREFIX.gnupg-devel?= ${LOCALBASE}
diff -r 6271d429fe53 -r 7fc27a1bad2c security/gnupg-devel/distinfo
--- a/security/gnupg-devel/distinfo     Sat Apr 23 12:28:04 2005 +0000
+++ b/security/gnupg-devel/distinfo     Sat Apr 23 12:38:05 2005 +0000
@@ -1,11 +1,9 @@
-$NetBSD: distinfo,v 1.7 2005/02/24 13:10:06 agc Exp $
+$NetBSD: distinfo,v 1.8 2005/04/23 12:38:05 shannonjr Exp $
 
-SHA1 (gnupg-1.9.15.tar.gz) = a00a688dc33f1f22743eb857a16e8506f8d765d9
-RMD160 (gnupg-1.9.15.tar.gz) = 1f9da065c0ecb0bd693e449365612c0bcb79b8e9
-Size (gnupg-1.9.15.tar.gz) = 1928702 bytes
-SHA1 (pth-2.0.3.tar.gz) = c2445bcf24ce3615cfbfbd58b79bbab36542617d
-RMD160 (pth-2.0.3.tar.gz) = 27b56055897a653fe5cea1aac53d9361ffd1acc5
-Size (pth-2.0.3.tar.gz) = 639243 bytes
+SHA1 (gnupg-1.9.16.tar.bz2) = 7e470baf9a91221342af5aad57319329bf983a3a
+RMD160 (gnupg-1.9.16.tar.bz2) = 8b2edc4eb8518630f585de312ca71544664e0b35
+Size (gnupg-1.9.16.tar.bz2) = 1707356 bytes
+SHA1 (pth-2.0.4.tar.gz) = c5ee066185a042a5cf1341a0ec10bcb94a1d4c53
+RMD160 (pth-2.0.4.tar.gz) = ba78260cb8860433cd240e24e2e90dc6997943d8
+Size (pth-2.0.4.tar.gz) = 641851 bytes
 SHA1 (patch-aa) = 4fdedc1f98dbe717fd5a1229944703f19c3c10e5
-SHA1 (patch-ab) = 2bd1b553cc45ed66e3f95364058b227dfcc74be5
-SHA1 (patch-ac) = 82cae75a7fed505bf2e358d6471b85951513976c
diff -r 6271d429fe53 -r 7fc27a1bad2c security/gnupg-devel/patches/patch-ab
--- a/security/gnupg-devel/patches/patch-ab     Sat Apr 23 12:28:04 2005 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-$NetBSD: patch-ab,v 1.3 2005/01/04 13:52:01 shannonjr Exp $
-
---- common/Makefile.in.orig    2004-12-22 10:55:06.000000000 -0700
-+++ common/Makefile.in
-@@ -307,7 +307,7 @@ target_cpu = @target_cpu@
- target_os = @target_os@
- target_vendor = @target_vendor@
- noinst_LIBRARIES = libcommon.a libsimple-pwquery.a
--AM_CFLAGS = $(LIBGCRYPT_CFLAGS) $(KSBA_CFLAGS)
-+AM_CFLAGS = $(LIBGCRYPT_CFLAGS) $(KSBA_CFLAGS) $(PTH_CFLAGS)
- libcommon_a_SOURCES = \
-       util.h i18n.h \
-       errors.h \
diff -r 6271d429fe53 -r 7fc27a1bad2c security/gnupg-devel/patches/patch-ac
--- a/security/gnupg-devel/patches/patch-ac     Sat Apr 23 12:28:04 2005 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,22 +0,0 @@
-$NetBSD: patch-ac,v 1.1 2005/01/04 13:52:01 shannonjr Exp $
-
---- sm/Makefile.in.orig        2004-12-23 07:37:34.000000000 -0700
-+++ sm/Makefile.in
-@@ -133,7 +133,7 @@ DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(t
- depcomp = $(SHELL) $(top_srcdir)/scripts/depcomp
- am__depfiles_maybe = depfiles
- COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
--      $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
-+      $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) $(PTH_CFLAGS)
- CCLD = $(CC)
- LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
- SOURCES = $(gpgsm_SOURCES)
-@@ -366,7 +366,7 @@ gpgsm_SOURCES = \
- gpgsm_LDADD = ../jnlib/libjnlib.a ../kbx/libkeybox.a  \
-               ../common/libcommon.a \
-               $(LIBGCRYPT_LIBS)  $(KSBA_LIBS) $(LIBASSUAN_LIBS) -lgpg-error \
--            $(LIBINTL)
-+            $(LIBINTL) $(PTH_LIBS)
- 
- all: all-am
- 



Home | Main Index | Thread Index | Old Index