From: Chris Williams Date: Fri, 11 Sep 2009 12:10:30 +0000 (+0100) Subject: Moved Locale-Maketext from lib/ to ext/ X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ffde7796c71438bd9fa148cea309617217fd3982;p=p5sagit%2Fp5-mst-13.2.git Moved Locale-Maketext from lib/ to ext/ --- diff --git a/MANIFEST b/MANIFEST index 06240ed..d70d018 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1610,6 +1610,13 @@ ext/List-Util/t/sum.t List::Util ext/List-Util/t/tainted.t Scalar::Util ext/List-Util/t/weak.t Scalar::Util ext/List-Util/XS.pp List::Util +ext/Locale-Maketext/ChangeLog Locale::Maketext +ext/Locale-Maketext/lib/Locale/Maketext/GutsLoader.pm Locale::Maketext +ext/Locale-Maketext/lib/Locale/Maketext/Guts.pm Locale::Maketext +ext/Locale-Maketext/lib/Locale/Maketext.pm Locale::Maketext +ext/Locale-Maketext/lib/Locale/Maketext.pod Locale::Maketext documentation +ext/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod Locale::Maketext documentation article +ext/Locale-Maketext/README Locale::Maketext ext/Locale-Maketext-Simple/lib/Locale/Maketext/Simple.pm Locale::Simple ext/Locale-Maketext-Simple/t/0-signature.t Locale::Simple tests ext/Locale-Maketext-Simple/t/1-basic.t Locale::Simple tests @@ -1620,6 +1627,14 @@ ext/Locale-Maketext-Simple/t/po_with_i_default/fr.po Locale::Simple tests ext/Locale-Maketext-Simple/t/po_with_i_default/i_default.po Locale::Simple tests ext/Locale-Maketext-Simple/t/po_without_i_default/en.po Locale::Simple tests ext/Locale-Maketext-Simple/t/po_without_i_default/fr.po Locale::Simple tests +ext/Locale-Maketext/t/01_about_verbose.t See if Locale::Maketext works +ext/Locale-Maketext/t/10_make.t See if Locale::Maketext works +ext/Locale-Maketext/t/20_get.t See if Locale::Maketext works +ext/Locale-Maketext/t/30_local.t See if Locale::Maketext works +ext/Locale-Maketext/t/40_super.t See if Locale::Maketext works +ext/Locale-Maketext/t/50_super.t See if Locale::Maketext works +ext/Locale-Maketext/t/60_super.t See if Locale::Maketext works +ext/Locale-Maketext/t/90_utf8.t See if Locale::Maketext works ext/Log-Message/lib/Log/Message/Config.pm Log::Message ext/Log-Message/lib/Log/Message/Handlers.pm Log::Message ext/Log-Message/lib/Log/Message/Item.pm Log::Message @@ -2887,21 +2902,6 @@ lib/Locale/Currency.pm Locale::Codes lib/Locale/Currency.pod Locale::Codes documentation lib/Locale/Language.pm Locale::Codes lib/Locale/Language.pod Locale::Codes documentation -lib/Locale/Maketext/ChangeLog Locale::Maketext -lib/Locale/Maketext/GutsLoader.pm Locale::Maketext -lib/Locale/Maketext/Guts.pm Locale::Maketext -lib/Locale/Maketext.pm Locale::Maketext -lib/Locale/Maketext.pod Locale::Maketext documentation -lib/Locale/Maketext/README Locale::Maketext -lib/Locale/Maketext/t/01_about_verbose.t See if Locale::Maketext works -lib/Locale/Maketext/t/10_make.t See if Locale::Maketext works -lib/Locale/Maketext/t/20_get.t See if Locale::Maketext works -lib/Locale/Maketext/t/30_local.t See if Locale::Maketext works -lib/Locale/Maketext/t/40_super.t See if Locale::Maketext works -lib/Locale/Maketext/t/50_super.t See if Locale::Maketext works -lib/Locale/Maketext/t/60_super.t See if Locale::Maketext works -lib/Locale/Maketext/t/90_utf8.t See if Locale::Maketext works -lib/Locale/Maketext/TPJ13.pod Locale::Maketext documentation article lib/locale.pm For "use locale" lib/Locale/Script.pm Locale::Codes lib/Locale/Script.pod Locale::Codes documentation diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 995d7b4..0ebe21c 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -874,14 +874,7 @@ use File::Glob qw(:case); { 'MAINTAINER' => 'ferreira', 'DISTRIBUTION' => 'FERREIRA/Locale-Maketext-1.13.tar.gz', - 'FILES' => q[lib/Locale/Maketext.pm - lib/Locale/Maketext.pod - lib/Locale/Maketext/ChangeLog - lib/Locale/Maketext/{Guts,GutsLoader}.pm - lib/Locale/Maketext/README - lib/Locale/Maketext/TPJ13.pod - lib/Locale/Maketext/t - ], + 'FILES' => q[ext/Locale-Maketext], 'EXCLUDED' => [ qw{perlcriticrc t/00_load.t t/pod.t} ], 'CPAN' => 1, 'UPSTREAM' => undef, diff --git a/ext/.gitignore b/ext/.gitignore index a91a386..954f994 100644 --- a/ext/.gitignore +++ b/ext/.gitignore @@ -46,6 +46,7 @@ ppport.h /IPC-Cmd/Makefile.PL /IPC-Open2/Makefile.PL /IPC-Open3/Makefile.PL +/Locale-Maketext/Makefile.PL /Locale-Maketext-Simple/Makefile.PL /Log-Message/Makefile.PL /Log-Message-Simple/Makefile.PL diff --git a/lib/Locale/Maketext/ChangeLog b/ext/Locale-Maketext/ChangeLog similarity index 100% rename from lib/Locale/Maketext/ChangeLog rename to ext/Locale-Maketext/ChangeLog diff --git a/lib/Locale/Maketext/README b/ext/Locale-Maketext/README similarity index 100% rename from lib/Locale/Maketext/README rename to ext/Locale-Maketext/README diff --git a/lib/Locale/Maketext.pm b/ext/Locale-Maketext/lib/Locale/Maketext.pm similarity index 100% rename from lib/Locale/Maketext.pm rename to ext/Locale-Maketext/lib/Locale/Maketext.pm diff --git a/lib/Locale/Maketext.pod b/ext/Locale-Maketext/lib/Locale/Maketext.pod similarity index 100% rename from lib/Locale/Maketext.pod rename to ext/Locale-Maketext/lib/Locale/Maketext.pod diff --git a/lib/Locale/Maketext/Guts.pm b/ext/Locale-Maketext/lib/Locale/Maketext/Guts.pm similarity index 100% rename from lib/Locale/Maketext/Guts.pm rename to ext/Locale-Maketext/lib/Locale/Maketext/Guts.pm diff --git a/lib/Locale/Maketext/GutsLoader.pm b/ext/Locale-Maketext/lib/Locale/Maketext/GutsLoader.pm similarity index 100% rename from lib/Locale/Maketext/GutsLoader.pm rename to ext/Locale-Maketext/lib/Locale/Maketext/GutsLoader.pm diff --git a/lib/Locale/Maketext/TPJ13.pod b/ext/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod similarity index 100% rename from lib/Locale/Maketext/TPJ13.pod rename to ext/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod diff --git a/lib/Locale/Maketext/t/01_about_verbose.t b/ext/Locale-Maketext/t/01_about_verbose.t similarity index 100% rename from lib/Locale/Maketext/t/01_about_verbose.t rename to ext/Locale-Maketext/t/01_about_verbose.t diff --git a/lib/Locale/Maketext/t/10_make.t b/ext/Locale-Maketext/t/10_make.t similarity index 100% rename from lib/Locale/Maketext/t/10_make.t rename to ext/Locale-Maketext/t/10_make.t diff --git a/lib/Locale/Maketext/t/20_get.t b/ext/Locale-Maketext/t/20_get.t similarity index 100% rename from lib/Locale/Maketext/t/20_get.t rename to ext/Locale-Maketext/t/20_get.t diff --git a/lib/Locale/Maketext/t/30_local.t b/ext/Locale-Maketext/t/30_local.t similarity index 100% rename from lib/Locale/Maketext/t/30_local.t rename to ext/Locale-Maketext/t/30_local.t diff --git a/lib/Locale/Maketext/t/40_super.t b/ext/Locale-Maketext/t/40_super.t similarity index 100% rename from lib/Locale/Maketext/t/40_super.t rename to ext/Locale-Maketext/t/40_super.t diff --git a/lib/Locale/Maketext/t/50_super.t b/ext/Locale-Maketext/t/50_super.t similarity index 100% rename from lib/Locale/Maketext/t/50_super.t rename to ext/Locale-Maketext/t/50_super.t diff --git a/lib/Locale/Maketext/t/60_super.t b/ext/Locale-Maketext/t/60_super.t similarity index 100% rename from lib/Locale/Maketext/t/60_super.t rename to ext/Locale-Maketext/t/60_super.t diff --git a/lib/Locale/Maketext/t/90_utf8.t b/ext/Locale-Maketext/t/90_utf8.t similarity index 100% rename from lib/Locale/Maketext/t/90_utf8.t rename to ext/Locale-Maketext/t/90_utf8.t diff --git a/lib/.gitignore b/lib/.gitignore index a3d7dd8..e7f6996 100644 --- a/lib/.gitignore +++ b/lib/.gitignore @@ -203,6 +203,12 @@ /IPC/SharedMem.pm /IPC/SysV.pm /List +/Locale/Maketext.pm +/Locale/Maketext.pod +/Locale/Maketext +/Locale/Maketext/TPJ13.pod +/Locale/Maketext/Guts.pm +/Locale/Maketext/GutsLoader.pm /Locale/Maketext/Simple.pm /Log/Message.pm /Log/Message/Config.pm