summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorsno <sno>2010-02-12 18:16:44 +0000
committersno <sno>2010-02-12 18:16:44 +0000
commit35f4460448ce8cea9c0c95caf129a409e3a318f9 (patch)
tree75fb017add7404359c525dee4e2f62a3005eb2ce /security
parent81316e496eb567294c6aecbab60c0ad8559193a9 (diff)
downloadpkgsrc-35f4460448ce8cea9c0c95caf129a409e3a318f9.tar.gz
Updating security/p5-Crypt-DSA from 1.16 to 1.16nb1
- Applying fix from RT#49668 (openssl dsaparam output format change in 1.0 beta 3 breaks Crypt::DSA::KeyChain), see https://rt.cpan.org/Ticket/Display.html?id=49668
Diffstat (limited to 'security')
-rw-r--r--security/p5-Crypt-DSA/Makefile3
-rw-r--r--security/p5-Crypt-DSA/distinfo3
-rw-r--r--security/p5-Crypt-DSA/patches/patch-aa13
3 files changed, 17 insertions, 2 deletions
diff --git a/security/p5-Crypt-DSA/Makefile b/security/p5-Crypt-DSA/Makefile
index 2e70b237b82..24c378e95a7 100644
--- a/security/p5-Crypt-DSA/Makefile
+++ b/security/p5-Crypt-DSA/Makefile
@@ -1,8 +1,9 @@
-# $NetBSD: Makefile,v 1.20 2009/09/19 22:22:34 sno Exp $
+# $NetBSD: Makefile,v 1.21 2010/02/12 18:16:44 sno Exp $
#
DISTNAME= Crypt-DSA-1.16
PKGNAME= p5-${DISTNAME}
+PKGREVISION= 1
SVR4_PKGNAME= p5dsa
CATEGORIES= security perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Crypt/}
diff --git a/security/p5-Crypt-DSA/distinfo b/security/p5-Crypt-DSA/distinfo
index cb3287f2288..061506fda72 100644
--- a/security/p5-Crypt-DSA/distinfo
+++ b/security/p5-Crypt-DSA/distinfo
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.5 2009/09/19 22:22:34 sno Exp $
+$NetBSD: distinfo,v 1.6 2010/02/12 18:16:44 sno Exp $
SHA1 (Crypt-DSA-1.16.tar.gz) = 2d82e1cb5928bde85e73ff5517ee0f66d06a09fa
RMD160 (Crypt-DSA-1.16.tar.gz) = dbad1e495baeb515e24beb04a07e98c4b6cacd17
Size (Crypt-DSA-1.16.tar.gz) = 39534 bytes
+SHA1 (patch-aa) = 7626d8828a1ca7f4b0e0dcaf7fe802fcbe41e091
diff --git a/security/p5-Crypt-DSA/patches/patch-aa b/security/p5-Crypt-DSA/patches/patch-aa
new file mode 100644
index 00000000000..0d6dbcdc4be
--- /dev/null
+++ b/security/p5-Crypt-DSA/patches/patch-aa
@@ -0,0 +1,13 @@
+$NetBSD: patch-aa,v 1.1 2010/02/12 18:16:44 sno Exp $
+
+--- lib/Crypt/DSA/KeyChain.pm.orig 2009-09-11 12:45:37.000000000 +0000
++++ lib/Crypt/DSA/KeyChain.pm
+@@ -53,7 +53,7 @@ sub generate_params {
+ my $cur_part;
+ foreach (@res) {
+ if (/^\s+(\w):\s*$/) {
+- $cur_part = $1;
++ $cur_part = lc($1);
+ next;
+ }
+ if (/^\s*((?:[0-9a-f]{2,2}:?)+)\s*$/) {