diff options
author | Leonardo Arena <rnalrd@alpinelinux.org> | 2016-05-11 13:44:08 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2016-05-11 13:44:08 +0000 |
commit | ebbc1c16ffcfdf2a742b78dce9b90743e98ecf78 (patch) | |
tree | f81509128ec79520c021f3f1b57dc82d44fccad0 /testing/perl-xml-sax/perl-xml-sax.patch | |
parent | 750af00abb5efcca217593cd6a3d04ebbc07ade2 (diff) | |
download | aports-ebbc1c16ffcfdf2a742b78dce9b90743e98ecf78.tar.bz2 aports-ebbc1c16ffcfdf2a742b78dce9b90743e98ecf78.tar.xz |
community/perl-xml-sax: move to community
Diffstat (limited to 'testing/perl-xml-sax/perl-xml-sax.patch')
-rw-r--r-- | testing/perl-xml-sax/perl-xml-sax.patch | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/testing/perl-xml-sax/perl-xml-sax.patch b/testing/perl-xml-sax/perl-xml-sax.patch deleted file mode 100644 index 880468b8db..0000000000 --- a/testing/perl-xml-sax/perl-xml-sax.patch +++ /dev/null @@ -1,46 +0,0 @@ ---- a/Makefile.PL 2011-09-04 23:37:48.000000000 +0200 -+++ b/Makefile.PL 2011-10-07 18:12:50.000000000 +0200 -@@ -12,43 +12,3 @@ - 'XML::NamespaceSupport' => 0.03, - }, - ); -- --sub MY::install { -- package MY; -- my $script = shift->SUPER::install(@_); -- -- # Only modify existing ParserDetails.ini if user agrees -- -- my $write_ini_ok = 0; -- -- eval { require XML::SAX }; -- if ($@) { -- $write_ini_ok = 1; -- } -- else { -- 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; -- } -- else { -- $write_ini_ok = 1; -- } -- } -- -- if ($write_ini_ok) { -- $script =~ s/install :: (.*)$/install :: $1 install_sax_pureperl/m; -- $script .= <<"INSTALL"; -- --install_sax_pureperl : --\t\@\$(PERL) -MXML::SAX -e "XML::SAX->add_parser(q(XML::SAX::PurePerl))->save_parsers()" -- --INSTALL -- -- } -- -- return $script; --} -- |