diff options
author | wiz <wiz@pkgsrc.org> | 2007-03-16 20:56:00 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2007-03-16 20:56:00 +0000 |
commit | a96a583588e8cc265e05c328b7f7ab38e4d93b10 (patch) | |
tree | a5f0093a6f2cc149992f226ab3a10c921f73c139 /devel/p5-Test-Simple | |
parent | 698196061c0eaf8f2a5c6430249dc2e6677daace (diff) | |
download | pkgsrc-a96a583588e8cc265e05c328b7f7ab38e4d93b10.tar.gz |
Update to 0.69:
0.69 Wed Mar 14 06:43:35 PDT 2007
Test fixes
- Minor filename compatibility fix to t/fail-more.t [rt.cpan.org 25428]
0.68 Tue Mar 13 17:27:26 PDT 2007
Bug fixes
* If your code has a $SIG{__DIE__} handler in some cases functions like
use_ok(), require_ok(), can_ok() and isa_ok() could trigger that
handler. [rt.cpan.org 23509]
- Minor improvement to TB's filehandle detection in the case of overridden
isa(). [rt.cpan.org 20890]
- Will now install as a core module in 5.6.2 which ships with Test::More.
[rt.cpan.org 25163]
New Features
- Test::Builder->is_fh() provides a way to determine if a thing
can be used as a filehandle.
Documentation improvements
- Improved the docs for $Test::Builder::Level showing the encouraged
use (increment, don't set)
- Documented the return value of Test::Builder's test methods
- Split out TB's method documentation to differenciate between test
methods (ok, is_eq...), methods useful in testing (skip, BAILOUT...)
and methods useful for building your own tests (maybe_regex...).
Test fixes
- We required too old a version of Test::Pod::Coverage. Need 1.08 and not
1.00. [rt.cpan.org 25351]
Diffstat (limited to 'devel/p5-Test-Simple')
-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 | 8 |
3 files changed, 11 insertions, 11 deletions
diff --git a/devel/p5-Test-Simple/Makefile b/devel/p5-Test-Simple/Makefile index 9e94ee18fd4..e2d7919f23f 100644 --- a/devel/p5-Test-Simple/Makefile +++ b/devel/p5-Test-Simple/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.31 2007/02/18 01:55:14 wiz Exp $ +# $NetBSD: Makefile,v 1.32 2007/03/16 20:56:00 wiz Exp $ -DISTNAME= Test-Simple-0.67 +DISTNAME= Test-Simple-0.69 PKGNAME= p5-${DISTNAME} SVR4_PKGNAME= p5tsi CATEGORIES= devel perl5 diff --git a/devel/p5-Test-Simple/distinfo b/devel/p5-Test-Simple/distinfo index dd9935fbb46..41f55c1a72d 100644 --- a/devel/p5-Test-Simple/distinfo +++ b/devel/p5-Test-Simple/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.15 2007/02/18 01:55:15 wiz Exp $ +$NetBSD: distinfo,v 1.16 2007/03/16 20:56:00 wiz Exp $ -SHA1 (Test-Simple-0.67.tar.gz) = 082e6362ac0f56e6eb0da7b72e362cb34b21c2b4 -RMD160 (Test-Simple-0.67.tar.gz) = 70c744fef4f6925b6d58287c1e3ba2209dc10193 -Size (Test-Simple-0.67.tar.gz) = 76284 bytes -SHA1 (patch-aa) = 93ec775969d78eb7645dd01359e8fbf8f62ea9f6 +SHA1 (Test-Simple-0.69.tar.gz) = adbce5ea3e77aac05869bc9cd46dcf6b6ae7e871 +RMD160 (Test-Simple-0.69.tar.gz) = 426ec6d9f9a066839bb59c4b8c77ad29181fb5bb +Size (Test-Simple-0.69.tar.gz) = 77478 bytes +SHA1 (patch-aa) = 5832298f7346346df4548088e0ba4de006846bfb diff --git a/devel/p5-Test-Simple/patches/patch-aa b/devel/p5-Test-Simple/patches/patch-aa index 314d319d869..0d99513df51 100644 --- a/devel/p5-Test-Simple/patches/patch-aa +++ b/devel/p5-Test-Simple/patches/patch-aa @@ -1,13 +1,13 @@ -$NetBSD: patch-aa,v 1.5 2007/02/18 01:55:15 wiz Exp $ +$NetBSD: patch-aa,v 1.6 2007/03/16 20:56:00 wiz Exp $ ---- Makefile.PL.orig 2006-10-24 21:13:12.000000000 +0000 +--- Makefile.PL.orig 2007-03-14 00:25:01.000000000 +0000 +++ Makefile.PL @@ -51,8 +51,6 @@ WriteMakefile( PREREQ_PM => { Test::Harness => 2.03, }, -- # Added to the core somewhere around 5.7.2. -- INSTALLDIRS => $] >= 5.00702 ? 'perl' : 'site', +- # 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') : ()), ); |