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
20 ANNOUNCE Announce Artistic AUTHORS BENCHMARK BUGS Build.PL
21 CHANGELOG ChangeLog Changelog CHANGES Changes CONTRIBUTING COPYING Copying
22 cpanfile CREDITS dist.ini GOALS HISTORY INSTALL INSTALL.SKIP LICENSE
23 Makefile.PL MANIFEST MANIFEST.SKIP META.json META.yml MYMETA.json
24 MYMETA.yml NEW NOTES perlcritic.rc ppport.h README README.PATCHING
25 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-1.92.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-1.92.tar.gz',
123 'FILES' => q[cpan/Archive-Tar],
124 'BUGS' => 'bug-archive-tar@rt.cpan.org',
127 'Attribute::Handlers' => {
128 'DISTRIBUTION' => 'SMUELLER/Attribute-Handlers-0.93.tar.gz',
129 'FILES' => q[dist/Attribute-Handlers],
133 'DISTRIBUTION' => 'PJF/autodie-2.22.tar.gz',
134 'FILES' => q[cpan/autodie],
137 # All these tests depend upon external
138 # modules that don't exist when we're
139 # building the core. Hence, they can
140 # never run, and should not be merged.
141 qw( t/author-critic.t
149 t/release-pod-coverage.t
150 t/release-pod-syntax.t
156 # Waiting to be merged upstream: see CPAN RT#87237
162 'DISTRIBUTION' => 'SMUELLER/AutoLoader-5.73.tar.gz',
163 'FILES' => q[cpan/AutoLoader],
164 'EXCLUDED' => ['t/00pod.t'],
168 'DISTRIBUTION' => 'FLORA/autouse-1.07.tar.gz',
169 'FILES' => q[dist/autouse],
170 'EXCLUDED' => [qr{^t/release-.*\.t}],
183 'FILES' => q[ext/B/B/Concise.pm ext/B/t/concise.t],
187 'DISTRIBUTION' => 'RURBAN/B-Debug-1.18.tar.gz',
188 'FILES' => q[cpan/B-Debug],
189 'EXCLUDED' => ['t/pod.t'],
193 'DISTRIBUTION' => 'RGARCIA/base-2.18.tar.gz',
194 'FILES' => q[dist/base],
198 'DISTRIBUTION' => 'FLORA/bignum-0.32.tar.gz',
199 'FILES' => q[dist/bignum],
209 'DISTRIBUTION' => 'ZEFRAM/Carp-1.32.tar.gz',
210 'FILES' => q[dist/Carp],
214 'DISTRIBUTION' => 'MARKSTOS/CGI.pm-3.63.tar.gz',
215 'FILES' => q[cpan/CGI],
219 t/gen-tests/gen-start-end-tags.pl
225 'Compress::Raw::Bzip2' => {
226 'DISTRIBUTION' => 'PMQS/Compress-Raw-Bzip2-2.062.tar.gz',
227 'FILES' => q[cpan/Compress-Raw-Bzip2],
230 'bzip2-src/bzip2-cpp.patch',
234 'Compress::Raw::Zlib' => {
235 'DISTRIBUTION' => 'PMQS/Compress-Raw-Zlib-2.062.tar.gz',
237 'FILES' => q[cpan/Compress-Raw-Zlib],
247 'Config::Perl::V' => {
248 'DISTRIBUTION' => 'HMBRAND/Config-Perl-V-0.19.tgz',
249 'FILES' => q[cpan/Config-Perl-V],
250 'EXCLUDED' => ['examples/show-v.pl'],
254 'DISTRIBUTION' => 'SAPER/constant-1.27.tar.gz',
255 'FILES' => q[dist/constant],
267 'DISTRIBUTION' => 'ANDK/CPAN-2.03-TRIAL.tar.gz',
268 'FILES' => q[cpan/CPAN],
272 qr{^t/CPAN/authors/},
273 qw( lib/CPAN/Admin.pm
288 t/43distroprefspref.t
294 t/71_minimumversion.t
295 t/CPAN/CpanTestDummies-1.55.pm
297 t/CPAN/TestMirroredBy
299 t/CPAN/modules/02packages.details.txt
300 t/CPAN/modules/03modlist.data
301 t/data/META-dynamic.json
302 t/data/META-dynamic.yml
303 t/data/META-static.json
304 t/data/META-static.yml
314 # Note: When updating CPAN-Meta the META.* files will need to be regenerated
315 # perl -Icpan/CPAN-Meta/lib Porting/makemeta
317 'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-2.132830.tar.gz',
318 'FILES' => q[cpan/CPAN-Meta],
321 qw[t/00-report-prereqs.t],
322 qr{t/README-data.txt},
328 'CPAN::Meta::Requirements' => {
329 'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-Requirements-2.125.tar.gz',
330 'FILES' => q[cpan/CPAN-Meta-Requirements],
333 qw(t/00-report-prereqs.t),
339 'CPAN::Meta::YAML' => {
340 'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-YAML-0.010.tar.gz',
341 'FILES' => q[cpan/CPAN-Meta-YAML],
344 't/04_scalar.t', # requires YAML.pm
350 'DISTRIBUTION' => 'SMUELLER/Data-Dumper-2.145.tar.gz',
351 'FILES' => q[dist/Data-Dumper],
355 'DISTRIBUTION' => 'PMQS/DB_File-1.829.tar.gz',
356 'FILES' => q[cpan/DB_File],
367 'DISTRIBUTION' => 'MHX/Devel-PPPort-3.21.tar.gz',
368 # RJBS has asked MHX to have UPSTREAM be 'blead'
369 # (i.e. move this from cpan/ to dist/)
370 'FILES' => q[cpan/Devel-PPPort],
372 'PPPort.pm', # we use PPPort_pm.PL instead
377 'Devel::SelfStubber' => {
378 'DISTRIBUTION' => 'FLORA/Devel-SelfStubber-1.05.tar.gz',
379 'FILES' => q[dist/Devel-SelfStubber],
380 'EXCLUDED' => [qr{^t/release-.*\.t}],
384 'DISTRIBUTION' => 'GAAS/Digest-1.17.tar.gz',
385 'FILES' => q[cpan/Digest],
386 'EXCLUDED' => ['digest-bench'],
390 'DISTRIBUTION' => 'GAAS/Digest-MD5-2.53.tar.gz',
391 'FILES' => q[cpan/Digest-MD5],
392 'EXCLUDED' => ['rfc1321.txt'],
393 # Waiting to be merged upstream: see CPAN RT#89612
394 'CUSTOMIZED' => ['t/files.t'],
398 'DISTRIBUTION' => 'MSHELOR/Digest-SHA-5.85.tar.gz',
399 'FILES' => q[cpan/Digest-SHA],
409 'DISTRIBUTION' => 'FLORA/Dumpvalue-1.17.tar.gz',
410 'FILES' => q[dist/Dumpvalue],
411 'EXCLUDED' => [qr{^t/release-.*\.t}],
415 'DISTRIBUTION' => 'DANKOGAI/Encode-2.55.tar.gz',
416 'FILES' => q[cpan/Encode],
419 'encoding::warnings' => {
420 'DISTRIBUTION' => 'AUDREYT/encoding-warnings-0.11.tar.gz',
421 'FILES' => q[cpan/encoding-warnings],
429 'DISTRIBUTION' => 'FLORA/Env-1.04.tar.gz',
430 'FILES' => q[dist/Env],
431 'EXCLUDED' => [qr{^t/release-.*\.t}],
435 'DISTRIBUTION' => 'TODDR/Exporter-5.68.tar.gz',
436 'FILES' => q[dist/Exporter],
444 'ExtUtils::CBuilder' => {
445 'DISTRIBUTION' => 'AMBS/ExtUtils/ExtUtils-CBuilder-0.280212.tar.gz',
446 'FILES' => q[dist/ExtUtils-CBuilder],
453 'ExtUtils::Command' => {
454 'DISTRIBUTION' => 'FLORA/ExtUtils-Command-1.18.tar.gz',
455 'FILES' => q[dist/ExtUtils-Command],
456 'EXCLUDED' => [qr{^t/release-}],
459 'ExtUtils::Constant' => {
461 # Nick has confirmed that while we have diverged from CPAN,
462 # this package isn't primarily maintained in core
463 # Another release will happen "Sometime"
464 'DISTRIBUTION' => '', #'NWCLARK/ExtUtils-Constant-0.16.tar.gz',
465 'FILES' => q[cpan/ExtUtils-Constant],
467 qw( lib/ExtUtils/Constant/Aaargh56Hash.pm
468 examples/perl_keyword.pl
469 examples/perl_regcomp_posix_keyword.pl
474 'ExtUtils::Install' => {
475 'DISTRIBUTION' => 'YVES/ExtUtils-Install-1.54.tar.gz',
476 'FILES' => q[dist/ExtUtils-Install],
478 qw( t/lib/Test/Builder.pm
479 t/lib/Test/Builder/Module.pm
488 'ExtUtils::MakeMaker' => {
489 'DISTRIBUTION' => 'BINGOS/ExtUtils-MakeMaker-6.80.tar.gz',
490 'FILES' => q[cpan/ExtUtils-MakeMaker],
494 qr{^t/Liblist_Kid.t},
502 'ExtUtils::Manifest' => {
503 'DISTRIBUTION' => 'FLORA/ExtUtils-Manifest-1.63.tar.gz',
504 'FILES' => q[dist/ExtUtils-Manifest],
505 'EXCLUDED' => [qr(t/release-.*\.t)],
508 'ExtUtils::ParseXS' => {
509 'DISTRIBUTION' => 'SMUELLER/ExtUtils-ParseXS-3.22.tar.gz',
510 'FILES' => q[dist/ExtUtils-ParseXS],
514 'DISTRIBUTION' => 'BINGOS/File-Fetch-0.44.tar.gz',
515 'FILES' => q[cpan/File-Fetch],
519 'DISTRIBUTION' => 'DLAND/File-Path-2.09.tar.gz',
520 'FILES' => q[cpan/File-Path],
522 qw( eg/setup-extra-tests
527 '' => 'cpan/File-Path/lib/File/',
528 't/' => 'cpan/File-Path/t/',
533 'DISTRIBUTION' => 'DAGOLDEN/File-Temp-0.2304.tar.gz',
534 'FILES' => q[cpan/File-Temp],
536 qw( misc/benchmark.pl
539 qw[t/00-report-prereqs.t],
544 'Filter::Simple' => {
545 'DISTRIBUTION' => 'SMUELLER/Filter-Simple-0.88.tar.gz',
546 'FILES' => q[dist/Filter-Simple],
552 'Filter::Util::Call' => {
553 'DISTRIBUTION' => 'RURBAN/Filter-1.49.tar.gz',
554 'FILES' => q[cpan/Filter-Util-Call
576 t/z_perl_minimum_version.t
582 'Call/' => 'cpan/Filter-Util-Call/',
583 'filter-util.pl' => 'cpan/Filter-Util-Call/filter-util.pl',
584 'perlfilter.pod' => 'pod/perlfilter.pod',
585 '' => 'cpan/Filter-Util-Call/',
590 'DISTRIBUTION' => 'JV/Getopt-Long-2.42.tar.gz',
591 'FILES' => q[cpan/Getopt-Long],
594 qw( perl-Getopt-Long.spec
602 'DISTRIBUTION' => 'DAGOLDEN/HTTP-Tiny-0.036.tar.gz',
603 'FILES' => q[cpan/HTTP-Tiny],
606 't/00-report-prereqs.t',
608 't/200_live_local_ip.t',
616 'DISTRIBUTION' => 'FLORA/I18N-Collate-1.02.tar.gz',
617 'FILES' => q[dist/I18N-Collate],
618 'EXCLUDED' => [qr{^t/release-.*\.t}],
621 'I18N::LangTags' => {
622 'FILES' => q[dist/I18N-LangTags],
626 'DISTRIBUTION' => 'ILYAZ/modules/if-0.0601.tar.gz',
627 'FILES' => q[dist/if],
631 'DISTRIBUTION' => 'GBARR/IO-1.25.tar.gz',
632 'FILES' => q[dist/IO/],
633 'EXCLUDED' => ['t/test.pl'],
637 'DISTRIBUTION' => 'PMQS/IO-Compress-2.062.tar.gz',
638 'FILES' => q[cpan/IO-Compress],
642 't/010examples-bzip2.t',
643 't/010examples-zlib.t',
649 'DISTRIBUTION' => 'TOMHUGHES/IO-Zlib-1.10.tar.gz',
650 'FILES' => q[cpan/IO-Zlib],
654 'DISTRIBUTION' => 'BINGOS/IPC-Cmd-0.84.tar.gz',
655 'FILES' => q[cpan/IPC-Cmd],
659 'DISTRIBUTION' => 'MHX/IPC-SysV-2.04.tar.gz',
660 'FILES' => q[cpan/IPC-SysV],
669 'DISTRIBUTION' => 'MAKAMAKA/JSON-PP-2.27203.tar.gz',
670 'FILES' => q[cpan/JSON-PP],
672 't/900_pod.t', # Pod testing
677 'DISTRIBUTION' => 'SMUELLER/lib-0.63.tar.gz',
678 'FILES' => q[dist/lib/],
687 'DISTRIBUTION' => 'SHAY/libnet-1.23.tar.gz',
688 'FILES' => q[cpan/libnet],
695 # Customized for perl since we cannot use either an auto-generated
696 # script or the version in the CPAN distro.
697 'CUSTOMIZED' => ['Makefile.PL'],
701 'DISTRIBUTION' => 'SBECK/Locale-Codes-3.27.tar.gz',
702 'FILES' => q[cpan/Locale-Codes],
708 qr{^t/runtests\.bat},
714 'Locale::Maketext' => {
715 'DISTRIBUTION' => 'TODDR/Locale-Maketext-1.23.tar.gz',
716 'FILES' => q[dist/Locale-Maketext],
726 'Locale::Maketext::Simple' => {
727 'DISTRIBUTION' => 'JESSE/Locale-Maketext-Simple-0.21.tar.gz',
728 'FILES' => q[cpan/Locale-Maketext-Simple],
729 'EXCLUDED' => [qr{^inc/}],
733 'DISTRIBUTION' => 'PJACKLAM/Math-BigInt-1.997.tar.gz',
734 'FILES' => q[dist/Math-BigInt],
746 'Math::BigInt::FastCalc' => {
747 'DISTRIBUTION' => 'PJACKLAM/Math-BigInt-FastCalc-0.30.tar.gz',
748 'FILES' => q[dist/Math-BigInt-FastCalc],
757 # instead we use the versions of these test
758 # files that come with Math::BigInt:
770 'DISTRIBUTION' => 'PJACKLAM/Math-BigRat-0.2602.tar.gz',
771 'FILES' => q[dist/Math-BigRat],
783 'DISTRIBUTION' => 'ZEFRAM/Math-Complex-1.59.tar.gz',
784 'FILES' => q[cpan/Math-Complex],
793 'DISTRIBUTION' => 'MJD/Memoize-1.03.tgz',
794 'FILES' => q[cpan/Memoize],
795 'EXCLUDED' => ['article.html'],
799 'DISTRIBUTION' => 'GAAS/MIME-Base64-3.14.tar.gz',
800 'FILES' => q[cpan/MIME-Base64],
801 'EXCLUDED' => ['t/bad-sv.t'],
805 # To update Module-Build in blead see
806 # https://github.com/Perl-Toolchain-Gang/Module-Build/blob/master/devtools/patching_blead.pod
810 'DISTRIBUTION' => 'LEONT/Module-Build-0.4007.tar.gz',
811 'FILES' => q[cpan/Module-Build],
819 # Generated file, not part of the CPAN distro:
820 'CUSTOMIZED' => ['lib/Module/Build/ConfigData.pm'],
821 'DEPRECATED' => '5.019000',
824 'Module::CoreList' => {
825 'DISTRIBUTION' => 'BINGOS/Module-CoreList-2.99.tar.gz',
826 'FILES' => q[dist/Module-CoreList],
830 'DISTRIBUTION' => 'BINGOS/Module-Load-0.24.tar.gz',
831 'FILES' => q[cpan/Module-Load],
834 'Module::Load::Conditional' => {
835 'DISTRIBUTION' => 'BINGOS/Module-Load-Conditional-0.58.tar.gz',
836 'FILES' => q[cpan/Module-Load-Conditional],
839 'Module::Loaded' => {
840 'DISTRIBUTION' => 'BINGOS/Module-Loaded-0.08.tar.gz',
841 'FILES' => q[cpan/Module-Loaded],
844 'Module::Metadata' => {
845 'DISTRIBUTION' => 'ETHER/Module-Metadata-1.000019.tar.gz',
846 'FILES' => q[cpan/Module-Metadata],
854 'DISTRIBUTION' => 'SMPETERS/Net-Ping-2.41.tar.gz',
855 'FILES' => q[dist/Net-Ping],
863 'DISTRIBUTION' => 'FLORA/NEXT-0.65.tar.gz',
864 'FILES' => q[cpan/NEXT],
865 'EXCLUDED' => [qr{^demo/}],
868 'Package::Constants' => {
869 'DISTRIBUTION' => 'KANE/Package-Constants-0.02.tar.gz',
870 'FILES' => q[cpan/Package-Constants],
874 'DISTRIBUTION' => 'BINGOS/Params-Check-0.38.tar.gz',
875 'EXCLUDED' => ['Params-Check-0.26.tar.gz'],
876 'FILES' => q[cpan/Params-Check],
880 'DISTRIBUTION' => 'CORION/parent-0.228.tar.gz',
881 'FILES' => q[cpan/parent],
884 'Parse::CPAN::Meta' => {
885 'DISTRIBUTION' => 'DAGOLDEN/Parse-CPAN-Meta-1.4409.tar.gz',
886 'FILES' => q[cpan/Parse-CPAN-Meta],
889 qw[t/00-report-prereqs.t],
895 'DISTRIBUTION' => 'SMUELLER/PathTools-3.40.tar.gz',
896 'FILES' => q[dist/Cwd],
897 'EXCLUDED' => [qr{^t/lib/Test/}],
899 # NOTE: PathTools is in dist/Cwd/ instead of dist/PathTools because it
900 # contains Cwd.xs and something, possibly Makefile.SH, makes an assumption
901 # that the leafname of some file corresponds with the pathname of the
906 'DISTRIBUTION' => 'DAGOLDEN/Perl-OSType-1.006.tar.gz',
907 'FILES' => q[cpan/Perl-OSType],
908 'EXCLUDED' => [qw(tidyall.ini), qr/^xt/, qr{^t/00-}],
912 'DISTRIBUTION' => 'LLAP/perlfaq-5.0150044.tar.gz',
913 'FILES' => q[cpan/perlfaq],
915 qw( t/release-pod-syntax.t
922 'PerlIO::via::QuotedPrint' => {
923 'DISTRIBUTION' => 'ELIZABETH/PerlIO-via-QuotedPrint-0.07.tar.gz',
924 'FILES' => q[cpan/PerlIO-via-QuotedPrint],
926 # Waiting to be merged upstream: see CPAN RT#54047
935 'DISTRIBUTION' => 'MAREKR/Pod-Checker-1.60.tar.gz',
936 'FILES' => q[cpan/Pod-Checker],
940 'DISTRIBUTION' => 'SBURKE/Pod-Escapes-1.04.tar.gz',
941 'FILES' => q[cpan/Pod-Escapes],
945 'DISTRIBUTION' => 'MAREKR/Pod-Parser-1.61.tar.gz',
946 'FILES' => q[cpan/Pod-Parser],
950 'DISTRIBUTION' => 'MALLEN/Pod-Perldoc-3.20.tar.gz',
951 'FILES' => q[cpan/Pod-Perldoc],
953 # in blead, the perldoc executable is generated by perldoc.PL
955 # XXX We can and should fix this, but clean up the DRY-failure in utils
957 'EXCLUDED' => ['perldoc'],
961 'DISTRIBUTION' => 'DWHEELER/Pod-Simple-3.28.tar.gz',
962 'FILES' => q[cpan/Pod-Simple],
966 'DISTRIBUTION' => 'MAREKR/Pod-Usage-1.63.tar.gz',
967 'FILES' => q[cpan/Pod-Usage],
971 'DISTRIBUTION' => 'RRA/podlators-2.5.3.tar.gz',
972 'FILES' => q[cpan/podlators pod/perlpodstyle.pod],
974 # The perl distribution has pod2man.PL and pod2text.PL, which are
975 # run to create pod2man and pod2text, while the CPAN distribution
976 # just has the post-generated pod2man and pod2text files.
977 # The following entries attempt to codify that odd fact.
979 qw( scripts/pod2man.PL
984 '' => 'cpan/podlators/',
985 'scripts/pod2man' => 'cpan/podlators/scripts/pod2man.PL',
986 'scripts/pod2text' => 'cpan/podlators/scripts/pod2text.PL',
988 # this file lives outside the cpan/ directory
989 'pod/perlpodstyle.pod' => 'pod/perlpodstyle.pod',
994 'DISTRIBUTION' => 'RGARCIA/Safe-2.35.tar.gz',
995 'FILES' => q[dist/Safe],
998 'Scalar-List-Utils' => {
999 'DISTRIBUTION' => 'PEVANS/Scalar-List-Utils-1.35.tar.gz',
1000 'FILES' => q[cpan/List-Util],
1004 'DISTRIBUTION' => 'DAGOLDEN/Search-Dict-1.07.tar.gz',
1005 'FILES' => q[dist/Search-Dict],
1006 'EXCLUDED' => [qr{^t/release-.*\.t},qr{^README\..*}],
1010 'DISTRIBUTION' => 'SMUELLER/SelfLoader-1.20.tar.gz',
1011 'FILES' => q[dist/SelfLoader],
1012 'EXCLUDED' => ['t/00pod.t'],
1016 'DISTRIBUTION' => 'PEVANS/Socket-2.012.tar.gz',
1017 'FILES' => q[cpan/Socket],
1021 'DISTRIBUTION' => 'AMS/Storable-2.45.tar.gz',
1022 'FILES' => q[dist/Storable],
1023 'EXCLUDED' => [qr{^t/Test/}],
1027 'DISTRIBUTION' => 'SAPER/Sys-Syslog-0.33.tar.gz',
1028 'FILES' => q[cpan/Sys-Syslog],
1043 'Term::ANSIColor' => {
1044 'DISTRIBUTION' => 'RRA/Term-ANSIColor-4.02.tar.gz',
1045 'FILES' => q[cpan/Term-ANSIColor],
1063 'DISTRIBUTION' => 'JSTOWE/Term-Cap-1.12.tar.gz',
1064 'FILES' => q[cpan/Term-Cap],
1066 # Waiting to be merged upstream: see CPAN RT#73447
1075 'Term::Complete' => {
1076 'DISTRIBUTION' => 'FLORA/Term-Complete-1.402.tar.gz',
1077 'FILES' => q[dist/Term-Complete],
1078 'EXCLUDED' => [qr{^t/release-.*\.t}],
1081 'Term::ReadLine' => {
1082 'DISTRIBUTION' => 'FLORA/Term-ReadLine-1.14.tar.gz',
1083 'FILES' => q[dist/Term-ReadLine],
1084 'EXCLUDED' => [qr{^t/release-.*\.t}],
1088 'DISTRIBUTION' => 'JESSE/Test-1.26.tar.gz',
1089 'FILES' => q[cpan/Test],
1092 'Test::Harness' => {
1093 'DISTRIBUTION' => 'OVID/Test-Harness-3.29.tar.gz',
1094 'FILES' => q[cpan/Test-Harness],
1101 MANIFEST.CUMMULATIVE
1112 'DISTRIBUTION' => 'RJBS/Test-Simple-0.99.tar.gz',
1113 'FILES' => q[cpan/Test-Simple],
1122 t/Builder/reset_outputs.t
1123 lib/Test/Builder/IO/Scalar.pm
1129 'DISTRIBUTION' => 'FLORA/Text-Abbrev-1.02.tar.gz',
1130 'FILES' => q[dist/Text-Abbrev],
1131 'EXCLUDED' => [qr{^t/release-.*\.t}],
1134 'Text::Balanced' => {
1135 'DISTRIBUTION' => 'ADAMK/Text-Balanced-2.02.tar.gz',
1136 'FILES' => q[cpan/Text-Balanced],
1144 # Waiting to be merged upstream: see CPAN RT#87788
1160 'Text::ParseWords' => {
1161 'DISTRIBUTION' => 'CHORNY/Text-ParseWords-3.29.tar.gz',
1162 'FILES' => q[cpan/Text-ParseWords],
1163 'EXCLUDED' => ['t/pod.t'],
1165 # Waiting to be merged upstream: see CPAN RT#50929
1172 # For the benefit of make_ext.pl, we have to have this accessible:
1174 'ParseWords.pm' => 'cpan/Text-ParseWords/lib/Text/ParseWords.pm',
1175 '' => 'cpan/Text-ParseWords/',
1179 'Text-Tabs+Wrap' => {
1180 'DISTRIBUTION' => 'MUIR/modules/Text-Tabs+Wrap-2013.0523.tar.gz',
1181 'FILES' => q[cpan/Text-Tabs],
1184 't/dnsparks.t', # see af6492bf9e
1187 '' => 'cpan/Text-Tabs/',
1188 'lib.modern/Text/Tabs.pm' => 'cpan/Text-Tabs/lib/Text/Tabs.pm',
1189 'lib.modern/Text/Wrap.pm' => 'cpan/Text-Tabs/lib/Text/Wrap.pm',
1193 'Thread::Queue' => {
1194 'DISTRIBUTION' => 'JDHEDDEN/Thread-Queue-3.02.tar.gz',
1195 'FILES' => q[dist/Thread-Queue],
1205 'Thread::Semaphore' => {
1206 'DISTRIBUTION' => 'JDHEDDEN/Thread-Semaphore-2.12.tar.gz',
1207 'FILES' => q[dist/Thread-Semaphore],
1209 qw( examples/semaphore.pl
1218 'DISTRIBUTION' => 'JDHEDDEN/threads-1.89.tar.gz',
1219 'FILES' => q[dist/threads],
1229 'threads::shared' => {
1230 'DISTRIBUTION' => 'JDHEDDEN/threads-shared-1.43.tar.gz',
1231 'FILES' => q[dist/threads-shared],
1233 qw( examples/class.pl
1242 'DISTRIBUTION' => 'TODDR/Tie-File-0.98.tar.gz',
1243 'FILES' => q[dist/Tie-File],
1247 'DISTRIBUTION' => 'FLORA/Tie-RefHash-1.39.tar.gz',
1248 'FILES' => q[cpan/Tie-RefHash],
1252 'DISTRIBUTION' => 'ZEFRAM/Time-HiRes-1.9726.tar.gz',
1253 'FILES' => q[cpan/Time-HiRes],
1257 'DISTRIBUTION' => 'DROLSKY/Time-Local-1.2300.tar.gz',
1258 'FILES' => q[cpan/Time-Local],
1260 qw( t/pod-coverage.t
1263 qr{^t/release-.*\.t},
1268 'DISTRIBUTION' => 'RJBS/Time-Piece-1.23.tar.gz',
1269 'FILES' => q[cpan/Time-Piece],
1272 'Unicode::Collate' => {
1273 'DISTRIBUTION' => 'SADAHIRO/Unicode-Collate-0.99.tar.gz',
1274 'FILES' => q[cpan/Unicode-Collate],
1286 'Unicode::Normalize' => {
1287 'DISTRIBUTION' => 'SADAHIRO/Unicode-Normalize-1.17.tar.gz',
1288 'FILES' => q[cpan/Unicode-Normalize],
1299 'DISTRIBUTION' => 'JPEACOCK/version-0.9904.tar.gz',
1300 'FILES' => q[cpan/version],
1303 'lib/version/typemap',
1308 # Waiting to be merged upstream: see CPAN RT#87513
1316 # Remove this (so it reverts to 'cpan') when [cpan #88458] is resolved
1317 'UPSTREAM' => 'blead',
1330 'DISTRIBUTION' => "JDB/Win32-0.47.tar.gz",
1331 'FILES' => q[cpan/Win32],
1334 'Win32API::File' => {
1335 'DISTRIBUTION' => 'CHORNY/Win32API-File-0.1201.tar.gz',
1336 'FILES' => q[cpan/Win32API-File],
1344 'DISTRIBUTION' => 'SAPER/XSLoader-0.16.tar.gz',
1345 'FILES' => q[dist/XSLoader],
1355 'XSLoader.pm', # we use XSLoader_pm.PL
1359 # this pseudo-module represents all the files under ext/ and lib/
1360 # that aren't otherwise claimed. This means that the following two
1361 # commands will check that every file under ext/ and lib/ is
1362 # accounted for, and that there are no duplicates:
1364 # perl Porting/Maintainers --checkmani lib ext
1365 # perl Porting/Maintainers --checkmani
1372 ext/ExtUtils-Miniperl/
1379 ext/Hash-Util-FieldHash/
1387 ext/PerlIO-encoding/
1395 ext/Tie-Hash-NamedCapture/
1407 lib/AnyDBM_File.{pm,t}
1408 lib/Benchmark.{pm,t}
1409 lib/B/Deparse{.pm,.t,-core.t}
1411 lib/Class/Struct.{pm,t}
1413 lib/Config/Extensions.{pm,t}
1417 lib/DirHandle.{pm,t}
1419 lib/ExtUtils/Embed.pm
1420 lib/ExtUtils/XSSymSet.pm
1421 lib/ExtUtils/t/Embed.t
1422 lib/ExtUtils/typemap
1423 lib/File/Basename.{pm,t}
1424 lib/File/Compare.{pm,t}
1425 lib/File/Copy.{pm,t}
1426 lib/File/stat{.pm,.t,-7896.t}
1427 lib/FileHandle.{pm,t}
1429 lib/Getopt/Std.{pm,t}
1431 lib/Net/hostent.{pm,t}
1432 lib/Net/netent.{pm,t}
1433 lib/Net/protoent.{pm,t}
1434 lib/Net/servent.{pm,t}
1436 lib/Pod/t/InputObjects.t
1440 lib/SelectSaver.{pm,t}
1449 lib/Tie/Scalar.{pm,t}
1450 lib/Tie/StdHandle.pm
1451 lib/Tie/SubstrHash.{pm,t}
1452 lib/Time/gmtime.{pm,t}
1453 lib/Time/localtime.{pm,t}
1457 lib/Unicode/UCD.{pm,t}
1458 lib/User/grent.{pm,t}
1459 lib/User/pwent.{pm,t}
1464 lib/charnames.{pm,t}
1465 lib/dbm_filter_util.pl
1467 lib/diagnostics.{pm,t}
1478 lib/overload/numbers.pm
1479 lib/overloading.{pm,t}
1480 lib/overload{.pm,.t,64.t}
1490 lib/vars{.pm,.t,_carp.t}
1497 for ( values %Modules ) {
1498 $_->{CPAN} = !!$_->{DISTRIBUTION};
1501 # legacy UPSTREAM flag
1502 for ( keys %Modules ) {
1503 # Keep any existing UPSTREAM flag so that "overrides" can be applied
1504 next if exists $Modules{$_}{UPSTREAM};
1506 if ($_ eq '_PERLLIB' or $Modules{$_}{FILES} =~ m{^\s*(?:dist|ext|lib)/}) {
1507 $Modules{$_}{UPSTREAM} = 'blead';
1509 elsif ($Modules{$_}{FILES} =~ m{^\s*cpan/}) {
1510 $Modules{$_}{UPSTREAM} = 'cpan';
1513 warn "Unexpected location of FILES for module $_: $Modules{$_}{FILES}";
1517 # legacy MAINTAINER field
1518 for ( keys %Modules ) {
1519 # Keep any existing MAINTAINER flag so that "overrides" can be applied
1520 next if exists $Modules{$_}{MAINTAINER};
1522 if ($Modules{$_}{UPSTREAM} eq 'blead') {
1523 $Modules{$_}{MAINTAINER} = 'P5P';
1524 $Maintainers{P5P} = 'perl5-porters <perl5-porters@perl.org>';
1526 elsif (exists $Modules{$_}{DISTRIBUTION}) {
1527 (my $pause_id = $Modules{$_}{DISTRIBUTION}) =~ s{/.*$}{};
1528 $Modules{$_}{MAINTAINER} = $pause_id;
1529 $Maintainers{$pause_id} = "<$pause_id\@cpan.org>";
1532 warn "No DISTRIBUTION for non-blead module $_";