summaryrefslogtreecommitdiff
path: root/security/opencdk
diff options
context:
space:
mode:
authorwiz <wiz>2007-11-29 16:35:12 +0000
committerwiz <wiz>2007-11-29 16:35:12 +0000
commitda0a5edcb89f3a8f9d4531478a1d03ad91dff38e (patch)
treedd6276504c44a424501107b26508683bdab1b2e1 /security/opencdk
parent42501dd92189a02013beb85b9acafa1ca5b0aaa6 (diff)
downloadpkgsrc-da0a5edcb89f3a8f9d4531478a1d03ad91dff38e.tar.gz
Update to 0.6.6:
Noteworthy changes in version 0.6.6 (2007-11-15) ------------------------------------------------ * Slightly adjust the stream code. The check for fflush is omitted because the return value might be undefined. This fixes a problem reported from the NetBSD team. * Don't use __inline__ in src/cipher.c (breaks on Sun CC).
Diffstat (limited to 'security/opencdk')
-rw-r--r--security/opencdk/Makefile4
-rw-r--r--security/opencdk/distinfo9
-rw-r--r--security/opencdk/patches/patch-aa15
3 files changed, 6 insertions, 22 deletions
diff --git a/security/opencdk/Makefile b/security/opencdk/Makefile
index adcfd7292f4..2cb68132c40 100644
--- a/security/opencdk/Makefile
+++ b/security/opencdk/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.29 2007/11/08 19:43:37 wiz Exp $
+# $NetBSD: Makefile,v 1.30 2007/11/29 16:35:12 wiz Exp $
-DISTNAME= opencdk-0.6.5
+DISTNAME= opencdk-0.6.6
CATEGORIES= security devel
MASTER_SITES= http://www.stud.uni-hannover.de/~twoaday/opencdk/ \
http://josefsson.org/gnutls/releases/opencdk/ \
diff --git a/security/opencdk/distinfo b/security/opencdk/distinfo
index dd6a8eee2dd..99930edbe52 100644
--- a/security/opencdk/distinfo
+++ b/security/opencdk/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.18 2007/11/08 19:43:38 wiz Exp $
+$NetBSD: distinfo,v 1.19 2007/11/29 16:35:12 wiz Exp $
-SHA1 (opencdk-0.6.5.tar.bz2) = 62d66ec8eb82bab61cb64dd022ed341653c90bb3
-RMD160 (opencdk-0.6.5.tar.bz2) = c088d2ae79c5894995dbdcf333550b57111d4e44
-Size (opencdk-0.6.5.tar.bz2) = 481673 bytes
-SHA1 (patch-aa) = 1cb44fe1abf4805fa1600bc5e7929fcad9704133
+SHA1 (opencdk-0.6.6.tar.bz2) = ad333a55632eca9b7d035d3cc5c7f0b0342cb14e
+RMD160 (opencdk-0.6.6.tar.bz2) = 22192415cdbe80d5f5338a7d24d9225ef3265639
+Size (opencdk-0.6.6.tar.bz2) = 481904 bytes
diff --git a/security/opencdk/patches/patch-aa b/security/opencdk/patches/patch-aa
deleted file mode 100644
index a3bf0f77bc8..00000000000
--- a/security/opencdk/patches/patch-aa
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-aa,v 1.5 2007/11/08 19:43:38 wiz Exp $
-
---- src/stream.c.orig 2007-05-15 15:57:14.000000000 +0200
-+++ src/stream.c
-@@ -1015,8 +1015,8 @@ stream_flush (cdk_stream_t s)
- {
- assert (s);
-
-- if (fflush (s->fp))
-- return CDK_File_Error;
-+ /* behaviour undefined if stream is not output or update */
-+ (void)fflush (s->fp);
- return 0;
- }
-