2 # A simple listing of core files that have specific maintainers,
3 # or at least someone that can be called an "interested party".
4 # Also, a "module" does not necessarily mean a CPAN module, it
5 # might mean a file or files or a subdirectory.
6 # Most (but not all) of the modules have dual lives in the core
12 use File::Glob qw(:case);
14 # IGNORABLE: files which, if they appear in the root of a CPAN
15 # distribution, need not appear in core (i.e. core-cpan-diff won't
16 # complain if it can't find them)
19 .cvsignore .dualLivedDiffConfig .gitignore .perlcriticrc .perltidyrc
20 .travis.yml ANNOUNCE Announce Artistic AUTHORS BENCHMARK BUGS Build.PL
21 CHANGELOG ChangeLog Changelog CHANGES Changes CONTRIBUTING CONTRIBUTING.mkdn
22 COPYING Copying cpanfile CREDITS dist.ini GOALS HISTORY INSTALL INSTALL.SKIP
23 LICENCE LICENSE Makefile.PL MANIFEST MANIFEST.SKIP META.json META.yml
24 MYMETA.json MYMETA.yml NEW NEWS NOTES perlcritic.rc ppport.h README
25 README.PATCHING SIGNATURE THANKS TODO Todo VERSION WHATSNEW
28 # Each entry in the %Modules hash roughly represents a distribution,
29 # except when DISTRIBUTION is set, where it *exactly* represents a single
32 # The keys of %Modules are human descriptions of the distributions, and
33 # may not exactly match a module or distribution name. Distributions
34 # which have an obvious top-level module associated with them will usually
35 # have a key named for that module, e.g. 'Archive::Extract' for
36 # Archive-Extract-N.NN.tar.gz; the remaining keys are likely to be based
37 # on the name of the distribution, e.g. 'Locale-Codes' for
38 # Locale-Codes-N.NN.tar.gz'.
40 # UPSTREAM indicates where patches should go. This is generally now
41 # inferred from the FILES: modules with files in dist/, ext/ and lib/
42 # are understood to have UPSTREAM 'blead', meaning that the copy of the
43 # module in the blead sources is to be considered canonical, while
44 # modules with files in cpan/ are understood to have UPSTREAM 'cpan',
45 # meaning that the module on CPAN is to be patched first.
47 # MAINTAINER has previously been used to indicate who the current maintainer
48 # of the module is, but this is no longer stated explicitly. It is now
49 # understood to be either the Perl 5 Porters if UPSTREAM is 'blead', or else
50 # the CPAN author whose PAUSE user ID forms the first part of the DISTRIBUTION
51 # value, e.g. 'BINGOS' in the case of 'BINGOS/Archive-Tar-2.00.tar.gz'.
52 # (PAUSE's View Permissions page may be consulted to find other authors who
53 # have owner or co-maint permissions for the module in question.)
55 # FILES is a list of filenames, glob patterns, and directory
56 # names to be recursed down, which collectively generate a complete list
57 # of the files associated with the distribution.
59 # BUGS is an email or url to post bug reports. For modules with
60 # UPSTREAM => 'blead', use perl5-porters@perl.org. rt.cpan.org
61 # appears to automatically provide a URL for CPAN modules; any value
62 # given here overrides the default:
63 # http://rt.cpan.org/Public/Dist/Display.html?Name=$ModuleName
65 # DISTRIBUTION names the tarball on CPAN which (allegedly) the files
66 # included in core are derived from. Note that the file's version may not
67 # necessarily match the newest version on CPAN.
69 # EXCLUDED is a list of files to be excluded from a CPAN tarball before
70 # comparing the remaining contents with core. Each item can either be a
71 # full pathname (eg 't/foo.t') or a pattern (e.g. qr{^t/}).
72 # It defaults to the empty list.
74 # CUSTOMIZED is a list of files that have been customized within the
75 # Perl core. Use this whenever patching a cpan upstream distribution
76 # or whenever we expect to have a file that differs from the tarball.
77 # If the file in blead matches the file in the tarball from CPAN,
78 # Porting/core-cpan-diff will warn about it, as it indicates an expected
79 # customization might have been lost when updating from upstream. The
80 # path should be relative to the distribution directory. If the upstream
81 # distribution should be modified to incorporate the change then be sure
82 # to raise a ticket for it on rt.cpan.org and add a comment alongside the
83 # list of CUSTOMIZED files noting the ticket number.
85 # DEPRECATED contains the *first* version of Perl in which the module
86 # was considered deprecated. It should only be present if the module is
87 # actually deprecated. Such modules should use deprecated.pm to
88 # issue a warning if used. E.g.:
90 # use if $] >= 5.011, 'deprecate';
93 # MAP is a hash that maps CPAN paths to their core equivalents.
94 # Each key represents a string prefix, with longest prefixes checked
95 # first. The first match causes that prefix to be replaced with the
96 # corresponding key. For example, with the following MAP:
102 # these files are mapped as shown:
104 # README becomes lib/Foo/README
105 # lib/Foo.pm becomes lib/Foo.pm
107 # The default is dependent on the type of module.
108 # For distributions which appear to be stored under ext/, it defaults to:
110 # { '' => 'ext/Foo-Bar/' }
116 # '' => 'lib/Foo/Bar/',
122 'DISTRIBUTION' => 'BINGOS/Archive-Tar-2.04.tar.gz',
123 'FILES' => q[cpan/Archive-Tar],
124 'BUGS' => 'bug-archive-tar@rt.cpan.org',
130 'Attribute::Handlers' => {
131 'DISTRIBUTION' => 'SMUELLER/Attribute-Handlers-0.96.tar.gz',
132 'FILES' => q[dist/Attribute-Handlers],
136 'DISTRIBUTION' => 'PJF/autodie-2.28.tar.gz',
137 'FILES' => q[cpan/autodie],
141 # All these tests depend upon external
142 # modules that don't exist when we're
143 # building the core. Hence, they can
144 # never run, and should not be merged.
145 qw( t/author-critic.t
153 t/release-pod-coverage.t
154 t/release-pod-syntax.t
160 'CUSTOMIZED' => [ qw[ t/mkdir.t ] ],
164 'DISTRIBUTION' => 'SMUELLER/AutoLoader-5.74.tar.gz',
165 'FILES' => q[cpan/AutoLoader],
166 'EXCLUDED' => ['t/00pod.t'],
170 'DISTRIBUTION' => 'WOLFSAGE/autouse-1.08.tar.gz',
171 'FILES' => q[dist/autouse],
172 'EXCLUDED' => [qr{^t/release-.*\.t}],
176 'DISTRIBUTION' => 'RURBAN/B-Debug-1.23.tar.gz',
177 'FILES' => q[cpan/B-Debug],
178 'EXCLUDED' => ['t/pod.t'],
182 'DISTRIBUTION' => 'RGARCIA/base-2.18.tar.gz',
183 'FILES' => q[dist/base],
187 'DISTRIBUTION' => 'PJACKLAM/bignum-0.37.tar.gz',
188 'FILES' => q[dist/bignum],
198 'DISTRIBUTION' => 'RJBS/Carp-1.36.tar.gz',
199 'FILES' => q[dist/Carp],
202 'Compress::Raw::Bzip2' => {
203 'DISTRIBUTION' => 'PMQS/Compress-Raw-Bzip2-2.068.tar.gz',
204 'FILES' => q[cpan/Compress-Raw-Bzip2],
207 'bzip2-src/bzip2-cpp.patch',
211 'Compress::Raw::Zlib' => {
212 'DISTRIBUTION' => 'PMQS/Compress-Raw-Zlib-2.068.tar.gz',
214 'FILES' => q[cpan/Compress-Raw-Zlib],
224 'Config::Perl::V' => {
225 'DISTRIBUTION' => 'HMBRAND/Config-Perl-V-0.24.tgz',
226 'FILES' => q[cpan/Config-Perl-V],
233 'DISTRIBUTION' => 'RJBS/constant-1.33.tar.gz',
234 'FILES' => q[dist/constant],
246 'DISTRIBUTION' => 'ANDK/CPAN-2.10.tar.gz',
247 'FILES' => q[cpan/CPAN],
254 qw( lib/CPAN/Admin.pm
268 t/43distroprefspref.t
275 t/71_minimumversion.t
281 # See commit 3198fda65dbcd975c56916e4b98f515fab7f02e5
282 'CUSTOMIZED' => [ qw[ lib/CPAN.pm ] ],
285 # Note: When updating CPAN-Meta the META.* files will need to be regenerated
286 # perl -Icpan/CPAN-Meta/lib Porting/makemeta
288 'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-2.150005.tar.gz',
289 'FILES' => q[cpan/CPAN-Meta],
291 qw[t/00-report-prereqs.t
292 t/00-report-prereqs.dd
293 t/data-test/x_deprecated-META.json
294 t/data-valid/x_deprecated-META.yml
301 'CPAN::Meta::Requirements' => {
302 'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-Requirements-2.133.tar.gz',
303 'FILES' => q[cpan/CPAN-Meta-Requirements],
305 qw(t/00-report-prereqs.t),
306 qw(t/00-report-prereqs.dd),
307 qw(t/version-cleanup.t),
312 'CPAN::Meta::YAML' => {
313 'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-YAML-0.016.tar.gz',
314 'FILES' => q[cpan/CPAN-Meta-YAML],
316 't/00-report-prereqs.t',
317 't/00-report-prereqs.dd',
323 'DISTRIBUTION' => 'SMUELLER/Data-Dumper-2.154.tar.gz',
324 'FILES' => q[dist/Data-Dumper],
328 'DISTRIBUTION' => 'PMQS/DB_File-1.835.tar.gz',
329 'FILES' => q[cpan/DB_File],
340 'DISTRIBUTION' => 'WOLFSAGE/Devel-PPPort-3.31.tar.gz',
341 # RJBS has asked MHX to have UPSTREAM be 'blead'
342 # (i.e. move this from cpan/ to dist/)
343 'FILES' => q[cpan/Devel-PPPort],
345 'PPPort.pm', # we use PPPort_pm.PL instead
350 'Devel::SelfStubber' => {
351 'DISTRIBUTION' => 'FLORA/Devel-SelfStubber-1.05.tar.gz',
352 'FILES' => q[dist/Devel-SelfStubber],
353 'EXCLUDED' => [qr{^t/release-.*\.t}],
357 'DISTRIBUTION' => 'GAAS/Digest-1.17.tar.gz',
358 'FILES' => q[cpan/Digest],
359 'EXCLUDED' => ['digest-bench'],
363 'DISTRIBUTION' => 'GAAS/Digest-MD5-2.54.tar.gz',
364 'FILES' => q[cpan/Digest-MD5],
365 'EXCLUDED' => ['rfc1321.txt'],
369 'DISTRIBUTION' => 'MSHELOR/Digest-SHA-5.95.tar.gz',
370 'FILES' => q[cpan/Digest-SHA],
380 'DISTRIBUTION' => 'FLORA/Dumpvalue-1.17.tar.gz',
381 'FILES' => q[dist/Dumpvalue],
382 'EXCLUDED' => [qr{^t/release-.*\.t}],
386 'DISTRIBUTION' => 'DANKOGAI/Encode-2.75.tar.gz',
387 'FILES' => q[cpan/Encode],
390 'encoding::warnings' => {
391 'DISTRIBUTION' => 'AUDREYT/encoding-warnings-0.11.tar.gz',
392 'FILES' => q[cpan/encoding-warnings],
400 'DISTRIBUTION' => 'FLORA/Env-1.04.tar.gz',
401 'FILES' => q[dist/Env],
402 'EXCLUDED' => [qr{^t/release-.*\.t}],
406 'DISTRIBUTION' => 'LEONT/experimental-0.013.tar.gz',
407 'FILES' => q[cpan/experimental],
409 qr{^t/release-.*\.t},
415 'DISTRIBUTION' => 'TODDR/Exporter-5.72.tar.gz',
416 'FILES' => q[dist/Exporter],
424 'ExtUtils::CBuilder' => {
425 'DISTRIBUTION' => 'AMBS/ExtUtils-CBuilder-0.280223.tar.gz',
426 'FILES' => q[dist/ExtUtils-CBuilder],
433 'ExtUtils::Command' => {
434 'DISTRIBUTION' => 'BINGOS/ExtUtils-Command-1.20.tar.gz',
435 'FILES' => q[cpan/ExtUtils-Command],
436 'EXCLUDED' => [qr{^xt/}],
439 'ExtUtils::Constant' => {
441 # Nick has confirmed that while we have diverged from CPAN,
442 # this package isn't primarily maintained in core
443 # Another release will happen "Sometime"
444 'DISTRIBUTION' => '', #'NWCLARK/ExtUtils-Constant-0.16.tar.gz',
445 'FILES' => q[cpan/ExtUtils-Constant],
447 qw( lib/ExtUtils/Constant/Aaargh56Hash.pm
448 examples/perl_keyword.pl
449 examples/perl_regcomp_posix_keyword.pl
454 'ExtUtils::Install' => {
455 'DISTRIBUTION' => 'BINGOS/ExtUtils-Install-2.04.tar.gz',
456 'FILES' => q[cpan/ExtUtils-Install],
458 qw( t/lib/Test/Builder.pm
459 t/lib/Test/Builder/Module.pm
468 'ExtUtils::MakeMaker' => {
469 'DISTRIBUTION' => 'BINGOS/ExtUtils-MakeMaker-7.04.tar.gz',
470 'FILES' => q[cpan/ExtUtils-MakeMaker],
474 qr{^t/Liblist_Kid.t},
480 # Applied upstream remove customisation when updating EUMM
481 'CUSTOMIZED' => [ qw[ t/pm_to_blib.t
483 lib/ExtUtils/Command/MM.pm
484 lib/ExtUtils/Liblist.pm
485 lib/ExtUtils/Liblist/Kid.pm
487 lib/ExtUtils/MM_AIX.pm
488 lib/ExtUtils/MM_Any.pm
489 lib/ExtUtils/MM_BeOS.pm
490 lib/ExtUtils/MM_Cygwin.pm
491 lib/ExtUtils/MM_DOS.pm
492 lib/ExtUtils/MM_Darwin.pm
493 lib/ExtUtils/MM_MacOS.pm
494 lib/ExtUtils/MM_NW5.pm
495 lib/ExtUtils/MM_OS2.pm
496 lib/ExtUtils/MM_QNX.pm
497 lib/ExtUtils/MM_UWIN.pm
498 lib/ExtUtils/MM_Unix.pm
499 lib/ExtUtils/MM_VMS.pm
500 lib/ExtUtils/MM_VOS.pm
501 lib/ExtUtils/MM_Win32.pm
502 lib/ExtUtils/MM_Win95.pm
504 lib/ExtUtils/MakeMaker.pm
505 lib/ExtUtils/MakeMaker/Config.pm
506 lib/ExtUtils/MakeMaker/FAQ.pod
507 lib/ExtUtils/MakeMaker/Locale.pm
508 lib/ExtUtils/MakeMaker/Tutorial.pod
509 lib/ExtUtils/MakeMaker/version.pm
510 lib/ExtUtils/MakeMaker/version/regex.pm
511 lib/ExtUtils/MakeMaker/version/vpp.pm
512 lib/ExtUtils/Mkbootstrap.pm
513 lib/ExtUtils/Mksymlists.pm
514 lib/ExtUtils/testlib.pm ] ],
517 'ExtUtils::Manifest' => {
518 'DISTRIBUTION' => 'ETHER/ExtUtils-Manifest-1.70.tar.gz',
519 'FILES' => q[cpan/ExtUtils-Manifest],
521 qr(^t/00-report-prereqs),
526 'ExtUtils::ParseXS' => {
527 'DISTRIBUTION' => 'SMUELLER/ExtUtils-ParseXS-3.24.tar.gz',
528 'FILES' => q[dist/ExtUtils-ParseXS],
532 'DISTRIBUTION' => 'BINGOS/File-Fetch-0.48.tar.gz',
533 'FILES' => q[cpan/File-Fetch],
537 'DISTRIBUTION' => 'DLAND/File-Path-2.09.tar.gz',
538 'FILES' => q[cpan/File-Path],
540 qw( eg/setup-extra-tests
545 '' => 'cpan/File-Path/lib/File/',
546 't/' => 'cpan/File-Path/t/',
551 'DISTRIBUTION' => 'DAGOLDEN/File-Temp-0.2304.tar.gz',
552 'FILES' => q[cpan/File-Temp],
554 qw( misc/benchmark.pl
557 qw[t/00-report-prereqs.t],
562 'Filter::Simple' => {
563 'DISTRIBUTION' => 'SMUELLER/Filter-Simple-0.91.tar.gz',
564 'FILES' => q[dist/Filter-Simple],
570 'Filter::Util::Call' => {
571 'DISTRIBUTION' => 'RURBAN/Filter-1.54.tar.gz',
572 'FILES' => q[cpan/Filter-Util-Call
593 t/z_perl_minimum_version.t
599 'Call/' => 'cpan/Filter-Util-Call/',
600 'filter-util.pl' => 'cpan/Filter-Util-Call/filter-util.pl',
601 'perlfilter.pod' => 'pod/perlfilter.pod',
602 '' => 'cpan/Filter-Util-Call/',
607 'DISTRIBUTION' => 'JV/Getopt-Long-2.47.tar.gz',
608 'FILES' => q[cpan/Getopt-Long],
611 qw( perl-Getopt-Long.spec
619 'DISTRIBUTION' => 'DAGOLDEN/HTTP-Tiny-0.056.tar.gz',
620 'FILES' => q[cpan/HTTP-Tiny],
622 't/00-report-prereqs.t',
623 't/00-report-prereqs.dd',
625 't/200_live_local_ip.t',
633 'DISTRIBUTION' => 'FLORA/I18N-Collate-1.02.tar.gz',
634 'FILES' => q[dist/I18N-Collate],
635 'EXCLUDED' => [qr{^t/release-.*\.t}],
638 'I18N::LangTags' => {
639 'FILES' => q[dist/I18N-LangTags],
643 'DISTRIBUTION' => 'ILYAZ/modules/if-0.0601.tar.gz',
644 'FILES' => q[dist/if],
648 'DISTRIBUTION' => 'GBARR/IO-1.25.tar.gz',
649 'FILES' => q[dist/IO/],
650 'EXCLUDED' => ['t/test.pl'],
654 'DISTRIBUTION' => 'PMQS/IO-Compress-2.068.tar.gz',
655 'FILES' => q[cpan/IO-Compress],
659 't/010examples-bzip2.t',
660 't/010examples-zlib.t',
665 'IO::Socket::IP' => {
666 'DISTRIBUTION' => 'PEVANS/IO-Socket-IP-0.37.tar.gz',
667 'FILES' => q[cpan/IO-Socket-IP],
674 'DISTRIBUTION' => 'TOMHUGHES/IO-Zlib-1.10.tar.gz',
675 'FILES' => q[cpan/IO-Zlib],
679 'DISTRIBUTION' => 'BINGOS/IPC-Cmd-0.92.tar.gz',
680 'FILES' => q[cpan/IPC-Cmd],
684 'DISTRIBUTION' => 'MHX/IPC-SysV-2.04.tar.gz',
685 'FILES' => q[cpan/IPC-SysV],
694 'DISTRIBUTION' => 'MAKAMAKA/JSON-PP-2.27300.tar.gz',
695 'FILES' => q[cpan/JSON-PP],
699 'DISTRIBUTION' => 'SMUELLER/lib-0.63.tar.gz',
700 'FILES' => q[dist/lib/],
709 'DISTRIBUTION' => 'SHAY/libnet-3.06.tar.gz',
710 'FILES' => q[cpan/libnet],
724 'DISTRIBUTION' => 'SBECK/Locale-Codes-3.35.tar.gz',
725 'FILES' => q[cpan/Locale-Codes],
732 qr{^t/runtests\.bat},
738 'Locale::Maketext' => {
739 'DISTRIBUTION' => 'TODDR/Locale-Maketext-1.26.tar.gz',
740 'FILES' => q[dist/Locale-Maketext],
750 'Locale::Maketext::Simple' => {
751 'DISTRIBUTION' => 'JESSE/Locale-Maketext-Simple-0.21.tar.gz',
752 'FILES' => q[cpan/Locale-Maketext-Simple],
756 'DISTRIBUTION' => 'PJACKLAM/Math-BigInt-1.9993.tar.gz',
757 'FILES' => q[dist/Math-BigInt],
769 'Math::BigInt::FastCalc' => {
770 'DISTRIBUTION' => 'PJACKLAM/Math-BigInt-FastCalc-0.31.tar.gz',
771 'FILES' => q[dist/Math-BigInt-FastCalc],
780 # instead we use the versions of these test
781 # files that come with Math::BigInt:
793 'DISTRIBUTION' => 'PJACKLAM/Math-BigRat-0.2606.tar.gz',
794 'FILES' => q[dist/Math-BigRat],
806 'DISTRIBUTION' => 'ZEFRAM/Math-Complex-1.59.tar.gz',
807 'FILES' => q[cpan/Math-Complex],
816 'DISTRIBUTION' => 'MJD/Memoize-1.03.tgz',
817 'FILES' => q[cpan/Memoize],
818 'EXCLUDED' => ['article.html'],
822 'DISTRIBUTION' => 'GAAS/MIME-Base64-3.15.tar.gz',
823 'FILES' => q[cpan/MIME-Base64],
824 'EXCLUDED' => ['t/bad-sv.t'],
827 'Module::CoreList' => {
828 'DISTRIBUTION' => 'BINGOS/Module-CoreList-5.20150620.tar.gz',
829 'FILES' => q[dist/Module-CoreList],
833 'DISTRIBUTION' => 'BINGOS/Module-Load-0.32.tar.gz',
834 'FILES' => q[cpan/Module-Load],
837 'Module::Load::Conditional' => {
838 'DISTRIBUTION' => 'BINGOS/Module-Load-Conditional-0.64.tar.gz',
839 'FILES' => q[cpan/Module-Load-Conditional],
842 'Module::Loaded' => {
843 'DISTRIBUTION' => 'BINGOS/Module-Loaded-0.08.tar.gz',
844 'FILES' => q[cpan/Module-Loaded],
847 'Module::Metadata' => {
848 'DISTRIBUTION' => 'ETHER/Module-Metadata-1.000027.tar.gz',
849 'FILES' => q[cpan/Module-Metadata],
852 qw(t/00-report-prereqs.t),
853 qw(t/00-report-prereqs.dd),
859 'DISTRIBUTION' => 'SMPETERS/Net-Ping-2.41.tar.gz',
860 'FILES' => q[dist/Net-Ping],
867 'DISTRIBUTION' => 'FLORA/NEXT-0.65.tar.gz',
868 'FILES' => q[cpan/NEXT],
869 'EXCLUDED' => [qr{^demo/}],
873 'DISTRIBUTION' => 'BINGOS/Params-Check-0.38.tar.gz',
874 'FILES' => q[cpan/Params-Check],
878 'DISTRIBUTION' => 'CORION/parent-0.234.tar.gz',
879 'FILES' => q[cpan/parent],
882 'Parse::CPAN::Meta' => {
883 'DISTRIBUTION' => 'DAGOLDEN/Parse-CPAN-Meta-1.4417.tar.gz',
884 'FILES' => q[cpan/Parse-CPAN-Meta],
886 qw[t/00-report-prereqs.dd],
887 qw[t/00-report-prereqs.t],
893 'DISTRIBUTION' => 'SMUELLER/PathTools-3.47.tar.gz',
894 'FILES' => q[dist/PathTools],
895 'EXCLUDED' => [qr{^t/lib/Test/}],
899 'DISTRIBUTION' => 'DAGOLDEN/Perl-OSType-1.008.tar.gz',
900 'FILES' => q[cpan/Perl-OSType],
901 'EXCLUDED' => [qw(tidyall.ini), qr/^xt/, qr{^t/00-}],
905 'DISTRIBUTION' => 'ETHER/perlfaq-5.021009.tar.gz',
906 'FILES' => q[cpan/perlfaq],
908 qw( inc/CreateQuestionList.pm
915 'PerlIO::via::QuotedPrint' => {
916 'DISTRIBUTION' => 'SHAY/PerlIO-via-QuotedPrint-0.08.tar.gz',
917 'FILES' => q[cpan/PerlIO-via-QuotedPrint],
921 'DISTRIBUTION' => 'MAREKR/Pod-Checker-1.60.tar.gz',
922 'FILES' => q[cpan/Pod-Checker],
926 'DISTRIBUTION' => 'NEILB/Pod-Escapes-1.07.tar.gz',
927 'FILES' => q[cpan/Pod-Escapes],
931 'DISTRIBUTION' => 'MAREKR/Pod-Parser-1.63.tar.gz',
932 'FILES' => q[cpan/Pod-Parser],
936 'DISTRIBUTION' => 'MALLEN/Pod-Perldoc-3.25.tar.gz',
937 'FILES' => q[cpan/Pod-Perldoc],
939 # Note that we use the CPAN-provided Makefile.PL, since it
940 # contains special handling of the installation of perldoc.pod
942 # In blead, the perldoc executable is generated by perldoc.PL
944 # XXX We can and should fix this, but clean up the DRY-failure in utils
946 'EXCLUDED' => ['perldoc'],
950 'DISTRIBUTION' => 'DWHEELER/Pod-Simple-3.30.tar.gz',
951 'FILES' => q[cpan/Pod-Simple],
952 # https://rt.cpan.org/Public/Bug/Display.html?id=103439
953 # https://rt.cpan.org/Public/Bug/Display.html?id=105192
954 # https://rt.cpan.org/Public/Bug/Display.html?id=105511
956 qw( lib/Pod/Simple/Search.pm
957 lib/Pod/Simple/BlackBox.pm
969 'DISTRIBUTION' => 'MAREKR/Pod-Usage-1.67.tar.gz',
970 'FILES' => q[cpan/Pod-Usage],
974 'DISTRIBUTION' => 'RRA/podlators-2.5.3.tar.gz',
975 'FILES' => q[cpan/podlators pod/perlpodstyle.pod],
977 # The perl distribution has pod2man.PL and pod2text.PL, which are
978 # run to create pod2man and pod2text, while the CPAN distribution
979 # just has the post-generated pod2man and pod2text files.
980 # The following entries attempt to codify that odd fact.
982 qw( scripts/pod2man.PL
987 '' => 'cpan/podlators/',
988 'scripts/pod2man' => 'cpan/podlators/scripts/pod2man.PL',
989 'scripts/pod2text' => 'cpan/podlators/scripts/pod2text.PL',
991 # this file lives outside the cpan/ directory
992 'pod/perlpodstyle.pod' => 'pod/perlpodstyle.pod',
997 'DISTRIBUTION' => 'RGARCIA/Safe-2.35.tar.gz',
998 'FILES' => q[dist/Safe],
1001 'Scalar-List-Utils' => {
1002 'DISTRIBUTION' => 'PEVANS/Scalar-List-Utils-1.42.tar.gz',
1003 'FILES' => q[cpan/Scalar-List-Utils],
1004 # Waiting to be merged upstream:
1005 # https://github.com/Scalar-List-Utils/Scalar-List-Utils/pull/24
1017 'DISTRIBUTION' => 'DAGOLDEN/Search-Dict-1.07.tar.gz',
1018 'FILES' => q[dist/Search-Dict],
1022 'DISTRIBUTION' => 'SMUELLER/SelfLoader-1.20.tar.gz',
1023 'FILES' => q[dist/SelfLoader],
1024 'EXCLUDED' => ['t/00pod.t'],
1028 'DISTRIBUTION' => 'PEVANS/Socket-2.020.tar.gz',
1029 'FILES' => q[cpan/Socket],
1033 'DISTRIBUTION' => 'AMS/Storable-2.51.tar.gz',
1034 'FILES' => q[dist/Storable],
1038 'DISTRIBUTION' => 'SAPER/Sys-Syslog-0.33.tar.gz',
1039 'FILES' => q[cpan/Sys-Syslog],
1054 'Term::ANSIColor' => {
1055 'DISTRIBUTION' => 'RRA/Term-ANSIColor-4.03.tar.gz',
1056 'FILES' => q[cpan/Term-ANSIColor],
1062 qw( t/module/aliases-env.t ),
1067 'DISTRIBUTION' => 'JSTOWE/Term-Cap-1.15.tar.gz',
1068 'FILES' => q[cpan/Term-Cap],
1071 'Term::Complete' => {
1072 'DISTRIBUTION' => 'FLORA/Term-Complete-1.402.tar.gz',
1073 'FILES' => q[dist/Term-Complete],
1074 'EXCLUDED' => [qr{^t/release-.*\.t}],
1077 'Term::ReadLine' => {
1078 'DISTRIBUTION' => 'FLORA/Term-ReadLine-1.14.tar.gz',
1079 'FILES' => q[dist/Term-ReadLine],
1080 'EXCLUDED' => [qr{^t/release-.*\.t}],
1084 'DISTRIBUTION' => 'JESSE/Test-1.26.tar.gz',
1085 'FILES' => q[cpan/Test],
1088 'Test::Harness' => {
1089 'DISTRIBUTION' => 'LEONT/Test-Harness-3.35.tar.gz',
1090 'FILES' => q[cpan/Test-Harness],
1097 MANIFEST.CUMMULATIVE
1108 'DISTRIBUTION' => 'EXODIST/Test-Simple-1.001014.tar.gz',
1109 'FILES' => q[cpan/Test-Simple],
1118 t/xxx-changes_updated.t
1124 'DISTRIBUTION' => 'FLORA/Text-Abbrev-1.02.tar.gz',
1125 'FILES' => q[dist/Text-Abbrev],
1126 'EXCLUDED' => [qr{^t/release-.*\.t}],
1129 'Text::Balanced' => {
1130 'DISTRIBUTION' => 'SHAY/Text-Balanced-2.03.tar.gz',
1131 'FILES' => q[cpan/Text-Balanced],
1140 'Text::ParseWords' => {
1141 'DISTRIBUTION' => 'CHORNY/Text-ParseWords-3.30.tar.gz',
1142 'FILES' => q[cpan/Text-ParseWords],
1144 # Waiting to be merged upstream:
1145 # see https://github.com/chorny/Text-ParseWords/pull/6
1152 'Text-Tabs+Wrap' => {
1153 'DISTRIBUTION' => 'MUIR/modules/Text-Tabs+Wrap-2013.0523.tar.gz',
1154 'FILES' => q[cpan/Text-Tabs],
1157 't/dnsparks.t', # see af6492bf9e
1160 '' => 'cpan/Text-Tabs/',
1161 'lib.modern/Text/Tabs.pm' => 'cpan/Text-Tabs/lib/Text/Tabs.pm',
1162 'lib.modern/Text/Wrap.pm' => 'cpan/Text-Tabs/lib/Text/Wrap.pm',
1166 # Jerry Hedden does take patches that are applied to blead first, even
1167 # though that can be hard to discern from the Git history; so it's
1168 # correct for this (and Thread::Semaphore, threads, and threads::shared)
1169 # to be under dist/ rather than cpan/
1170 'Thread::Queue' => {
1171 'DISTRIBUTION' => 'JDHEDDEN/Thread-Queue-3.05.tar.gz',
1172 'FILES' => q[dist/Thread-Queue],
1182 'Thread::Semaphore' => {
1183 'DISTRIBUTION' => 'JDHEDDEN/Thread-Semaphore-2.12.tar.gz',
1184 'FILES' => q[dist/Thread-Semaphore],
1186 qw( examples/semaphore.pl
1195 'DISTRIBUTION' => 'JDHEDDEN/threads-2.02.tar.gz',
1196 'FILES' => q[dist/threads],
1206 'threads::shared' => {
1207 'DISTRIBUTION' => 'JDHEDDEN/threads-shared-1.48.tar.gz',
1208 'FILES' => q[dist/threads-shared],
1210 qw( examples/class.pl
1219 'DISTRIBUTION' => 'TODDR/Tie-File-1.00.tar.gz',
1220 'FILES' => q[dist/Tie-File],
1224 'DISTRIBUTION' => 'FLORA/Tie-RefHash-1.39.tar.gz',
1225 'FILES' => q[cpan/Tie-RefHash],
1229 'DISTRIBUTION' => 'ZEFRAM/Time-HiRes-1.9726.tar.gz',
1230 'FILES' => q[cpan/Time-HiRes],
1234 'DISTRIBUTION' => 'DROLSKY/Time-Local-1.2300.tar.gz',
1235 'FILES' => q[cpan/Time-Local],
1237 qr{^t/release-.*\.t},
1242 'DISTRIBUTION' => 'RJBS/Time-Piece-1.30.tar.gz',
1243 'FILES' => q[cpan/Time-Piece],
1246 'Unicode::Collate' => {
1247 'DISTRIBUTION' => 'SADAHIRO/Unicode-Collate-1.12.tar.gz',
1248 'FILES' => q[cpan/Unicode-Collate],
1260 'Unicode::Normalize' => {
1261 'DISTRIBUTION' => 'SADAHIRO/Unicode-Normalize-1.18.tar.gz',
1262 'FILES' => q[cpan/Unicode-Normalize],
1266 'DISTRIBUTION' => 'JPEACOCK/version-0.9909.tar.gz',
1267 'FILES' => q[cpan/version vutil.c vutil.h vxs.inc],
1270 'vutil/Makefile.PL',
1276 # When adding the CPAN-distributed files for version.pm, it is necessary
1277 # to delete an entire block out of lib/version.pm, since that code is
1278 # only necessary with the CPAN release.
1283 # Merged upstream, waiting for new CPAN release: see CPAN RT#92721
1289 'vperl/' => 'cpan/version/lib/version/',
1291 '' => 'cpan/version/',
1305 'DISTRIBUTION' => "JDB/Win32-0.51.tar.gz",
1306 'FILES' => q[cpan/Win32],
1309 'Win32API::File' => {
1310 'DISTRIBUTION' => 'CHORNY/Win32API-File-0.1202.tar.gz',
1311 'FILES' => q[cpan/Win32API-File],
1316 # Currently all EOL differences. Waiting for a new upstream release:
1317 # All the files in the GitHub repo have UNIX EOLs already.
1319 qw( ExtUtils/Myconst2perl.pm
1333 'DISTRIBUTION' => 'SAPER/XSLoader-0.16.tar.gz',
1334 'FILES' => q[dist/XSLoader],
1344 'XSLoader.pm', # we use XSLoader_pm.PL
1348 # this pseudo-module represents all the files under ext/ and lib/
1349 # that aren't otherwise claimed. This means that the following two
1350 # commands will check that every file under ext/ and lib/ is
1351 # accounted for, and that there are no duplicates:
1353 # perl Porting/Maintainers --checkmani lib ext
1354 # perl Porting/Maintainers --checkmani
1362 ext/ExtUtils-Miniperl/
1369 ext/Hash-Util-FieldHash/
1377 ext/PerlIO-encoding/
1385 ext/Tie-Hash-NamedCapture/
1397 lib/AnyDBM_File.{pm,t}
1398 lib/Benchmark.{pm,t}
1399 lib/B/Deparse{.pm,.t,-*.t}
1402 lib/Class/Struct.{pm,t}
1404 lib/Config/Extensions.{pm,t}
1408 lib/DirHandle.{pm,t}
1410 lib/ExtUtils/Embed.pm
1411 lib/ExtUtils/XSSymSet.pm
1412 lib/ExtUtils/t/Embed.t
1413 lib/ExtUtils/typemap
1414 lib/File/Basename.{pm,t}
1415 lib/File/Compare.{pm,t}
1416 lib/File/Copy.{pm,t}
1417 lib/File/stat{.pm,.t,-7896.t}
1418 lib/FileHandle.{pm,t}
1420 lib/Getopt/Std.{pm,t}
1422 lib/meta_notation.{pm,t}
1423 lib/Net/hostent.{pm,t}
1424 lib/Net/netent.{pm,t}
1425 lib/Net/protoent.{pm,t}
1426 lib/Net/servent.{pm,t}
1428 lib/Pod/t/InputObjects.t
1432 lib/SelectSaver.{pm,t}
1441 lib/Tie/Scalar.{pm,t}
1442 lib/Tie/StdHandle.pm
1443 lib/Tie/SubstrHash.{pm,t}
1444 lib/Time/gmtime.{pm,t}
1445 lib/Time/localtime.{pm,t}
1449 lib/Unicode/UCD.{pm,t}
1450 lib/User/grent.{pm,t}
1451 lib/User/pwent.{pm,t}
1456 lib/charnames.{pm,t}
1457 lib/dbm_filter_util.pl
1459 lib/diagnostics.{pm,t}
1470 lib/overload/numbers.pm
1471 lib/overloading.{pm,t}
1472 lib/overload{.pm,.t,64.t}
1482 lib/vars{.pm,.t,_carp.t}
1489 for ( values %Modules ) {
1490 $_->{CPAN} = !!$_->{DISTRIBUTION};
1493 # legacy UPSTREAM flag
1494 for ( keys %Modules ) {
1495 # Keep any existing UPSTREAM flag so that "overrides" can be applied
1496 next if exists $Modules{$_}{UPSTREAM};
1498 if ($_ eq '_PERLLIB' or $Modules{$_}{FILES} =~ m{^\s*(?:dist|ext|lib)/}) {
1499 $Modules{$_}{UPSTREAM} = 'blead';
1501 elsif ($Modules{$_}{FILES} =~ m{^\s*cpan/}) {
1502 $Modules{$_}{UPSTREAM} = 'cpan';
1505 warn "Unexpected location of FILES for module $_: $Modules{$_}{FILES}";
1509 # legacy MAINTAINER field
1510 for ( keys %Modules ) {
1511 # Keep any existing MAINTAINER flag so that "overrides" can be applied
1512 next if exists $Modules{$_}{MAINTAINER};
1514 if ($Modules{$_}{UPSTREAM} eq 'blead') {
1515 $Modules{$_}{MAINTAINER} = 'P5P';
1516 $Maintainers{P5P} = 'perl5-porters <perl5-porters@perl.org>';
1518 elsif (exists $Modules{$_}{DISTRIBUTION}) {
1519 (my $pause_id = $Modules{$_}{DISTRIBUTION}) =~ s{/.*$}{};
1520 $Modules{$_}{MAINTAINER} = $pause_id;
1521 $Maintainers{$pause_id} = "<$pause_id\@cpan.org>";
1524 warn "No DISTRIBUTION for non-blead module $_";