diff options
author | he <he> | 2008-09-10 19:40:00 +0000 |
---|---|---|
committer | he <he> | 2008-09-10 19:40:00 +0000 |
commit | f4dcefb1ece67d36060c12b85aea0ed1af77aa8f (patch) | |
tree | ded40d9d882017b0e46a5c2c333689cbe3598f41 /devel/p5-Parse-RecDescent | |
parent | a162fc015075226b6aa6fc453678365bbcccd995 (diff) | |
download | pkgsrc-f4dcefb1ece67d36060c12b85aea0ed1af77aa8f.tar.gz |
Update from 1.95.1 to 1.95.1nb1.
This adds a patch to work around problems encountered when code does
use Parse::RecDescent 1.80;
which caused an error saying that "Parse::RecDescent version 1.8
required--this is only version 1.95.1". Work around this by patching
Parse::RecDescent's VERSION setting to be 1.951.
Diffstat (limited to 'devel/p5-Parse-RecDescent')
-rw-r--r-- | devel/p5-Parse-RecDescent/Makefile | 3 | ||||
-rw-r--r-- | devel/p5-Parse-RecDescent/distinfo | 3 | ||||
-rw-r--r-- | devel/p5-Parse-RecDescent/patches/patch-aa | 13 |
3 files changed, 17 insertions, 2 deletions
diff --git a/devel/p5-Parse-RecDescent/Makefile b/devel/p5-Parse-RecDescent/Makefile index 02c9ffa172a..976a2a2b660 100644 --- a/devel/p5-Parse-RecDescent/Makefile +++ b/devel/p5-Parse-RecDescent/Makefile @@ -1,8 +1,9 @@ -# $NetBSD: Makefile,v 1.16 2008/09/10 19:31:10 he Exp $ +# $NetBSD: Makefile,v 1.17 2008/09/10 19:40:00 he Exp $ # DISTNAME= Parse-RecDescent-v1.95.1 PKGNAME= p5-${DISTNAME:S/v1/1/} +PKGREVISION= 1 CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Parse/} diff --git a/devel/p5-Parse-RecDescent/distinfo b/devel/p5-Parse-RecDescent/distinfo index 3bc9309d19c..dfb63a3e39f 100644 --- a/devel/p5-Parse-RecDescent/distinfo +++ b/devel/p5-Parse-RecDescent/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.4 2008/09/10 19:31:10 he Exp $ +$NetBSD: distinfo,v 1.5 2008/09/10 19:40:00 he Exp $ SHA1 (Parse-RecDescent-v1.95.1.tar.gz) = b4b41e1ce0647b8045ff7fca4e8eb646ed56b8e2 RMD160 (Parse-RecDescent-v1.95.1.tar.gz) = 2c3ffcdb0b62d852f2cd228a2916f9b0285757fe Size (Parse-RecDescent-v1.95.1.tar.gz) = 145524 bytes +SHA1 (patch-aa) = cc2e6aff0e3477befe638e978a4b2f914e1a642d diff --git a/devel/p5-Parse-RecDescent/patches/patch-aa b/devel/p5-Parse-RecDescent/patches/patch-aa new file mode 100644 index 00000000000..0b3e7923a66 --- /dev/null +++ b/devel/p5-Parse-RecDescent/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1 2008/09/10 19:40:00 he Exp $ + +--- lib/Parse/RecDescent.pm.orig 2007-09-29 21:06:56.000000000 +0200 ++++ lib/Parse/RecDescent.pm +@@ -1719,7 +1719,7 @@ use vars qw ( $AUTOLOAD $VERSION ); + + my $ERRORS = 0; + +-use version; $VERSION = qv('1.95.1'); ++use version; $VERSION = qv('1.951'); + + # BUILDING A PARSER + |