From: Nicholas Clark Date: Thu, 24 Sep 2009 09:16:04 +0000 (+0100) Subject: Move Sys-Syslog from ext/ to cpan/ X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e14adb6005c86f724c57fce18f4514abf3c57041;p=p5sagit%2Fp5-mst-13.2.git Move Sys-Syslog from ext/ to cpan/ (Something had to be first, and it had to be XS, and skipped on Win32 and VMS) --- diff --git a/MANIFEST b/MANIFEST index ef563d7..bbc1de1 100644 --- a/MANIFEST +++ b/MANIFEST @@ -17,6 +17,23 @@ configure.com Configure-equivalent for VMS configure.gnu Crude emulation of GNU configure cop.h Control operator header Copying The GNU General Public License +cpan/Sys-Syslog/Changes Changlog for Sys::Syslog +cpan/Sys-Syslog/fallback/const-c.inc Sys::Syslog constants fallback file +cpan/Sys-Syslog/fallback/const-xs.inc Sys::Syslog constants fallback file +cpan/Sys-Syslog/fallback/syslog.h Sys::Syslog header fallback file +cpan/Sys-Syslog/Makefile.PL Sys::Syslog extension makefile writer +cpan/Sys-Syslog/README README for Sys::Syslog +cpan/Sys-Syslog/README.win32 README for Sys::Syslog on Windows +cpan/Sys-Syslog/Syslog.pm Sys::Syslog extension Perl module +cpan/Sys-Syslog/Syslog.xs Sys::Syslog extension external subroutines +cpan/Sys-Syslog/t/00-load.t test for Sys::Syslog +cpan/Sys-Syslog/t/constants.t test for Sys::Syslog +cpan/Sys-Syslog/t/syslog.t See if Sys::Syslog works +cpan/Sys-Syslog/win32/compile.pl Sys::Syslog extension Win32 related file +cpan/Sys-Syslog/win32/PerlLog_dll.uu Sys::Syslog extension Win32 related file +cpan/Sys-Syslog/win32/PerlLog.mc Sys::Syslog extension Win32 related file +cpan/Sys-Syslog/win32/PerlLog_RES.uu Sys::Syslog extension Win32 related file +cpan/Sys-Syslog/win32/Win32.pm Sys::Syslog extension Win32 related file Cross/build-arm-n770-sh Cross-compilation Cross/cflags-cross-arm Cross-compilation Cross/config Cross-compilation @@ -2562,23 +2579,6 @@ ext/Switch/t/switch.t See if Perl 5 switch works 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/Sys-Syslog/Changes Changlog for Sys::Syslog -ext/Sys-Syslog/fallback/const-c.inc Sys::Syslog constants fallback file -ext/Sys-Syslog/fallback/const-xs.inc Sys::Syslog constants fallback file -ext/Sys-Syslog/fallback/syslog.h Sys::Syslog header fallback file -ext/Sys-Syslog/Makefile.PL Sys::Syslog extension makefile writer -ext/Sys-Syslog/README README for Sys::Syslog -ext/Sys-Syslog/README.win32 README for Sys::Syslog on Windows -ext/Sys-Syslog/Syslog.pm Sys::Syslog extension Perl module -ext/Sys-Syslog/Syslog.xs Sys::Syslog extension external subroutines -ext/Sys-Syslog/t/00-load.t test for Sys::Syslog -ext/Sys-Syslog/t/constants.t test for Sys::Syslog -ext/Sys-Syslog/t/syslog.t See if Sys::Syslog works -ext/Sys-Syslog/win32/compile.pl Sys::Syslog extension Win32 related file -ext/Sys-Syslog/win32/PerlLog_dll.uu Sys::Syslog extension Win32 related file -ext/Sys-Syslog/win32/PerlLog.mc Sys::Syslog extension Win32 related file -ext/Sys-Syslog/win32/PerlLog_RES.uu Sys::Syslog extension Win32 related file -ext/Sys-Syslog/win32/Win32.pm Sys::Syslog extension Win32 related file ext/Term-ANSIColor/ANSIColor.pm Perl module supporting termcap usage ext/Term-ANSIColor/ChangeLog Term::ANSIColor ext/Term-ANSIColor/README Term::ANSIColor diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 0ba03e2..1019ad2 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -1373,7 +1373,7 @@ use File::Glob qw(:case); { 'MAINTAINER' => 'saper', 'DISTRIBUTION' => 'SAPER/Sys-Syslog-0.27.tar.gz', - 'FILES' => q[ext/Sys-Syslog], + 'FILES' => q[cpan/Sys-Syslog], 'EXCLUDED' => [ qr{^eg/}, qw{t/data-validation.t t/distchk.t diff --git a/cpan/.gitignore b/cpan/.gitignore new file mode 100644 index 0000000..48ab117 --- /dev/null +++ b/cpan/.gitignore @@ -0,0 +1,8 @@ +# ignore generated .c files, and other module build traces +*.c +*.bs +blib +pm_to_blib +Makefile +Makefile.PL +ppport.h diff --git a/ext/Sys-Syslog/.gitignore b/cpan/Sys-Syslog/.gitignore similarity index 100% rename from ext/Sys-Syslog/.gitignore rename to cpan/Sys-Syslog/.gitignore diff --git a/ext/Sys-Syslog/Changes b/cpan/Sys-Syslog/Changes similarity index 100% rename from ext/Sys-Syslog/Changes rename to cpan/Sys-Syslog/Changes diff --git a/ext/Sys-Syslog/Makefile.PL b/cpan/Sys-Syslog/Makefile.PL similarity index 100% rename from ext/Sys-Syslog/Makefile.PL rename to cpan/Sys-Syslog/Makefile.PL diff --git a/ext/Sys-Syslog/README b/cpan/Sys-Syslog/README similarity index 100% rename from ext/Sys-Syslog/README rename to cpan/Sys-Syslog/README diff --git a/ext/Sys-Syslog/README.win32 b/cpan/Sys-Syslog/README.win32 similarity index 100% rename from ext/Sys-Syslog/README.win32 rename to cpan/Sys-Syslog/README.win32 diff --git a/ext/Sys-Syslog/Syslog.pm b/cpan/Sys-Syslog/Syslog.pm similarity index 100% rename from ext/Sys-Syslog/Syslog.pm rename to cpan/Sys-Syslog/Syslog.pm diff --git a/ext/Sys-Syslog/Syslog.xs b/cpan/Sys-Syslog/Syslog.xs similarity index 100% rename from ext/Sys-Syslog/Syslog.xs rename to cpan/Sys-Syslog/Syslog.xs diff --git a/ext/Sys-Syslog/fallback/const-c.inc b/cpan/Sys-Syslog/fallback/const-c.inc similarity index 100% rename from ext/Sys-Syslog/fallback/const-c.inc rename to cpan/Sys-Syslog/fallback/const-c.inc diff --git a/ext/Sys-Syslog/fallback/const-xs.inc b/cpan/Sys-Syslog/fallback/const-xs.inc similarity index 100% rename from ext/Sys-Syslog/fallback/const-xs.inc rename to cpan/Sys-Syslog/fallback/const-xs.inc diff --git a/ext/Sys-Syslog/fallback/syslog.h b/cpan/Sys-Syslog/fallback/syslog.h similarity index 100% rename from ext/Sys-Syslog/fallback/syslog.h rename to cpan/Sys-Syslog/fallback/syslog.h diff --git a/ext/Sys-Syslog/t/00-load.t b/cpan/Sys-Syslog/t/00-load.t similarity index 100% rename from ext/Sys-Syslog/t/00-load.t rename to cpan/Sys-Syslog/t/00-load.t diff --git a/ext/Sys-Syslog/t/constants.t b/cpan/Sys-Syslog/t/constants.t similarity index 100% rename from ext/Sys-Syslog/t/constants.t rename to cpan/Sys-Syslog/t/constants.t diff --git a/ext/Sys-Syslog/t/syslog.t b/cpan/Sys-Syslog/t/syslog.t similarity index 100% rename from ext/Sys-Syslog/t/syslog.t rename to cpan/Sys-Syslog/t/syslog.t diff --git a/ext/Sys-Syslog/win32/PerlLog.mc b/cpan/Sys-Syslog/win32/PerlLog.mc similarity index 100% rename from ext/Sys-Syslog/win32/PerlLog.mc rename to cpan/Sys-Syslog/win32/PerlLog.mc diff --git a/ext/Sys-Syslog/win32/PerlLog_RES.uu b/cpan/Sys-Syslog/win32/PerlLog_RES.uu similarity index 100% rename from ext/Sys-Syslog/win32/PerlLog_RES.uu rename to cpan/Sys-Syslog/win32/PerlLog_RES.uu diff --git a/ext/Sys-Syslog/win32/PerlLog_dll.uu b/cpan/Sys-Syslog/win32/PerlLog_dll.uu similarity index 100% rename from ext/Sys-Syslog/win32/PerlLog_dll.uu rename to cpan/Sys-Syslog/win32/PerlLog_dll.uu diff --git a/ext/Sys-Syslog/win32/Win32.pm b/cpan/Sys-Syslog/win32/Win32.pm similarity index 100% rename from ext/Sys-Syslog/win32/Win32.pm rename to cpan/Sys-Syslog/win32/Win32.pm diff --git a/ext/Sys-Syslog/win32/compile.pl b/cpan/Sys-Syslog/win32/compile.pl similarity index 100% rename from ext/Sys-Syslog/win32/compile.pl rename to cpan/Sys-Syslog/win32/compile.pl