summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authorsno <sno@pkgsrc.org>2012-09-13 15:27:11 +0000
committersno <sno@pkgsrc.org>2012-09-13 15:27:11 +0000
commit4dddc25585f958c349bda4540577c4301d34d95b (patch)
tree507a646b3536fcbd1491aac9701c072cb944696e /devel
parentfc78077f70288b72d76c9f8a936aca9e507451de (diff)
downloadpkgsrc-4dddc25585f958c349bda4540577c4301d34d95b.tar.gz
Updating package for CPAN module Sub::Exporter::Progressive in
devel/p5-Sub-Exporter-Progressive from 0.001003 to 0.001006. pkgsrc changes: - add patch for typo in Makefile.PL upstream changes: 0.001006 - 2012-08-27 - Handle ':all' correctly 0.001005 - 2012-08-25 - Add support for tags - Warn if defaults are not in exports - Add explicit dependency on Test::More 0.89 0.001004 - 2012-08-09 - fix skipping when Sub::Exporter isn't installed
Diffstat (limited to 'devel')
-rw-r--r--devel/p5-Sub-Exporter-Progressive/Makefile6
-rw-r--r--devel/p5-Sub-Exporter-Progressive/distinfo9
-rw-r--r--devel/p5-Sub-Exporter-Progressive/patches/patch-aa14
3 files changed, 22 insertions, 7 deletions
diff --git a/devel/p5-Sub-Exporter-Progressive/Makefile b/devel/p5-Sub-Exporter-Progressive/Makefile
index 5d75dd8f525..1085b0a0e6a 100644
--- a/devel/p5-Sub-Exporter-Progressive/Makefile
+++ b/devel/p5-Sub-Exporter-Progressive/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.1 2012/08/08 12:03:18 wen Exp $
+# $NetBSD: Makefile,v 1.2 2012/09/13 15:27:11 sno Exp $
-DISTNAME= Sub-Exporter-Progressive-0.001003
+DISTNAME= Sub-Exporter-Progressive-0.001006
PKGNAME= p5-${DISTNAME}
CATEGORIES= devel perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Sub/}
@@ -10,7 +10,7 @@ HOMEPAGE= http://search.cpan.org/dist/Sub-Exporter-Progressive/
COMMENT= Only use Sub::Exporter if you need it
LICENSE= ${PERL5_LICENSE}
-DEPENDS+= p5-Sub-Exporter>=0:../../devel/p5-Sub-Exporter
+DEPENDS+= p5-Sub-Exporter-[0-9]*:../../devel/p5-Sub-Exporter
USE_LANGUAGES= # empty
PERL5_PACKLIST= auto/Sub/Exporter/Progressive/.packlist
diff --git a/devel/p5-Sub-Exporter-Progressive/distinfo b/devel/p5-Sub-Exporter-Progressive/distinfo
index d48c02e30c3..b6798f2d358 100644
--- a/devel/p5-Sub-Exporter-Progressive/distinfo
+++ b/devel/p5-Sub-Exporter-Progressive/distinfo
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.1 2012/08/08 12:03:18 wen Exp $
+$NetBSD: distinfo,v 1.2 2012/09/13 15:27:11 sno Exp $
-SHA1 (Sub-Exporter-Progressive-0.001003.tar.gz) = 123ab0a90b789a22ffa6de86fd3fe25cecc4e32f
-RMD160 (Sub-Exporter-Progressive-0.001003.tar.gz) = 4d9ed518326316725b4cba36f8f497cdd28673c1
-Size (Sub-Exporter-Progressive-0.001003.tar.gz) = 10706 bytes
+SHA1 (Sub-Exporter-Progressive-0.001006.tar.gz) = 0cf09336f938e8bea0a7b65e8171cc38aea55f9e
+RMD160 (Sub-Exporter-Progressive-0.001006.tar.gz) = a4ef56739bdecf9861f496749ad06613b7ea691c
+Size (Sub-Exporter-Progressive-0.001006.tar.gz) = 4230 bytes
+SHA1 (patch-aa) = 37cda0883406822eb9270cc45c790a9554cf9a25
diff --git a/devel/p5-Sub-Exporter-Progressive/patches/patch-aa b/devel/p5-Sub-Exporter-Progressive/patches/patch-aa
new file mode 100644
index 00000000000..157aab69ca8
--- /dev/null
+++ b/devel/p5-Sub-Exporter-Progressive/patches/patch-aa
@@ -0,0 +1,14 @@
+$NetBSD: patch-aa,v 1.1 2012/09/13 15:27:11 sno Exp $
+# fixing module name for right .packlist location
+
+--- Makefile.PL.orig 2012-08-25 16:41:32.000000000 +0000
++++ Makefile.PL
+@@ -7,7 +7,7 @@ use ExtUtils::MakeMaker;
+ my $key = eval { ExtUtils::MakeMaker->VERSION(6.56) } ? 'BUILD_REQUIRES' : 'PREREQ_PM' ;
+
+ WriteMakefile(
+- NAME => 'Sub-Exporter-Progressive',
++ NAME => 'Sub::Exporter::Progressive',
+ VERSION_FROM => 'lib/Sub/Exporter/Progressive.pm',
+ $key => {
+ 'Test::More' => 0.89,