summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/perl/dist/Module-CoreList
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/usr.bin/perl/dist/Module-CoreList')
-rw-r--r--gnu/usr.bin/perl/dist/Module-CoreList/Changes33
-rw-r--r--gnu/usr.bin/perl/dist/Module-CoreList/corelist8
-rw-r--r--gnu/usr.bin/perl/dist/Module-CoreList/lib/Module/CoreList.pm1020
-rw-r--r--gnu/usr.bin/perl/dist/Module-CoreList/lib/Module/CoreList/Utils.pm72
4 files changed, 1074 insertions, 59 deletions
diff --git a/gnu/usr.bin/perl/dist/Module-CoreList/Changes b/gnu/usr.bin/perl/dist/Module-CoreList/Changes
index 5aed2f9a68a..7e78c75a112 100644
--- a/gnu/usr.bin/perl/dist/Module-CoreList/Changes
+++ b/gnu/usr.bin/perl/dist/Module-CoreList/Changes
@@ -1,6 +1,39 @@
+5.20210123
+ - Updated for v5.32.1
+
+5.20210120
+ - Updated for v5.33.6
+
+5.20201220
+ - Updated for v5.33.5
+
+5.20201120
+ - Updated for v5.33.4
+
+5.20201020
+ - Updated for v5.33.3
+
+5.20200920
+ - Updated for v5.33.2
+
+5.20200820
+ - Updated for v5.33.1
+
+5.20200717
+ - Updated for v5.33.0
+
+5.20200620
+ - Updated for v5.32.0
+
5.20200601_30
- Updated for v5.30.3
+5.20200601_28
+ - Updated for v5.28.3
+
+5.20200520
+ - Updated for v5.31.12
+
5.20200428
- Updated for v5.31.11
diff --git a/gnu/usr.bin/perl/dist/Module-CoreList/corelist b/gnu/usr.bin/perl/dist/Module-CoreList/corelist
index 3d2706a8298..f17d9fff60a 100644
--- a/gnu/usr.bin/perl/dist/Module-CoreList/corelist
+++ b/gnu/usr.bin/perl/dist/Module-CoreList/corelist
@@ -224,7 +224,15 @@ if ($Opts{diff}) {
my ($old_ver, $new_ver) = @ARGV;
my $old = numify_version($old_ver);
+ if ( !Module::CoreList->find_version($old) ) {
+ print "\nModule::CoreList has no info on perl $old_ver\n\n";
+ exit 1;
+ }
my $new = numify_version($new_ver);
+ if ( !Module::CoreList->find_version($new) ) {
+ print "\nModule::CoreList has no info on perl $new_ver\n\n";
+ exit 1;
+ }
my %diff = Module::CoreList::changes_between($old, $new);
diff --git a/gnu/usr.bin/perl/dist/Module-CoreList/lib/Module/CoreList.pm b/gnu/usr.bin/perl/dist/Module-CoreList/lib/Module/CoreList.pm
index de8edafb9e0..cd63e480adf 100644
--- a/gnu/usr.bin/perl/dist/Module-CoreList/lib/Module/CoreList.pm
+++ b/gnu/usr.bin/perl/dist/Module-CoreList/lib/Module/CoreList.pm
@@ -4,7 +4,7 @@ use strict;
our ( %released, %version, %families, %upstream, %bug_tracker, %deprecated, %delta );
use version;
-our $VERSION = '5.20200601_30';
+our $VERSION = '5.20210123';
sub PKG_PATTERN () { q#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z# }
sub _looks_like_invocant ($) { local $@; !!eval { $_[0]->isa(__PACKAGE__) } }
@@ -134,8 +134,8 @@ sub changes_between {
my $left_ver = shift;
my $right_ver = shift;
- my $left = $version{ $left_ver };
- my $right = $version{ $right_ver };
+ my $left = $version{ $left_ver } || {};
+ my $right = $version{ $right_ver } || {};
my %uniq = (%$left, %$right);
@@ -363,7 +363,17 @@ sub changes_between {
5.030002 => '2020-03-14',
5.031010 => '2020-03-20',
5.031011 => '2020-04-28',
+ 5.028003 => '2020-06-01',
5.030003 => '2020-06-01',
+ 5.032000 => '2020-06-20',
+ 5.033000 => '2020-07-17',
+ 5.033001 => '2020-08-20',
+ 5.033002 => '2020-09-20',
+ 5.033003 => '2020-10-20',
+ 5.033004 => '2020-11-20',
+ 5.033005 => '2020-12-20',
+ 5.033006 => '2021-01-20',
+ 5.032001 => '2021-01-23',
);
for my $version ( sort { $a <=> $b } keys %released ) {
@@ -12414,7 +12424,6 @@ for my $version ( sort { $a <=> $b } keys %released ) {
'Tie::File' => '1.02',
'Time::HiRes' => '1.9732',
'Win32API::File' => '0.1203',
- 'Win32API::File::inc::ExtUtils::Myconst2perl'=> '1',
'XS::APItest' => '0.80',
'autouse' => '1.11',
'bytes' => '1.05',
@@ -17461,6 +17470,17 @@ for my $version ( sort { $a <=> $b } keys %released ) {
removed => {
}
},
+ 5.028003 => {
+ delta_from => 5.028002,
+ changed => {
+ 'B::Op_private' => '5.028003',
+ 'Config' => '5.028003',
+ 'Module::CoreList' => '5.20200601_28',
+ 'Module::CoreList::Utils'=> '5.20200601_28',
+ },
+ removed => {
+ }
+ },
5.030003 => {
delta_from => 5.030002,
changed => {
@@ -17472,6 +17492,832 @@ for my $version ( sort { $a <=> $b } keys %released ) {
removed => {
}
},
+ 5.032000 => {
+ delta_from => 5.031011,
+ changed => {
+ 'B::Deparse' => '1.54',
+ 'B::Op_private' => '5.032000',
+ 'Benchmark' => '1.23',
+ 'Config' => '5.032',
+ 'Encode' => '3.06',
+ 'Encode::Guess' => '2.08',
+ 'File::Glob' => '1.33',
+ 'List::Util' => '1.55',
+ 'List::Util::XS' => '1.55',
+ 'Module::CoreList' => '5.20200620',
+ 'Module::CoreList::Utils'=> '5.20200620',
+ 'POSIX' => '1.94',
+ 'Scalar::Util' => '1.55',
+ 'Storable' => '3.21',
+ 'Sub::Util' => '1.55',
+ 'Thread::Queue' => '3.14',
+ 'Tie::Scalar' => '1.05',
+ '_charnames' => '1.48',
+ 'charnames' => '1.48',
+ 'encoding' => '3.00',
+ 'perlfaq' => '5.20200523',
+ 're' => '0.40',
+ 'threads' => '2.25',
+ },
+ removed => {
+ }
+ },
+ 5.033000 => {
+ delta_from => 5.032000,
+ changed => {
+ 'B::Op_private' => '5.033000',
+ 'Config' => '5.033',
+ 'Module::CoreList' => '5.20200717',
+ 'Module::CoreList::Utils'=> '5.20200717',
+ 'feature' => '1.59',
+ },
+ removed => {
+ }
+ },
+ 5.033001 => {
+ delta_from => 5.033,
+ changed => {
+ 'B' => '1.81',
+ 'B::Deparse' => '1.55',
+ 'B::Op_private' => '5.033001',
+ 'Config' => '5.033001',
+ 'Data::Dumper' => '2.175',
+ 'Devel::PPPort' => '3.60',
+ 'Devel::Peek' => '1.29',
+ 'DynaLoader' => '1.48',
+ 'Errno' => '1.31',
+ 'Exporter' => '5.75',
+ 'Exporter::Heavy' => '5.75',
+ 'ExtUtils::Miniperl' => '1.10',
+ 'ExtUtils::PL2Bat' => '0.002',
+ 'ExtUtils::ParseXS' => '3.41',
+ 'ExtUtils::ParseXS::Constants'=> '3.41',
+ 'ExtUtils::ParseXS::CountLines'=> '3.41',
+ 'ExtUtils::ParseXS::Eval'=> '3.41',
+ 'ExtUtils::ParseXS::Utilities'=> '3.41',
+ 'Fcntl' => '1.14',
+ 'File::Path' => '2.17',
+ 'Hash::Util' => '0.24',
+ 'Hash::Util::FieldHash' => '1.21',
+ 'IO' => '1.44',
+ 'IO::Socket' => '1.44',
+ 'IO::Socket::UNIX' => '1.42',
+ 'IPC::Msg' => '2.08',
+ 'IPC::Semaphore' => '2.08',
+ 'IPC::SharedMem' => '2.08',
+ 'IPC::SysV' => '2.08',
+ 'JSON::PP' => '4.05',
+ 'JSON::PP::Boolean' => '4.05',
+ 'Math::Complex' => '1.5902',
+ 'Module::CoreList' => '5.20200820',
+ 'Module::CoreList::Utils'=> '5.20200820',
+ 'Net::Ping' => '2.73_01',
+ 'POSIX' => '1.95',
+ 'PerlIO::mmap' => '0.017',
+ 'Pod::Usage' => '1.70',
+ 'Safe' => '2.42',
+ 'Socket' => '2.030',
+ 'Storable' => '3.22',
+ 'Time::HiRes' => '1.9765',
+ 'Unicode::Normalize' => '1.28',
+ 'XS::APItest' => '1.11',
+ 'XS::Typemap' => '0.18',
+ 'feature' => '1.60',
+ 'mro' => '1.24',
+ 'strict' => '1.12',
+ 'threads' => '2.26',
+ 'threads::shared' => '1.62',
+ 'warnings' => '1.48',
+ },
+ removed => {
+ 'Moped::Msg' => 1,
+ }
+ },
+ 5.033002 => {
+ delta_from => 5.033001,
+ changed => {
+ 'Archive::Tar' => '2.38',
+ 'Archive::Tar::Constant'=> '2.38',
+ 'Archive::Tar::File' => '2.38',
+ 'B::Op_private' => '5.033002',
+ 'Compress::Raw::Bzip2' => '2.096',
+ 'Compress::Raw::Zlib' => '2.096',
+ 'Compress::Zlib' => '2.096',
+ 'Config' => '5.033002',
+ 'DB_File' => '1.854',
+ 'Env' => '1.05',
+ 'Errno' => '1.32',
+ 'ExtUtils::Install' => '2.18',
+ 'ExtUtils::Installed' => '2.18',
+ 'ExtUtils::Packlist' => '2.18',
+ 'Filter::Util::Call' => '1.60',
+ 'IO::Compress::Adapter::Bzip2'=> '2.096',
+ 'IO::Compress::Adapter::Deflate'=> '2.096',
+ 'IO::Compress::Adapter::Identity'=> '2.096',
+ 'IO::Compress::Base' => '2.096',
+ 'IO::Compress::Base::Common'=> '2.096',
+ 'IO::Compress::Bzip2' => '2.096',
+ 'IO::Compress::Deflate' => '2.096',
+ 'IO::Compress::Gzip' => '2.096',
+ 'IO::Compress::Gzip::Constants'=> '2.096',
+ 'IO::Compress::RawDeflate'=> '2.096',
+ 'IO::Compress::Zip' => '2.096',
+ 'IO::Compress::Zip::Constants'=> '2.096',
+ 'IO::Compress::Zlib::Constants'=> '2.096',
+ 'IO::Compress::Zlib::Extra'=> '2.096',
+ 'IO::Socket::IP' => '0.41',
+ 'IO::Uncompress::Adapter::Bunzip2'=> '2.096',
+ 'IO::Uncompress::Adapter::Identity'=> '2.096',
+ 'IO::Uncompress::Adapter::Inflate'=> '2.096',
+ 'IO::Uncompress::AnyInflate'=> '2.096',
+ 'IO::Uncompress::AnyUncompress'=> '2.096',
+ 'IO::Uncompress::Base' => '2.096',
+ 'IO::Uncompress::Bunzip2'=> '2.096',
+ 'IO::Uncompress::Gunzip'=> '2.096',
+ 'IO::Uncompress::Inflate'=> '2.096',
+ 'IO::Uncompress::RawInflate'=> '2.096',
+ 'IO::Uncompress::Unzip' => '2.096',
+ 'IO::Zlib' => '1.11',
+ 'Module::CoreList' => '5.20200920',
+ 'Module::CoreList::Utils'=> '5.20200920',
+ 'Module::Load::Conditional'=> '0.74',
+ 'Opcode' => '1.48',
+ 'PerlIO::scalar' => '0.31',
+ 'Safe' => '2.43',
+ 'Test2' => '1.302181',
+ 'Test2::API' => '1.302181',
+ 'Test2::API::Breakage' => '1.302181',
+ 'Test2::API::Context' => '1.302181',
+ 'Test2::API::Instance' => '1.302181',
+ 'Test2::API::InterceptResult'=> '1.302181',
+ 'Test2::API::InterceptResult::Event'=> '1.302181',
+ 'Test2::API::InterceptResult::Facet'=> '1.302181',
+ 'Test2::API::InterceptResult::Hub'=> '1.302181',
+ 'Test2::API::InterceptResult::Squasher'=> '1.302181',
+ 'Test2::API::Stack' => '1.302181',
+ 'Test2::Event' => '1.302181',
+ 'Test2::Event::Bail' => '1.302181',
+ 'Test2::Event::Diag' => '1.302181',
+ 'Test2::Event::Encoding'=> '1.302181',
+ 'Test2::Event::Exception'=> '1.302181',
+ 'Test2::Event::Fail' => '1.302181',
+ 'Test2::Event::Generic' => '1.302181',
+ 'Test2::Event::Note' => '1.302181',
+ 'Test2::Event::Ok' => '1.302181',
+ 'Test2::Event::Pass' => '1.302181',
+ 'Test2::Event::Plan' => '1.302181',
+ 'Test2::Event::Skip' => '1.302181',
+ 'Test2::Event::Subtest' => '1.302181',
+ 'Test2::Event::TAP::Version'=> '1.302181',
+ 'Test2::Event::V2' => '1.302181',
+ 'Test2::Event::Waiting' => '1.302181',
+ 'Test2::EventFacet' => '1.302181',
+ 'Test2::EventFacet::About'=> '1.302181',
+ 'Test2::EventFacet::Amnesty'=> '1.302181',
+ 'Test2::EventFacet::Assert'=> '1.302181',
+ 'Test2::EventFacet::Control'=> '1.302181',
+ 'Test2::EventFacet::Error'=> '1.302181',
+ 'Test2::EventFacet::Hub'=> '1.302181',
+ 'Test2::EventFacet::Info'=> '1.302181',
+ 'Test2::EventFacet::Info::Table'=> '1.302181',
+ 'Test2::EventFacet::Meta'=> '1.302181',
+ 'Test2::EventFacet::Parent'=> '1.302181',
+ 'Test2::EventFacet::Plan'=> '1.302181',
+ 'Test2::EventFacet::Render'=> '1.302181',
+ 'Test2::EventFacet::Trace'=> '1.302181',
+ 'Test2::Formatter' => '1.302181',
+ 'Test2::Formatter::TAP' => '1.302181',
+ 'Test2::Hub' => '1.302181',
+ 'Test2::Hub::Interceptor'=> '1.302181',
+ 'Test2::Hub::Interceptor::Terminator'=> '1.302181',
+ 'Test2::Hub::Subtest' => '1.302181',
+ 'Test2::IPC' => '1.302181',
+ 'Test2::IPC::Driver' => '1.302181',
+ 'Test2::IPC::Driver::Files'=> '1.302181',
+ 'Test2::Tools::Tiny' => '1.302181',
+ 'Test2::Util' => '1.302181',
+ 'Test2::Util::ExternalMeta'=> '1.302181',
+ 'Test2::Util::Facets2Legacy'=> '1.302181',
+ 'Test2::Util::HashBase' => '1.302181',
+ 'Test2::Util::Trace' => '1.302181',
+ 'Test::Builder' => '1.302181',
+ 'Test::Builder::Formatter'=> '1.302181',
+ 'Test::Builder::Module' => '1.302181',
+ 'Test::Builder::Tester' => '1.302181',
+ 'Test::Builder::Tester::Color'=> '1.302181',
+ 'Test::Builder::TodoDiag'=> '1.302181',
+ 'Test::More' => '1.302181',
+ 'Test::Simple' => '1.302181',
+ 'Test::Tester' => '1.302181',
+ 'Test::Tester::Capture' => '1.302181',
+ 'Test::Tester::CaptureRunner'=> '1.302181',
+ 'Test::Tester::Delegate'=> '1.302181',
+ 'Test::use::ok' => '1.302181',
+ 'ok' => '1.302181',
+ 'overload' => '1.32',
+ },
+ removed => {
+ }
+ },
+ 5.033003 => {
+ delta_from => 5.033002,
+ changed => {
+ 'Amiga::ARexx' => '0.05',
+ 'App::Cpan' => '1.676',
+ 'B::Op_private' => '5.033003',
+ 'CPAN' => '2.28',
+ 'CPAN::FTP' => '5.5013',
+ 'CPAN::FirstTime' => '5.5315',
+ 'Config' => '5.033003',
+ 'DB_File' => '1.855',
+ 'Data::Dumper' => '2.176',
+ 'Devel::PPPort' => '3.62',
+ 'Devel::Peek' => '1.30',
+ 'Digest' => '1.19',
+ 'Digest::MD5' => '2.58',
+ 'Digest::base' => '1.19',
+ 'Digest::file' => '1.19',
+ 'Encode' => '3.07',
+ 'Encode::GSM0338' => '2.08',
+ 'Errno' => '1.33',
+ 'Exporter' => '5.76',
+ 'Exporter::Heavy' => '5.76',
+ 'ExtUtils::Command' => '7.48',
+ 'ExtUtils::Command::MM' => '7.48',
+ 'ExtUtils::Liblist' => '7.48',
+ 'ExtUtils::Liblist::Kid'=> '7.48',
+ 'ExtUtils::MM' => '7.48',
+ 'ExtUtils::MM_AIX' => '7.48',
+ 'ExtUtils::MM_Any' => '7.48',
+ 'ExtUtils::MM_BeOS' => '7.48',
+ 'ExtUtils::MM_Cygwin' => '7.48',
+ 'ExtUtils::MM_DOS' => '7.48',
+ 'ExtUtils::MM_Darwin' => '7.48',
+ 'ExtUtils::MM_MacOS' => '7.48',
+ 'ExtUtils::MM_NW5' => '7.48',
+ 'ExtUtils::MM_OS2' => '7.48',
+ 'ExtUtils::MM_OS390' => '7.48',
+ 'ExtUtils::MM_QNX' => '7.48',
+ 'ExtUtils::MM_UWIN' => '7.48',
+ 'ExtUtils::MM_Unix' => '7.48',
+ 'ExtUtils::MM_VMS' => '7.48',
+ 'ExtUtils::MM_VOS' => '7.48',
+ 'ExtUtils::MM_Win32' => '7.48',
+ 'ExtUtils::MM_Win95' => '7.48',
+ 'ExtUtils::MY' => '7.48',
+ 'ExtUtils::MakeMaker' => '7.48',
+ 'ExtUtils::MakeMaker::Config'=> '7.48',
+ 'ExtUtils::MakeMaker::Locale'=> '7.48',
+ 'ExtUtils::MakeMaker::version'=> '7.48',
+ 'ExtUtils::MakeMaker::version::regex'=> '7.48',
+ 'ExtUtils::Mkbootstrap' => '7.48',
+ 'ExtUtils::Mksymlists' => '7.48',
+ 'ExtUtils::PL2Bat' => '0.003',
+ 'ExtUtils::testlib' => '7.48',
+ 'File::Temp' => '0.2311',
+ 'FindBin' => '1.52',
+ 'Getopt::Long' => '2.52',
+ 'Getopt::Std' => '1.13',
+ 'I18N::LangTags' => '0.45',
+ 'MIME::Base64' => '3.16',
+ 'MIME::QuotedPrint' => '3.16',
+ 'Module::CoreList' => '5.20201020',
+ 'Module::CoreList::Utils'=> '5.20201020',
+ 'Module::Load' => '0.36',
+ 'Pod::Checker' => '1.74',
+ 'Pod::Simple' => '3.41',
+ 'Pod::Simple::BlackBox' => '3.41',
+ 'Pod::Simple::Checker' => '3.41',
+ 'Pod::Simple::Debug' => '3.41',
+ 'Pod::Simple::DumpAsText'=> '3.41',
+ 'Pod::Simple::DumpAsXML'=> '3.41',
+ 'Pod::Simple::HTML' => '3.41',
+ 'Pod::Simple::HTMLBatch'=> '3.41',
+ 'Pod::Simple::LinkSection'=> '3.41',
+ 'Pod::Simple::Methody' => '3.41',
+ 'Pod::Simple::Progress' => '3.41',
+ 'Pod::Simple::PullParser'=> '3.41',
+ 'Pod::Simple::PullParserEndToken'=> '3.41',
+ 'Pod::Simple::PullParserStartToken'=> '3.41',
+ 'Pod::Simple::PullParserTextToken'=> '3.41',
+ 'Pod::Simple::PullParserToken'=> '3.41',
+ 'Pod::Simple::RTF' => '3.41',
+ 'Pod::Simple::Search' => '3.41',
+ 'Pod::Simple::SimpleTree'=> '3.41',
+ 'Pod::Simple::Text' => '3.41',
+ 'Pod::Simple::TextContent'=> '3.41',
+ 'Pod::Simple::TiedOutFH'=> '3.41',
+ 'Pod::Simple::Transcode'=> '3.41',
+ 'Pod::Simple::TranscodeDumb'=> '3.41',
+ 'Pod::Simple::TranscodeSmart'=> '3.41',
+ 'Pod::Simple::XHTML' => '3.41',
+ 'Pod::Simple::XMLOutStream'=> '3.41',
+ 'Pod::Usage' => '2.01',
+ 'Storable' => '3.23',
+ 'Symbol' => '1.09',
+ 'Test2' => '1.302182',
+ 'Test2::API' => '1.302182',
+ 'Test2::API::Breakage' => '1.302182',
+ 'Test2::API::Context' => '1.302182',
+ 'Test2::API::Instance' => '1.302182',
+ 'Test2::API::InterceptResult'=> '1.302182',
+ 'Test2::API::InterceptResult::Event'=> '1.302182',
+ 'Test2::API::InterceptResult::Facet'=> '1.302182',
+ 'Test2::API::InterceptResult::Hub'=> '1.302182',
+ 'Test2::API::InterceptResult::Squasher'=> '1.302182',
+ 'Test2::API::Stack' => '1.302182',
+ 'Test2::Event' => '1.302182',
+ 'Test2::Event::Bail' => '1.302182',
+ 'Test2::Event::Diag' => '1.302182',
+ 'Test2::Event::Encoding'=> '1.302182',
+ 'Test2::Event::Exception'=> '1.302182',
+ 'Test2::Event::Fail' => '1.302182',
+ 'Test2::Event::Generic' => '1.302182',
+ 'Test2::Event::Note' => '1.302182',
+ 'Test2::Event::Ok' => '1.302182',
+ 'Test2::Event::Pass' => '1.302182',
+ 'Test2::Event::Plan' => '1.302182',
+ 'Test2::Event::Skip' => '1.302182',
+ 'Test2::Event::Subtest' => '1.302182',
+ 'Test2::Event::TAP::Version'=> '1.302182',
+ 'Test2::Event::V2' => '1.302182',
+ 'Test2::Event::Waiting' => '1.302182',
+ 'Test2::EventFacet' => '1.302182',
+ 'Test2::EventFacet::About'=> '1.302182',
+ 'Test2::EventFacet::Amnesty'=> '1.302182',
+ 'Test2::EventFacet::Assert'=> '1.302182',
+ 'Test2::EventFacet::Control'=> '1.302182',
+ 'Test2::EventFacet::Error'=> '1.302182',
+ 'Test2::EventFacet::Hub'=> '1.302182',
+ 'Test2::EventFacet::Info'=> '1.302182',
+ 'Test2::EventFacet::Info::Table'=> '1.302182',
+ 'Test2::EventFacet::Meta'=> '1.302182',
+ 'Test2::EventFacet::Parent'=> '1.302182',
+ 'Test2::EventFacet::Plan'=> '1.302182',
+ 'Test2::EventFacet::Render'=> '1.302182',
+ 'Test2::EventFacet::Trace'=> '1.302182',
+ 'Test2::Formatter' => '1.302182',
+ 'Test2::Formatter::TAP' => '1.302182',
+ 'Test2::Hub' => '1.302182',
+ 'Test2::Hub::Interceptor'=> '1.302182',
+ 'Test2::Hub::Interceptor::Terminator'=> '1.302182',
+ 'Test2::Hub::Subtest' => '1.302182',
+ 'Test2::IPC' => '1.302182',
+ 'Test2::IPC::Driver' => '1.302182',
+ 'Test2::IPC::Driver::Files'=> '1.302182',
+ 'Test2::Tools::Tiny' => '1.302182',
+ 'Test2::Util' => '1.302182',
+ 'Test2::Util::ExternalMeta'=> '1.302182',
+ 'Test2::Util::Facets2Legacy'=> '1.302182',
+ 'Test2::Util::HashBase' => '1.302182',
+ 'Test2::Util::Trace' => '1.302182',
+ 'Test::Builder' => '1.302182',
+ 'Test::Builder::Formatter'=> '1.302182',
+ 'Test::Builder::Module' => '1.302182',
+ 'Test::Builder::Tester' => '1.302182',
+ 'Test::Builder::Tester::Color'=> '1.302182',
+ 'Test::Builder::TodoDiag'=> '1.302182',
+ 'Test::More' => '1.302182',
+ 'Test::Simple' => '1.302182',
+ 'Test::Tester' => '1.302182',
+ 'Test::Tester::Capture' => '1.302182',
+ 'Test::Tester::CaptureRunner'=> '1.302182',
+ 'Test::Tester::Delegate'=> '1.302182',
+ 'Test::use::ok' => '1.302182',
+ 'Tie::RefHash' => '1.40',
+ 'Time::Local' => '1.30',
+ 'Unicode::Collate' => '1.29',
+ 'Unicode::Collate::CJK::Big5'=> '1.29',
+ 'Unicode::Collate::CJK::GB2312'=> '1.29',
+ 'Unicode::Collate::CJK::JISX0208'=> '1.29',
+ 'Unicode::Collate::CJK::Korean'=> '1.29',
+ 'Unicode::Collate::CJK::Pinyin'=> '1.29',
+ 'Unicode::Collate::CJK::Stroke'=> '1.29',
+ 'Unicode::Collate::CJK::Zhuyin'=> '1.29',
+ 'Unicode::Collate::Locale'=> '1.29',
+ 'Win32' => '0.54',
+ 'XS::APItest' => '1.12',
+ 'bytes' => '1.08',
+ 'experimental' => '0.022',
+ 'feature' => '1.61',
+ 'if' => '0.0609',
+ 'locale' => '1.10',
+ 'mro' => '1.25',
+ 'ok' => '1.302182',
+ 'overload' => '1.33',
+ 're' => '0.41',
+ 'subs' => '1.04',
+ 'utf8' => '1.24',
+ 'version' => '0.9928',
+ 'version::regex' => '0.9928',
+ },
+ removed => {
+ }
+ },
+ 5.033004 => {
+ delta_from => 5.033003,
+ changed => {
+ 'B' => '1.82',
+ 'B::Op_private' => '5.033004',
+ 'Config' => '5.033004',
+ 'Cwd' => '3.79',
+ 'ExtUtils::CBuilder' => '0.280235',
+ 'ExtUtils::CBuilder::Base'=> '0.280235',
+ 'ExtUtils::CBuilder::Platform::Unix'=> '0.280235',
+ 'ExtUtils::CBuilder::Platform::VMS'=> '0.280235',
+ 'ExtUtils::CBuilder::Platform::Windows'=> '0.280235',
+ 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280235',
+ 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280235',
+ 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280235',
+ 'ExtUtils::CBuilder::Platform::aix'=> '0.280235',
+ 'ExtUtils::CBuilder::Platform::android'=> '0.280235',
+ 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280235',
+ 'ExtUtils::CBuilder::Platform::darwin'=> '0.280235',
+ 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280235',
+ 'ExtUtils::CBuilder::Platform::os2'=> '0.280235',
+ 'ExtUtils::Command' => '7.56',
+ 'ExtUtils::Command::MM' => '7.56',
+ 'ExtUtils::Liblist' => '7.56',
+ 'ExtUtils::Liblist::Kid'=> '7.56',
+ 'ExtUtils::MM' => '7.56',
+ 'ExtUtils::MM_AIX' => '7.56',
+ 'ExtUtils::MM_Any' => '7.56',
+ 'ExtUtils::MM_BeOS' => '7.56',
+ 'ExtUtils::MM_Cygwin' => '7.56',
+ 'ExtUtils::MM_DOS' => '7.56',
+ 'ExtUtils::MM_Darwin' => '7.56',
+ 'ExtUtils::MM_MacOS' => '7.56',
+ 'ExtUtils::MM_NW5' => '7.56',
+ 'ExtUtils::MM_OS2' => '7.56',
+ 'ExtUtils::MM_OS390' => '7.56',
+ 'ExtUtils::MM_QNX' => '7.56',
+ 'ExtUtils::MM_UWIN' => '7.56',
+ 'ExtUtils::MM_Unix' => '7.56',
+ 'ExtUtils::MM_VMS' => '7.56',
+ 'ExtUtils::MM_VOS' => '7.56',
+ 'ExtUtils::MM_Win32' => '7.56',
+ 'ExtUtils::MM_Win95' => '7.56',
+ 'ExtUtils::MY' => '7.56',
+ 'ExtUtils::MakeMaker' => '7.56',
+ 'ExtUtils::MakeMaker::Config'=> '7.56',
+ 'ExtUtils::MakeMaker::Locale'=> '7.56',
+ 'ExtUtils::MakeMaker::version'=> '7.56',
+ 'ExtUtils::MakeMaker::version::regex'=> '7.56',
+ 'ExtUtils::Mkbootstrap' => '7.56',
+ 'ExtUtils::Mksymlists' => '7.56',
+ 'ExtUtils::testlib' => '7.56',
+ 'File::Fetch' => '1.00',
+ 'File::Path' => '2.18',
+ 'File::Spec' => '3.79',
+ 'File::Spec::AmigaOS' => '3.79',
+ 'File::Spec::Cygwin' => '3.79',
+ 'File::Spec::Epoc' => '3.79',
+ 'File::Spec::Functions' => '3.79',
+ 'File::Spec::Mac' => '3.79',
+ 'File::Spec::OS2' => '3.79',
+ 'File::Spec::Unix' => '3.79',
+ 'File::Spec::VMS' => '3.79',
+ 'IPC::Msg' => '2.09',
+ 'IPC::Semaphore' => '2.09',
+ 'IPC::SharedMem' => '2.09',
+ 'IPC::SysV' => '2.09',
+ 'Module::CoreList' => '5.20201120',
+ 'Module::CoreList::Utils'=> '5.20201120',
+ 'Net::Ping' => '2.74',
+ 'Pod::Html' => '1.26',
+ 'Pod::Simple' => '3.42',
+ 'Pod::Simple::BlackBox' => '3.42',
+ 'Pod::Simple::Checker' => '3.42',
+ 'Pod::Simple::Debug' => '3.42',
+ 'Pod::Simple::DumpAsText'=> '3.42',
+ 'Pod::Simple::DumpAsXML'=> '3.42',
+ 'Pod::Simple::HTML' => '3.42',
+ 'Pod::Simple::HTMLBatch'=> '3.42',
+ 'Pod::Simple::LinkSection'=> '3.42',
+ 'Pod::Simple::Methody' => '3.42',
+ 'Pod::Simple::Progress' => '3.42',
+ 'Pod::Simple::PullParser'=> '3.42',
+ 'Pod::Simple::PullParserEndToken'=> '3.42',
+ 'Pod::Simple::PullParserStartToken'=> '3.42',
+ 'Pod::Simple::PullParserTextToken'=> '3.42',
+ 'Pod::Simple::PullParserToken'=> '3.42',
+ 'Pod::Simple::RTF' => '3.42',
+ 'Pod::Simple::Search' => '3.42',
+ 'Pod::Simple::SimpleTree'=> '3.42',
+ 'Pod::Simple::Text' => '3.42',
+ 'Pod::Simple::TextContent'=> '3.42',
+ 'Pod::Simple::TiedOutFH'=> '3.42',
+ 'Pod::Simple::Transcode'=> '3.42',
+ 'Pod::Simple::TranscodeDumb'=> '3.42',
+ 'Pod::Simple::TranscodeSmart'=> '3.42',
+ 'Pod::Simple::XHTML' => '3.42',
+ 'Pod::Simple::XMLOutStream'=> '3.42',
+ 'Test2' => '1.302183',
+ 'Test2::API' => '1.302183',
+ 'Test2::API::Breakage' => '1.302183',
+ 'Test2::API::Context' => '1.302183',
+ 'Test2::API::Instance' => '1.302183',
+ 'Test2::API::InterceptResult'=> '1.302183',
+ 'Test2::API::InterceptResult::Event'=> '1.302183',
+ 'Test2::API::InterceptResult::Facet'=> '1.302183',
+ 'Test2::API::InterceptResult::Hub'=> '1.302183',
+ 'Test2::API::InterceptResult::Squasher'=> '1.302183',
+ 'Test2::API::Stack' => '1.302183',
+ 'Test2::Event' => '1.302183',
+ 'Test2::Event::Bail' => '1.302183',
+ 'Test2::Event::Diag' => '1.302183',
+ 'Test2::Event::Encoding'=> '1.302183',
+ 'Test2::Event::Exception'=> '1.302183',
+ 'Test2::Event::Fail' => '1.302183',
+ 'Test2::Event::Generic' => '1.302183',
+ 'Test2::Event::Note' => '1.302183',
+ 'Test2::Event::Ok' => '1.302183',
+ 'Test2::Event::Pass' => '1.302183',
+ 'Test2::Event::Plan' => '1.302183',
+ 'Test2::Event::Skip' => '1.302183',
+ 'Test2::Event::Subtest' => '1.302183',
+ 'Test2::Event::TAP::Version'=> '1.302183',
+ 'Test2::Event::V2' => '1.302183',
+ 'Test2::Event::Waiting' => '1.302183',
+ 'Test2::EventFacet' => '1.302183',
+ 'Test2::EventFacet::About'=> '1.302183',
+ 'Test2::EventFacet::Amnesty'=> '1.302183',
+ 'Test2::EventFacet::Assert'=> '1.302183',
+ 'Test2::EventFacet::Control'=> '1.302183',
+ 'Test2::EventFacet::Error'=> '1.302183',
+ 'Test2::EventFacet::Hub'=> '1.302183',
+ 'Test2::EventFacet::Info'=> '1.302183',
+ 'Test2::EventFacet::Info::Table'=> '1.302183',
+ 'Test2::EventFacet::Meta'=> '1.302183',
+ 'Test2::EventFacet::Parent'=> '1.302183',
+ 'Test2::EventFacet::Plan'=> '1.302183',
+ 'Test2::EventFacet::Render'=> '1.302183',
+ 'Test2::EventFacet::Trace'=> '1.302183',
+ 'Test2::Formatter' => '1.302183',
+ 'Test2::Formatter::TAP' => '1.302183',
+ 'Test2::Hub' => '1.302183',
+ 'Test2::Hub::Interceptor'=> '1.302183',
+ 'Test2::Hub::Interceptor::Terminator'=> '1.302183',
+ 'Test2::Hub::Subtest' => '1.302183',
+ 'Test2::IPC' => '1.302183',
+ 'Test2::IPC::Driver' => '1.302183',
+ 'Test2::IPC::Driver::Files'=> '1.302183',
+ 'Test2::Tools::Tiny' => '1.302183',
+ 'Test2::Util' => '1.302183',
+ 'Test2::Util::ExternalMeta'=> '1.302183',
+ 'Test2::Util::Facets2Legacy'=> '1.302183',
+ 'Test2::Util::HashBase' => '1.302183',
+ 'Test2::Util::Trace' => '1.302183',
+ 'Test::Builder' => '1.302183',
+ 'Test::Builder::Formatter'=> '1.302183',
+ 'Test::Builder::Module' => '1.302183',
+ 'Test::Builder::Tester' => '1.302183',
+ 'Test::Builder::Tester::Color'=> '1.302183',
+ 'Test::Builder::TodoDiag'=> '1.302183',
+ 'Test::More' => '1.302183',
+ 'Test::Simple' => '1.302183',
+ 'Test::Tester' => '1.302183',
+ 'Test::Tester::Capture' => '1.302183',
+ 'Test::Tester::CaptureRunner'=> '1.302183',
+ 'Test::Tester::Delegate'=> '1.302183',
+ 'Test::use::ok' => '1.302183',
+ 'XS::APItest' => '1.13',
+ 'ok' => '1.302183',
+ 'perlfaq' => '5.20201107',
+ },
+ removed => {
+ }
+ },
+ 5.033005 => {
+ delta_from => 5.033004,
+ changed => {
+ 'App::Prove' => '3.43',
+ 'App::Prove::State' => '3.43',
+ 'App::Prove::State::Result'=> '3.43',
+ 'App::Prove::State::Result::Test'=> '3.43',
+ 'B::Op_private' => '5.033005',
+ 'Carp' => '1.51',
+ 'Carp::Heavy' => '1.51',
+ 'Config' => '5.033005',
+ 'Config::Perl::V' => '0.33',
+ 'Cwd' => '3.80',
+ 'DynaLoader' => '1.49',
+ 'Encode' => '3.08',
+ 'Encode::GSM0338' => '2.09',
+ 'ExtUtils::Install' => '2.20',
+ 'ExtUtils::Installed' => '2.20',
+ 'ExtUtils::Packlist' => '2.20',
+ 'ExtUtils::ParseXS' => '3.42',
+ 'ExtUtils::ParseXS::Constants'=> '3.42',
+ 'ExtUtils::ParseXS::CountLines'=> '3.42',
+ 'ExtUtils::ParseXS::Eval'=> '3.42',
+ 'ExtUtils::ParseXS::Utilities'=> '3.42',
+ 'File::Copy' => '2.35',
+ 'File::Find' => '1.38',
+ 'File::Spec' => '3.80',
+ 'File::Spec::AmigaOS' => '3.80',
+ 'File::Spec::Cygwin' => '3.80',
+ 'File::Spec::Epoc' => '3.80',
+ 'File::Spec::Functions' => '3.80',
+ 'File::Spec::Mac' => '3.80',
+ 'File::Spec::OS2' => '3.80',
+ 'File::Spec::Unix' => '3.80',
+ 'File::Spec::VMS' => '3.80',
+ 'File::Spec::Win32' => '3.80',
+ 'Module::CoreList' => '5.20201220',
+ 'Module::CoreList::Utils'=> '5.20201220',
+ 'Net::Cmd' => '3.12',
+ 'Net::Config' => '3.12',
+ 'Net::Domain' => '3.12',
+ 'Net::FTP' => '3.12',
+ 'Net::FTP::A' => '3.12',
+ 'Net::FTP::E' => '3.12',
+ 'Net::FTP::I' => '3.12',
+ 'Net::FTP::L' => '3.12',
+ 'Net::FTP::dataconn' => '3.12',
+ 'Net::NNTP' => '3.12',
+ 'Net::Netrc' => '3.12',
+ 'Net::POP3' => '3.12',
+ 'Net::SMTP' => '3.12',
+ 'Net::Time' => '3.12',
+ 'ODBM_File' => '1.17',
+ 'Opcode' => '1.49',
+ 'POSIX' => '1.96',
+ 'PerlIO::via::QuotedPrint'=> '0.09',
+ 'TAP::Base' => '3.43',
+ 'TAP::Formatter::Base' => '3.43',
+ 'TAP::Formatter::Color' => '3.43',
+ 'TAP::Formatter::Console'=> '3.43',
+ 'TAP::Formatter::Console::ParallelSession'=> '3.43',
+ 'TAP::Formatter::Console::Session'=> '3.43',
+ 'TAP::Formatter::File' => '3.43',
+ 'TAP::Formatter::File::Session'=> '3.43',
+ 'TAP::Formatter::Session'=> '3.43',
+ 'TAP::Harness' => '3.43',
+ 'TAP::Harness::Env' => '3.43',
+ 'TAP::Object' => '3.43',
+ 'TAP::Parser' => '3.43',
+ 'TAP::Parser::Aggregator'=> '3.43',
+ 'TAP::Parser::Grammar' => '3.43',
+ 'TAP::Parser::Iterator' => '3.43',
+ 'TAP::Parser::Iterator::Array'=> '3.43',
+ 'TAP::Parser::Iterator::Process'=> '3.43',
+ 'TAP::Parser::Iterator::Stream'=> '3.43',
+ 'TAP::Parser::IteratorFactory'=> '3.43',
+ 'TAP::Parser::Multiplexer'=> '3.43',
+ 'TAP::Parser::Result' => '3.43',
+ 'TAP::Parser::Result::Bailout'=> '3.43',
+ 'TAP::Parser::Result::Comment'=> '3.43',
+ 'TAP::Parser::Result::Plan'=> '3.43',
+ 'TAP::Parser::Result::Pragma'=> '3.43',
+ 'TAP::Parser::Result::Test'=> '3.43',
+ 'TAP::Parser::Result::Unknown'=> '3.43',
+ 'TAP::Parser::Result::Version'=> '3.43',
+ 'TAP::Parser::Result::YAML'=> '3.43',
+ 'TAP::Parser::ResultFactory'=> '3.43',
+ 'TAP::Parser::Scheduler'=> '3.43',
+ 'TAP::Parser::Scheduler::Job'=> '3.43',
+ 'TAP::Parser::Scheduler::Spinner'=> '3.43',
+ 'TAP::Parser::Source' => '3.43',
+ 'TAP::Parser::SourceHandler'=> '3.43',
+ 'TAP::Parser::SourceHandler::Executable'=> '3.43',
+ 'TAP::Parser::SourceHandler::File'=> '3.43',
+ 'TAP::Parser::SourceHandler::Handle'=> '3.43',
+ 'TAP::Parser::SourceHandler::Perl'=> '3.43',
+ 'TAP::Parser::SourceHandler::RawTAP'=> '3.43',
+ 'TAP::Parser::YAMLish::Reader'=> '3.43',
+ 'TAP::Parser::YAMLish::Writer'=> '3.43',
+ 'Test::Harness' => '3.43',
+ 'Text::Balanced' => '2.04',
+ 'Time::HiRes' => '1.9766',
+ 'XS::APItest' => '1.14',
+ 'warnings' => '1.49',
+ },
+ removed => {
+ }
+ },
+ 5.033006 => {
+ delta_from => 5.033005,
+ changed => {
+ 'B::Op_private' => '5.033006',
+ 'Carp' => '1.52',
+ 'Carp::Heavy' => '1.52',
+ 'Compress::Raw::Bzip2' => '2.100',
+ 'Compress::Raw::Zlib' => '2.100',
+ 'Compress::Zlib' => '2.100',
+ 'Config' => '5.033006',
+ 'DynaLoader' => '1.50',
+ 'ExtUtils::Command' => '7.58',
+ 'ExtUtils::Command::MM' => '7.58',
+ 'ExtUtils::Liblist' => '7.58',
+ 'ExtUtils::Liblist::Kid'=> '7.58',
+ 'ExtUtils::MM' => '7.58',
+ 'ExtUtils::MM_AIX' => '7.58',
+ 'ExtUtils::MM_Any' => '7.58',
+ 'ExtUtils::MM_BeOS' => '7.58',
+ 'ExtUtils::MM_Cygwin' => '7.58',
+ 'ExtUtils::MM_DOS' => '7.58',
+ 'ExtUtils::MM_Darwin' => '7.58',
+ 'ExtUtils::MM_MacOS' => '7.58',
+ 'ExtUtils::MM_NW5' => '7.58',
+ 'ExtUtils::MM_OS2' => '7.58',
+ 'ExtUtils::MM_OS390' => '7.58',
+ 'ExtUtils::MM_QNX' => '7.58',
+ 'ExtUtils::MM_UWIN' => '7.58',
+ 'ExtUtils::MM_Unix' => '7.58',
+ 'ExtUtils::MM_VMS' => '7.58',
+ 'ExtUtils::MM_VOS' => '7.58',
+ 'ExtUtils::MM_Win32' => '7.58',
+ 'ExtUtils::MM_Win95' => '7.58',
+ 'ExtUtils::MY' => '7.58',
+ 'ExtUtils::MakeMaker' => '7.58',
+ 'ExtUtils::MakeMaker::Config'=> '7.58',
+ 'ExtUtils::MakeMaker::Locale'=> '7.58',
+ 'ExtUtils::MakeMaker::version'=> '7.58',
+ 'ExtUtils::MakeMaker::version::regex'=> '7.58',
+ 'ExtUtils::Manifest' => '1.73',
+ 'ExtUtils::Mkbootstrap' => '7.58',
+ 'ExtUtils::Mksymlists' => '7.58',
+ 'ExtUtils::testlib' => '7.58',
+ 'GDBM_File' => '1.19',
+ 'IO' => '1.45',
+ 'IO::Compress::Adapter::Bzip2'=> '2.100',
+ 'IO::Compress::Adapter::Deflate'=> '2.100',
+ 'IO::Compress::Adapter::Identity'=> '2.100',
+ 'IO::Compress::Base' => '2.100',
+ 'IO::Compress::Base::Common'=> '2.100',
+ 'IO::Compress::Bzip2' => '2.100',
+ 'IO::Compress::Deflate' => '2.100',
+ 'IO::Compress::Gzip' => '2.100',
+ 'IO::Compress::Gzip::Constants'=> '2.100',
+ 'IO::Compress::RawDeflate'=> '2.100',
+ 'IO::Compress::Zip' => '2.100',
+ 'IO::Compress::Zip::Constants'=> '2.100',
+ 'IO::Compress::Zlib::Constants'=> '2.100',
+ 'IO::Compress::Zlib::Extra'=> '2.100',
+ 'IO::Dir' => '1.45',
+ 'IO::File' => '1.45',
+ 'IO::Handle' => '1.45',
+ 'IO::Pipe' => '1.45',
+ 'IO::Poll' => '1.45',
+ 'IO::Seekable' => '1.45',
+ 'IO::Select' => '1.45',
+ 'IO::Socket' => '1.45',
+ 'IO::Socket::INET' => '1.45',
+ 'IO::Socket::UNIX' => '1.45',
+ 'IO::Uncompress::Adapter::Bunzip2'=> '2.100',
+ 'IO::Uncompress::Adapter::Identity'=> '2.100',
+ 'IO::Uncompress::Adapter::Inflate'=> '2.100',
+ 'IO::Uncompress::AnyInflate'=> '2.100',
+ 'IO::Uncompress::AnyUncompress'=> '2.100',
+ 'IO::Uncompress::Base' => '2.100',
+ 'IO::Uncompress::Bunzip2'=> '2.100',
+ 'IO::Uncompress::Gunzip'=> '2.100',
+ 'IO::Uncompress::Inflate'=> '2.100',
+ 'IO::Uncompress::RawInflate'=> '2.100',
+ 'IO::Uncompress::Unzip' => '2.100',
+ 'Module::CoreList' => '5.20210120',
+ 'Module::CoreList::Utils'=> '5.20210120',
+ 'Net::Cmd' => '3.13',
+ 'Net::Config' => '3.13',
+ 'Net::Domain' => '3.13',
+ 'Net::FTP' => '3.13',
+ 'Net::FTP::A' => '3.13',
+ 'Net::FTP::E' => '3.13',
+ 'Net::FTP::I' => '3.13',
+ 'Net::FTP::L' => '3.13',
+ 'Net::FTP::dataconn' => '3.13',
+ 'Net::NNTP' => '3.13',
+ 'Net::Netrc' => '3.13',
+ 'Net::POP3' => '3.13',
+ 'Net::SMTP' => '3.13',
+ 'Net::Time' => '3.13',
+ 'POSIX' => '1.97',
+ 'Socket' => '2.031',
+ 'XS::APItest' => '1.15',
+ 'feature' => '1.62',
+ 'warnings' => '1.50',
+ },
+ removed => {
+ }
+ },
+ 5.032001 => {
+ delta_from => 5.032000,
+ changed => {
+ 'B::Op_private' => '5.032001',
+ 'Config' => '5.032001',
+ 'Data::Dumper' => '2.174_01',
+ 'DynaLoader' => '1.47_01',
+ 'ExtUtils::Liblist::Kid'=> '7.44_01',
+ 'Module::CoreList' => '5.20210123',
+ 'Module::CoreList::Utils'=> '5.20210123',
+ 'Opcode' => '1.48',
+ 'Safe' => '2.41_01',
+ 'Win32API::File::inc::ExtUtils::Myconst2perl'=> '1',
+ },
+ removed => {
+ }
+ },
);
sub is_core
@@ -18572,6 +19418,13 @@ sub is_core
removed => {
}
},
+ 5.028003 => {
+ delta_from => 5.028002,
+ changed => {
+ },
+ removed => {
+ }
+ },
5.030003 => {
delta_from => 5.030002,
changed => {
@@ -18579,6 +19432,69 @@ sub is_core
removed => {
}
},
+ 5.032000 => {
+ delta_from => 5.031011,
+ changed => {
+ },
+ removed => {
+ }
+ },
+ 5.033000 => {
+ delta_from => 5.032,
+ changed => {
+ },
+ removed => {
+ }
+ },
+ 5.033001 => {
+ delta_from => 5.033000,
+ changed => {
+ },
+ removed => {
+ }
+ },
+ 5.033002 => {
+ delta_from => 5.033001,
+ changed => {
+ },
+ removed => {
+ }
+ },
+ 5.033003 => {
+ delta_from => 5.033002,
+ changed => {
+ },
+ removed => {
+ }
+ },
+ 5.033004 => {
+ delta_from => 5.033003,
+ changed => {
+ },
+ removed => {
+ }
+ },
+ 5.033005 => {
+ delta_from => 5.033004,
+ changed => {
+ },
+ removed => {
+ }
+ },
+ 5.033006 => {
+ delta_from => 5.033005,
+ changed => {
+ },
+ removed => {
+ }
+ },
+ 5.032001 => {
+ delta_from => 5.032,
+ changed => {
+ },
+ removed => {
+ }
+ },
);
%deprecated = _undelta(\%deprecated);
@@ -18802,12 +19718,8 @@ sub is_core
'PerlIO::via::QuotedPrint'=> 'cpan',
'Pod::Checker' => 'cpan',
'Pod::Escapes' => 'cpan',
- 'Pod::Find' => 'cpan',
- 'Pod::InputObjects' => 'cpan',
'Pod::Man' => 'cpan',
'Pod::ParseLink' => 'cpan',
- 'Pod::ParseUtils' => 'cpan',
- 'Pod::Parser' => 'cpan',
'Pod::Perldoc' => 'cpan',
'Pod::Perldoc::BaseTo' => 'cpan',
'Pod::Perldoc::GetOptsOO'=> 'cpan',
@@ -18821,8 +19733,6 @@ sub is_core
'Pod::Perldoc::ToText' => 'cpan',
'Pod::Perldoc::ToTk' => 'cpan',
'Pod::Perldoc::ToXml' => 'cpan',
- 'Pod::PlainText' => 'cpan',
- 'Pod::Select' => 'cpan',
'Pod::Simple' => 'cpan',
'Pod::Simple::BlackBox' => 'cpan',
'Pod::Simple::Checker' => 'cpan',
@@ -18832,6 +19742,7 @@ sub is_core
'Pod::Simple::HTML' => 'cpan',
'Pod::Simple::HTMLBatch'=> 'cpan',
'Pod::Simple::HTMLLegacy'=> 'cpan',
+ 'Pod::Simple::JustPod' => 'cpan',
'Pod::Simple::LinkSection'=> 'cpan',
'Pod::Simple::Methody' => 'cpan',
'Pod::Simple::Progress' => 'cpan',
@@ -18991,7 +19902,6 @@ sub is_core
'Unicode::Collate::Locale'=> 'cpan',
'Win32' => 'cpan',
'Win32API::File' => 'cpan',
- 'Win32API::File::inc::ExtUtils::Myconst2perl'=> 'cpan',
'autodie' => 'cpan',
'autodie::Scope::Guard' => 'cpan',
'autodie::Scope::GuardStack'=> 'cpan',
@@ -19069,13 +19979,13 @@ sub is_core
'Compress::Raw::Bzip2' => 'https://github.com/pmqs/Compress-Raw-Bzip2/issues',
'Compress::Raw::Zlib' => 'https://github.com/pmqs/Compress-Raw-Zlib/issues',
'Compress::Zlib' => 'https://github.com/pmqs/IO-Compress/issues',
- 'Config::Perl::V' => undef,
+ 'Config::Perl::V' => 'https://github.com/Tux/Config-Perl-V/issues',
'DB_File' => 'https://github.com/pmqs/DB_File/issues',
- 'Digest' => undef,
- 'Digest::MD5' => undef,
+ 'Digest' => 'https://github.com/Dual-Life/digest/issues',
+ 'Digest::MD5' => 'https://github.com/Dual-Life/digest-md5/issues',
'Digest::SHA' => undef,
- 'Digest::base' => undef,
- 'Digest::file' => undef,
+ 'Digest::base' => 'https://github.com/Dual-Life/digest/issues',
+ 'Digest::file' => 'https://github.com/Dual-Life/digest/issues',
'Encode' => undef,
'Encode::Alias' => undef,
'Encode::Byte' => undef,
@@ -19100,8 +20010,8 @@ sub is_core
'Encode::TW' => undef,
'Encode::Unicode' => undef,
'Encode::Unicode::UTF7' => undef,
- 'ExtUtils::Command' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
- 'ExtUtils::Command::MM' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+ 'ExtUtils::Command' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+ 'ExtUtils::Command::MM' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
'ExtUtils::Constant' => undef,
'ExtUtils::Constant::Base'=> undef,
'ExtUtils::Constant::ProxySubs'=> undef,
@@ -19109,36 +20019,36 @@ sub is_core
'ExtUtils::Constant::XS'=> undef,
'ExtUtils::Install' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
'ExtUtils::Installed' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
- 'ExtUtils::Liblist' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
- 'ExtUtils::Liblist::Kid'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
- 'ExtUtils::MM' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
- 'ExtUtils::MM_AIX' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
- 'ExtUtils::MM_Any' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
- 'ExtUtils::MM_BeOS' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
- 'ExtUtils::MM_Cygwin' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
- 'ExtUtils::MM_DOS' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
- 'ExtUtils::MM_Darwin' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
- 'ExtUtils::MM_MacOS' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
- 'ExtUtils::MM_NW5' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
- 'ExtUtils::MM_OS2' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
- 'ExtUtils::MM_QNX' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
- 'ExtUtils::MM_UWIN' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
- 'ExtUtils::MM_Unix' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
- 'ExtUtils::MM_VMS' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
- 'ExtUtils::MM_VOS' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
- 'ExtUtils::MM_Win32' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
- 'ExtUtils::MM_Win95' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
- 'ExtUtils::MY' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
- 'ExtUtils::MakeMaker' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
- 'ExtUtils::MakeMaker::Config'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
- 'ExtUtils::MakeMaker::Locale'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
- 'ExtUtils::MakeMaker::version'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
- 'ExtUtils::MakeMaker::version::regex'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+ 'ExtUtils::Liblist' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+ 'ExtUtils::Liblist::Kid'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+ 'ExtUtils::MM' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+ 'ExtUtils::MM_AIX' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+ 'ExtUtils::MM_Any' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+ 'ExtUtils::MM_BeOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+ 'ExtUtils::MM_Cygwin' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+ 'ExtUtils::MM_DOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+ 'ExtUtils::MM_Darwin' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+ 'ExtUtils::MM_MacOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+ 'ExtUtils::MM_NW5' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+ 'ExtUtils::MM_OS2' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+ 'ExtUtils::MM_QNX' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+ 'ExtUtils::MM_UWIN' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+ 'ExtUtils::MM_Unix' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+ 'ExtUtils::MM_VMS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+ 'ExtUtils::MM_VOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+ 'ExtUtils::MM_Win32' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+ 'ExtUtils::MM_Win95' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+ 'ExtUtils::MY' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+ 'ExtUtils::MakeMaker' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+ 'ExtUtils::MakeMaker::Config'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+ 'ExtUtils::MakeMaker::Locale'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+ 'ExtUtils::MakeMaker::version'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+ 'ExtUtils::MakeMaker::version::regex'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
'ExtUtils::Manifest' => 'http://github.com/Perl-Toolchain-Gang/ExtUtils-Manifest/issues',
- 'ExtUtils::Mkbootstrap' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
- 'ExtUtils::Mksymlists' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+ 'ExtUtils::Mkbootstrap' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+ 'ExtUtils::Mksymlists' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
'ExtUtils::Packlist' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
- 'ExtUtils::testlib' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+ 'ExtUtils::testlib' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
'Fatal' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
'File::Fetch' => undef,
'File::GlobMapper' => 'https://github.com/pmqs/IO-Compress/issues',
@@ -19173,7 +20083,7 @@ sub is_core
'IO::Uncompress::Inflate'=> 'https://github.com/pmqs/IO-Compress/issues',
'IO::Uncompress::RawInflate'=> 'https://github.com/pmqs/IO-Compress/issues',
'IO::Uncompress::Unzip' => 'https://github.com/pmqs/IO-Compress/issues',
- 'IO::Zlib' => undef,
+ 'IO::Zlib' => 'https://github.com/tomhughes/IO-Zlib/issues',
'IPC::Cmd' => undef,
'IPC::Msg' => undef,
'IPC::Semaphore' => undef,
@@ -19184,8 +20094,8 @@ sub is_core
'List::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
'List::Util::XS' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
'Locale::Maketext::Simple'=> undef,
- 'MIME::Base64' => undef,
- 'MIME::QuotedPrint' => undef,
+ 'MIME::Base64' => 'https://github.com/Dual-Life/mime-base64/issues',
+ 'MIME::QuotedPrint' => 'https://github.com/Dual-Life/mime-base64/issues',
'Math::BigFloat' => undef,
'Math::BigFloat::Trace' => undef,
'Math::BigInt' => undef,
@@ -19229,12 +20139,8 @@ sub is_core
'PerlIO::via::QuotedPrint'=> undef,
'Pod::Checker' => undef,
'Pod::Escapes' => undef,
- 'Pod::Find' => undef,
- 'Pod::InputObjects' => undef,
'Pod::Man' => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
'Pod::ParseLink' => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
- 'Pod::ParseUtils' => undef,
- 'Pod::Parser' => undef,
'Pod::Perldoc' => undef,
'Pod::Perldoc::BaseTo' => undef,
'Pod::Perldoc::GetOptsOO'=> undef,
@@ -19248,8 +20154,6 @@ sub is_core
'Pod::Perldoc::ToText' => undef,
'Pod::Perldoc::ToTk' => undef,
'Pod::Perldoc::ToXml' => undef,
- 'Pod::PlainText' => undef,
- 'Pod::Select' => undef,
'Pod::Simple' => 'https://github.com/perl-pod/pod-simple/issues',
'Pod::Simple::BlackBox' => 'https://github.com/perl-pod/pod-simple/issues',
'Pod::Simple::Checker' => 'https://github.com/perl-pod/pod-simple/issues',
@@ -19259,6 +20163,7 @@ sub is_core
'Pod::Simple::HTML' => 'https://github.com/perl-pod/pod-simple/issues',
'Pod::Simple::HTMLBatch'=> 'https://github.com/perl-pod/pod-simple/issues',
'Pod::Simple::HTMLLegacy'=> 'https://github.com/perl-pod/pod-simple/issues',
+ 'Pod::Simple::JustPod' => 'https://github.com/perl-pod/pod-simple/issues',
'Pod::Simple::LinkSection'=> 'https://github.com/perl-pod/pod-simple/issues',
'Pod::Simple::Methody' => 'https://github.com/perl-pod/pod-simple/issues',
'Pod::Simple::Progress' => 'https://github.com/perl-pod/pod-simple/issues',
@@ -19282,7 +20187,7 @@ sub is_core
'Pod::Text::Color' => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
'Pod::Text::Overstrike' => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
'Pod::Text::Termcap' => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
- 'Pod::Usage' => undef,
+ 'Pod::Usage' => 'https://github.com/Dual-Life/Pod-Usage/issues',
'Scalar::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
'Socket' => undef,
'Sub::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
@@ -19403,7 +20308,7 @@ sub is_core
'Text::ParseWords' => undef,
'Text::Tabs' => undef,
'Text::Wrap' => undef,
- 'Tie::RefHash' => undef,
+ 'Tie::RefHash' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Tie-RefHash',
'Time::Local' => 'https://github.com/houseabsolute/Time-Local/issues',
'Time::Piece' => undef,
'Time::Seconds' => undef,
@@ -19418,7 +20323,6 @@ sub is_core
'Unicode::Collate::Locale'=> undef,
'Win32' => 'https://github.com/perl-libwin32/win32/issues',
'Win32API::File' => undef,
- 'Win32API::File::inc::ExtUtils::Myconst2perl'=> undef,
'autodie' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
'autodie::Scope::Guard' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
'autodie::Scope::GuardStack'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
diff --git a/gnu/usr.bin/perl/dist/Module-CoreList/lib/Module/CoreList/Utils.pm b/gnu/usr.bin/perl/dist/Module-CoreList/lib/Module/CoreList/Utils.pm
index c4be112b884..cd8929babfc 100644
--- a/gnu/usr.bin/perl/dist/Module-CoreList/lib/Module/CoreList/Utils.pm
+++ b/gnu/usr.bin/perl/dist/Module-CoreList/lib/Module/CoreList/Utils.pm
@@ -4,7 +4,7 @@ use strict;
use warnings;
use Module::CoreList;
-our $VERSION = '5.20200601_30';
+our $VERSION = '5.20210123';
our %utilities;
sub utilities {
@@ -1601,6 +1601,13 @@ my %delta = (
removed => {
}
},
+ 5.028003 => {
+ delta_from => 5.028002,
+ changed => {
+ },
+ removed => {
+ }
+ },
5.030003 => {
delta_from => 5.030002,
changed => {
@@ -1608,6 +1615,69 @@ my %delta = (
removed => {
}
},
+ 5.032000 => {
+ delta_from => 5.031011,
+ changed => {
+ },
+ removed => {
+ }
+ },
+ 5.033000 => {
+ delta_from => 5.032,
+ changed => {
+ },
+ removed => {
+ }
+ },
+ 5.033001 => {
+ delta_from => 5.033000,
+ changed => {
+ },
+ removed => {
+ }
+ },
+ 5.033002 => {
+ delta_from => 5.033001,
+ changed => {
+ },
+ removed => {
+ }
+ },
+ 5.033003 => {
+ delta_from => 5.033002,
+ changed => {
+ },
+ removed => {
+ }
+ },
+ 5.033004 => {
+ delta_from => 5.033003,
+ changed => {
+ },
+ removed => {
+ }
+ },
+ 5.033005 => {
+ delta_from => 5.033004,
+ changed => {
+ },
+ removed => {
+ }
+ },
+ 5.033006 => {
+ delta_from => 5.033005,
+ changed => {
+ },
+ removed => {
+ }
+ },
+ 5.032001 => {
+ delta_from => 5.032000,
+ changed => {
+ },
+ removed => {
+ }
+ },
);
%utilities = Module::CoreList::_undelta(\%delta);