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
This commit is contained in:
wen 2013-08-15 09:06:18 +00:00
parent 7cecaa3457
commit 48ce09b43e
3 changed files with 6 additions and 25 deletions

View file

@ -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/}

View file

@ -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

View file

@ -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! */