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.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.32.tar.gz',
127 'FILES' => q[cpan/Archive-Tar],
128 'BUGS' => 'bug-archive-tar@rt.cpan.org',
134 'Attribute::Handlers' => {
135 'DISTRIBUTION' => 'RJBS/Attribute-Handlers-0.99.tar.gz',
136 'FILES' => q[dist/Attribute-Handlers],
140 'DISTRIBUTION' => 'PJF/autodie-2.29.tar.gz',
141 'FILES' => q[cpan/autodie],
145 # All these tests depend upon external
146 # modules that don't exist when we're
147 # building the core. Hence, they can
148 # never run, and should not be merged.
149 qw( t/author-critic.t
156 t/release-pod-coverage.t
157 t/release-pod-syntax.t
166 'lib/autodie/exception.pm',
167 'lib/autodie/hints.pm',
169 't/lib/Hints_pod_examples.pm',
176 'DISTRIBUTION' => 'SMUELLER/AutoLoader-5.74.tar.gz',
177 'FILES' => q[cpan/AutoLoader],
178 'EXCLUDED' => ['t/00pod.t'],
182 'DISTRIBUTION' => 'RJBS/autouse-1.11.tar.gz',
183 'FILES' => q[dist/autouse],
184 'EXCLUDED' => [qr{^t/release-.*\.t}],
188 'DISTRIBUTION' => 'RJBS/base-2.23.tar.gz',
189 'FILES' => q[dist/base],
193 'DISTRIBUTION' => 'PJACKLAM/bignum-0.51.tar.gz',
194 'FILES' => q[cpan/bignum],
205 'DISTRIBUTION' => 'XSAWYERX/Carp-1.50.tar.gz',
206 'FILES' => q[dist/Carp],
209 'Compress::Raw::Bzip2' => {
210 'DISTRIBUTION' => 'PMQS/Compress-Raw-Bzip2-2.087.tar.gz',
211 'FILES' => q[cpan/Compress-Raw-Bzip2],
215 'bzip2-src/bzip2-const.patch',
216 'bzip2-src/bzip2-cpp.patch',
217 'bzip2-src/bzip2-unsigned.patch',
221 'Compress::Raw::Zlib' => {
222 'DISTRIBUTION' => 'PMQS/Compress-Raw-Zlib-2.087.tar.gz',
223 'FILES' => q[cpan/Compress-Raw-Zlib],
234 'Config::Perl::V' => {
235 'DISTRIBUTION' => 'HMBRAND/Config-Perl-V-0.31.tgz',
236 'FILES' => q[cpan/Config-Perl-V],
240 'CUSTOMIZED' => [ qw(V.pm) ],
244 'DISTRIBUTION' => 'RJBS/constant-1.33.tar.gz',
245 'FILES' => q[dist/constant],
257 'DISTRIBUTION' => 'ANDK/CPAN-2.27-TRIAL2.tar.gz',
258 'FILES' => q[cpan/CPAN],
265 qw( lib/CPAN/Admin.pm
280 t/43distroprefspref.t
287 t/71_minimumversion.t
295 # Note: When updating CPAN-Meta the META.* files will need to be regenerated
296 # perl -Icpan/CPAN-Meta/lib Porting/makemeta
298 'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-2.150010.tar.gz',
299 'FILES' => q[cpan/CPAN-Meta],
301 qw[t/00-report-prereqs.t
302 t/00-report-prereqs.dd
309 'CPAN::Meta::Requirements' => {
310 'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-Requirements-2.140.tar.gz',
311 'FILES' => q[cpan/CPAN-Meta-Requirements],
313 qw(t/00-report-prereqs.t),
314 qw(t/00-report-prereqs.dd),
315 qw(t/version-cleanup.t),
320 'CPAN::Meta::YAML' => {
321 'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-YAML-0.018.tar.gz',
322 'FILES' => q[cpan/CPAN-Meta-YAML],
324 't/00-report-prereqs.t',
325 't/00-report-prereqs.dd',
331 'DISTRIBUTION' => 'XSAWYERX/Data-Dumper-2.173.tar.gz',
332 'FILES' => q[dist/Data-Dumper],
336 'DISTRIBUTION' => 'PMQS/DB_File-1.852.tar.gz',
337 'FILES' => q[cpan/DB_File],
349 'DISTRIBUTION' => 'ATOOMIC/Devel-PPPort-3.52.tar.gz',
350 'FILES' => q[dist/Devel-PPPort],
352 'PPPort.pm', # we use PPPort_pm.PL instead
356 'Devel::SelfStubber' => {
357 'DISTRIBUTION' => 'FLORA/Devel-SelfStubber-1.05.tar.gz',
358 'FILES' => q[dist/Devel-SelfStubber],
359 'EXCLUDED' => [qr{^t/release-.*\.t}],
363 'DISTRIBUTION' => 'GAAS/Digest-1.17.tar.gz',
364 'FILES' => q[cpan/Digest],
365 'EXCLUDED' => ['digest-bench'],
373 'DISTRIBUTION' => 'GAAS/Digest-MD5-2.55.tar.gz',
374 'FILES' => q[cpan/Digest-MD5],
375 'EXCLUDED' => ['rfc1321.txt'],
379 'DISTRIBUTION' => 'MSHELOR/Digest-SHA-6.02.tar.gz',
380 'FILES' => q[cpan/Digest-SHA],
390 'DISTRIBUTION' => 'FLORA/Dumpvalue-1.17.tar.gz',
391 'FILES' => q[dist/Dumpvalue],
392 'EXCLUDED' => [qr{^t/release-.*\.t}],
396 'DISTRIBUTION' => 'DANKOGAI/Encode-3.01.tar.gz',
397 'FILES' => q[cpan/Encode],
400 'encoding::warnings' => {
401 'DISTRIBUTION' => 'AUDREYT/encoding-warnings-0.11.tar.gz',
402 'FILES' => q[dist/encoding-warnings],
410 'DISTRIBUTION' => 'FLORA/Env-1.04.tar.gz',
411 'FILES' => q[dist/Env],
412 'EXCLUDED' => [qr{^t/release-.*\.t}],
416 'DISTRIBUTION' => 'LEONT/experimental-0.020.tar.gz',
417 'FILES' => q[cpan/experimental],
418 'EXCLUDED' => [qr{^xt/}],
426 'DISTRIBUTION' => 'TODDR/Exporter-5.73.tar.gz',
427 'FILES' => q[dist/Exporter],
435 'ExtUtils::CBuilder' => {
436 'DISTRIBUTION' => 'AMBS/ExtUtils-CBuilder-0.280231.tar.gz',
437 'FILES' => q[dist/ExtUtils-CBuilder],
444 'ExtUtils::Constant' => {
446 'DISTRIBUTION' => 'NWCLARK/ExtUtils-Constant-0.25.tar.gz',
447 'FILES' => q[cpan/ExtUtils-Constant],
449 qw( lib/ExtUtils/Constant/Aaargh56Hash.pm
450 examples/perl_keyword.pl
451 examples/perl_regcomp_posix_keyword.pl
456 'ExtUtils::Install' => {
457 'DISTRIBUTION' => 'BINGOS/ExtUtils-Install-2.14.tar.gz',
458 'FILES' => q[cpan/ExtUtils-Install],
460 qw( t/lib/Test/Builder.pm
461 t/lib/Test/Builder/Module.pm
470 'ExtUtils::MakeMaker' => {
471 'DISTRIBUTION' => 'BINGOS/ExtUtils-MakeMaker-7.38.tar.gz',
472 'FILES' => q[cpan/ExtUtils-MakeMaker],
476 qr{^t/Liblist_Kid.t},
481 'lib/ExtUtils/MakeMaker/version/vpp.pm',
485 'ExtUtils::Manifest' => {
486 'DISTRIBUTION' => 'ETHER/ExtUtils-Manifest-1.72.tar.gz',
487 'FILES' => q[cpan/ExtUtils-Manifest],
489 qr(^t/00-report-prereqs),
494 'ExtUtils::ParseXS' => {
495 'DISTRIBUTION' => 'SMUELLER/ExtUtils-ParseXS-3.35.tar.gz',
496 'FILES' => q[dist/ExtUtils-ParseXS],
500 'DISTRIBUTION' => 'BINGOS/File-Fetch-0.56.tar.gz',
501 'FILES' => q[cpan/File-Fetch],
505 'DISTRIBUTION' => 'JKEENAN/File-Path-2.16.tar.gz',
506 'FILES' => q[cpan/File-Path],
514 'DISTRIBUTION' => 'ETHER/File-Temp-0.2309.tar.gz',
515 'FILES' => q[cpan/File-Temp],
521 qr[^t/00-report-prereqs],
526 'Filter::Simple' => {
527 'DISTRIBUTION' => 'SMUELLER/Filter-Simple-0.94.tar.gz',
528 'FILES' => q[dist/Filter-Simple],
534 'Filter::Util::Call' => {
535 'DISTRIBUTION' => 'RURBAN/Filter-1.59.tar.gz',
536 'FILES' => q[cpan/Filter-Util-Call
560 t/z_perl_minimum_version.t
566 'Call/' => 'cpan/Filter-Util-Call/',
567 't/filter-util.pl' => 'cpan/Filter-Util-Call/filter-util.pl',
568 'perlfilter.pod' => 'pod/perlfilter.pod',
569 '' => 'cpan/Filter-Util-Call/',
574 'DISTRIBUTION' => 'JV/Getopt-Long-2.51.tar.gz',
575 'FILES' => q[cpan/Getopt-Long],
578 qw( perl-Getopt-Long.spec
586 'DISTRIBUTION' => 'DAGOLDEN/HTTP-Tiny-0.076.tar.gz',
587 'FILES' => q[cpan/HTTP-Tiny],
589 't/00-report-prereqs.t',
590 't/00-report-prereqs.dd',
592 't/200_live_local_ip.t',
600 'DISTRIBUTION' => 'FLORA/I18N-Collate-1.02.tar.gz',
601 'FILES' => q[dist/I18N-Collate],
602 'EXCLUDED' => [qr{^t/release-.*\.t}],
605 'I18N::LangTags' => {
606 'FILES' => q[dist/I18N-LangTags],
610 'DISTRIBUTION' => 'XSAWYERX/if-0.0608.tar.gz',
611 'FILES' => q[dist/if],
615 'DISTRIBUTION' => 'TODDR/IO-1.39.tar.gz',
616 'FILES' => q[dist/IO/],
617 'EXCLUDED' => ['t/test.pl'],
621 'DISTRIBUTION' => 'PMQS/IO-Compress-2.087.tar.gz',
622 'FILES' => q[cpan/IO-Compress],
627 't/010examples-bzip2.t',
628 't/010examples-zlib.t',
633 'IO::Socket::IP' => {
634 'DISTRIBUTION' => 'PEVANS/IO-Socket-IP-0.39.tar.gz',
635 'FILES' => q[cpan/IO-Socket-IP],
642 'DISTRIBUTION' => 'TOMHUGHES/IO-Zlib-1.10.tar.gz',
643 'FILES' => q[cpan/IO-Zlib],
647 'DISTRIBUTION' => 'BINGOS/IPC-Cmd-1.04.tar.gz',
648 'FILES' => q[cpan/IPC-Cmd],
652 'DISTRIBUTION' => 'MHX/IPC-SysV-2.07.tar.gz',
653 'FILES' => q[cpan/IPC-SysV],
662 'DISTRIBUTION' => 'ISHIGAKI/JSON-PP-4.04.tar.gz',
663 'FILES' => q[cpan/JSON-PP],
667 'DISTRIBUTION' => 'SMUELLER/lib-0.63.tar.gz',
668 'FILES' => q[dist/lib/],
677 'DISTRIBUTION' => 'SHAY/libnet-3.11.tar.gz',
678 'FILES' => q[cpan/libnet],
691 'Locale::Maketext' => {
692 'DISTRIBUTION' => 'TODDR/Locale-Maketext-1.28.tar.gz',
693 'FILES' => q[dist/Locale-Maketext],
703 'Locale::Maketext::Simple' => {
704 'DISTRIBUTION' => 'JESSE/Locale-Maketext-Simple-0.21.tar.gz',
705 'FILES' => q[cpan/Locale-Maketext-Simple],
708 qw( lib/Locale/Maketext/Simple.pm )
713 'DISTRIBUTION' => 'PJACKLAM/Math-BigInt-1.999816.tar.gz',
714 'FILES' => q[cpan/Math-BigInt],
725 'Math::BigInt::FastCalc' => {
726 'DISTRIBUTION' => 'PJACKLAM/Math-BigInt-FastCalc-0.5008.tar.gz',
727 'FILES' => q[cpan/Math-BigInt-FastCalc],
731 qr{^t/Math/BigInt/Lib/TestUtil.pm},
736 # instead we use the versions of these test
737 # files that come with Math::BigInt:
749 'DISTRIBUTION' => 'PJACKLAM/Math-BigRat-0.2614.tar.gz',
750 'FILES' => q[cpan/Math-BigRat],
761 'DISTRIBUTION' => 'ZEFRAM/Math-Complex-1.59.tar.gz',
762 'FILES' => q[cpan/Math-Complex],
764 'lib/Math/Complex.pm', # CPAN RT 118467
765 't/Complex.t', # CPAN RT 118467
766 't/Trig.t', # CPAN RT 118467
776 'DISTRIBUTION' => 'MJD/Memoize-1.03.tgz',
777 'FILES' => q[cpan/Memoize],
778 'EXCLUDED' => ['article.html'],
786 'DISTRIBUTION' => 'GAAS/MIME-Base64-3.15.tar.gz',
787 'FILES' => q[cpan/MIME-Base64],
788 'EXCLUDED' => ['t/bad-sv.t'],
791 'Module::CoreList' => {
792 'DISTRIBUTION' => 'BINGOS/Module-CoreList-5.20190820.tar.gz',
793 'FILES' => q[dist/Module-CoreList],
797 'DISTRIBUTION' => 'BINGOS/Module-Load-0.34.tar.gz',
798 'FILES' => q[cpan/Module-Load],
801 'Module::Load::Conditional' => {
802 'DISTRIBUTION' => 'BINGOS/Module-Load-Conditional-0.68.tar.gz',
803 'FILES' => q[cpan/Module-Load-Conditional],
806 'Module::Loaded' => {
807 'DISTRIBUTION' => 'BINGOS/Module-Loaded-0.08.tar.gz',
808 'FILES' => q[cpan/Module-Loaded],
811 'Module::Metadata' => {
812 'DISTRIBUTION' => 'ETHER/Module-Metadata-1.000037.tar.gz',
813 'FILES' => q[cpan/Module-Metadata],
815 qw(t/00-report-prereqs.t),
816 qw(t/00-report-prereqs.dd),
823 'DISTRIBUTION' => 'RURBAN/Net-Ping-2.71.tar.gz',
824 'FILES' => q[dist/Net-Ping],
827 qw(t/020_external.t),
829 qw(t/601_pod-coverage.t),
834 'DISTRIBUTION' => 'NEILB/NEXT-0.67.tar.gz',
835 'FILES' => q[cpan/NEXT],
836 'EXCLUDED' => [qr{^demo/}],
837 'CUSTOMIZED' => [ qw(lib/NEXT.pm t/next.t) ],
841 'DISTRIBUTION' => 'BINGOS/Params-Check-0.38.tar.gz',
842 'FILES' => q[cpan/Params-Check],
846 'DISTRIBUTION' => 'CORION/parent-0.237.tar.gz',
847 'FILES' => q[cpan/parent],
854 'DISTRIBUTION' => 'XSAWYERX/PathTools-3.75.tar.gz',
855 'FILES' => q[dist/PathTools],
858 qw( t/rel2abs_vs_symlink.t),
863 'DISTRIBUTION' => 'DAGOLDEN/Perl-OSType-1.010.tar.gz',
864 'FILES' => q[cpan/Perl-OSType],
865 'EXCLUDED' => [qw(tidyall.ini), qr/^xt/, qr{^t/00-}],
869 'DISTRIBUTION' => 'ETHER/perlfaq-5.20190126.tar.gz',
870 'FILES' => q[cpan/perlfaq],
871 'EXCLUDED' => [ qr/^inc/, qr/^xt/, qr{^t/00-} ],
874 'PerlIO::via::QuotedPrint' => {
875 'DISTRIBUTION' => 'SHAY/PerlIO-via-QuotedPrint-0.08.tar.gz',
876 'FILES' => q[cpan/PerlIO-via-QuotedPrint],
880 'DISTRIBUTION' => 'MAREKR/Pod-Checker-1.73.tar.gz',
881 'FILES' => q[cpan/Pod-Checker],
882 'CUSTOMIZED' => [ qw[
883 t/pod/contains_bad_pod.xr
891 'DISTRIBUTION' => 'NEILB/Pod-Escapes-1.07.tar.gz',
892 'FILES' => q[cpan/Pod-Escapes],
896 'DISTRIBUTION' => 'MALLEN/Pod-Perldoc-3.28.tar.gz',
897 'FILES' => q[cpan/Pod-Perldoc],
899 # Note that we use the CPAN-provided Makefile.PL, since it
900 # contains special handling of the installation of perldoc.pod
903 # In blead, the perldoc executable is generated by perldoc.PL
905 # XXX We can and should fix this, but clean up the DRY-failure in
909 # https://rt.cpan.org/Ticket/Display.html?id=116827
910 't/02_module_pod_output.t'
914 # [rt.cpan.org #88204], [rt.cpan.org #120229]
915 'lib/Pod/Perldoc.pm',
920 'DISTRIBUTION' => 'KHW/Pod-Simple-3.39.tar.gz',
921 'FILES' => q[cpan/Pod-Simple],
925 'DISTRIBUTION' => 'MAREKR/Pod-Usage-1.69.tar.gz',
926 'FILES' => q[cpan/Pod-Usage],
933 'DISTRIBUTION' => 'RRA/podlators-4.12.tar.gz',
934 'FILES' => q[cpan/podlators pod/perlpodstyle.pod],
940 '' => 'cpan/podlators/',
941 # this file lives outside the cpan/ directory
942 'pod/perlpodstyle.pod' => 'pod/perlpodstyle.pod',
947 'DISTRIBUTION' => 'RGARCIA/Safe-2.35.tar.gz',
948 'FILES' => q[dist/Safe],
952 'DISTRIBUTION' => 'PEVANS/Scalar-List-Utils-1.52.tar.gz',
953 'FILES' => q[cpan/Scalar-List-Utils],
957 'DISTRIBUTION' => 'DAGOLDEN/Search-Dict-1.07.tar.gz',
958 'FILES' => q[dist/Search-Dict],
962 'DISTRIBUTION' => 'SMUELLER/SelfLoader-1.24.tar.gz',
963 'FILES' => q[dist/SelfLoader],
964 'EXCLUDED' => ['t/00pod.t'],
968 'DISTRIBUTION' => 'PEVANS/Socket-2.029.tar.gz',
969 'FILES' => q[cpan/Socket],
973 'DISTRIBUTION' => 'XSAWYERX/Storable-3.15.tar.gz',
974 'FILES' => q[dist/Storable],
981 'DISTRIBUTION' => 'SAPER/Sys-Syslog-0.35.tar.gz',
982 'FILES' => q[cpan/Sys-Syslog],
997 'Term::ANSIColor' => {
998 'DISTRIBUTION' => 'RRA/Term-ANSIColor-4.06.tar.gz',
999 'FILES' => q[cpan/Term-ANSIColor],
1006 qw( t/module/aliases-env.t ),
1011 'DISTRIBUTION' => 'JSTOWE/Term-Cap-1.17.tar.gz',
1012 'FILES' => q[cpan/Term-Cap],
1015 'Term::Complete' => {
1016 'DISTRIBUTION' => 'FLORA/Term-Complete-1.402.tar.gz',
1017 'FILES' => q[dist/Term-Complete],
1018 'EXCLUDED' => [qr{^t/release-.*\.t}],
1021 'Term::ReadLine' => {
1022 'DISTRIBUTION' => 'FLORA/Term-ReadLine-1.14.tar.gz',
1023 'FILES' => q[dist/Term-ReadLine],
1024 'EXCLUDED' => [qr{^t/release-.*\.t}],
1028 'DISTRIBUTION' => 'JESSE/Test-1.26.tar.gz',
1029 'FILES' => q[dist/Test],
1032 'Test::Harness' => {
1033 'DISTRIBUTION' => 'LEONT/Test-Harness-3.42.tar.gz',
1034 'FILES' => q[cpan/Test-Harness],
1039 MANIFEST.CUMMULATIVE
1049 'DISTRIBUTION' => 'EXODIST/Test-Simple-1.302168.tar.gz',
1050 'FILES' => q[cpan/Test-Simple],
1057 t/zzz-check-breaks.t
1063 'DISTRIBUTION' => 'FLORA/Text-Abbrev-1.02.tar.gz',
1064 'FILES' => q[dist/Text-Abbrev],
1065 'EXCLUDED' => [qr{^t/release-.*\.t}],
1068 'Text::Balanced' => {
1069 'DISTRIBUTION' => 'SHAY/Text-Balanced-2.03.tar.gz',
1070 'FILES' => q[cpan/Text-Balanced],
1079 'Text::ParseWords' => {
1080 'DISTRIBUTION' => 'CHORNY/Text-ParseWords-3.30.tar.gz',
1081 'FILES' => q[cpan/Text-ParseWords],
1084 'Text-Tabs+Wrap' => {
1085 'DISTRIBUTION' => 'MUIR/modules/Text-Tabs+Wrap-2013.0523.tar.gz',
1086 'FILES' => q[cpan/Text-Tabs],
1089 't/dnsparks.t', # see af6492bf9e
1092 '' => 'cpan/Text-Tabs/',
1093 'lib.modern/Text/Tabs.pm' => 'cpan/Text-Tabs/lib/Text/Tabs.pm',
1094 'lib.modern/Text/Wrap.pm' => 'cpan/Text-Tabs/lib/Text/Wrap.pm',
1098 # Jerry Hedden does take patches that are applied to blead first, even
1099 # though that can be hard to discern from the Git history; so it's
1100 # correct for this (and Thread::Semaphore, threads, and threads::shared)
1101 # to be under dist/ rather than cpan/
1102 'Thread::Queue' => {
1103 'DISTRIBUTION' => 'JDHEDDEN/Thread-Queue-3.13.tar.gz',
1104 'FILES' => q[dist/Thread-Queue],
1114 'Thread::Semaphore' => {
1115 'DISTRIBUTION' => 'JDHEDDEN/Thread-Semaphore-2.13.tar.gz',
1116 'FILES' => q[dist/Thread-Semaphore],
1118 qw( examples/semaphore.pl
1127 'DISTRIBUTION' => 'JDHEDDEN/threads-2.21.tar.gz',
1128 'FILES' => q[dist/threads],
1138 'threads::shared' => {
1139 'DISTRIBUTION' => 'JDHEDDEN/threads-shared-1.59.tar.gz',
1140 'FILES' => q[dist/threads-shared],
1142 qw( examples/class.pl
1151 'DISTRIBUTION' => 'TODDR/Tie-File-1.00.tar.gz',
1152 'FILES' => q[dist/Tie-File],
1156 'DISTRIBUTION' => 'FLORA/Tie-RefHash-1.39.tar.gz',
1157 'FILES' => q[cpan/Tie-RefHash],
1161 'DISTRIBUTION' => 'ATOOMIC/Time-HiRes-1.9760.tar.gz',
1162 'FILES' => q[dist/Time-HiRes],
1166 'DISTRIBUTION' => 'DROLSKY/Time-Local-1.28.tar.gz',
1167 'FILES' => q[cpan/Time-Local],
1174 t/00-report-prereqs.t
1175 t/00-report-prereqs.dd
1181 'DISTRIBUTION' => 'ESAYM/Time-Piece-1.33.tar.gz',
1182 'FILES' => q[cpan/Time-Piece],
1183 'EXCLUDED' => [ qw[reverse_deps.txt] ],
1186 'Unicode::Collate' => {
1187 'DISTRIBUTION' => 'SADAHIRO/Unicode-Collate-1.27.tar.gz',
1188 'FILES' => q[cpan/Unicode-Collate],
1200 'Unicode::Normalize' => {
1201 'DISTRIBUTION' => 'KHW/Unicode-Normalize-1.26.tar.gz',
1202 'FILES' => q[dist/Unicode-Normalize],
1213 'DISTRIBUTION' => 'JPEACOCK/version-0.9924.tar.gz',
1214 'FILES' => q[cpan/version vutil.c vutil.h vxs.inc],
1217 'vutil/Makefile.PL',
1225 # When adding the CPAN-distributed files for version.pm, it is necessary
1226 # to delete an entire block out of lib/version.pm, since that code is
1227 # only necessary with the CPAN release.
1236 '' => 'cpan/version/',
1250 'DISTRIBUTION' => "JDB/Win32-0.53.tar.gz",
1251 'FILES' => q[cpan/Win32],
1254 'Win32API::File' => {
1255 'DISTRIBUTION' => 'CHORNY/Win32API-File-0.1203.tar.gz',
1256 'FILES' => q[cpan/Win32API-File],
1263 'DISTRIBUTION' => 'SAPER/XSLoader-0.24.tar.gz',
1264 'FILES' => q[dist/XSLoader],
1274 'XSLoader.pm', # we use XSLoader_pm.PL
1278 # this pseudo-module represents all the files under ext/ and lib/
1279 # that aren't otherwise claimed. This means that the following two
1280 # commands will check that every file under ext/ and lib/ is
1281 # accounted for, and that there are no duplicates:
1283 # perl Porting/Maintainers --checkmani lib ext
1284 # perl Porting/Maintainers --checkmani
1294 ext/ExtUtils-Miniperl/
1301 ext/Hash-Util-FieldHash/
1309 ext/PerlIO-encoding/
1317 ext/Tie-Hash-NamedCapture/
1328 lib/AnyDBM_File.{pm,t}
1329 lib/Benchmark.{pm,t}
1330 lib/B/Deparse{.pm,.t,-*.t}
1333 lib/Class/Struct.{pm,t}
1335 lib/Config/Extensions.{pm,t}
1339 lib/DirHandle.{pm,t}
1341 lib/ExtUtils/Embed.pm
1342 lib/ExtUtils/XSSymSet.pm
1343 lib/ExtUtils/t/Embed.t
1344 lib/ExtUtils/typemap
1345 lib/File/Basename.{pm,t}
1346 lib/File/Compare.{pm,t}
1347 lib/File/Copy.{pm,t}
1348 lib/File/stat{.pm,.t,-7896.t}
1349 lib/FileHandle.{pm,t}
1351 lib/Getopt/Std.{pm,t}
1354 lib/meta_notation.{pm,t}
1355 lib/Net/hostent.{pm,t}
1356 lib/Net/netent.{pm,t}
1357 lib/Net/protoent.{pm,t}
1358 lib/Net/servent.{pm,t}
1361 lib/SelectSaver.{pm,t}
1370 lib/Tie/Scalar.{pm,t}
1371 lib/Tie/StdHandle.pm
1372 lib/Tie/SubstrHash.{pm,t}
1373 lib/Time/gmtime.{pm,t}
1374 lib/Time/localtime.{pm,t}
1378 lib/Unicode/UCD.{pm,t}
1379 lib/User/grent.{pm,t}
1380 lib/User/pwent.{pm,t}
1385 lib/charnames.{pm,t}
1386 lib/dbm_filter_util.pl
1388 lib/diagnostics.{pm,t}
1398 lib/locale_threads.t
1400 lib/overload/numbers.pm
1401 lib/overloading.{pm,t}
1402 lib/overload{.pm,.t,64.t}
1413 lib/vars{.pm,.t,_carp.t}
1420 for ( values %Modules ) {
1421 $_->{CPAN} = !!$_->{DISTRIBUTION};
1424 # legacy UPSTREAM flag
1425 for ( keys %Modules ) {
1426 # Keep any existing UPSTREAM flag so that "overrides" can be applied
1427 next if exists $Modules{$_}{UPSTREAM};
1429 if ($_ eq '_PERLLIB' or $Modules{$_}{FILES} =~ m{^\s*(?:dist|ext|lib)/}) {
1430 $Modules{$_}{UPSTREAM} = 'blead';
1432 elsif ($Modules{$_}{FILES} =~ m{^\s*cpan/}) {
1433 $Modules{$_}{UPSTREAM} = 'cpan';
1436 warn "Unexpected location of FILES for module $_: $Modules{$_}{FILES}";
1440 # legacy MAINTAINER field
1441 for ( keys %Modules ) {
1442 # Keep any existing MAINTAINER flag so that "overrides" can be applied
1443 next if exists $Modules{$_}{MAINTAINER};
1445 if ($Modules{$_}{UPSTREAM} eq 'blead') {
1446 $Modules{$_}{MAINTAINER} = 'P5P';
1447 $Maintainers{P5P} = 'perl5-porters <perl5-porters@perl.org>';
1449 elsif (exists $Modules{$_}{DISTRIBUTION}) {
1450 (my $pause_id = $Modules{$_}{DISTRIBUTION}) =~ s{/.*$}{};
1451 $Modules{$_}{MAINTAINER} = $pause_id;
1452 $Maintainers{$pause_id} = "<$pause_id\@cpan.org>";
1455 warn "No DISTRIBUTION for non-blead module $_";