diff options
author | wiz <wiz@pkgsrc.org> | 2007-09-18 21:17:47 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2007-09-18 21:17:47 +0000 |
commit | 873fb11ae4f1be3ab0dbc1965fd62f7e00ea901f (patch) | |
tree | df5e73cee7afcda73a02dd93c93094f98522486c /devel | |
parent | 52d25fba0c7e2bb161c831045ef945c2c1ccce50 (diff) | |
download | pkgsrc-873fb11ae4f1be3ab0dbc1965fd62f7e00ea901f.tar.gz |
Update to 0.71:
0.71 Thu Sep 13 20:42:36 PDT 2007
Bug fixes
- Fixed a problem with BEGIN { use_ok } silently failing when there's no
plan set. [rt.cpan.org 28345] Thanks Adriano Ferreira and Yitzchak.
- Fixed an obscure problem with is_deeply() and overloading ==
[rt.cpan.org 20768]. Thanks Sisyphus.
Test fixes
- Removed dependency on Text::Soundex [rt.cpan.org 25022]
- Fixed a 5.5.x failure in fail-more.t
* Got rid of the annoying sort_bug.t test that revealed problems with some
threaded perls. It was testing the deprecated eq_* functions and not worth the
bother. Now it tests is_deeply(). [rt.cpan.org 17791]
Doc fixes
- Minor POD mistake in Test::Builder [rt.cpan.org 28869]
* Test::FAQ has been updated with some more answers.
Install fixes
- Fixed the "LICENSE is not a known MakeMaker parameter name" warning
on older MakeMakers for real this time.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/p5-Test-Simple/Makefile | 4 | ||||
-rw-r--r-- | devel/p5-Test-Simple/distinfo | 10 | ||||
-rw-r--r-- | devel/p5-Test-Simple/patches/patch-aa | 6 |
3 files changed, 10 insertions, 10 deletions
diff --git a/devel/p5-Test-Simple/Makefile b/devel/p5-Test-Simple/Makefile index b37c55a6f92..6d3ad108c70 100644 --- a/devel/p5-Test-Simple/Makefile +++ b/devel/p5-Test-Simple/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.33 2007/03/21 22:31:58 wiz Exp $ +# $NetBSD: Makefile,v 1.34 2007/09/18 21:17:47 wiz Exp $ -DISTNAME= Test-Simple-0.70 +DISTNAME= Test-Simple-0.71 PKGNAME= p5-${DISTNAME} SVR4_PKGNAME= p5tsi CATEGORIES= devel perl5 diff --git a/devel/p5-Test-Simple/distinfo b/devel/p5-Test-Simple/distinfo index addc07273aa..d2fd879cb14 100644 --- a/devel/p5-Test-Simple/distinfo +++ b/devel/p5-Test-Simple/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.17 2007/03/21 22:31:58 wiz Exp $ +$NetBSD: distinfo,v 1.18 2007/09/18 21:17:48 wiz Exp $ -SHA1 (Test-Simple-0.70.tar.gz) = d94d57df3989f69d42f987ca83592f223660b43a -RMD160 (Test-Simple-0.70.tar.gz) = 6ae8828ead11c13c1d6700040f346a1c0805330a -Size (Test-Simple-0.70.tar.gz) = 77621 bytes -SHA1 (patch-aa) = 5832298f7346346df4548088e0ba4de006846bfb +SHA1 (Test-Simple-0.71.tar.gz) = 4c4dfd420eb892a9012379546020f6ee716684c3 +RMD160 (Test-Simple-0.71.tar.gz) = 36686e6e7b665bc6c3f050c4df129f0583dc261d +Size (Test-Simple-0.71.tar.gz) = 79758 bytes +SHA1 (patch-aa) = 8fe0178fc89392f9373e088cacdfa807f02c13be diff --git a/devel/p5-Test-Simple/patches/patch-aa b/devel/p5-Test-Simple/patches/patch-aa index 0d99513df51..a6d6e598269 100644 --- a/devel/p5-Test-Simple/patches/patch-aa +++ b/devel/p5-Test-Simple/patches/patch-aa @@ -1,6 +1,6 @@ -$NetBSD: patch-aa,v 1.6 2007/03/16 20:56:00 wiz Exp $ +$NetBSD: patch-aa,v 1.7 2007/09/18 21:17:48 wiz Exp $ ---- Makefile.PL.orig 2007-03-14 00:25:01.000000000 +0000 +--- Makefile.PL.orig 2007-09-18 12:44:06.000000000 +0000 +++ Makefile.PL @@ -51,8 +51,6 @@ WriteMakefile( PREREQ_PM => { @@ -8,6 +8,6 @@ $NetBSD: patch-aa,v 1.6 2007/03/16 20:56:00 wiz Exp $ }, - # Added to the core in 5.7.3 and also 5.6.2. - INSTALLDIRS => $] >= 5.006002 ? 'perl' : 'site', - ($ExtUtils::MakeMaker::VERSION <= 6.31 ? (LICENSE => 'perl') : ()), + ($ExtUtils::MakeMaker::VERSION >= 6.31 ? (LICENSE => 'perl') : ()), ); |