From f5dde4d176d43f6562740009a3ea91d412f20c2f Mon Sep 17 00:00:00 2001 From: Graham Knop Date: Fri, 3 Mar 2023 06:13:13 +0100 Subject: 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. --- dist/encoding-warnings/.gitignore | 1 + dist/encoding-warnings/Changes | 27 +++++++++++++++++++++++++++ dist/encoding-warnings/Makefile.PL | 22 ++++++++++++++++++++++ 3 files changed, 50 insertions(+) create mode 100644 dist/encoding-warnings/.gitignore create mode 100644 dist/encoding-warnings/Changes create mode 100644 dist/encoding-warnings/Makefile.PL (limited to 'dist') 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 ', + 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', + }, + }, +); -- cgit v1.2.1