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 .github .perlcriticrc .perltidyrc
20 .travis.yml ANNOUNCE Announce Artistic AUTHORS BENCHMARK BUGS Build.PL
21 CHANGELOG ChangeLog Changelog CHANGES Changes CONTRIBUTING CONTRIBUTING.md
22 CONTRIBUTING.mkdn COPYING Copying cpanfile CREDITS dist.ini GOALS HISTORY
23 INSTALL INSTALL.SKIP LICENCE LICENSE Makefile.PL MANIFEST MANIFEST.SKIP
24 META.json META.yml MYMETA.json MYMETA.yml NEW NEWS NOTES perlcritic.rc
25 ppport.h README README.md README.pod README.PATCHING SIGNATURE THANKS TODO
29 # Each entry in the %Modules hash roughly represents a distribution,
30 # except when DISTRIBUTION is set, where it *exactly* represents a single
33 # The keys of %Modules are human descriptions of the distributions, and
34 # may not exactly match a module or distribution name. Distributions
35 # which have an obvious top-level module associated with them will usually
36 # have a key named for that module, e.g. 'Archive::Extract' for
37 # Archive-Extract-N.NN.tar.gz; the remaining keys are likely to be based
38 # on the name of the distribution, e.g. 'Locale-Codes' for
39 # Locale-Codes-N.NN.tar.gz'.
41 # UPSTREAM indicates where patches should go. This is generally now
42 # inferred from the FILES: modules with files in dist/, ext/ and lib/
43 # are understood to have UPSTREAM 'blead', meaning that the copy of the
44 # module in the blead sources is to be considered canonical, while
45 # modules with files in cpan/ are understood to have UPSTREAM 'cpan',
46 # meaning that the module on CPAN is to be patched first.
48 # MAINTAINER has previously been used to indicate who the current maintainer
49 # of the module is, but this is no longer stated explicitly. It is now
50 # understood to be either the Perl 5 Porters if UPSTREAM is 'blead', or else
51 # the CPAN author whose PAUSE user ID forms the first part of the DISTRIBUTION
52 # value, e.g. 'BINGOS' in the case of 'BINGOS/Archive-Tar-2.00.tar.gz'.
53 # (PAUSE's View Permissions page may be consulted to find other authors who
54 # have owner or co-maint permissions for the module in question.)
56 # FILES is a list of filenames, glob patterns, and directory
57 # names to be recursed down, which collectively generate a complete list
58 # of the files associated with the distribution.
60 # BUGS is an email or url to post bug reports. For modules with
61 # UPSTREAM => 'blead', use perl5-porters@perl.org. rt.cpan.org
62 # appears to automatically provide a URL for CPAN modules; any value
63 # given here overrides the default:
64 # http://rt.cpan.org/Public/Dist/Display.html?Name=$ModuleName
66 # DISTRIBUTION names the tarball on CPAN which (allegedly) the files
67 # included in core are derived from. Note that the file's version may not
68 # necessarily match the newest version on CPAN. (For dist/ distributions,
69 # which are blead-first, a request should be placed with the releaser(s) to
70 # upload the corresponding cpan release, and the entry in this file should
71 # only be updated when that release has been done.)
73 # EXCLUDED is a list of files to be excluded from a CPAN tarball before
74 # comparing the remaining contents with core. Each item can either be a
75 # full pathname (eg 't/foo.t') or a pattern (e.g. qr{^t/}).
76 # It defaults to the empty list.
78 # CUSTOMIZED is a list of files that have been customized within the
79 # Perl core. Use this whenever patching a cpan upstream distribution
80 # or whenever we expect to have a file that differs from the tarball.
81 # If the file in blead matches the file in the tarball from CPAN,
82 # Porting/core-cpan-diff will warn about it, as it indicates an expected
83 # customization might have been lost when updating from upstream. The
84 # path should be relative to the distribution directory. If the upstream
85 # distribution should be modified to incorporate the change then be sure
86 # to raise a ticket for it on rt.cpan.org and add a comment alongside the
87 # list of CUSTOMIZED files noting the ticket number.
89 # DEPRECATED contains the *first* version of Perl in which the module
90 # was considered deprecated. It should only be present if the module is
91 # actually deprecated. Such modules should use deprecate.pm to
92 # issue a warning if used. E.g.:
94 # use if $] >= 5.011, 'deprecate';
97 # MAP is a hash that maps CPAN paths to their core equivalents.
98 # Each key represents a string prefix, with longest prefixes checked
99 # first. The first match causes that prefix to be replaced with the
100 # corresponding key. For example, with the following MAP:
106 # these files are mapped as shown:
108 # README becomes lib/Foo/README
109 # lib/Foo.pm becomes lib/Foo.pm
111 # The default is dependent on the type of module.
112 # For distributions which appear to be stored under ext/, it defaults to:
114 # { '' => 'ext/Foo-Bar/' }
120 # '' => 'lib/Foo/Bar/',
126 'DISTRIBUTION' => 'BINGOS/Archive-Tar-2.36.tar.gz',
127 'FILES' => q[cpan/Archive-Tar],
128 'BUGS' => 'bug-archive-tar@rt.cpan.org',
131 qr{t/src/(long|short)/foo.txz},
135 'Attribute::Handlers' => {
136 'DISTRIBUTION' => 'RJBS/Attribute-Handlers-0.99.tar.gz',
137 'FILES' => q[dist/Attribute-Handlers],
141 'DISTRIBUTION' => 'TODDR/autodie-2.32.tar.gz',
142 'FILES' => q[cpan/autodie],
147 # All these tests depend upon external
148 # modules that don't exist when we're
149 # building the core. Hence, they can
150 # never run, and should not be merged.
151 qw( t/author-critic.t
158 t/release-pod-coverage.t
159 t/release-pod-syntax.t
168 'DISTRIBUTION' => 'SMUELLER/AutoLoader-5.74.tar.gz',
169 'FILES' => q[cpan/AutoLoader],
170 'EXCLUDED' => ['t/00pod.t'],
174 'DISTRIBUTION' => 'RJBS/autouse-1.11.tar.gz',
175 'FILES' => q[dist/autouse],
176 'EXCLUDED' => [qr{^t/release-.*\.t}],
180 'DISTRIBUTION' => 'RJBS/base-2.23.tar.gz',
181 'FILES' => q[dist/base],
185 'DISTRIBUTION' => 'PJACKLAM/bignum-0.51.tar.gz',
186 'FILES' => q[cpan/bignum],
197 'DISTRIBUTION' => 'XSAWYERX/Carp-1.50.tar.gz',
198 'FILES' => q[dist/Carp],
201 'Compress::Raw::Bzip2' => {
202 'DISTRIBUTION' => 'PMQS/Compress-Raw-Bzip2-2.093.tar.gz',
203 'FILES' => q[cpan/Compress-Raw-Bzip2],
207 'bzip2-src/bzip2-const.patch',
208 'bzip2-src/bzip2-cpp.patch',
209 'bzip2-src/bzip2-unsigned.patch',
213 'Compress::Raw::Zlib' => {
214 'DISTRIBUTION' => 'PMQS/Compress-Raw-Zlib-2.093.tar.gz',
215 'FILES' => q[cpan/Compress-Raw-Zlib],
226 'Config::Perl::V' => {
227 'DISTRIBUTION' => 'HMBRAND/Config-Perl-V-0.31.tgz',
228 'FILES' => q[cpan/Config-Perl-V],
232 'CUSTOMIZED' => [ qw(V.pm) ],
236 'DISTRIBUTION' => 'RJBS/constant-1.33.tar.gz',
237 'FILES' => q[dist/constant],
249 'DISTRIBUTION' => 'ANDK/CPAN-2.27.tar.gz',
250 'FILES' => q[cpan/CPAN],
257 qw( lib/CPAN/Admin.pm
272 t/43distroprefspref.t
279 t/71_minimumversion.t
287 # Note: When updating CPAN-Meta the META.* files will need to be regenerated
288 # perl -Icpan/CPAN-Meta/lib Porting/makemeta
290 'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-2.150010.tar.gz',
291 'FILES' => q[cpan/CPAN-Meta],
293 qw[t/00-report-prereqs.t
294 t/00-report-prereqs.dd
301 'CPAN::Meta::Requirements' => {
302 'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-Requirements-2.140.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.018.tar.gz',
314 'FILES' => q[cpan/CPAN-Meta-YAML],
316 't/00-report-prereqs.t',
317 't/00-report-prereqs.dd',
323 'DISTRIBUTION' => 'XSAWYERX/Data-Dumper-2.173.tar.gz',
324 'FILES' => q[dist/Data-Dumper],
328 'DISTRIBUTION' => 'PMQS/DB_File-1.853.tar.gz',
329 'FILES' => q[cpan/DB_File],
342 'DISTRIBUTION' => 'ATOOMIC/Devel-PPPort-3.57.tar.gz',
343 'FILES' => q[dist/Devel-PPPort],
345 'PPPort.pm', # we use PPPort_pm.PL instead
349 'Devel::SelfStubber' => {
350 'DISTRIBUTION' => 'FLORA/Devel-SelfStubber-1.05.tar.gz',
351 'FILES' => q[dist/Devel-SelfStubber],
352 'EXCLUDED' => [qr{^t/release-.*\.t}],
356 'DISTRIBUTION' => 'GAAS/Digest-1.17.tar.gz',
357 'FILES' => q[cpan/Digest],
358 'EXCLUDED' => ['digest-bench'],
366 'DISTRIBUTION' => 'GAAS/Digest-MD5-2.55.tar.gz',
367 'FILES' => q[cpan/Digest-MD5],
368 'EXCLUDED' => ['rfc1321.txt'],
372 qw(Makefile.PL t/files.t)
377 'DISTRIBUTION' => 'MSHELOR/Digest-SHA-6.02.tar.gz',
378 'FILES' => q[cpan/Digest-SHA],
388 'DISTRIBUTION' => 'FLORA/Dumpvalue-1.17.tar.gz',
389 'FILES' => q[dist/Dumpvalue],
390 'EXCLUDED' => [qr{^t/release-.*\.t}],
394 'DISTRIBUTION' => 'DANKOGAI/Encode-3.06.tar.gz',
395 'FILES' => q[cpan/Encode],
397 qw( t/whatwg-aliases.json
403 'encoding::warnings' => {
404 'DISTRIBUTION' => 'AUDREYT/encoding-warnings-0.11.tar.gz',
405 'FILES' => q[dist/encoding-warnings],
413 'DISTRIBUTION' => 'FLORA/Env-1.04.tar.gz',
414 'FILES' => q[dist/Env],
415 'EXCLUDED' => [qr{^t/release-.*\.t}],
419 'DISTRIBUTION' => 'LEONT/experimental-0.020.tar.gz',
420 'FILES' => q[cpan/experimental],
421 'EXCLUDED' => [qr{^xt/}],
429 'DISTRIBUTION' => 'TODDR/Exporter-5.74.tar.gz',
430 'FILES' => q[dist/Exporter],
438 'ExtUtils::CBuilder' => {
439 'DISTRIBUTION' => 'AMBS/ExtUtils-CBuilder-0.280234.tar.gz',
440 'FILES' => q[dist/ExtUtils-CBuilder],
447 'ExtUtils::Constant' => {
449 'DISTRIBUTION' => 'NWCLARK/ExtUtils-Constant-0.25.tar.gz',
450 'FILES' => q[cpan/ExtUtils-Constant],
452 qw( lib/ExtUtils/Constant/Aaargh56Hash.pm
453 examples/perl_keyword.pl
454 examples/perl_regcomp_posix_keyword.pl
459 'ExtUtils::Install' => {
460 'DISTRIBUTION' => 'BINGOS/ExtUtils-Install-2.14.tar.gz',
461 'FILES' => q[cpan/ExtUtils-Install],
463 qw( t/lib/Test/Builder.pm
464 t/lib/Test/Builder/Module.pm
473 'ExtUtils::MakeMaker' => {
474 'DISTRIBUTION' => 'BINGOS/ExtUtils-MakeMaker-7.44.tar.gz',
475 'FILES' => q[cpan/ExtUtils-MakeMaker],
479 qr{^t/Liblist_Kid.t},
484 'lib/ExtUtils/MakeMaker/version/vpp.pm',
488 'ExtUtils::Manifest' => {
489 'DISTRIBUTION' => 'ETHER/ExtUtils-Manifest-1.72.tar.gz',
490 'FILES' => q[cpan/ExtUtils-Manifest],
492 qr(^t/00-report-prereqs),
497 'ExtUtils::ParseXS' => {
498 'DISTRIBUTION' => 'SMUELLER/ExtUtils-ParseXS-3.35.tar.gz',
499 'FILES' => q[dist/ExtUtils-ParseXS],
503 'DISTRIBUTION' => 'BINGOS/File-Fetch-0.56.tar.gz',
504 'FILES' => q[cpan/File-Fetch],
508 'DISTRIBUTION' => 'JKEENAN/File-Path-2.16.tar.gz',
509 'FILES' => q[cpan/File-Path],
517 'DISTRIBUTION' => 'ETHER/File-Temp-0.2309.tar.gz',
518 'FILES' => q[cpan/File-Temp],
524 qr[^t/00-report-prereqs],
529 'Filter::Simple' => {
530 'DISTRIBUTION' => 'SMUELLER/Filter-Simple-0.94.tar.gz',
531 'FILES' => q[dist/Filter-Simple],
537 'Filter::Util::Call' => {
538 'DISTRIBUTION' => 'RURBAN/Filter-1.59.tar.gz',
539 'FILES' => q[cpan/Filter-Util-Call
563 t/z_perl_minimum_version.t
569 'Call/' => 'cpan/Filter-Util-Call/',
570 't/filter-util.pl' => 'cpan/Filter-Util-Call/filter-util.pl',
571 'perlfilter.pod' => 'pod/perlfilter.pod',
572 '' => 'cpan/Filter-Util-Call/',
575 qw(pod/perlfilter.pod)
580 'DISTRIBUTION' => 'XSAWYERX/FindBin-0.000.tar.gz',
581 'FILES' => q[dist/FindBin],
585 'DISTRIBUTION' => 'JV/Getopt-Long-2.51.tar.gz',
586 'FILES' => q[cpan/Getopt-Long],
589 qw( perl-Getopt-Long.spec
597 'DISTRIBUTION' => 'DAGOLDEN/HTTP-Tiny-0.076.tar.gz',
598 'FILES' => q[cpan/HTTP-Tiny],
600 't/00-report-prereqs.t',
601 't/00-report-prereqs.dd',
603 't/200_live_local_ip.t',
611 'DISTRIBUTION' => 'FLORA/I18N-Collate-1.02.tar.gz',
612 'FILES' => q[dist/I18N-Collate],
613 'EXCLUDED' => [qr{^t/release-.*\.t}],
616 'I18N::LangTags' => {
617 'FILES' => q[dist/I18N-LangTags],
621 'DISTRIBUTION' => 'XSAWYERX/if-0.0608.tar.gz',
622 'FILES' => q[dist/if],
626 'DISTRIBUTION' => 'TODDR/IO-1.42.tar.gz',
627 'FILES' => q[dist/IO/],
628 'EXCLUDED' => ['t/test.pl'],
632 'DISTRIBUTION' => 'PMQS/IO-Compress-2.093.tar.gz',
633 'FILES' => q[cpan/IO-Compress],
638 't/010examples-bzip2.t',
639 't/010examples-zlib.t',
644 'IO::Socket::IP' => {
645 'DISTRIBUTION' => 'PEVANS/IO-Socket-IP-0.39.tar.gz',
646 'FILES' => q[cpan/IO-Socket-IP],
653 'DISTRIBUTION' => 'TOMHUGHES/IO-Zlib-1.10.tar.gz',
654 'FILES' => q[cpan/IO-Zlib],
658 'DISTRIBUTION' => 'BINGOS/IPC-Cmd-1.04.tar.gz',
659 'FILES' => q[cpan/IPC-Cmd],
663 'DISTRIBUTION' => 'MHX/IPC-SysV-2.08.tar.gz',
664 'FILES' => q[cpan/IPC-SysV],
673 'DISTRIBUTION' => 'ISHIGAKI/JSON-PP-4.05.tar.gz',
674 'FILES' => q[cpan/JSON-PP],
678 'DISTRIBUTION' => 'SMUELLER/lib-0.63.tar.gz',
679 'FILES' => q[dist/lib/],
688 'DISTRIBUTION' => 'SHAY/libnet-3.11.tar.gz',
689 'FILES' => q[cpan/libnet],
702 'Locale::Maketext' => {
703 'DISTRIBUTION' => 'TODDR/Locale-Maketext-1.29.tar.gz',
704 'FILES' => q[dist/Locale-Maketext],
714 'Locale::Maketext::Simple' => {
715 'DISTRIBUTION' => 'JESSE/Locale-Maketext-Simple-0.21.tar.gz',
716 'FILES' => q[cpan/Locale-Maketext-Simple],
719 qw( lib/Locale/Maketext/Simple.pm )
724 'DISTRIBUTION' => 'PJACKLAM/Math-BigInt-1.999818.tar.gz',
725 'FILES' => q[cpan/Math-BigInt],
736 'Math::BigInt::FastCalc' => {
737 'DISTRIBUTION' => 'PJACKLAM/Math-BigInt-FastCalc-0.5009.tar.gz',
738 'FILES' => q[cpan/Math-BigInt-FastCalc],
742 qr{^t/Math/BigInt/Lib/TestUtil.pm},
747 # instead we use the versions of these test
748 # files that come with Math::BigInt:
760 'DISTRIBUTION' => 'PJACKLAM/Math-BigRat-0.2614.tar.gz',
761 'FILES' => q[cpan/Math-BigRat],
772 'DISTRIBUTION' => 'ZEFRAM/Math-Complex-1.59.tar.gz',
773 'FILES' => q[cpan/Math-Complex],
775 'lib/Math/Complex.pm', # CPAN RT 118467
776 't/Complex.t', # CPAN RT 118467
777 't/Trig.t', # CPAN RT 118467
787 'DISTRIBUTION' => 'MJD/Memoize-1.03.tgz',
788 'FILES' => q[cpan/Memoize],
789 'EXCLUDED' => ['article.html'],
797 'DISTRIBUTION' => 'GAAS/MIME-Base64-3.15.tar.gz',
798 'FILES' => q[cpan/MIME-Base64],
799 'EXCLUDED' => ['t/bad-sv.t'],
802 'Module::CoreList' => {
803 'DISTRIBUTION' => 'BINGOS/Module-CoreList-5.20200428.tar.gz',
804 'FILES' => q[dist/Module-CoreList],
808 'DISTRIBUTION' => 'BINGOS/Module-Load-0.34.tar.gz',
809 'FILES' => q[cpan/Module-Load],
812 'Module::Load::Conditional' => {
813 'DISTRIBUTION' => 'BINGOS/Module-Load-Conditional-0.70.tar.gz',
814 'FILES' => q[cpan/Module-Load-Conditional],
817 'Module::Loaded' => {
818 'DISTRIBUTION' => 'BINGOS/Module-Loaded-0.08.tar.gz',
819 'FILES' => q[cpan/Module-Loaded],
822 'Module::Metadata' => {
823 'DISTRIBUTION' => 'ETHER/Module-Metadata-1.000037.tar.gz',
824 'FILES' => q[cpan/Module-Metadata],
826 qw(t/00-report-prereqs.t),
827 qw(t/00-report-prereqs.dd),
834 'DISTRIBUTION' => 'RURBAN/Net-Ping-2.72.tar.gz',
835 'FILES' => q[dist/Net-Ping],
838 qw(t/020_external.t),
840 qw(t/601_pod-coverage.t),
845 'DISTRIBUTION' => 'NEILB/NEXT-0.67.tar.gz',
846 'FILES' => q[cpan/NEXT],
847 'EXCLUDED' => [qr{^demo/}],
848 'CUSTOMIZED' => [ qw(lib/NEXT.pm t/next.t) ],
852 'DISTRIBUTION' => 'BINGOS/Params-Check-0.38.tar.gz',
853 'FILES' => q[cpan/Params-Check],
857 'DISTRIBUTION' => 'CORION/parent-0.238.tar.gz',
858 'FILES' => q[cpan/parent],
865 'DISTRIBUTION' => 'XSAWYERX/PathTools-3.75.tar.gz',
866 'FILES' => q[dist/PathTools],
869 qw( t/rel2abs_vs_symlink.t),
874 'DISTRIBUTION' => 'DAGOLDEN/Perl-OSType-1.010.tar.gz',
875 'FILES' => q[cpan/Perl-OSType],
876 'EXCLUDED' => [qw(tidyall.ini), qr/^xt/, qr{^t/00-}],
880 'DISTRIBUTION' => 'ETHER/perlfaq-5.20200523.tar.gz',
881 'FILES' => q[cpan/perlfaq],
882 'EXCLUDED' => [ qr/^inc/, qr/^xt/, qr{^t/00-} ],
885 'PerlIO::via::QuotedPrint' => {
886 'DISTRIBUTION' => 'SHAY/PerlIO-via-QuotedPrint-0.08.tar.gz',
887 'FILES' => q[cpan/PerlIO-via-QuotedPrint],
891 'DISTRIBUTION' => 'MAREKR/Pod-Checker-1.73.tar.gz',
892 'FILES' => q[cpan/Pod-Checker],
893 'CUSTOMIZED' => [ qw[
894 t/pod/contains_bad_pod.xr
902 'DISTRIBUTION' => 'NEILB/Pod-Escapes-1.07.tar.gz',
903 'FILES' => q[cpan/Pod-Escapes],
907 'DISTRIBUTION' => 'MALLEN/Pod-Perldoc-3.28.tar.gz',
908 'FILES' => q[cpan/Pod-Perldoc],
910 # Note that we use the CPAN-provided Makefile.PL, since it
911 # contains special handling of the installation of perldoc.pod
914 # In blead, the perldoc executable is generated by perldoc.PL
916 # XXX We can and should fix this, but clean up the DRY-failure in
920 # https://rt.cpan.org/Ticket/Display.html?id=116827
921 't/02_module_pod_output.t'
925 # [rt.cpan.org #88204], [rt.cpan.org #120229]
926 'lib/Pod/Perldoc.pm',
931 'DISTRIBUTION' => 'KHW/Pod-Simple-3.40.tar.gz',
932 'FILES' => q[cpan/Pod-Simple],
936 'DISTRIBUTION' => 'MAREKR/Pod-Usage-1.69.tar.gz',
937 'FILES' => q[cpan/Pod-Usage],
944 'DISTRIBUTION' => 'RRA/podlators-4.14.tar.gz',
945 'FILES' => q[cpan/podlators pod/perlpodstyle.pod],
951 '' => 'cpan/podlators/',
952 # this file lives outside the cpan/ directory
953 'pod/perlpodstyle.pod' => 'pod/perlpodstyle.pod',
958 'DISTRIBUTION' => 'RGARCIA/Safe-2.35.tar.gz',
959 'FILES' => q[dist/Safe],
963 'DISTRIBUTION' => 'PEVANS/Scalar-List-Utils-1.55.tar.gz',
964 'FILES' => q[cpan/Scalar-List-Utils],
968 'DISTRIBUTION' => 'DAGOLDEN/Search-Dict-1.07.tar.gz',
969 'FILES' => q[dist/Search-Dict],
973 'DISTRIBUTION' => 'SMUELLER/SelfLoader-1.24.tar.gz',
974 'FILES' => q[dist/SelfLoader],
975 'EXCLUDED' => ['t/00pod.t'],
979 'DISTRIBUTION' => 'PEVANS/Socket-2.030.tar.gz',
980 'FILES' => q[cpan/Socket],
984 'DISTRIBUTION' => 'XSAWYERX/Storable-3.15.tar.gz',
985 'FILES' => q[dist/Storable],
992 'DISTRIBUTION' => 'SAPER/Sys-Syslog-0.36.tar.gz',
993 'FILES' => q[cpan/Sys-Syslog],
1008 'Term::ANSIColor' => {
1009 'DISTRIBUTION' => 'RRA/Term-ANSIColor-5.01.tar.gz',
1010 'FILES' => q[cpan/Term-ANSIColor],
1017 qw( t/module/aliases-env.t ),
1022 'DISTRIBUTION' => 'JSTOWE/Term-Cap-1.17.tar.gz',
1023 'FILES' => q[cpan/Term-Cap],
1026 'Term::Complete' => {
1027 'DISTRIBUTION' => 'FLORA/Term-Complete-1.402.tar.gz',
1028 'FILES' => q[dist/Term-Complete],
1029 'EXCLUDED' => [qr{^t/release-.*\.t}],
1032 'Term::ReadLine' => {
1033 'DISTRIBUTION' => 'FLORA/Term-ReadLine-1.14.tar.gz',
1034 'FILES' => q[dist/Term-ReadLine],
1035 'EXCLUDED' => [qr{^t/release-.*\.t}],
1039 'DISTRIBUTION' => 'JESSE/Test-1.26.tar.gz',
1040 'FILES' => q[dist/Test],
1043 'Test::Harness' => {
1044 'DISTRIBUTION' => 'LEONT/Test-Harness-3.42.tar.gz',
1045 'FILES' => q[cpan/Test-Harness],
1050 MANIFEST.CUMMULATIVE
1060 'DISTRIBUTION' => 'EXODIST/Test-Simple-1.302175.tar.gz',
1061 'FILES' => q[cpan/Test-Simple],
1068 t/zzz-check-breaks.t
1074 'DISTRIBUTION' => 'FLORA/Text-Abbrev-1.02.tar.gz',
1075 'FILES' => q[dist/Text-Abbrev],
1076 'EXCLUDED' => [qr{^t/release-.*\.t}],
1079 'Text::Balanced' => {
1080 'DISTRIBUTION' => 'SHAY/Text-Balanced-2.03.tar.gz',
1081 'FILES' => q[cpan/Text-Balanced],
1090 'Text::ParseWords' => {
1091 'DISTRIBUTION' => 'CHORNY/Text-ParseWords-3.30.tar.gz',
1092 'FILES' => q[cpan/Text-ParseWords],
1095 'Text-Tabs+Wrap' => {
1096 'DISTRIBUTION' => 'MUIR/modules/Text-Tabs+Wrap-2013.0523.tar.gz',
1097 'FILES' => q[cpan/Text-Tabs],
1100 't/dnsparks.t', # see af6492bf9e
1103 '' => 'cpan/Text-Tabs/',
1104 'lib.modern/Text/Tabs.pm' => 'cpan/Text-Tabs/lib/Text/Tabs.pm',
1105 'lib.modern/Text/Wrap.pm' => 'cpan/Text-Tabs/lib/Text/Wrap.pm',
1109 # Jerry Hedden does take patches that are applied to blead first, even
1110 # though that can be hard to discern from the Git history; so it's
1111 # correct for this (and Thread::Semaphore, threads, and threads::shared)
1112 # to be under dist/ rather than cpan/
1113 'Thread::Queue' => {
1114 'DISTRIBUTION' => 'JDHEDDEN/Thread-Queue-3.13.tar.gz',
1115 'FILES' => q[dist/Thread-Queue],
1125 'Thread::Semaphore' => {
1126 'DISTRIBUTION' => 'JDHEDDEN/Thread-Semaphore-2.13.tar.gz',
1127 'FILES' => q[dist/Thread-Semaphore],
1129 qw( examples/semaphore.pl
1138 'DISTRIBUTION' => 'JDHEDDEN/threads-2.21.tar.gz',
1139 'FILES' => q[dist/threads],
1149 'threads::shared' => {
1150 'DISTRIBUTION' => 'JDHEDDEN/threads-shared-1.59.tar.gz',
1151 'FILES' => q[dist/threads-shared],
1153 qw( examples/class.pl
1162 'DISTRIBUTION' => 'TODDR/Tie-File-1.05.tar.gz',
1163 'FILES' => q[dist/Tie-File],
1167 'DISTRIBUTION' => 'FLORA/Tie-RefHash-1.39.tar.gz',
1168 'FILES' => q[cpan/Tie-RefHash],
1172 'DISTRIBUTION' => 'ATOOMIC/Time-HiRes-1.9760.tar.gz',
1173 'FILES' => q[dist/Time-HiRes],
1177 'DISTRIBUTION' => 'DROLSKY/Time-Local-1.28.tar.gz',
1178 'FILES' => q[cpan/Time-Local],
1185 t/00-report-prereqs.t
1186 t/00-report-prereqs.dd
1192 'DISTRIBUTION' => 'ESAYM/Time-Piece-1.3401.tar.gz',
1193 'FILES' => q[cpan/Time-Piece],
1194 'EXCLUDED' => [ qw[reverse_deps.txt] ],
1197 'Unicode::Collate' => {
1198 'DISTRIBUTION' => 'SADAHIRO/Unicode-Collate-1.27.tar.gz',
1199 'FILES' => q[cpan/Unicode-Collate],
1211 'Unicode::Normalize' => {
1212 'DISTRIBUTION' => 'KHW/Unicode-Normalize-1.26.tar.gz',
1213 'FILES' => q[dist/Unicode-Normalize],
1224 'DISTRIBUTION' => 'JPEACOCK/version-0.9924.tar.gz',
1225 'FILES' => q[cpan/version vutil.c vutil.h vxs.inc],
1228 'vutil/Makefile.PL',
1236 # When adding the CPAN-distributed files for version.pm, it is necessary
1237 # to delete an entire block out of lib/version.pm, since that code is
1238 # only necessary with the CPAN release.
1247 '' => 'cpan/version/',
1261 'DISTRIBUTION' => "JDB/Win32-0.53.tar.gz",
1262 'FILES' => q[cpan/Win32],
1265 'Win32API::File' => {
1266 'DISTRIBUTION' => 'CHORNY/Win32API-File-0.1203.tar.gz',
1267 'FILES' => q[cpan/Win32API-File],
1271 # https://rt.cpan.org/Ticket/Display.html?id=127837
1280 'DISTRIBUTION' => 'SAPER/XSLoader-0.24.tar.gz',
1281 'FILES' => q[dist/XSLoader],
1291 'XSLoader.pm', # we use XSLoader_pm.PL
1295 # this pseudo-module represents all the files under ext/ and lib/
1296 # that aren't otherwise claimed. This means that the following two
1297 # commands will check that every file under ext/ and lib/ is
1298 # accounted for, and that there are no duplicates:
1300 # perl Porting/Maintainers --checkmani lib ext
1301 # perl Porting/Maintainers --checkmani
1311 ext/ExtUtils-Miniperl/
1318 ext/Hash-Util-FieldHash/
1326 ext/PerlIO-encoding/
1334 ext/Tie-Hash-NamedCapture/
1345 lib/AnyDBM_File.{pm,t}
1346 lib/Benchmark.{pm,t}
1347 lib/B/Deparse{.pm,.t,-*.t}
1350 lib/Class/Struct.{pm,t}
1352 lib/Config/Extensions.{pm,t}
1356 lib/DirHandle.{pm,t}
1358 lib/ExtUtils/Embed.pm
1359 lib/ExtUtils/XSSymSet.pm
1360 lib/ExtUtils/t/Embed.t
1361 lib/ExtUtils/typemap
1362 lib/File/Basename.{pm,t}
1363 lib/File/Compare.{pm,t}
1364 lib/File/Copy.{pm,t}
1365 lib/File/stat{.pm,.t,-7896.t}
1366 lib/FileHandle.{pm,t}
1367 lib/Getopt/Std.{pm,t}
1370 lib/meta_notation.{pm,t}
1371 lib/Net/hostent.{pm,t}
1372 lib/Net/netent.{pm,t}
1373 lib/Net/protoent.{pm,t}
1374 lib/Net/servent.{pm,t}
1377 lib/SelectSaver.{pm,t}
1386 lib/Tie/Scalar.{pm,t}
1387 lib/Tie/StdHandle.pm
1388 lib/Tie/SubstrHash.{pm,t}
1389 lib/Time/gmtime.{pm,t}
1390 lib/Time/localtime.{pm,t}
1394 lib/Unicode/UCD.{pm,t}
1395 lib/User/grent.{pm,t}
1396 lib/User/pwent.{pm,t}
1401 lib/charnames.{pm,t}
1402 lib/dbm_filter_util.pl
1404 lib/diagnostics.{pm,t}
1414 lib/locale_threads.t
1416 lib/overload/numbers.pm
1417 lib/overloading.{pm,t}
1418 lib/overload{.pm,.t,64.t}
1428 lib/vars{.pm,.t,_carp.t}
1435 for ( values %Modules ) {
1436 $_->{CPAN} = !!$_->{DISTRIBUTION};
1439 # legacy UPSTREAM flag
1440 for ( keys %Modules ) {
1441 # Keep any existing UPSTREAM flag so that "overrides" can be applied
1442 next if exists $Modules{$_}{UPSTREAM};
1444 if ($_ eq '_PERLLIB' or $Modules{$_}{FILES} =~ m{^\s*(?:dist|ext|lib)/}) {
1445 $Modules{$_}{UPSTREAM} = 'blead';
1447 elsif ($Modules{$_}{FILES} =~ m{^\s*cpan/}) {
1448 $Modules{$_}{UPSTREAM} = 'cpan';
1451 warn "Unexpected location of FILES for module $_: $Modules{$_}{FILES}";
1455 # legacy MAINTAINER field
1456 for ( keys %Modules ) {
1457 # Keep any existing MAINTAINER flag so that "overrides" can be applied
1458 next if exists $Modules{$_}{MAINTAINER};
1460 if ($Modules{$_}{UPSTREAM} eq 'blead') {
1461 $Modules{$_}{MAINTAINER} = 'P5P';
1462 $Maintainers{P5P} = 'perl5-porters <perl5-porters@perl.org>';
1464 elsif (exists $Modules{$_}{DISTRIBUTION}) {
1465 (my $pause_id = $Modules{$_}{DISTRIBUTION}) =~ s{/.*$}{};
1466 $Modules{$_}{MAINTAINER} = $pause_id;
1467 $Maintainers{$pause_id} = "<$pause_id\@cpan.org>";
1470 warn "No DISTRIBUTION for non-blead module $_";