summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2009-09-30 10:12:05 +0100
committerNicholas Clark <nick@ccl4.org>2009-09-30 10:12:05 +0100
commit912d57a56207373315f828145e7796522f3bdd15 (patch)
treea9cc0fe122dc19f52ef5edb32af3b5964690b58b
parent83298dfc8d92e012de41ae52193e2fd7e2bcbd84 (diff)
downloadperl-podder2.tar.gz
Move Locale::Maketext::Simple from ext/ to dist/podder2
-rw-r--r--MANIFEST20
-rwxr-xr-xPorting/Maintainers.pl2
-rw-r--r--dist/Locale-Maketext-Simple/lib/Locale/Maketext/Simple.pm (renamed from ext/Locale-Maketext-Simple/lib/Locale/Maketext/Simple.pm)0
-rw-r--r--dist/Locale-Maketext-Simple/t/0-signature.t (renamed from ext/Locale-Maketext-Simple/t/0-signature.t)0
-rwxr-xr-xdist/Locale-Maketext-Simple/t/1-basic.t (renamed from ext/Locale-Maketext-Simple/t/1-basic.t)0
-rwxr-xr-xdist/Locale-Maketext-Simple/t/2-load_po_without_i_default.t (renamed from ext/Locale-Maketext-Simple/t/2-load_po_without_i_default.t)0
-rwxr-xr-xdist/Locale-Maketext-Simple/t/3-load_po_with_i_default.t (renamed from ext/Locale-Maketext-Simple/t/3-load_po_with_i_default.t)0
-rw-r--r--dist/Locale-Maketext-Simple/t/po_with_i_default/en.po (renamed from ext/Locale-Maketext-Simple/t/po_with_i_default/en.po)0
-rw-r--r--dist/Locale-Maketext-Simple/t/po_with_i_default/fr.po (renamed from ext/Locale-Maketext-Simple/t/po_with_i_default/fr.po)0
-rw-r--r--dist/Locale-Maketext-Simple/t/po_with_i_default/i_default.po (renamed from ext/Locale-Maketext-Simple/t/po_with_i_default/i_default.po)0
-rw-r--r--dist/Locale-Maketext-Simple/t/po_without_i_default/en.po (renamed from ext/Locale-Maketext-Simple/t/po_without_i_default/en.po)0
-rw-r--r--dist/Locale-Maketext-Simple/t/po_without_i_default/fr.po (renamed from ext/Locale-Maketext-Simple/t/po_without_i_default/fr.po)0
12 files changed, 11 insertions, 11 deletions
diff --git a/MANIFEST b/MANIFEST
index f3ce266398..95568b5cd0 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -1118,6 +1118,16 @@ dist/IO/t/io_xs.t See if XSUB methods from IO work
dist/lib/lib_pm.PL For "use lib", produces lib/lib.pm
dist/lib/Makefile.PL
dist/lib/t/01lib.t For "use lib" testing
+dist/Locale-Maketext-Simple/lib/Locale/Maketext/Simple.pm Locale::Simple
+dist/Locale-Maketext-Simple/t/0-signature.t Locale::Simple tests
+dist/Locale-Maketext-Simple/t/1-basic.t Locale::Simple tests
+dist/Locale-Maketext-Simple/t/2-load_po_without_i_default.t Locale::Simple tests
+dist/Locale-Maketext-Simple/t/3-load_po_with_i_default.t Locale::Simple tests
+dist/Locale-Maketext-Simple/t/po_with_i_default/en.po Locale::Simple tests
+dist/Locale-Maketext-Simple/t/po_with_i_default/fr.po Locale::Simple tests
+dist/Locale-Maketext-Simple/t/po_with_i_default/i_default.po Locale::Simple tests
+dist/Locale-Maketext-Simple/t/po_without_i_default/en.po Locale::Simple tests
+dist/Locale-Maketext-Simple/t/po_without_i_default/fr.po Locale::Simple tests
dist/Module-CoreList/Changes Module::CoreList Changes
dist/Module-CoreList/corelist The corelist command-line utility
dist/Module-CoreList/identify-dependencies A usage example for Module::CoreList
@@ -2040,16 +2050,6 @@ 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
-ext/Locale-Maketext-Simple/t/2-load_po_without_i_default.t Locale::Simple tests
-ext/Locale-Maketext-Simple/t/3-load_po_with_i_default.t Locale::Simple tests
-ext/Locale-Maketext-Simple/t/po_with_i_default/en.po Locale::Simple tests
-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
diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl
index 44f52cb902..d5a3c0b6e3 100755
--- a/Porting/Maintainers.pl
+++ b/Porting/Maintainers.pl
@@ -863,7 +863,7 @@ use File::Glob qw(:case);
'FILES' => q[ext/Locale-Maketext-Simple],
'EXCLUDED' => [ qr{^inc/} ],
'CPAN' => 1,
- 'UPSTREAM' => undef,
+ 'UPSTREAM' => 'dist',
},
'Log::Message' =>
diff --git a/ext/Locale-Maketext-Simple/lib/Locale/Maketext/Simple.pm b/dist/Locale-Maketext-Simple/lib/Locale/Maketext/Simple.pm
index 30760f3c26..30760f3c26 100644
--- a/ext/Locale-Maketext-Simple/lib/Locale/Maketext/Simple.pm
+++ b/dist/Locale-Maketext-Simple/lib/Locale/Maketext/Simple.pm
diff --git a/ext/Locale-Maketext-Simple/t/0-signature.t b/dist/Locale-Maketext-Simple/t/0-signature.t
index c70c4a3cca..c70c4a3cca 100644
--- a/ext/Locale-Maketext-Simple/t/0-signature.t
+++ b/dist/Locale-Maketext-Simple/t/0-signature.t
diff --git a/ext/Locale-Maketext-Simple/t/1-basic.t b/dist/Locale-Maketext-Simple/t/1-basic.t
index 91d033b795..91d033b795 100755
--- a/ext/Locale-Maketext-Simple/t/1-basic.t
+++ b/dist/Locale-Maketext-Simple/t/1-basic.t
diff --git a/ext/Locale-Maketext-Simple/t/2-load_po_without_i_default.t b/dist/Locale-Maketext-Simple/t/2-load_po_without_i_default.t
index 47a982307e..47a982307e 100755
--- a/ext/Locale-Maketext-Simple/t/2-load_po_without_i_default.t
+++ b/dist/Locale-Maketext-Simple/t/2-load_po_without_i_default.t
diff --git a/ext/Locale-Maketext-Simple/t/3-load_po_with_i_default.t b/dist/Locale-Maketext-Simple/t/3-load_po_with_i_default.t
index a8807106dd..a8807106dd 100755
--- a/ext/Locale-Maketext-Simple/t/3-load_po_with_i_default.t
+++ b/dist/Locale-Maketext-Simple/t/3-load_po_with_i_default.t
diff --git a/ext/Locale-Maketext-Simple/t/po_with_i_default/en.po b/dist/Locale-Maketext-Simple/t/po_with_i_default/en.po
index 0d80b92ef5..0d80b92ef5 100644
--- a/ext/Locale-Maketext-Simple/t/po_with_i_default/en.po
+++ b/dist/Locale-Maketext-Simple/t/po_with_i_default/en.po
diff --git a/ext/Locale-Maketext-Simple/t/po_with_i_default/fr.po b/dist/Locale-Maketext-Simple/t/po_with_i_default/fr.po
index 8ecfbf761a..8ecfbf761a 100644
--- a/ext/Locale-Maketext-Simple/t/po_with_i_default/fr.po
+++ b/dist/Locale-Maketext-Simple/t/po_with_i_default/fr.po
diff --git a/ext/Locale-Maketext-Simple/t/po_with_i_default/i_default.po b/dist/Locale-Maketext-Simple/t/po_with_i_default/i_default.po
index 7327298688..7327298688 100644
--- a/ext/Locale-Maketext-Simple/t/po_with_i_default/i_default.po
+++ b/dist/Locale-Maketext-Simple/t/po_with_i_default/i_default.po
diff --git a/ext/Locale-Maketext-Simple/t/po_without_i_default/en.po b/dist/Locale-Maketext-Simple/t/po_without_i_default/en.po
index 0d80b92ef5..0d80b92ef5 100644
--- a/ext/Locale-Maketext-Simple/t/po_without_i_default/en.po
+++ b/dist/Locale-Maketext-Simple/t/po_without_i_default/en.po
diff --git a/ext/Locale-Maketext-Simple/t/po_without_i_default/fr.po b/dist/Locale-Maketext-Simple/t/po_without_i_default/fr.po
index 8ecfbf761a..8ecfbf761a 100644
--- a/ext/Locale-Maketext-Simple/t/po_without_i_default/fr.po
+++ b/dist/Locale-Maketext-Simple/t/po_without_i_default/fr.po