summaryrefslogtreecommitdiff
path: root/devel/p5-Test-Simple
diff options
context:
space:
mode:
authorwiz <wiz>2007-02-18 01:55:14 +0000
committerwiz <wiz>2007-02-18 01:55:14 +0000
commita7b9e9263693ba76d37fadac9b3e0faeff656c00 (patch)
treef5f46717e4285ca6bc0744b27bccc35dca5f4b25 /devel/p5-Test-Simple
parenta37a1e86a5dd3ec96852e041c69f4f488af75685 (diff)
downloadpkgsrc-a7b9e9263693ba76d37fadac9b3e0faeff656c00.tar.gz
Update to 0.67:
0.67 Mon Jan 22 13:27:40 PST 2007 Test fixes - t/pod_coverage.t would fail if Test::Pod::Coverage between 1.07 and 1.00 were installed as it depended on all_modules being exported. [rt.cpan.org 24483] 0.66 Sun Dec 3 15:25:45 PST 2006 - Restore 5.4.5 compatibility (unobe@cpan.org) [rt.cpan.org 20513] 0.65 Fri Nov 10 10:26:51 CST 2006 0.64_03 Sun Nov 5 13:09:55 EST 2006 - Tests will no longer warn when run against an alpha version of Test::Harness [rt.cpan.org #20501] - Now testing our POD and POD coverage. - Added a LICENSE field. - Removed warning from the docs about mixing numbered and unnumbered tests. There's nothing wrong with that. [rt.cpan.org 21358] - Change doc examples to talk about $got and $expected rather than $this and $that to correspond better to the diagnostic output [rt.cpan.org 2655] 0.64_02 Sat Sep 9 12:16:56 EDT 2006 - Last release broke Perls earlier than 5.8. 0.64_01 Mon Sep 4 04:40:42 EDT 2006 - Small improvement to the docs to avoid user confusion over "use Test::More tests => $num_tests" (Thanks Eric Wilhelm) - Minor fix for a test failure in is_deeply_fail for some Windows users. Not a real bug. [rt.cpan.org 21310] - _print_diag() accidentally leaked into the public documentation. It is a private method. * Added Test::Builder->carp() and croak() * Made most of the error messages report in the caller's context. [rt.cpan.org #20639] * Made the failure diagnostic message file and line reporting portion match Perl's for easier integration with Perl aware editors. (so its "at $file line $line_num." now) [rt.cpan.org #20639] * 5.8.0 threads are no longer supported. There's too many bugs.
Diffstat (limited to 'devel/p5-Test-Simple')
-rw-r--r--devel/p5-Test-Simple/Makefile4
-rw-r--r--devel/p5-Test-Simple/distinfo10
-rw-r--r--devel/p5-Test-Simple/patches/patch-aa14
3 files changed, 13 insertions, 15 deletions
diff --git a/devel/p5-Test-Simple/Makefile b/devel/p5-Test-Simple/Makefile
index 1be5ff34b8d..9e94ee18fd4 100644
--- a/devel/p5-Test-Simple/Makefile
+++ b/devel/p5-Test-Simple/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.30 2006/11/05 17:49:34 joerg Exp $
+# $NetBSD: Makefile,v 1.31 2007/02/18 01:55:14 wiz Exp $
-DISTNAME= Test-Simple-0.64
+DISTNAME= Test-Simple-0.67
PKGNAME= p5-${DISTNAME}
SVR4_PKGNAME= p5tsi
CATEGORIES= devel perl5
diff --git a/devel/p5-Test-Simple/distinfo b/devel/p5-Test-Simple/distinfo
index ca2bac32d3c..dd9935fbb46 100644
--- a/devel/p5-Test-Simple/distinfo
+++ b/devel/p5-Test-Simple/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.14 2006/10/21 07:38:42 obache Exp $
+$NetBSD: distinfo,v 1.15 2007/02/18 01:55:15 wiz Exp $
-SHA1 (Test-Simple-0.64.tar.gz) = f275d266712d9fe7672fd3a5e023f67886eb0ee9
-RMD160 (Test-Simple-0.64.tar.gz) = dfe88655a046b4034a592ea8bc5039771f78f098
-Size (Test-Simple-0.64.tar.gz) = 70874 bytes
-SHA1 (patch-aa) = 9a6576863bd2b544561350d64a82f5785335750d
+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
diff --git a/devel/p5-Test-Simple/patches/patch-aa b/devel/p5-Test-Simple/patches/patch-aa
index 105cd218ba7..314d319d869 100644
--- a/devel/p5-Test-Simple/patches/patch-aa
+++ b/devel/p5-Test-Simple/patches/patch-aa
@@ -1,15 +1,13 @@
-$NetBSD: patch-aa,v 1.4 2006/10/21 07:38:42 obache Exp $
+$NetBSD: patch-aa,v 1.5 2007/02/18 01:55:15 wiz Exp $
---- Makefile.PL.orig 2006-07-09 18:49:50.000000000 +0900
+--- Makefile.PL.orig 2006-10-24 21:13:12.000000000 +0000
+++ Makefile.PL
-@@ -50,9 +50,7 @@ WriteMakefile(
- VERSION_FROM => "lib/$PACKAGE_FILE.pm", # finds $VERSION
+@@ -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'
-+ }
+- INSTALLDIRS => $] >= 5.00702 ? 'perl' : 'site',
+ ($ExtUtils::MakeMaker::VERSION <= 6.31 ? (LICENSE => 'perl') : ()),
);
-