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.
70 # EXCLUDED is a list of files to be excluded from a CPAN tarball before
71 # comparing the remaining contents with core. Each item can either be a
72 # full pathname (eg 't/foo.t') or a pattern (e.g. qr{^t/}).
73 # It defaults to the empty list.
75 # CUSTOMIZED is a list of files that have been customized within the
76 # Perl core. Use this whenever patching a cpan upstream distribution
77 # or whenever we expect to have a file that differs from the tarball.
78 # If the file in blead matches the file in the tarball from CPAN,
79 # Porting/core-cpan-diff will warn about it, as it indicates an expected
80 # customization might have been lost when updating from upstream. The
81 # path should be relative to the distribution directory. If the upstream
82 # distribution should be modified to incorporate the change then be sure
83 # to raise a ticket for it on rt.cpan.org and add a comment alongside the
84 # list of CUSTOMIZED files noting the ticket number.
86 # DEPRECATED contains the *first* version of Perl in which the module
87 # was considered deprecated. It should only be present if the module is
88 # actually deprecated. Such modules should use deprecated.pm to
89 # issue a warning if used. E.g.:
91 # use if $] >= 5.011, 'deprecate';
94 # MAP is a hash that maps CPAN paths to their core equivalents.
95 # Each key represents a string prefix, with longest prefixes checked
96 # first. The first match causes that prefix to be replaced with the
97 # corresponding key. For example, with the following MAP:
103 # these files are mapped as shown:
105 # README becomes lib/Foo/README
106 # lib/Foo.pm becomes lib/Foo.pm
108 # The default is dependent on the type of module.
109 # For distributions which appear to be stored under ext/, it defaults to:
111 # { '' => 'ext/Foo-Bar/' }
117 # '' => 'lib/Foo/Bar/',
123 'DISTRIBUTION' => 'BINGOS/Archive-Tar-2.04.tar.gz',
124 'FILES' => q[cpan/Archive-Tar],
125 'BUGS' => 'bug-archive-tar@rt.cpan.org',
131 'Attribute::Handlers' => {
132 'DISTRIBUTION' => 'RJBS/Attribute-Handlers-0.99.tar.gz',
133 'FILES' => q[dist/Attribute-Handlers],
137 'DISTRIBUTION' => 'PJF/autodie-2.29.tar.gz',
138 'FILES' => q[cpan/autodie],
142 # All these tests depend upon external
143 # modules that don't exist when we're
144 # building the core. Hence, they can
145 # never run, and should not be merged.
146 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.069.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.069.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.017-TRIAL.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.32.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
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'],
362 'DISTRIBUTION' => 'GAAS/Digest-MD5-2.54.tar.gz',
363 'FILES' => q[cpan/Digest-MD5],
364 'EXCLUDED' => ['rfc1321.txt'],
368 'DISTRIBUTION' => 'MSHELOR/Digest-SHA-5.95.tar.gz',
369 'FILES' => q[cpan/Digest-SHA],
379 'DISTRIBUTION' => 'FLORA/Dumpvalue-1.17.tar.gz',
380 'FILES' => q[dist/Dumpvalue],
381 'EXCLUDED' => [qr{^t/release-.*\.t}],
385 'DISTRIBUTION' => 'DANKOGAI/Encode-2.78.tar.gz',
386 'FILES' => q[cpan/Encode],
388 qq{cpan/Encode/Encode.xs},
389 qq{cpan/Encode/Unicode/Unicode.xs},
390 qq{cpan/Encode/encoding.pm},
394 'encoding::warnings' => {
395 'DISTRIBUTION' => 'AUDREYT/encoding-warnings-0.11.tar.gz',
396 'FILES' => q[cpan/encoding-warnings],
404 'DISTRIBUTION' => 'FLORA/Env-1.04.tar.gz',
405 'FILES' => q[dist/Env],
406 'EXCLUDED' => [qr{^t/release-.*\.t}],
410 'DISTRIBUTION' => 'LEONT/experimental-0.016.tar.gz',
411 'FILES' => q[cpan/experimental],
412 'EXCLUDED' => [qr{^xt/}],
416 'DISTRIBUTION' => 'TODDR/Exporter-5.72.tar.gz',
417 'FILES' => q[dist/Exporter],
425 'ExtUtils::CBuilder' => {
426 'DISTRIBUTION' => 'AMBS/ExtUtils-CBuilder-0.280224.tar.gz',
427 'FILES' => q[dist/ExtUtils-CBuilder],
434 'ExtUtils::Constant' => {
436 # Nick has confirmed that while we have diverged from CPAN,
437 # this package isn't primarily maintained in core
438 # Another release will happen "Sometime"
439 'DISTRIBUTION' => '', #'NWCLARK/ExtUtils-Constant-0.16.tar.gz',
440 'FILES' => q[cpan/ExtUtils-Constant],
442 qw( lib/ExtUtils/Constant/Aaargh56Hash.pm
443 examples/perl_keyword.pl
444 examples/perl_regcomp_posix_keyword.pl
449 'ExtUtils::Install' => {
450 'DISTRIBUTION' => 'BINGOS/ExtUtils-Install-2.04.tar.gz',
451 'FILES' => q[cpan/ExtUtils-Install],
453 qw( t/lib/Test/Builder.pm
454 t/lib/Test/Builder/Module.pm
463 'ExtUtils::MakeMaker' => {
464 'DISTRIBUTION' => 'BINGOS/ExtUtils-MakeMaker-7.10.tar.gz',
465 'FILES' => q[cpan/ExtUtils-MakeMaker],
469 qr{^t/Liblist_Kid.t},
475 # Upstreamed as https://github.com/Perl-Toolchain-Gang/ExtUtils-MakeMaker/commit/ede9ea4a
477 qq[lib/ExtUtils/MakeMaker.pm],
480 # Upstreamed as https://github.com/Perl-Toolchain-Gang/ExtUtils-MakeMaker/commit/dd1e236ab
481 qq[lib/ExtUtils/MM_VMS.pm],
485 'ExtUtils::Manifest' => {
486 'DISTRIBUTION' => 'ETHER/ExtUtils-Manifest-1.70.tar.gz',
487 'FILES' => q[cpan/ExtUtils-Manifest],
489 qr(^t/00-report-prereqs),
494 'ExtUtils::ParseXS' => {
495 'DISTRIBUTION' => 'SMUELLER/ExtUtils-ParseXS-3.30.tar.gz',
496 'FILES' => q[dist/ExtUtils-ParseXS],
500 'DISTRIBUTION' => 'BINGOS/File-Fetch-0.48.tar.gz',
501 'FILES' => q[cpan/File-Fetch],
505 'DISTRIBUTION' => 'RICHE/File-Path-2.12.tar.gz',
506 'FILES' => q[cpan/File-Path],
514 'DISTRIBUTION' => 'DAGOLDEN/File-Temp-0.2304.tar.gz',
515 'FILES' => q[cpan/File-Temp],
517 qw( misc/benchmark.pl
520 qw[t/00-report-prereqs.t],
525 'Filter::Simple' => {
526 'DISTRIBUTION' => 'SMUELLER/Filter-Simple-0.91.tar.gz',
527 'FILES' => q[dist/Filter-Simple],
533 'Filter::Util::Call' => {
534 'DISTRIBUTION' => 'RURBAN/Filter-1.55.tar.gz',
535 'FILES' => q[cpan/Filter-Util-Call
556 t/z_perl_minimum_version.t
562 'Call/' => 'cpan/Filter-Util-Call/',
563 'filter-util.pl' => 'cpan/Filter-Util-Call/filter-util.pl',
564 'perlfilter.pod' => 'pod/perlfilter.pod',
565 '' => 'cpan/Filter-Util-Call/',
570 'DISTRIBUTION' => 'JV/Getopt-Long-2.47.tar.gz',
571 'FILES' => q[cpan/Getopt-Long],
574 qw( perl-Getopt-Long.spec
582 'DISTRIBUTION' => 'DAGOLDEN/HTTP-Tiny-0.056.tar.gz',
583 'FILES' => q[cpan/HTTP-Tiny],
585 't/00-report-prereqs.t',
586 't/00-report-prereqs.dd',
588 't/200_live_local_ip.t',
596 'DISTRIBUTION' => 'FLORA/I18N-Collate-1.02.tar.gz',
597 'FILES' => q[dist/I18N-Collate],
598 'EXCLUDED' => [qr{^t/release-.*\.t}],
601 'I18N::LangTags' => {
602 'FILES' => q[dist/I18N-LangTags],
606 'DISTRIBUTION' => 'RJBS/if-0.0606.tar.gz',
607 'FILES' => q[dist/if],
611 'DISTRIBUTION' => 'GBARR/IO-1.25.tar.gz',
612 'FILES' => q[dist/IO/],
613 'EXCLUDED' => ['t/test.pl'],
617 'DISTRIBUTION' => 'PMQS/IO-Compress-2.069.tar.gz',
618 'FILES' => q[cpan/IO-Compress],
622 't/010examples-bzip2.t',
623 't/010examples-zlib.t',
628 'IO::Socket::IP' => {
629 'DISTRIBUTION' => 'PEVANS/IO-Socket-IP-0.37.tar.gz',
630 'FILES' => q[cpan/IO-Socket-IP],
637 'DISTRIBUTION' => 'TOMHUGHES/IO-Zlib-1.10.tar.gz',
638 'FILES' => q[cpan/IO-Zlib],
642 'DISTRIBUTION' => 'BINGOS/IPC-Cmd-0.92.tar.gz',
643 'FILES' => q[cpan/IPC-Cmd],
647 'DISTRIBUTION' => 'MHX/IPC-SysV-2.04.tar.gz',
648 'FILES' => q[cpan/IPC-SysV],
657 'DISTRIBUTION' => 'MAKAMAKA/JSON-PP-2.27300.tar.gz',
658 'FILES' => q[cpan/JSON-PP],
662 'DISTRIBUTION' => 'SMUELLER/lib-0.63.tar.gz',
663 'FILES' => q[dist/lib/],
672 'DISTRIBUTION' => 'SHAY/libnet-3.07.tar.gz',
673 'FILES' => q[cpan/libnet],
687 'DISTRIBUTION' => 'SBECK/Locale-Codes-3.36.tar.gz',
688 'FILES' => q[cpan/Locale-Codes],
695 qr{^t/runtests\.bat},
701 'Locale::Maketext' => {
702 'DISTRIBUTION' => 'TODDR/Locale-Maketext-1.26.tar.gz',
703 'FILES' => q[dist/Locale-Maketext],
713 'Locale::Maketext::Simple' => {
714 'DISTRIBUTION' => 'JESSE/Locale-Maketext-Simple-0.21.tar.gz',
715 'FILES' => q[cpan/Locale-Maketext-Simple],
719 'DISTRIBUTION' => 'PJACKLAM/Math-BigInt-1.9997.tar.gz',
720 'FILES' => q[cpan/Math-BigInt],
732 'Math::BigInt::FastCalc' => {
733 'DISTRIBUTION' => 'PJACKLAM/Math-BigInt-FastCalc-0.31.tar.gz',
734 'FILES' => q[cpan/Math-BigInt-FastCalc],
743 # instead we use the versions of these test
744 # files that come with Math::BigInt:
756 'DISTRIBUTION' => 'PJACKLAM/Math-BigRat-0.2606.tar.gz',
757 'FILES' => q[cpan/Math-BigRat],
769 'DISTRIBUTION' => 'ZEFRAM/Math-Complex-1.59.tar.gz',
770 'FILES' => q[cpan/Math-Complex],
779 'DISTRIBUTION' => 'MJD/Memoize-1.03.tgz',
780 'FILES' => q[cpan/Memoize],
781 'EXCLUDED' => ['article.html'],
785 'DISTRIBUTION' => 'GAAS/MIME-Base64-3.15.tar.gz',
786 'FILES' => q[cpan/MIME-Base64],
787 'EXCLUDED' => ['t/bad-sv.t'],
790 'Module::CoreList' => {
791 'DISTRIBUTION' => 'BINGOS/Module-CoreList-5.20150920.tar.gz',
792 'FILES' => q[dist/Module-CoreList],
796 'DISTRIBUTION' => 'BINGOS/Module-Load-0.32.tar.gz',
797 'FILES' => q[cpan/Module-Load],
800 'Module::Load::Conditional' => {
801 'DISTRIBUTION' => 'BINGOS/Module-Load-Conditional-0.64.tar.gz',
802 'FILES' => q[cpan/Module-Load-Conditional],
805 'Module::Loaded' => {
806 'DISTRIBUTION' => 'BINGOS/Module-Loaded-0.08.tar.gz',
807 'FILES' => q[cpan/Module-Loaded],
810 'Module::Metadata' => {
811 'DISTRIBUTION' => 'ETHER/Module-Metadata-1.000027.tar.gz',
812 'FILES' => q[cpan/Module-Metadata],
814 qw(t/00-report-prereqs.t),
815 qw(t/00-report-prereqs.dd),
821 'DISTRIBUTION' => 'SMPETERS/Net-Ping-2.41.tar.gz',
822 'FILES' => q[dist/Net-Ping],
826 'DISTRIBUTION' => 'FLORA/NEXT-0.65.tar.gz',
827 'FILES' => q[cpan/NEXT],
828 'EXCLUDED' => [qr{^demo/}],
832 'DISTRIBUTION' => 'BINGOS/Params-Check-0.38.tar.gz',
833 'FILES' => q[cpan/Params-Check],
837 'DISTRIBUTION' => 'CORION/parent-0.234.tar.gz',
838 'FILES' => q[cpan/parent],
841 'Parse::CPAN::Meta' => {
842 'DISTRIBUTION' => 'DAGOLDEN/Parse-CPAN-Meta-1.4417.tar.gz',
843 'FILES' => q[cpan/Parse-CPAN-Meta],
845 qw[t/00-report-prereqs.dd],
846 qw[t/00-report-prereqs.t],
852 'DISTRIBUTION' => 'SMUELLER/PathTools-3.47.tar.gz',
853 'FILES' => q[dist/PathTools],
854 'EXCLUDED' => [qr{^t/lib/Test/}],
858 'DISTRIBUTION' => 'DAGOLDEN/Perl-OSType-1.009.tar.gz',
859 'FILES' => q[cpan/Perl-OSType],
860 'EXCLUDED' => [qw(tidyall.ini), qr/^xt/, qr{^t/00-}],
864 'DISTRIBUTION' => 'LLAP/perlfaq-5.021010.tar.gz',
865 'FILES' => q[cpan/perlfaq],
867 qw( inc/CreateQuestionList.pm
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.60.tar.gz',
881 'FILES' => q[cpan/Pod-Checker],
885 'DISTRIBUTION' => 'NEILB/Pod-Escapes-1.07.tar.gz',
886 'FILES' => q[cpan/Pod-Escapes],
890 'DISTRIBUTION' => 'MAREKR/Pod-Parser-1.63.tar.gz',
891 'FILES' => q[cpan/Pod-Parser],
895 'DISTRIBUTION' => 'MALLEN/Pod-Perldoc-3.25.tar.gz',
896 'FILES' => q[cpan/Pod-Perldoc],
898 # Note that we use the CPAN-provided Makefile.PL, since it
899 # contains special handling of the installation of perldoc.pod
901 # In blead, the perldoc executable is generated by perldoc.PL
903 # XXX We can and should fix this, but clean up the DRY-failure in utils
905 'EXCLUDED' => ['perldoc'],
907 # https://rt.cpan.org/Ticket/Display.html?id=106798
908 'CUSTOMIZED' => [ qw[ lib/Pod/Perldoc.pm ] ],
912 'DISTRIBUTION' => 'DWHEELER/Pod-Simple-3.30.tar.gz',
913 'FILES' => q[cpan/Pod-Simple],
914 # https://rt.cpan.org/Public/Bug/Display.html?id=103439
915 # https://rt.cpan.org/Public/Bug/Display.html?id=105192
916 # https://rt.cpan.org/Public/Bug/Display.html?id=105511
918 qw( lib/Pod/Simple/Search.pm
919 lib/Pod/Simple/BlackBox.pm
931 'DISTRIBUTION' => 'MAREKR/Pod-Usage-1.67.tar.gz',
932 'FILES' => q[cpan/Pod-Usage],
936 'DISTRIBUTION' => 'RRA/podlators-2.5.3.tar.gz',
937 'FILES' => q[cpan/podlators pod/perlpodstyle.pod],
939 # The perl distribution has pod2man.PL and pod2text.PL, which are
940 # run to create pod2man and pod2text, while the CPAN distribution
941 # just has the post-generated pod2man and pod2text files.
942 # The following entries attempt to codify that odd fact.
944 qw( scripts/pod2man.PL
949 '' => 'cpan/podlators/',
950 'scripts/pod2man' => 'cpan/podlators/scripts/pod2man.PL',
951 'scripts/pod2text' => 'cpan/podlators/scripts/pod2text.PL',
953 # this file lives outside the cpan/ directory
954 'pod/perlpodstyle.pod' => 'pod/perlpodstyle.pod',
959 'DISTRIBUTION' => 'RGARCIA/Safe-2.35.tar.gz',
960 'FILES' => q[dist/Safe],
963 'Scalar-List-Utils' => {
964 'DISTRIBUTION' => 'PEVANS/Scalar-List-Utils-1.42.tar.gz',
965 'FILES' => q[cpan/Scalar-List-Utils],
966 # Waiting to be merged upstream:
967 # https://github.com/Scalar-List-Utils/Scalar-List-Utils/pull/24
979 'DISTRIBUTION' => 'DAGOLDEN/Search-Dict-1.07.tar.gz',
980 'FILES' => q[dist/Search-Dict],
984 'DISTRIBUTION' => 'SMUELLER/SelfLoader-1.20.tar.gz',
985 'FILES' => q[dist/SelfLoader],
986 'EXCLUDED' => ['t/00pod.t'],
990 'DISTRIBUTION' => 'PEVANS/Socket-2.020.tar.gz',
991 'FILES' => q[cpan/Socket],
993 # https://rt.cpan.org/Ticket/Display.html?id=106797
994 'CUSTOMIZED' => [ qw[ Socket.xs ] ],
998 'DISTRIBUTION' => 'AMS/Storable-2.51.tar.gz',
999 'FILES' => q[dist/Storable],
1003 'DISTRIBUTION' => 'SAPER/Sys-Syslog-0.33.tar.gz',
1004 'FILES' => q[cpan/Sys-Syslog],
1019 'Term::ANSIColor' => {
1020 'DISTRIBUTION' => 'RRA/Term-ANSIColor-4.03.tar.gz',
1021 'FILES' => q[cpan/Term-ANSIColor],
1027 qw( t/module/aliases-env.t ),
1032 'DISTRIBUTION' => 'JSTOWE/Term-Cap-1.17.tar.gz',
1033 'FILES' => q[cpan/Term-Cap],
1036 'Term::Complete' => {
1037 'DISTRIBUTION' => 'FLORA/Term-Complete-1.402.tar.gz',
1038 'FILES' => q[dist/Term-Complete],
1039 'EXCLUDED' => [qr{^t/release-.*\.t}],
1042 'Term::ReadLine' => {
1043 'DISTRIBUTION' => 'FLORA/Term-ReadLine-1.14.tar.gz',
1044 'FILES' => q[dist/Term-ReadLine],
1045 'EXCLUDED' => [qr{^t/release-.*\.t}],
1049 'DISTRIBUTION' => 'JESSE/Test-1.26.tar.gz',
1050 'FILES' => q[dist/Test],
1053 'Test::Harness' => {
1054 'DISTRIBUTION' => 'LEONT/Test-Harness-3.35.tar.gz',
1055 'FILES' => q[cpan/Test-Harness],
1062 MANIFEST.CUMMULATIVE
1073 'DISTRIBUTION' => 'EXODIST/Test-Simple-1.001014.tar.gz',
1074 'FILES' => q[cpan/Test-Simple],
1083 t/xxx-changes_updated.t
1089 'DISTRIBUTION' => 'FLORA/Text-Abbrev-1.02.tar.gz',
1090 'FILES' => q[dist/Text-Abbrev],
1091 'EXCLUDED' => [qr{^t/release-.*\.t}],
1094 'Text::Balanced' => {
1095 'DISTRIBUTION' => 'SHAY/Text-Balanced-2.03.tar.gz',
1096 'FILES' => q[cpan/Text-Balanced],
1105 'Text::ParseWords' => {
1106 'DISTRIBUTION' => 'CHORNY/Text-ParseWords-3.30.tar.gz',
1107 'FILES' => q[cpan/Text-ParseWords],
1109 # Waiting to be merged upstream:
1110 # see https://github.com/chorny/Text-ParseWords/pull/6
1117 'Text-Tabs+Wrap' => {
1118 'DISTRIBUTION' => 'MUIR/modules/Text-Tabs+Wrap-2013.0523.tar.gz',
1119 'FILES' => q[cpan/Text-Tabs],
1122 't/dnsparks.t', # see af6492bf9e
1125 '' => 'cpan/Text-Tabs/',
1126 'lib.modern/Text/Tabs.pm' => 'cpan/Text-Tabs/lib/Text/Tabs.pm',
1127 'lib.modern/Text/Wrap.pm' => 'cpan/Text-Tabs/lib/Text/Wrap.pm',
1131 # Jerry Hedden does take patches that are applied to blead first, even
1132 # though that can be hard to discern from the Git history; so it's
1133 # correct for this (and Thread::Semaphore, threads, and threads::shared)
1134 # to be under dist/ rather than cpan/
1135 'Thread::Queue' => {
1136 'DISTRIBUTION' => 'JDHEDDEN/Thread-Queue-3.06.tar.gz',
1137 'FILES' => q[dist/Thread-Queue],
1147 'Thread::Semaphore' => {
1148 'DISTRIBUTION' => 'JDHEDDEN/Thread-Semaphore-2.12.tar.gz',
1149 'FILES' => q[dist/Thread-Semaphore],
1151 qw( examples/semaphore.pl
1160 'DISTRIBUTION' => 'JDHEDDEN/threads-2.02.tar.gz',
1161 'FILES' => q[dist/threads],
1171 'threads::shared' => {
1172 'DISTRIBUTION' => 'JDHEDDEN/threads-shared-1.48.tar.gz',
1173 'FILES' => q[dist/threads-shared],
1175 qw( examples/class.pl
1184 'DISTRIBUTION' => 'TODDR/Tie-File-1.00.tar.gz',
1185 'FILES' => q[dist/Tie-File],
1189 'DISTRIBUTION' => 'FLORA/Tie-RefHash-1.39.tar.gz',
1190 'FILES' => q[cpan/Tie-RefHash],
1194 'DISTRIBUTION' => 'RJBS/Time-HiRes-1.9727_02.tar.gz',
1195 'FILES' => q[cpan/Time-HiRes],
1199 'DISTRIBUTION' => 'DROLSKY/Time-Local-1.2300.tar.gz',
1200 'FILES' => q[cpan/Time-Local],
1202 qr{^t/release-.*\.t},
1207 'DISTRIBUTION' => 'RJBS/Time-Piece-1.30.tar.gz',
1208 'FILES' => q[cpan/Time-Piece],
1211 'Unicode::Collate' => {
1212 'DISTRIBUTION' => 'SADAHIRO/Unicode-Collate-1.14.tar.gz',
1213 'FILES' => q[cpan/Unicode-Collate],
1225 'Unicode::Normalize' => {
1226 'DISTRIBUTION' => 'SADAHIRO/Unicode-Normalize-1.19.tar.gz',
1227 'FILES' => q[cpan/Unicode-Normalize],
1231 'DISTRIBUTION' => 'JPEACOCK/version-0.9909.tar.gz',
1232 'FILES' => q[cpan/version vutil.c vutil.h vxs.inc],
1235 'vutil/Makefile.PL',
1241 # When adding the CPAN-distributed files for version.pm, it is necessary
1242 # to delete an entire block out of lib/version.pm, since that code is
1243 # only necessary with the CPAN release.
1248 # Merged upstream, waiting for new CPAN release: see CPAN RT#92721
1254 'vperl/' => 'cpan/version/lib/version/',
1256 '' => 'cpan/version/',
1270 'DISTRIBUTION' => "JDB/Win32-0.52.tar.gz",
1271 'FILES' => q[cpan/Win32],
1274 'Win32API::File' => {
1275 'DISTRIBUTION' => 'CHORNY/Win32API-File-0.1202.tar.gz',
1276 'FILES' => q[cpan/Win32API-File],
1281 # Currently all EOL differences. Waiting for a new upstream release:
1282 # All the files in the GitHub repo have UNIX EOLs already.
1284 qw( ExtUtils/Myconst2perl.pm
1298 'DISTRIBUTION' => 'SAPER/XSLoader-0.16.tar.gz',
1299 'FILES' => q[dist/XSLoader],
1309 'XSLoader.pm', # we use XSLoader_pm.PL
1313 # this pseudo-module represents all the files under ext/ and lib/
1314 # that aren't otherwise claimed. This means that the following two
1315 # commands will check that every file under ext/ and lib/ is
1316 # accounted for, and that there are no duplicates:
1318 # perl Porting/Maintainers --checkmani lib ext
1319 # perl Porting/Maintainers --checkmani
1329 ext/ExtUtils-Miniperl/
1336 ext/Hash-Util-FieldHash/
1344 ext/PerlIO-encoding/
1352 ext/Tie-Hash-NamedCapture/
1364 lib/AnyDBM_File.{pm,t}
1365 lib/Benchmark.{pm,t}
1366 lib/B/Deparse{.pm,.t,-*.t}
1369 lib/Class/Struct.{pm,t}
1371 lib/Config/Extensions.{pm,t}
1375 lib/DirHandle.{pm,t}
1377 lib/ExtUtils/Embed.pm
1378 lib/ExtUtils/XSSymSet.pm
1379 lib/ExtUtils/t/Embed.t
1380 lib/ExtUtils/typemap
1381 lib/File/Basename.{pm,t}
1382 lib/File/Compare.{pm,t}
1383 lib/File/Copy.{pm,t}
1384 lib/File/stat{.pm,.t,-7896.t}
1385 lib/FileHandle.{pm,t}
1387 lib/Getopt/Std.{pm,t}
1389 lib/meta_notation.{pm,t}
1390 lib/Net/hostent.{pm,t}
1391 lib/Net/netent.{pm,t}
1392 lib/Net/protoent.{pm,t}
1393 lib/Net/servent.{pm,t}
1395 lib/Pod/t/InputObjects.t
1399 lib/SelectSaver.{pm,t}
1408 lib/Tie/Scalar.{pm,t}
1409 lib/Tie/StdHandle.pm
1410 lib/Tie/SubstrHash.{pm,t}
1411 lib/Time/gmtime.{pm,t}
1412 lib/Time/localtime.{pm,t}
1416 lib/Unicode/UCD.{pm,t}
1417 lib/User/grent.{pm,t}
1418 lib/User/pwent.{pm,t}
1423 lib/charnames.{pm,t}
1424 lib/dbm_filter_util.pl
1426 lib/diagnostics.{pm,t}
1437 lib/overload/numbers.pm
1438 lib/overloading.{pm,t}
1439 lib/overload{.pm,.t,64.t}
1449 lib/vars{.pm,.t,_carp.t}
1456 for ( values %Modules ) {
1457 $_->{CPAN} = !!$_->{DISTRIBUTION};
1460 # legacy UPSTREAM flag
1461 for ( keys %Modules ) {
1462 # Keep any existing UPSTREAM flag so that "overrides" can be applied
1463 next if exists $Modules{$_}{UPSTREAM};
1465 if ($_ eq '_PERLLIB' or $Modules{$_}{FILES} =~ m{^\s*(?:dist|ext|lib)/}) {
1466 $Modules{$_}{UPSTREAM} = 'blead';
1468 elsif ($Modules{$_}{FILES} =~ m{^\s*cpan/}) {
1469 $Modules{$_}{UPSTREAM} = 'cpan';
1472 warn "Unexpected location of FILES for module $_: $Modules{$_}{FILES}";
1476 # legacy MAINTAINER field
1477 for ( keys %Modules ) {
1478 # Keep any existing MAINTAINER flag so that "overrides" can be applied
1479 next if exists $Modules{$_}{MAINTAINER};
1481 if ($Modules{$_}{UPSTREAM} eq 'blead') {
1482 $Modules{$_}{MAINTAINER} = 'P5P';
1483 $Maintainers{P5P} = 'perl5-porters <perl5-porters@perl.org>';
1485 elsif (exists $Modules{$_}{DISTRIBUTION}) {
1486 (my $pause_id = $Modules{$_}{DISTRIBUTION}) =~ s{/.*$}{};
1487 $Modules{$_}{MAINTAINER} = $pause_id;
1488 $Maintainers{$pause_id} = "<$pause_id\@cpan.org>";
1491 warn "No DISTRIBUTION for non-blead module $_";