Move Safe.pm into ext/Safe, and temporarily give it a Makfile.PL
Nicholas Clark [Tue, 10 Feb 2009 08:26:20 +0000 (08:26 +0000)]
MANIFEST
Porting/Maintainers.pl
ext/Safe/Makefile.PL [new file with mode: 0644]
ext/Safe/Safe.pm [moved from ext/Opcode/Safe.pm with 100% similarity]

index 218888a..8bfa131 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -959,7 +959,6 @@ ext/Opcode/Makefile.PL              Opcode extension makefile writer
 ext/Opcode/Opcode.pm           Opcode extension Perl module
 ext/Opcode/Opcode.xs           Opcode extension external subroutines
 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
@@ -1019,6 +1018,8 @@ ext/re/t/re_funcs.t               See if exportable 're' funcs in re.xs work
 ext/re/t/regop.pl              generate debug output for various patterns
 ext/re/t/regop.t               test RE optimizations by scraping debug output
 ext/re/t/re.t                  see if re pragma works
+ext/Safe/Makefile.PL           Safe extension Perl module
+ext/Safe/Safe.pm               Safe extension Perl module
 ext/Safe/t/safe1.t             See if Safe works
 ext/Safe/t/safe2.t             See if Safe works
 ext/Safe/t/safe3.t             See if Safe works
index 50d2fdc..69ef256 100644 (file)
@@ -904,7 +904,7 @@ package Maintainers;
        'Safe' =>
                {
                'MAINTAINER'    => 'rgarcia',
-               'FILES'         => q[ext/Safe ext/Opcode/Safe.pm],
+               'FILES'         => q[ext/Safe],
                'CPAN'          => 1,
                'UPSTREAM'      => "blead",
                },
diff --git a/ext/Safe/Makefile.PL b/ext/Safe/Makefile.PL
new file mode 100644 (file)
index 0000000..b4aa932
--- /dev/null
@@ -0,0 +1,8 @@
+# Yes, this is boilerplate and will be abolished "real soon now".
+use strict;
+use ExtUtils::MakeMaker;
+
+WriteMakefile(
+    NAME       => 'Safe',
+    VERSION_FROM => 'Safe.pm',
+);
similarity index 100%
rename from ext/Opcode/Safe.pm
rename to ext/Safe/Safe.pm