From: Nicholas Clark Date: Fri, 2 Oct 2009 15:39:27 +0000 (+0100) Subject: Move Text::ParseWords from ext/ to cpan/ X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=204606f4;p=p5sagit%2Fp5-mst-13.2.git Move Text::ParseWords from ext/ to cpan/ --- diff --git a/MANIFEST b/MANIFEST index ca40004..ddfb2de 100644 --- a/MANIFEST +++ b/MANIFEST @@ -2311,6 +2311,9 @@ cpan/Text-Balanced/t/06_extqlk.t See if Text::Balanced works cpan/Text-Balanced/t/07_exttag.t See if Text::Balanced works cpan/Text-Balanced/t/08_extvar.t See if Text::Balanced works cpan/Text-Balanced/t/09_gentag.t See if Text::Balanced works +cpan/Text-ParseWords/lib/Text/ParseWords.pm Perl module to split words on arbitrary delimiter +cpan/Text-ParseWords/t/ParseWords.t See if Text::ParseWords works +cpan/Text-ParseWords/t/taint.t See if Text::ParseWords works with tainting cpan/Text-Tabs/CHANGELOG ChangeLog for Tabs+Wrap cpan/Text-Tabs/lib/Text/Tabs.pm Do expand and unexpand cpan/Text-Tabs/lib/Text/Wrap.pm Paragraph formatter @@ -3034,9 +3037,6 @@ ext/Storable/t/weak.t Can Storable store weakrefs ext/Sys-Hostname/Hostname.pm Sys::Hostname extension Perl module ext/Sys-Hostname/Hostname.xs Sys::Hostname extension external subroutines ext/Sys-Hostname/t/Hostname.t See if Sys::Hostname works -ext/Text-ParseWords/lib/Text/ParseWords.pm Perl module to split words on arbitrary delimiter -ext/Text-ParseWords/t/ParseWords.t See if Text::ParseWords works -ext/Text-ParseWords/t/taint.t See if Text::ParseWords works with tainting ext/Text-Soundex/Changes Changelog for Text::Soundex ext/Text-Soundex/README README for Text::Soundex ext/Text-Soundex/Soundex.pm Text::Soundex extension Perl module diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index d35ba71..a0c76c6 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -1469,7 +1469,7 @@ use File::Glob qw(:case); { 'MAINTAINER' => 'chorny', 'DISTRIBUTION' => 'CHORNY/Text-ParseWords-3.27.zip', - 'FILES' => q[ext/Text-ParseWords], + 'FILES' => q[cpan/Text-ParseWords], 'EXCLUDED' => [ qw( t/pod.t ) ], # For the benefit of make_ext.pl, we have to have this accessible: 'MAP' => { diff --git a/ext/Text-ParseWords/lib/Text/ParseWords.pm b/cpan/Text-ParseWords/lib/Text/ParseWords.pm similarity index 100% rename from ext/Text-ParseWords/lib/Text/ParseWords.pm rename to cpan/Text-ParseWords/lib/Text/ParseWords.pm diff --git a/ext/Text-ParseWords/t/ParseWords.t b/cpan/Text-ParseWords/t/ParseWords.t similarity index 100% rename from ext/Text-ParseWords/t/ParseWords.t rename to cpan/Text-ParseWords/t/ParseWords.t diff --git a/ext/Text-ParseWords/t/taint.t b/cpan/Text-ParseWords/t/taint.t similarity index 100% rename from ext/Text-ParseWords/t/taint.t rename to cpan/Text-ParseWords/t/taint.t