summaryrefslogtreecommitdiff
path: root/dist
diff options
context:
space:
mode:
authorGraham Knop <haarg@haarg.org>2023-03-03 06:13:13 +0100
committerYves Orton <demerphq@gmail.com>2023-03-14 04:47:01 +0800
commitf5dde4d176d43f6562740009a3ea91d412f20c2f (patch)
treecb3169c4f199e30e6b6e077cafbbb8ccd8588783 /dist
parentcb9df13091578d029ab318ba946310831d2e1912 (diff)
downloadperl-f5dde4d176d43f6562740009a3ea91d412f20c2f.tar.gz
dist/encoding-warnings: add Makefile.PL and Changes
The CPAN dist uses Module::Install, so the Makefile.PL is rewritten to use standard ExtUtils::MakeMaker.
Diffstat (limited to 'dist')
-rw-r--r--dist/encoding-warnings/.gitignore1
-rw-r--r--dist/encoding-warnings/Changes27
-rw-r--r--dist/encoding-warnings/Makefile.PL22
3 files changed, 50 insertions, 0 deletions
diff --git a/dist/encoding-warnings/.gitignore b/dist/encoding-warnings/.gitignore
new file mode 100644
index 0000000000..e54624d60d
--- /dev/null
+++ b/dist/encoding-warnings/.gitignore
@@ -0,0 +1 @@
+!/Makefile.PL
diff --git a/dist/encoding-warnings/Changes b/dist/encoding-warnings/Changes
new file mode 100644
index 0000000000..4ada1a7c3e
--- /dev/null
+++ b/dist/encoding-warnings/Changes
@@ -0,0 +1,27 @@
+[Changes for 0.11 - 2007-06-05]
+
+* This module's effect is now lexical for Perl 5.9.5 and later.
+* "no encoding::warnings" is made more inefficient by doing away
+ with an empty encoding handler.
+ Contributed by: Rafaƫl Garcia-Suarez
+
+[Changes for 0.04 - 2004-03-16]
+
+* This be 0.04, from the YAPC::Taipei::2004 release party.
+* Various POD grammar updates.
+* Mentions that we will be making encoding.pm to be lexical during 5.9.
+
+[Changes for 0.03 - 2004-03-15]
+
+* Fixes various typo and punctuations.
+* Unified terminology to use "byte-string" and "unicode-string".
+
+[Changes for 0.02 - 2004-03-14]
+
+* Added lots of documentations, as well as explained the subtlety of
+ "use encoding" better. Prompted by Ton Hospel.
+* Do not bother decoding a string twice if it is us-ascii.
+
+[Changes for 0.01 - 2004-03-14]
+
+* Initial release on CPAN.
diff --git a/dist/encoding-warnings/Makefile.PL b/dist/encoding-warnings/Makefile.PL
new file mode 100644
index 0000000000..060819f480
--- /dev/null
+++ b/dist/encoding-warnings/Makefile.PL
@@ -0,0 +1,22 @@
+use strict;
+use warnings;
+use ExtUtils::MakeMaker;
+WriteMakefile(
+ NAME => 'encoding::warnings',
+ VERSION_FROM => 'lib/encoding/warnings.pm',
+ ABSTRACT_FROM => 'lib/encoding/warnings.pm',
+ INSTALLDIRS => ( $] >= 5.009002 && $] < 5.011 ? 'perl' : 'site' ),
+ LICENSE => 'perl_5',
+ TEST_REQUIRES => {
+ 'Test::More' => 0,
+ },
+ PREREQ_PM => {},
+ AUTHOR => 'Audrey Tang <cpan@audreyt.org>',
+ META_MERGE => {
+ resources => {
+ repository => 'https://github.com/perl/perl5.git',
+ bugtracker => 'https://github.com/perl/perl5/issues',
+ MailingList => 'https://lists.perl.org/list/perl5-porters.html',
+ },
+ },
+);