summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorwen <wen@pkgsrc.org>2013-07-25 13:47:31 +0000
committerwen <wen@pkgsrc.org>2013-07-25 13:47:31 +0000
commit7fd30301bd6de8fa5d7c3181e3e7e97f3b439f16 (patch)
tree91f63442deef3c64b0fe162fdbecb3f9d574f1b9 /security
parent4617375a47b25c09d776668afb71e5bf0aa56b3b (diff)
downloadpkgsrc-7fd30301bd6de8fa5d7c3181e3e7e97f3b439f16.tar.gz
Update to 2.07
Upstream changes: In release 2.06, SvUPGRADE was changed to a statement. In release 2.07, a minor bug in META.yml was fixed.
Diffstat (limited to 'security')
-rw-r--r--security/p5-Crypt-DES/Makefile5
-rw-r--r--security/p5-Crypt-DES/distinfo9
-rw-r--r--security/p5-Crypt-DES/patches/patch-DES.xs17
3 files changed, 6 insertions, 25 deletions
diff --git a/security/p5-Crypt-DES/Makefile b/security/p5-Crypt-DES/Makefile
index bea2c086756..7a25a66f44c 100644
--- a/security/p5-Crypt-DES/Makefile
+++ b/security/p5-Crypt-DES/Makefile
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.20 2013/05/31 12:41:53 wiz Exp $
+# $NetBSD: Makefile,v 1.21 2013/07/25 13:47:31 wen Exp $
#
-DISTNAME= Crypt-DES-2.05
+DISTNAME= Crypt-DES-2.07
PKGNAME= p5-Crypt-DES-2.05
-PKGREVISION= 5
SVR4_PKGNAME= p5des
CATEGORIES= security perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Crypt/}
diff --git a/security/p5-Crypt-DES/distinfo b/security/p5-Crypt-DES/distinfo
index 3947a9bb939..63eff59eccc 100644
--- a/security/p5-Crypt-DES/distinfo
+++ b/security/p5-Crypt-DES/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.5 2013/06/01 04:47:03 obache Exp $
+$NetBSD: distinfo,v 1.6 2013/07/25 13:47:31 wen Exp $
-SHA1 (Crypt-DES-2.05.tar.gz) = 4fce77a1f776ede8e7251af1af42f505f0e31515
-RMD160 (Crypt-DES-2.05.tar.gz) = 26fb3c923f236f6d42236cf9c40209767bbf0a35
-Size (Crypt-DES-2.05.tar.gz) = 15369 bytes
-SHA1 (patch-DES.xs) = dc5f44bd541651991afe8d3b3a3aaa5a332d73d3
+SHA1 (Crypt-DES-2.07.tar.gz) = 1fa769fa6f1dbe9781388cd9738ea93e579517df
+RMD160 (Crypt-DES-2.07.tar.gz) = 85b93aae8fbf30501ba5ed418c9c5ec054e4030a
+Size (Crypt-DES-2.07.tar.gz) = 16720 bytes
diff --git a/security/p5-Crypt-DES/patches/patch-DES.xs b/security/p5-Crypt-DES/patches/patch-DES.xs
deleted file mode 100644
index 921caba9828..00000000000
--- a/security/p5-Crypt-DES/patches/patch-DES.xs
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-DES.xs,v 1.1 2013/06/01 04:47:03 obache Exp $
-
-* fixes for perl>=5.17.8
- https://rt.cpan.org/Public/Bug/Display.html?id=82943
-
---- DES.xs.orig 2005-12-08 15:52:50.000000000 +0000
-+++ DES.xs
-@@ -64,8 +64,7 @@ _des_crypt(input, output, ks, enc_flag)
- output = sv_newmortal();
- output_len = 8;
-
-- if (!SvUPGRADE(output, SVt_PV))
-- croak("cannot use output argument as lvalue");
-+ (void) SvUPGRADE(output, SVt_PV);
-
- perl_des_crypt(input, SvGROW(output, output_len), (i32 *)ks, enc_flag);
-