From: Nicholas Clark Date: Fri, 2 Oct 2009 15:47:45 +0000 (+0100) Subject: Move Text::Soundex from ext/ to cpan/ X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=152f7782c2e5d37b72e6c1ef26ba1da3f5269fcb;p=p5sagit%2Fp5-mst-13.2.git Move Text::Soundex from ext/ to cpan/ --- diff --git a/MANIFEST b/MANIFEST index ddfb2de..8fbe55f 100644 --- a/MANIFEST +++ b/MANIFEST @@ -2314,6 +2314,11 @@ 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-Soundex/Changes Changelog for Text::Soundex +cpan/Text-Soundex/README README for Text::Soundex +cpan/Text-Soundex/Soundex.pm Text::Soundex extension Perl module +cpan/Text-Soundex/Soundex.xs Text::Soundex extension external subroutines +cpan/Text-Soundex/t/Soundex.t test for Text::Soundex 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 @@ -3037,11 +3042,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-Soundex/Changes Changelog for Text::Soundex -ext/Text-Soundex/README README for Text::Soundex -ext/Text-Soundex/Soundex.pm Text::Soundex extension Perl module -ext/Text-Soundex/Soundex.xs Text::Soundex extension external subroutines -ext/Text-Soundex/t/Soundex.t test for Text::Soundex ext/Tie-File/lib/Tie/File.pm Files as tied arrays ext/Tie-File/t/00_version.t Trivial test for Tie::File ext/Tie-File/t/01_gen.t Generic read/write tests for Tie::File diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index a0c76c6..424da6c 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -1484,7 +1484,7 @@ use File::Glob qw(:case); { 'MAINTAINER' => 'markm', 'DISTRIBUTION' => 'MARKM/Text-Soundex-3.03.tar.gz', - 'FILES' => q[ext/Text-Soundex], + 'FILES' => q[cpan/Text-Soundex], 'MAP' => { '' => 'ext/Text-Soundex/', # XXX these two files are clearly related, # but they appear to have diverged diff --git a/ext/Text-Soundex/Changes b/cpan/Text-Soundex/Changes similarity index 100% rename from ext/Text-Soundex/Changes rename to cpan/Text-Soundex/Changes diff --git a/ext/Text-Soundex/README b/cpan/Text-Soundex/README similarity index 100% rename from ext/Text-Soundex/README rename to cpan/Text-Soundex/README diff --git a/ext/Text-Soundex/Soundex.pm b/cpan/Text-Soundex/Soundex.pm similarity index 100% rename from ext/Text-Soundex/Soundex.pm rename to cpan/Text-Soundex/Soundex.pm diff --git a/ext/Text-Soundex/Soundex.xs b/cpan/Text-Soundex/Soundex.xs similarity index 100% rename from ext/Text-Soundex/Soundex.xs rename to cpan/Text-Soundex/Soundex.xs diff --git a/ext/Text-Soundex/t/Soundex.t b/cpan/Text-Soundex/t/Soundex.t similarity index 100% rename from ext/Text-Soundex/t/Soundex.t rename to cpan/Text-Soundex/t/Soundex.t