diff options
author | wiz <wiz@pkgsrc.org> | 2007-02-27 14:03:58 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2007-02-27 14:03:58 +0000 |
commit | 8e07569e83964aae9b9a43885609781ac850fae4 (patch) | |
tree | 188d52bf2fc21083918601984145b8f7961b5595 /textproc/p5-XML-SAX | |
parent | 606c0979850f595431bf0b126e11784ebcf4e813 (diff) | |
download | pkgsrc-8e07569e83964aae9b9a43885609781ac850fae4.tar.gz |
Update to 0.15:
0.15 08 Feb 2007 Grant McLean
- Fixed handling of entities in attribute values
- Cleaned up some benign warnings
0.14 23 Apr 2006 Matt Sergeant
- Fixed CDATA section parsing (Uwe Voelker)
- Fix Makefile.PL for VMS
- Support calling set_handler() mid-parse
- Fix for when random modules overload UNIVERSAL::AUTOLOAD()
- Fix case when ParserDetails.ini isn't being updated but we are doing an
upgrade.
0.13 24 Oct 2005 Matt Sergeant
- Complete re-write of XML::SAX::PurePerl for performance
- Support Encoding & XMLVersion in DocumentLocator interface
- A few conformance tweaks to match perl SAX 2.1.
Diffstat (limited to 'textproc/p5-XML-SAX')
-rw-r--r-- | textproc/p5-XML-SAX/Makefile | 5 | ||||
-rw-r--r-- | textproc/p5-XML-SAX/distinfo | 10 | ||||
-rw-r--r-- | textproc/p5-XML-SAX/patches/patch-aa | 36 |
3 files changed, 23 insertions, 28 deletions
diff --git a/textproc/p5-XML-SAX/Makefile b/textproc/p5-XML-SAX/Makefile index 2d79a4f2260..8e3d5eb8be3 100644 --- a/textproc/p5-XML-SAX/Makefile +++ b/textproc/p5-XML-SAX/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.16 2006/11/05 16:30:43 joerg Exp $ +# $NetBSD: Makefile,v 1.17 2007/02/27 14:03:58 wiz Exp $ -DISTNAME= XML-SAX-0.12 +DISTNAME= XML-SAX-0.15 PKGNAME= p5-${DISTNAME} -PKGREVISION= 3 CATEGORIES= textproc perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=XML/} diff --git a/textproc/p5-XML-SAX/distinfo b/textproc/p5-XML-SAX/distinfo index 77b552ec97b..4ef762bd096 100644 --- a/textproc/p5-XML-SAX/distinfo +++ b/textproc/p5-XML-SAX/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.4 2005/02/24 14:48:47 agc Exp $ +$NetBSD: distinfo,v 1.5 2007/02/27 14:03:58 wiz Exp $ -SHA1 (XML-SAX-0.12.tar.gz) = afb89b85ed8d95a6aa4405aa1122bf96b80f6400 -RMD160 (XML-SAX-0.12.tar.gz) = d1d7e7fa523db06cbca26cce8573068ee120fbde -Size (XML-SAX-0.12.tar.gz) = 59537 bytes -SHA1 (patch-aa) = 2ccd087404b49884c2691a4f24a7a43001e9e3fd +SHA1 (XML-SAX-0.15.tar.gz) = afd1c30a7f577d6e69f831c4f0e49df68c96eccd +RMD160 (XML-SAX-0.15.tar.gz) = 7fb288043c8328688a8557313c98e37928cb2f3d +Size (XML-SAX-0.15.tar.gz) = 59346 bytes +SHA1 (patch-aa) = 5f421c20185ffc0889b04cc412139ecd44545c0d diff --git a/textproc/p5-XML-SAX/patches/patch-aa b/textproc/p5-XML-SAX/patches/patch-aa index 620337dc15c..8c6d589ec04 100644 --- a/textproc/p5-XML-SAX/patches/patch-aa +++ b/textproc/p5-XML-SAX/patches/patch-aa @@ -1,22 +1,18 @@ -$NetBSD: patch-aa,v 1.1.1.1 2002/01/30 22:16:50 mjl Exp $ +$NetBSD: patch-aa,v 1.2 2007/02/27 14:03:58 wiz Exp $ ---- Makefile.PL.orig Tue Jan 29 07:05:23 2002 +--- Makefile.PL.orig 2006-04-24 00:14:03.000000000 +0000 +++ Makefile.PL -@@ -12,7 +12,7 @@ - sub MY::install { - package MY; - my $script = shift->SUPER::install(@_); -- if (ExtUtils::MakeMaker::prompt("Do you want XML::SAX to alter ParserDetails.ini?", "Y") =~ /^y/i) { -+# if (ExtUtils::MakeMaker::prompt("Do you want XML::SAX to alter ParserDetails.ini?", "Y") =~ /^y/i) { - $script =~ s/install :: (.*)$/install :: $1 install_sax_pureperl/m; - $script .= <<"INSTALL"; - -@@ -21,7 +21,7 @@ - - INSTALL - -- } -+# } - - return $script; - } +@@ -28,9 +28,10 @@ sub MY::install { + my $dir = File::Basename::dirname($INC{'XML/SAX.pm'}); + if (-e File::Spec->catfile($dir, 'SAX', 'ParserDetails.ini')) { + $write_ini_ok = +- ExtUtils::MakeMaker::prompt( +- "Do you want XML::SAX to alter ParserDetails.ini?", "Y" +- ) =~ /^y/i; ++ 1; ++# ExtUtils::MakeMaker::prompt( ++# "Do you want XML::SAX to alter ParserDetails.ini?", "Y" ++# ) =~ /^y/i; + } + else { + $write_ini_ok = 1; |