summaryrefslogtreecommitdiff
path: root/dist
diff options
context:
space:
mode:
authorYves Orton <demerphq@gmail.com>2023-03-01 13:01:04 +0100
committerYves Orton <demerphq@gmail.com>2023-03-02 20:18:45 +0800
commit793c3967c627135477eb7ae545e703cea4c3b2d0 (patch)
treee71678504503f90248d90a01c38c57a6d3f448bf /dist
parentb539ea5236c088e27f709f039c298c0e08eb992f (diff)
downloadperl-793c3967c627135477eb7ae545e703cea4c3b2d0.tar.gz
dist/SelfLoader - Update missing build artifacts
Fixes https://github.com/Perl/perl5/issues/20874 for this module Tweaked Makefile.PL to set the license to 'perl_5' and not 'perl'
Diffstat (limited to 'dist')
-rw-r--r--dist/SelfLoader/.gitignore1
-rw-r--r--dist/SelfLoader/Changes43
-rw-r--r--dist/SelfLoader/Makefile.PL19
3 files changed, 63 insertions, 0 deletions
diff --git a/dist/SelfLoader/.gitignore b/dist/SelfLoader/.gitignore
new file mode 100644
index 0000000000..e54624d60d
--- /dev/null
+++ b/dist/SelfLoader/.gitignore
@@ -0,0 +1 @@
+!/Makefile.PL
diff --git a/dist/SelfLoader/Changes b/dist/SelfLoader/Changes
new file mode 100644
index 0000000000..349f882028
--- /dev/null
+++ b/dist/SelfLoader/Changes
@@ -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
index 0000000000..2997c53d64
--- /dev/null
+++ b/dist/SelfLoader/Makefile.PL
@@ -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__
+