This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
dist/SelfLoader - Update missing build artifacts
authorYves Orton <demerphq@gmail.com>
Wed, 1 Mar 2023 12:01:04 +0000 (13:01 +0100)
committerYves Orton <demerphq@gmail.com>
Thu, 2 Mar 2023 12:18:45 +0000 (20:18 +0800)
Fixes https://github.com/Perl/perl5/issues/20874 for this module

Tweaked Makefile.PL to set the license to 'perl_5' and not 'perl'

MANIFEST
dist/SelfLoader/.gitignore [new file with mode: 0644]
dist/SelfLoader/Changes [new file with mode: 0644]
dist/SelfLoader/Makefile.PL [new file with mode: 0644]

index 3af8594..8cb3784 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -3980,7 +3980,9 @@ dist/Search-Dict/Makefile.PL              Makefile.PL
 dist/Search-Dict/README.patching       Patch instructions
 dist/Search-Dict/README.release                Release instructions
 dist/Search-Dict/t/Dict.t              See if Search::Dict works
+dist/SelfLoader/Changes                        History of changes for SelfLoader
 dist/SelfLoader/lib/SelfLoader.pm      Load functions only on demand
+dist/SelfLoader/Makefile.PL            Build SelfLoader
 dist/SelfLoader/t/01SelfLoader.t       See if SelfLoader works
 dist/SelfLoader/t/02SelfLoader-buggy.t See if SelfLoader works
 dist/SelfLoader/t/03taint.t            See if SelfLoader works under taint
diff --git a/dist/SelfLoader/.gitignore b/dist/SelfLoader/.gitignore
new file mode 100644 (file)
index 0000000..e54624d
--- /dev/null
@@ -0,0 +1 @@
+!/Makefile.PL
diff --git a/dist/SelfLoader/Changes b/dist/SelfLoader/Changes
new file mode 100644 (file)
index 0000000..349f882
--- /dev/null
@@ -0,0 +1,43 @@
+Revision history for Perl extension SelfLoader
+
+1.24    Thu Aug  3 18:00 2017
+  - Fix minor POD issues.
+
+1.20    Mon Dec 19 20:03 2011
+  - Update FSF address also in separate license file, duh.
+
+1.19    Mon Dec 19 20:00 2011
+  - Update FSF address.
+
+1.18    Sat Nov 20 01:30 2010
+  - port commit a3a44df66ac2cb0beb603b3dd9697fd81cfcfb30
+    from core:
+     [perl #72062] Untaint DATA after it's reopened
+     DATA handle is untainted on startup, but as we close and reopen it it
+     gets the taint flag. It's safe to untaint it though, since we still hold
+     the file descriptor open and don't reassign it to another file.
+     
+     This was probably broken by changeset 29606, (c96b2385 in perl git).
+
+1.17     Thu Oct 23 20:12 2008
+  - Tiny fix in error messages: Use $! instead of $1.
+
+1.16     Sat Aug  2 17:29 2008
+  - Report the location of warnings and errors. (perl ticket #5298,
+    Marc Gauthier)
+
+1.15     Thu Jan 17 17:43 2008
+  - Fix non-critical warning in the test suite. (Jerry D. Hedden)
+
+1.14     Wed Jan 16 16:26 2008
+  - No failures reported, promote to stable version.
+
+1.13_03  Fri Dec 28 11:28 2007
+  - Doc patch. This is SelfLoader, not AutoLoader.
+
+1.13_02  Wed Dec 26 16:03 2007
+  - Fixed the README.
+
+1.13_01  Wed Dec 26 12:38 2007
+  - Initial dual-lived CPAN release
+
diff --git a/dist/SelfLoader/Makefile.PL b/dist/SelfLoader/Makefile.PL
new file mode 100644 (file)
index 0000000..2997c53
--- /dev/null
@@ -0,0 +1,19 @@
+## This -*- perl -*- script writes the Makefile for SelfLoader
+# You should read "perldoc perlmodinstall" for instructions on
+#  how to install modules like this.
+
+require 5.008;
+use strict;
+use ExtUtils::MakeMaker;
+WriteMakefile(
+  'NAME' => 'SelfLoader',
+  'VERSION_FROM' => 'lib/SelfLoader.pm', # finds $VERSION
+  'LICENSE' => 'perl_5',
+  'PREREQ_PM' => {},
+  'ABSTRACT_FROM' => 'lib/SelfLoader.pm',
+  'AUTHOR' => 'Steffen Mueller <smueller@cpan.org>',
+  'INSTALLDIRS' => ( $] < 5.011 ? 'perl' : 'site' ),
+);
+
+__END__
+