diff options
Diffstat (limited to 'devel')
-rw-r--r-- | devel/p5-Test-Unit/Makefile | 5 | ||||
-rw-r--r-- | devel/p5-Test-Unit/distinfo | 9 | ||||
-rw-r--r-- | devel/p5-Test-Unit/patches/patch-aa | 28 |
3 files changed, 6 insertions, 36 deletions
diff --git a/devel/p5-Test-Unit/Makefile b/devel/p5-Test-Unit/Makefile index bd68511fa50..8c41aeabb17 100644 --- a/devel/p5-Test-Unit/Makefile +++ b/devel/p5-Test-Unit/Makefile @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.13 2008/06/20 01:09:16 joerg Exp $ +# $NetBSD: Makefile,v 1.14 2008/07/27 17:05:08 he Exp $ -DISTNAME= Test-Unit-0.24 +DISTNAME= Test-Unit-0.25 PKGNAME= p5-${DISTNAME} SVR4_PKGNAME= p5tun -PKGREVISION= 3 CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Test/} diff --git a/devel/p5-Test-Unit/distinfo b/devel/p5-Test-Unit/distinfo index 524f8091a42..861833e13be 100644 --- a/devel/p5-Test-Unit/distinfo +++ b/devel/p5-Test-Unit/distinfo @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.3 2005/02/23 22:24:29 agc Exp $ +$NetBSD: distinfo,v 1.4 2008/07/27 17:05:08 he Exp $ -SHA1 (Test-Unit-0.24.tar.gz) = 660bc7c2e6646fe5dfb64233f572de7d2491b1d5 -RMD160 (Test-Unit-0.24.tar.gz) = 4ae6305c77d26541da69dcda2734b5de9e16f9e6 -Size (Test-Unit-0.24.tar.gz) = 76044 bytes -SHA1 (patch-aa) = 90dd5e28c0af4fb936b753d11bb1879f71d1d182 +SHA1 (Test-Unit-0.25.tar.gz) = 07f6d020f3e987de573625202b460cc8170c80fa +RMD160 (Test-Unit-0.25.tar.gz) = c5771ec693b5e1224c905ddd564c94f9277a0e79 +Size (Test-Unit-0.25.tar.gz) = 322322 bytes diff --git a/devel/p5-Test-Unit/patches/patch-aa b/devel/p5-Test-Unit/patches/patch-aa deleted file mode 100644 index ed58d058ae6..00000000000 --- a/devel/p5-Test-Unit/patches/patch-aa +++ /dev/null @@ -1,28 +0,0 @@ -$NetBSD: patch-aa,v 1.1 2004/11/30 12:08:52 wiz Exp $ - -Patch from - http://rt.cpan.org/NoAuth/Bug.html?id=2244 -with an additional fix (if .F match is first, it causes problem in timestamp -replacement). - ---- t/try_examples.t.orig 2001-12-11 16:17:11.000000000 +0100 -+++ t/try_examples.t -@@ -91,14 +91,14 @@ foreach my $e (@examples) { - $_ .= "\n" unless /\n$/; - # bin the naughty carriage returns - s/\r//g; -+ # hide things that look like CPU usage -+ s{Time:\s+[\d\.]+\s+wallclock secs \([\d\s\.]+usr\s+\+[\d\s\.]+sys\s+=[\d\s\.]+CPU\)} -+ {TIME-SUMMARY}g; - # we can't assume the order of tests will be the same -- s/^[\.F]+$/TEST-RUN-SUMMARY/sm; -+ s/^[.F]+/TEST-RUN-SUMMARY/sm; - s/::Load[0-9_]+Anonymous[0-9_]+/::LOAD_ANONYMOUS_CLASSNAME/; - # indent lines with '# ' so they're comments if the test fails - s/\n/\n# /g; -- # hide things that look like CPU usage -- s{Time:\s+[\d\.]+\s+wallclock secs \([\d\s\.]+usr\s+\+[\d\s\.]+sys\s+=[\d\s\.]+CPU\)} -- {TIME-SUMMARY}g; - } - ok($out, $guru_checked{$e}); - } else { |