In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/e5db20f4496f96450ac3f4b5bd7d58613152f568?hp=d91320e42f21899713dea119bcc79e7d5c290f00>

- Log -----------------------------------------------------------------
commit e5db20f4496f96450ac3f4b5bd7d58613152f568
Author: Nicholas Clark <n...@ccl4.org>
Date:   Mon Feb 9 18:45:58 2009 +0000

    Rename ext/PerlIO/via to ext/PerlIO-via

M       MANIFEST
A       ext/PerlIO-via/Makefile.PL
A       ext/PerlIO-via/hints/aix.pl
A       ext/PerlIO-via/t/via.t
A       ext/PerlIO-via/via.pm
A       ext/PerlIO-via/via.xs
D       ext/PerlIO/via/Makefile.PL
D       ext/PerlIO/via/hints/aix.pl
D       ext/PerlIO/via/t/via.t
D       ext/PerlIO/via/via.pm
D       ext/PerlIO/via/via.xs

commit b4bd6dcd4597bfa7eb0b9542213d88964c71ae3b
Author: Nicholas Clark <n...@ccl4.org>
Date:   Mon Feb 9 18:18:32 2009 +0000

    Rename ext/PerlIO/scalar to ext/PerlIO-scalar

M       MANIFEST
A       ext/PerlIO-scalar/Makefile.PL
A       ext/PerlIO-scalar/scalar.pm
A       ext/PerlIO-scalar/scalar.xs
A       ext/PerlIO-scalar/t/scalar.t
A       ext/PerlIO-scalar/t/scalar_ungetc.t
D       ext/PerlIO/scalar/Makefile.PL
D       ext/PerlIO/scalar/scalar.pm
D       ext/PerlIO/scalar/scalar.xs
D       ext/PerlIO/scalar/t/scalar.t
D       ext/PerlIO/scalar/t/scalar_ungetc.t

commit d730472d2f8260c653bf526679c7046f7f4865fe
Author: Nicholas Clark <n...@ccl4.org>
Date:   Mon Feb 9 18:07:54 2009 +0000

    Rename ext/PerlIO/encoding to ext/PerlIO-encoding

M       MANIFEST
A       ext/PerlIO-encoding/MANIFEST
A       ext/PerlIO-encoding/Makefile.PL
A       ext/PerlIO-encoding/encoding.pm
A       ext/PerlIO-encoding/encoding.xs
A       ext/PerlIO-encoding/t/encoding.t
A       ext/PerlIO-encoding/t/fallback.t
A       ext/PerlIO-encoding/t/nolooping.t
D       ext/PerlIO/encoding/MANIFEST
D       ext/PerlIO/encoding/Makefile.PL
D       ext/PerlIO/encoding/encoding.pm
D       ext/PerlIO/encoding/encoding.xs
D       ext/PerlIO/encoding/t/encoding.t
D       ext/PerlIO/encoding/t/fallback.t
D       ext/PerlIO/encoding/t/nolooping.t

commit a47facf7a19db83dbf78974cdd7962d9ffc76952
Author: Nicholas Clark <n...@ccl4.org>
Date:   Mon Feb 9 17:56:53 2009 +0000

    Move the 4 tests of core PerlIO functionality to t/io. PerlIO::Layer::find 
is
    implemented in perlio.c

M       MANIFEST
D       ext/PerlIO/t/PerlIO.t
D       ext/PerlIO/t/fail.t
D       ext/PerlIO/t/ioleaks.t
D       ext/PerlIO/t/open.t
A       t/io/perlio.t
A       t/io/perlio_fail.t
A       t/io/perlio_leaks.t
A       t/io/perlio_open.t

commit 9df1f8452792bdd86bc805569a2744e72d94f643
Author: Nicholas Clark <n...@ccl4.org>
Date:   Mon Feb 9 17:43:05 2009 +0000

    Move 3 tests from ext/PerlIO/t to their relevant PerlIO::* module 
directories.

M       MANIFEST
A       ext/PerlIO/encoding/t/encoding.t
A       ext/PerlIO/encoding/t/fallback.t
A       ext/PerlIO/scalar/t/scalar.t
D       ext/PerlIO/t/encoding.t
D       ext/PerlIO/t/fallback.t
D       ext/PerlIO/t/scalar.t
D       ext/PerlIO/t/via.t
A       ext/PerlIO/via/t/via.t
-----------------------------------------------------------------------

Summary of changes:
 MANIFEST                                           |   42 ++++++++++----------
 ext/{PerlIO/encoding => PerlIO-encoding}/MANIFEST  |    0
 .../encoding => PerlIO-encoding}/Makefile.PL       |    0
 .../encoding => PerlIO-encoding}/encoding.pm       |    0
 .../encoding => PerlIO-encoding}/encoding.xs       |    0
 ext/{PerlIO => PerlIO-encoding}/t/encoding.t       |    0
 ext/{PerlIO => PerlIO-encoding}/t/fallback.t       |    0
 .../encoding => PerlIO-encoding}/t/nolooping.t     |    0
 ext/{PerlIO/scalar => PerlIO-scalar}/Makefile.PL   |    0
 ext/{PerlIO/scalar => PerlIO-scalar}/scalar.pm     |    0
 ext/{PerlIO/scalar => PerlIO-scalar}/scalar.xs     |    0
 ext/{PerlIO => PerlIO-scalar}/t/scalar.t           |    0
 .../scalar => PerlIO-scalar}/t/scalar_ungetc.t     |    0
 ext/{PerlIO/via => PerlIO-via}/Makefile.PL         |    0
 ext/{PerlIO/via => PerlIO-via}/hints/aix.pl        |    0
 ext/{PerlIO => PerlIO-via}/t/via.t                 |    0
 ext/{PerlIO/via => PerlIO-via}/via.pm              |    0
 ext/{PerlIO/via => PerlIO-via}/via.xs              |    0
 ext/PerlIO/t/PerlIO.t => t/io/perlio.t             |    0
 ext/PerlIO/t/fail.t => t/io/perlio_fail.t          |    0
 ext/PerlIO/t/ioleaks.t => t/io/perlio_leaks.t      |    0
 ext/PerlIO/t/open.t => t/io/perlio_open.t          |    0
 22 files changed, 21 insertions(+), 21 deletions(-)
 rename ext/{PerlIO/encoding => PerlIO-encoding}/MANIFEST (100%)
 rename ext/{PerlIO/encoding => PerlIO-encoding}/Makefile.PL (100%)
 rename ext/{PerlIO/encoding => PerlIO-encoding}/encoding.pm (100%)
 rename ext/{PerlIO/encoding => PerlIO-encoding}/encoding.xs (100%)
 rename ext/{PerlIO => PerlIO-encoding}/t/encoding.t (100%)
 rename ext/{PerlIO => PerlIO-encoding}/t/fallback.t (100%)
 rename ext/{PerlIO/encoding => PerlIO-encoding}/t/nolooping.t (100%)
 rename ext/{PerlIO/scalar => PerlIO-scalar}/Makefile.PL (100%)
 rename ext/{PerlIO/scalar => PerlIO-scalar}/scalar.pm (100%)
 rename ext/{PerlIO/scalar => PerlIO-scalar}/scalar.xs (100%)
 rename ext/{PerlIO => PerlIO-scalar}/t/scalar.t (100%)
 rename ext/{PerlIO/scalar => PerlIO-scalar}/t/scalar_ungetc.t (100%)
 rename ext/{PerlIO/via => PerlIO-via}/Makefile.PL (100%)
 rename ext/{PerlIO/via => PerlIO-via}/hints/aix.pl (100%)
 rename ext/{PerlIO => PerlIO-via}/t/via.t (100%)
 rename ext/{PerlIO/via => PerlIO-via}/via.pm (100%)
 rename ext/{PerlIO/via => PerlIO-via}/via.xs (100%)
 rename ext/PerlIO/t/PerlIO.t => t/io/perlio.t (100%)
 rename ext/PerlIO/t/fail.t => t/io/perlio_fail.t (100%)
 rename ext/PerlIO/t/ioleaks.t => t/io/perlio_leaks.t (100%)
 rename ext/PerlIO/t/open.t => t/io/perlio_open.t (100%)

diff --git a/MANIFEST b/MANIFEST
index 512404a..a93dba3 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -962,27 +962,23 @@ ext/Opcode/ops.pm         "Pragma" form of Opcode 
extension Perl module
 ext/Opcode/Safe.pm             Safe extension Perl module
 ext/Opcode/t/Opcode.t          See if Opcode works
 ext/Opcode/t/ops.t             See if Opcode works
-ext/PerlIO/encoding/encoding.pm        PerlIO::encoding
-ext/PerlIO/encoding/encoding.xs        PerlIO::encoding
-ext/PerlIO/encoding/Makefile.PL        PerlIO::encoding makefile writer
-ext/PerlIO/encoding/MANIFEST   PerlIO::encoding list of files
-ext/PerlIO/encoding/t/nolooping.t      Tests for PerlIO::encoding
-ext/PerlIO/scalar/Makefile.PL  PerlIO layer for scalars
-ext/PerlIO/scalar/scalar.pm    PerlIO layer for scalars
-ext/PerlIO/scalar/scalar.xs    PerlIO layer for scalars
-ext/PerlIO/scalar/t/scalar_ungetc.t    Tests for PerlIO layer for scalars
-ext/PerlIO/t/encoding.t                See if PerlIO encoding conversion works
-ext/PerlIO/t/fail.t            See if bad layers fail
-ext/PerlIO/t/fallback.t                See if PerlIO fallbacks work
-ext/PerlIO/t/ioleaks.t         See if PerlIO layers are leaking
-ext/PerlIO/t/open.t            See if PerlIO certain special opens work
-ext/PerlIO/t/PerlIO.t          See if PerlIO works
-ext/PerlIO/t/scalar.t          See if PerlIO::scalar works
-ext/PerlIO/t/via.t             See if PerlIO::via works
-ext/PerlIO/via/hints/aix.pl    Hint for PerlIO::via for named architecture
-ext/PerlIO/via/Makefile.PL     PerlIO layer for layers in perl
-ext/PerlIO/via/via.pm          PerlIO layer for layers in perl
-ext/PerlIO/via/via.xs          PerlIO layer for layers in perl
+ext/PerlIO-encoding/encoding.pm        PerlIO::encoding
+ext/PerlIO-encoding/encoding.xs        PerlIO::encoding
+ext/PerlIO-encoding/Makefile.PL        PerlIO::encoding makefile writer
+ext/PerlIO-encoding/MANIFEST   PerlIO::encoding list of files
+ext/PerlIO-encoding/t/encoding.t       See if PerlIO encoding conversion works
+ext/PerlIO-encoding/t/fallback.t       See if PerlIO fallbacks work
+ext/PerlIO-encoding/t/nolooping.t      Tests for PerlIO::encoding
+ext/PerlIO-scalar/Makefile.PL  PerlIO layer for scalars
+ext/PerlIO-scalar/scalar.pm    PerlIO layer for scalars
+ext/PerlIO-scalar/scalar.xs    PerlIO layer for scalars
+ext/PerlIO-scalar/t/scalar.t   See if PerlIO::scalar works
+ext/PerlIO-scalar/t/scalar_ungetc.t    Tests for PerlIO layer for scalars
+ext/PerlIO-via/hints/aix.pl    Hint for PerlIO::via for named architecture
+ext/PerlIO-via/Makefile.PL     PerlIO layer for layers in perl
+ext/PerlIO-via/t/via.t         See if PerlIO::via works
+ext/PerlIO-via/via.pm          PerlIO layer for layers in perl
+ext/PerlIO-via/via.xs          PerlIO layer for layers in perl
 ext/POSIX/hints/bsdos.pl       Hint for POSIX for named architecture
 ext/POSIX/hints/dynixptx.pl    Hint for POSIX for named architecture
 ext/POSIX/hints/freebsd.pl     Hint for POSIX for named architecture
@@ -3720,6 +3716,10 @@ t/io/layers.t                    See if PerlIO layers 
work
 t/io/nargv.t                   See if nested ARGV stuff works
 t/io/openpid.t                 See if open works for subprocesses
 t/io/open.t                    See if open works
+t/io/perlio.t                  See if PerlIO works
+t/io/perlio_fail.t             See if bad layers fail
+t/io/perlio_leaks.t            See if PerlIO layers are leaking
+t/io/perlio_open.t             See if PerlIO certain special opens work
 t/io/pipe.t                    See if secure pipes work
 t/io/print.t                   See if print commands work
 t/io/pvbm.t                    See if PVBMs break IO commands
diff --git a/ext/PerlIO/encoding/MANIFEST b/ext/PerlIO-encoding/MANIFEST
similarity index 100%
rename from ext/PerlIO/encoding/MANIFEST
rename to ext/PerlIO-encoding/MANIFEST
diff --git a/ext/PerlIO/encoding/Makefile.PL b/ext/PerlIO-encoding/Makefile.PL
similarity index 100%
rename from ext/PerlIO/encoding/Makefile.PL
rename to ext/PerlIO-encoding/Makefile.PL
diff --git a/ext/PerlIO/encoding/encoding.pm b/ext/PerlIO-encoding/encoding.pm
similarity index 100%
rename from ext/PerlIO/encoding/encoding.pm
rename to ext/PerlIO-encoding/encoding.pm
diff --git a/ext/PerlIO/encoding/encoding.xs b/ext/PerlIO-encoding/encoding.xs
similarity index 100%
rename from ext/PerlIO/encoding/encoding.xs
rename to ext/PerlIO-encoding/encoding.xs
diff --git a/ext/PerlIO/t/encoding.t b/ext/PerlIO-encoding/t/encoding.t
similarity index 100%
rename from ext/PerlIO/t/encoding.t
rename to ext/PerlIO-encoding/t/encoding.t
diff --git a/ext/PerlIO/t/fallback.t b/ext/PerlIO-encoding/t/fallback.t
similarity index 100%
rename from ext/PerlIO/t/fallback.t
rename to ext/PerlIO-encoding/t/fallback.t
diff --git a/ext/PerlIO/encoding/t/nolooping.t 
b/ext/PerlIO-encoding/t/nolooping.t
similarity index 100%
rename from ext/PerlIO/encoding/t/nolooping.t
rename to ext/PerlIO-encoding/t/nolooping.t
diff --git a/ext/PerlIO/scalar/Makefile.PL b/ext/PerlIO-scalar/Makefile.PL
similarity index 100%
rename from ext/PerlIO/scalar/Makefile.PL
rename to ext/PerlIO-scalar/Makefile.PL
diff --git a/ext/PerlIO/scalar/scalar.pm b/ext/PerlIO-scalar/scalar.pm
similarity index 100%
rename from ext/PerlIO/scalar/scalar.pm
rename to ext/PerlIO-scalar/scalar.pm
diff --git a/ext/PerlIO/scalar/scalar.xs b/ext/PerlIO-scalar/scalar.xs
similarity index 100%
rename from ext/PerlIO/scalar/scalar.xs
rename to ext/PerlIO-scalar/scalar.xs
diff --git a/ext/PerlIO/t/scalar.t b/ext/PerlIO-scalar/t/scalar.t
similarity index 100%
rename from ext/PerlIO/t/scalar.t
rename to ext/PerlIO-scalar/t/scalar.t
diff --git a/ext/PerlIO/scalar/t/scalar_ungetc.t 
b/ext/PerlIO-scalar/t/scalar_ungetc.t
similarity index 100%
rename from ext/PerlIO/scalar/t/scalar_ungetc.t
rename to ext/PerlIO-scalar/t/scalar_ungetc.t
diff --git a/ext/PerlIO/via/Makefile.PL b/ext/PerlIO-via/Makefile.PL
similarity index 100%
rename from ext/PerlIO/via/Makefile.PL
rename to ext/PerlIO-via/Makefile.PL
diff --git a/ext/PerlIO/via/hints/aix.pl b/ext/PerlIO-via/hints/aix.pl
similarity index 100%
rename from ext/PerlIO/via/hints/aix.pl
rename to ext/PerlIO-via/hints/aix.pl
diff --git a/ext/PerlIO/t/via.t b/ext/PerlIO-via/t/via.t
similarity index 100%
rename from ext/PerlIO/t/via.t
rename to ext/PerlIO-via/t/via.t
diff --git a/ext/PerlIO/via/via.pm b/ext/PerlIO-via/via.pm
similarity index 100%
rename from ext/PerlIO/via/via.pm
rename to ext/PerlIO-via/via.pm
diff --git a/ext/PerlIO/via/via.xs b/ext/PerlIO-via/via.xs
similarity index 100%
rename from ext/PerlIO/via/via.xs
rename to ext/PerlIO-via/via.xs
diff --git a/ext/PerlIO/t/PerlIO.t b/t/io/perlio.t
similarity index 100%
rename from ext/PerlIO/t/PerlIO.t
rename to t/io/perlio.t
diff --git a/ext/PerlIO/t/fail.t b/t/io/perlio_fail.t
similarity index 100%
rename from ext/PerlIO/t/fail.t
rename to t/io/perlio_fail.t
diff --git a/ext/PerlIO/t/ioleaks.t b/t/io/perlio_leaks.t
similarity index 100%
rename from ext/PerlIO/t/ioleaks.t
rename to t/io/perlio_leaks.t
diff --git a/ext/PerlIO/t/open.t b/t/io/perlio_open.t
similarity index 100%
rename from ext/PerlIO/t/open.t
rename to t/io/perlio_open.t

--
Perl5 Master Repository

Reply via email to