summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwen <wen>2013-08-15 09:06:18 +0000
committerwen <wen>2013-08-15 09:06:18 +0000
commitdf7da9729ef949379a08c9e2a5da1c9458ea562c (patch)
tree01e930d202b615e85093321cf77c0d8787150e07
parente1bd18834d5df00ce44de3bdff8169ea2dc3656e (diff)
downloadpkgsrc-df7da9729ef949379a08c9e2a5da1c9458ea562c.tar.gz
Update to 2.14
Upstream changes: 2.14 23 Jul 2013 - quick mod to keep META.yml current 2.13 23 Jul 2013 - updated SvUPGRADE to a statement - patched for WIN64
-rw-r--r--security/p5-Crypt-Blowfish/Makefile5
-rw-r--r--security/p5-Crypt-Blowfish/distinfo9
-rw-r--r--security/p5-Crypt-Blowfish/patches/patch-Blowfish.xs17
3 files changed, 6 insertions, 25 deletions
diff --git a/security/p5-Crypt-Blowfish/Makefile b/security/p5-Crypt-Blowfish/Makefile
index 98d1db2b15b..6282106816a 100644
--- a/security/p5-Crypt-Blowfish/Makefile
+++ b/security/p5-Crypt-Blowfish/Makefile
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.25 2013/05/31 12:41:53 wiz Exp $
+# $NetBSD: Makefile,v 1.26 2013/08/15 09:06:18 wen Exp $
#
-DISTNAME= Crypt-Blowfish-2.12
+DISTNAME= Crypt-Blowfish-2.14
PKGNAME= p5-${DISTNAME}
-PKGREVISION= 4
SVR4_PKGNAME= p5cbl
CATEGORIES= security perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Crypt/}
diff --git a/security/p5-Crypt-Blowfish/distinfo b/security/p5-Crypt-Blowfish/distinfo
index 6adf1ddfbe5..797c5b9535e 100644
--- a/security/p5-Crypt-Blowfish/distinfo
+++ b/security/p5-Crypt-Blowfish/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.7 2013/06/01 11:49:07 obache Exp $
+$NetBSD: distinfo,v 1.8 2013/08/15 09:06:18 wen Exp $
-SHA1 (Crypt-Blowfish-2.12.tar.gz) = d4712fc05559f8b6aef9d901e115bba2cd368a5f
-RMD160 (Crypt-Blowfish-2.12.tar.gz) = 6ebc9fd880b6f18c9f9ea5e20e4da10a04a53a6e
-Size (Crypt-Blowfish-2.12.tar.gz) = 17895 bytes
-SHA1 (patch-Blowfish.xs) = 65b930bdbf8e9cb9c43746f1ae8742024145a2be
+SHA1 (Crypt-Blowfish-2.14.tar.gz) = 28afa047b24ece9bd2c69ba6fc155350f8a6432c
+RMD160 (Crypt-Blowfish-2.14.tar.gz) = 720210138a50fad986a6a42a274a28a020aaa2ed
+Size (Crypt-Blowfish-2.14.tar.gz) = 18006 bytes
diff --git a/security/p5-Crypt-Blowfish/patches/patch-Blowfish.xs b/security/p5-Crypt-Blowfish/patches/patch-Blowfish.xs
deleted file mode 100644
index eb6904422e7..00000000000
--- a/security/p5-Crypt-Blowfish/patches/patch-Blowfish.xs
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-Blowfish.xs,v 1.1 2013/06/01 11:49:07 obache Exp $
-
-* SvUPGRADE usage change for perl>=5.18
- https://rt.cpan.org/Public/Bug/Display.html?id=83924
-
---- Blowfish.xs.orig 2000-11-30 06:25:21.000000000 +0000
-+++ Blowfish.xs
-@@ -63,8 +63,7 @@ blowfish_crypt(input, output, ks, dir)
- output = sv_newmortal();
- output_len = 8;
-
-- if (!SvUPGRADE(output, SVt_PV))
-- croak("cannot use output argument as lvalue");
-+ (void) SvUPGRADE(output, SVt_PV);
-
- /* blowfish_crypt_8bytes(input, SvGROW(output, 8), ks, dir); */
- /* HP-UX (HP cc) fix below, thanks Addi! */