diff options
author | hiramatsu <hiramatsu@pkgsrc.org> | 2013-04-20 11:44:30 +0000 |
---|---|---|
committer | hiramatsu <hiramatsu@pkgsrc.org> | 2013-04-20 11:44:30 +0000 |
commit | c339bed548457c0455686338a476f13d69b3a16e (patch) | |
tree | b47f72da5c96d89dcadcad949885c82b00e41690 /devel/p5-Compress-Raw-Zlib | |
parent | 49b31888574099965aa3d8026fee58f7afbe8224 (diff) | |
download | pkgsrc-c339bed548457c0455686338a476f13d69b3a16e.tar.gz |
Update p5-Compress-Raw-Zlib to 2.060.
Changes from previous:
----------------------
2.060 7 January 2013
* Mention SimpleZip in POD
2.059 24 November 2012
* Copy-on-write support
[#81353]
2.058 12 November 2012
* No Changes
2.057 10 November 2012
* Compress::Raw::Zlib needs to use PERL_NO_GET_CONTEXT
[#80319]
* Install to 'site' instead of 'perl' when perl version is 5.11+
[#79812]
* update to ppport.h that includes SvPV_nomg_nolen
[#78079]
Diffstat (limited to 'devel/p5-Compress-Raw-Zlib')
-rw-r--r-- | devel/p5-Compress-Raw-Zlib/Makefile | 5 | ||||
-rw-r--r-- | devel/p5-Compress-Raw-Zlib/distinfo | 10 | ||||
-rw-r--r-- | devel/p5-Compress-Raw-Zlib/patches/patch-aa | 10 |
3 files changed, 12 insertions, 13 deletions
diff --git a/devel/p5-Compress-Raw-Zlib/Makefile b/devel/p5-Compress-Raw-Zlib/Makefile index 0892a603040..11eff33c755 100644 --- a/devel/p5-Compress-Raw-Zlib/Makefile +++ b/devel/p5-Compress-Raw-Zlib/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.27 2012/10/31 11:17:52 asau Exp $ +# $NetBSD: Makefile,v 1.28 2013/04/20 11:44:30 hiramatsu Exp $ -DISTNAME= Compress-Raw-Zlib-2.056 +DISTNAME= Compress-Raw-Zlib-2.060 PKGNAME= p5-${DISTNAME} -PKGREVISION= 1 SVR4_PKGNAME= p5crz CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Compress/} diff --git a/devel/p5-Compress-Raw-Zlib/distinfo b/devel/p5-Compress-Raw-Zlib/distinfo index f6f25ba346b..3a8c0e996c6 100644 --- a/devel/p5-Compress-Raw-Zlib/distinfo +++ b/devel/p5-Compress-Raw-Zlib/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.21 2012/09/02 12:56:00 wen Exp $ +$NetBSD: distinfo,v 1.22 2013/04/20 11:44:30 hiramatsu Exp $ -SHA1 (Compress-Raw-Zlib-2.056.tar.gz) = 0a645c9f8ff431204efa116ba1a3d85140377991 -RMD160 (Compress-Raw-Zlib-2.056.tar.gz) = c0db8b000c8d0785441df32a12091f34a674bf9f -Size (Compress-Raw-Zlib-2.056.tar.gz) = 225000 bytes -SHA1 (patch-aa) = f8baf171da4873fc309ec6c92204bf3ad5df20a6 +SHA1 (Compress-Raw-Zlib-2.060.tar.gz) = 25d03dd47a209aa280a4ce6bf815bace6471ab54 +RMD160 (Compress-Raw-Zlib-2.060.tar.gz) = a4d3d9daabf591776b78eda6dee6f88c617ba534 +Size (Compress-Raw-Zlib-2.060.tar.gz) = 236107 bytes +SHA1 (patch-aa) = 4628f37765803c74024e82893d74a14e2fd20954 diff --git a/devel/p5-Compress-Raw-Zlib/patches/patch-aa b/devel/p5-Compress-Raw-Zlib/patches/patch-aa index 971995fe543..daedfd54b27 100644 --- a/devel/p5-Compress-Raw-Zlib/patches/patch-aa +++ b/devel/p5-Compress-Raw-Zlib/patches/patch-aa @@ -1,16 +1,16 @@ -$NetBSD: patch-aa,v 1.3 2009/04/11 22:35:29 sno Exp $ +$NetBSD: patch-aa,v 1.4 2013/04/20 11:44:30 hiramatsu Exp $ Record the path to the zlib library in the executable/library. COMPILER_RPATH_FLAG is specific to pkgsrc. ---- Makefile.PL.orig 2009-03-28 23:08:40.000000000 +0000 -+++ Makefile.PL 2009-04-11 21:34:32.000000000 +0000 +--- Makefile.PL.orig 2013-04-20 17:56:07.000000000 +0900 ++++ Makefile.PL 2013-04-20 17:57:05.000000000 +0900 @@ -79,7 +79,7 @@ ( $BUILD_ZLIB ? zlib_files($ZLIB_LIB) - : (LIBS => [ "-L$ZLIB_LIB -lz " ]) -+ : (LIBS => [ "-L$ZLIB_LIB $ENV{'COMPILER_RPATH_FLAG'}$ZLIB_LIB -lz " ]) ++ : (LIBS => [ "-L$ZLIB_LIB $ENV{'COMPILER_RPATH_FLAG'}$ZLIB_LIB -lz " ]) ), - INSTALLDIRS => ($] >= 5.009 ? 'perl' : 'site'), + INSTALLDIRS => ($] >= 5.009 && $] < 5.011 ? 'perl' : 'site'), |