diff options
author | arved <arved@FreeBSD.org> | 2005-01-11 14:53:12 +0000 |
---|---|---|
committer | arved <arved@FreeBSD.org> | 2005-01-11 14:53:12 +0000 |
commit | fddf4979e38919c7b1988ac9b6c437f9f8f361bf (patch) | |
tree | 03123ebf7f984e9f115f3d3c10c84d009ead8ea3 | |
parent | 5e3de3a1b633b45b14ebed48071b0859c2360ac8 (diff) | |
download | FreeBSD-ports-fddf4979e38919c7b1988ac9b6c437f9f8f361bf.zip FreeBSD-ports-fddf4979e38919c7b1988ac9b6c437f9f8f361bf.tar.gz |
Update libgcrypt to 1.2.1. Changes:
* made the code try to lock secure memory pool not only when running as
root,
* fixed type usage in Serpent,
* made the code mix the PID into the entropy pool for better protection
after a fork,
* fixed memory leak in RSA.
* fixed alignment problems in Rijndael,
* fixed memory leak in gcry_pk_sign(),
* fixed broken pointer access in gcry_ac_open(),
* updated the documentation,
* fixed several other bugs.
Chase Shared library version and bump PORTREVISION of affected ports.
-rw-r--r-- | security/dirmngr/Makefile | 3 | ||||
-rw-r--r-- | security/gnupg-devel/Makefile | 3 | ||||
-rw-r--r-- | security/gnutls-devel/Makefile | 3 | ||||
-rw-r--r-- | security/gnutls/Makefile | 3 | ||||
-rw-r--r-- | security/gsasl/Makefile | 3 | ||||
-rw-r--r-- | security/libgcrypt/Makefile | 3 | ||||
-rw-r--r-- | security/libgcrypt/distinfo | 4 | ||||
-rw-r--r-- | security/libgcrypt/pkg-plist | 2 | ||||
-rw-r--r-- | security/libksba/Makefile | 3 | ||||
-rw-r--r-- | security/opencdk/Makefile | 3 | ||||
-rw-r--r-- | security/pinentry/Makefile | 4 | ||||
-rw-r--r-- | security/vpnc/Makefile | 3 |
12 files changed, 22 insertions, 15 deletions
diff --git a/security/dirmngr/Makefile b/security/dirmngr/Makefile index 3cc55b4..64aafe3 100644 --- a/security/dirmngr/Makefile +++ b/security/dirmngr/Makefile @@ -7,6 +7,7 @@ PORTNAME= dirmngr PORTVERSION= 0.9.0 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_GNUPG} MASTER_SITE_SUBDIR= alpha/dirmngr @@ -15,7 +16,7 @@ MAINTAINER= lofi@freebsd.org COMMENT= A client for managing and downloading certificate revocation lists BUILD_DEPENDS= ${LOCALBASE}/lib/libassuan.a:${PORTSDIR}/security/libassuan -LIB_DEPENDS= gcrypt.12:${PORTSDIR}/security/libgcrypt \ +LIB_DEPENDS= gcrypt.13:${PORTSDIR}/security/libgcrypt \ gpg-error:${PORTSDIR}/security/libgpg-error \ ksba.13:${PORTSDIR}/security/libksba \ pth:${PORTSDIR}/devel/pth diff --git a/security/gnupg-devel/Makefile b/security/gnupg-devel/Makefile index 1e40d1d..aa882ce 100644 --- a/security/gnupg-devel/Makefile +++ b/security/gnupg-devel/Makefile @@ -7,6 +7,7 @@ PORTNAME= gnupg PORTVERSION= 1.9.14 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_GNUPG} MASTER_SITE_SUBDIR= alpha/gnupg @@ -16,7 +17,7 @@ MAINTAINER= lofi@freebsd.org COMMENT= Prerelease package of GnuPG extensions for GnuPG 2.0 BUILD_DEPENDS= ${LOCALBASE}/lib/libassuan.a:${PORTSDIR}/security/libassuan -LIB_DEPENDS= gcrypt.12:${PORTSDIR}/security/libgcrypt \ +LIB_DEPENDS= gcrypt.13:${PORTSDIR}/security/libgcrypt \ ksba.13:${PORTSDIR}/security/libksba \ pth.20:${PORTSDIR}/devel/pth RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg \ diff --git a/security/gnutls-devel/Makefile b/security/gnutls-devel/Makefile index fc47c8d..ab902bd 100644 --- a/security/gnutls-devel/Makefile +++ b/security/gnutls-devel/Makefile @@ -7,6 +7,7 @@ PORTNAME= gnutls PORTVERSION= 1.1.9 +PORTREVISION= 1 CATEGORIES= security net MASTER_SITES= ${MASTER_SITE_GNUPG} \ http://www.mirrors.wiretapped.net/security/network-security/gnutls/devel/ \ @@ -18,7 +19,7 @@ PKGNAMESUFFIX= -devel MAINTAINER= sergei@FreeBSD.org COMMENT= GNU Transport Layer Security library (development version) -LIB_DEPENDS= gcrypt.12:${PORTSDIR}/security/libgcrypt \ +LIB_DEPENDS= gcrypt.13:${PORTSDIR}/security/libgcrypt \ gpg-error.1:${PORTSDIR}/security/libgpg-error \ tasn1.2:${PORTSDIR}/security/libtasn1 \ opencdk.8:${PORTSDIR}/security/opencdk diff --git a/security/gnutls/Makefile b/security/gnutls/Makefile index e934142..4d13818 100644 --- a/security/gnutls/Makefile +++ b/security/gnutls/Makefile @@ -7,6 +7,7 @@ PORTNAME= gnutls PORTVERSION= 1.0.21 +PORTREVISION= 1 CATEGORIES= security net MASTER_SITES= ${MASTER_SITE_GNUPG} \ http://www.mirrors.wiretapped.net/security/network-security/gnutls/ \ @@ -17,7 +18,7 @@ MASTER_SITE_SUBDIR= alpha/gnutls MAINTAINER= sergei@FreeBSD.org COMMENT= GNU Transport Layer Security library -LIB_DEPENDS= gcrypt.12:${PORTSDIR}/security/libgcrypt \ +LIB_DEPENDS= gcrypt.13:${PORTSDIR}/security/libgcrypt \ gpg-error.1:${PORTSDIR}/security/libgpg-error .if defined(WITH_OPENCDK) || exists(${LOCALBASE}/lib/libopencdk.so.8) diff --git a/security/gsasl/Makefile b/security/gsasl/Makefile index 26b6b28..d454e1d 100644 --- a/security/gsasl/Makefile +++ b/security/gsasl/Makefile @@ -8,6 +8,7 @@ PORTNAME= gsasl PORTVERSION= 0.2.4 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_GNU_ALPHA} \ http://josefsson.org/${PORTNAME}/releases/ @@ -17,7 +18,7 @@ MAINTAINER= krion@FreeBSD.org COMMENT= GNU SASL Library LIB_DEPENDS= idn.16:${PORTSDIR}/devel/libidn \ - gcrypt.12:${PORTSDIR}/security/libgcrypt \ + gcrypt.13:${PORTSDIR}/security/libgcrypt \ ntlm.0:${PORTSDIR}/security/libntlm USE_GNOME= gnomehack gnometarget pkgconfig diff --git a/security/libgcrypt/Makefile b/security/libgcrypt/Makefile index 8ee4418..010ec8e 100644 --- a/security/libgcrypt/Makefile +++ b/security/libgcrypt/Makefile @@ -5,8 +5,7 @@ # $FreeBSD$ PORTNAME= libgcrypt -PORTVERSION= 1.2.0 -PORTREVISION= 1 +PORTVERSION= 1.2.1 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_GNUPG} MASTER_SITE_SUBDIR= libgcrypt diff --git a/security/libgcrypt/distinfo b/security/libgcrypt/distinfo index e7147f5..9af3f59 100644 --- a/security/libgcrypt/distinfo +++ b/security/libgcrypt/distinfo @@ -1,2 +1,2 @@ -MD5 (libgcrypt-1.2.0.tar.gz) = 5c508072d8387ce17d1ab05075c2be40 -SIZE (libgcrypt-1.2.0.tar.gz) = 949159 +MD5 (libgcrypt-1.2.1.tar.gz) = 215b242586cbe85716a9198b28209f8c +SIZE (libgcrypt-1.2.1.tar.gz) = 960872 diff --git a/security/libgcrypt/pkg-plist b/security/libgcrypt/pkg-plist index 7c86318..30e3d9e 100644 --- a/security/libgcrypt/pkg-plist +++ b/security/libgcrypt/pkg-plist @@ -3,5 +3,5 @@ include/gcrypt.h include/gcrypt-module.h lib/libgcrypt.a lib/libgcrypt.so -lib/libgcrypt.so.12 +lib/libgcrypt.so.13 share/aclocal/libgcrypt.m4 diff --git a/security/libksba/Makefile b/security/libksba/Makefile index 668af99..6c3708e 100644 --- a/security/libksba/Makefile +++ b/security/libksba/Makefile @@ -6,6 +6,7 @@ PORTNAME= libksba PORTVERSION= 0.9.10 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_GNUPG} MASTER_SITE_SUBDIR= alpha/${PORTNAME} @@ -13,7 +14,7 @@ MASTER_SITE_SUBDIR= alpha/${PORTNAME} MAINTAINER= lofi@FreeBSD.org COMMENT= KSBA is an X.509 Library -LIB_DEPENDS= gcrypt.12:${PORTSDIR}/security/libgcrypt \ +LIB_DEPENDS= gcrypt.13:${PORTSDIR}/security/libgcrypt \ gpg-error.1:${PORTSDIR}/security/libgpg-error GNU_CONFIGURE= yes diff --git a/security/opencdk/Makefile b/security/opencdk/Makefile index 95d4038..29cdd67 100644 --- a/security/opencdk/Makefile +++ b/security/opencdk/Makefile @@ -7,6 +7,7 @@ PORTNAME= opencdk PORTVERSION= 0.5.5 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_GNUPG} \ @@ -18,7 +19,7 @@ MASTER_SITE_SUBDIR= alpha/gnutls/opencdk MAINTAINER= sergei@FreeBSD.org COMMENT= Open Crypto Development Kit -LIB_DEPENDS= gcrypt.12:${PORTSDIR}/security/libgcrypt +LIB_DEPENDS= gcrypt.13:${PORTSDIR}/security/libgcrypt USE_BZIP2= yes USE_LIBTOOL_VER=15 diff --git a/security/pinentry/Makefile b/security/pinentry/Makefile index ed61b2c..105351b 100644 --- a/security/pinentry/Makefile +++ b/security/pinentry/Makefile @@ -7,7 +7,7 @@ PORTNAME= pinentry PORTVERSION= 0.7.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_GNUPG} MASTER_SITE_SUBDIR= pinentry @@ -15,7 +15,7 @@ MASTER_SITE_SUBDIR= pinentry MAINTAINER= lofi@freebsd.org COMMENT?= A collection of simple PIN or passphrase entry dialogs -LIB_DEPENDS= gcrypt.12:${PORTSDIR}/security/libgcrypt \ +LIB_DEPENDS= gcrypt.13:${PORTSDIR}/security/libgcrypt \ ksba.13:${PORTSDIR}/security/libksba CONFLICTS?= pinentry-qt* pinentry-gtk* pinentry-curses* diff --git a/security/vpnc/Makefile b/security/vpnc/Makefile index 1fece9c..3c03766 100644 --- a/security/vpnc/Makefile +++ b/security/vpnc/Makefile @@ -7,6 +7,7 @@ PORTNAME= vpnc PORTVERSION= 0.3.2 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://www.unix-ag.uni-kl.de/~massar/vpnc/:source \ http://dragon.roe.ch/mirrors/distfiles/vpnc/:script @@ -16,7 +17,7 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= delta@lackas.net COMMENT= Client for Cisco 3000 VPN Concentrator -LIB_DEPENDS= gcrypt.12:${PORTSDIR}/security/libgcrypt +LIB_DEPENDS= gcrypt.13:${PORTSDIR}/security/libgcrypt STARTSCRIPT= vpnc-wrapper-1.10 USE_GMAKE= yes |