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' => 'RJBS/base-2.23.tar.gz',
183 'FILES' => q[dist/base],
187 'DISTRIBUTION' => 'PJACKLAM/bignum-0.41.tar.gz',
188 'FILES' => q[cpan/bignum],
200 'DISTRIBUTION' => 'RJBS/Carp-1.38.tar.gz',
201 'FILES' => q[dist/Carp],
204 'Compress::Raw::Bzip2' => {
205 'DISTRIBUTION' => 'PMQS/Compress-Raw-Bzip2-2.069.tar.gz',
206 'FILES' => q[cpan/Compress-Raw-Bzip2],
209 'bzip2-src/bzip2-const.patch',
210 'bzip2-src/bzip2-cpp.patch',
211 'bzip2-src/bzip2-unsigned.patch',
215 'Compress::Raw::Zlib' => {
216 'DISTRIBUTION' => 'PMQS/Compress-Raw-Zlib-2.069.tar.gz',
218 'FILES' => q[cpan/Compress-Raw-Zlib],
228 'Config::Perl::V' => {
229 'DISTRIBUTION' => 'HMBRAND/Config-Perl-V-0.24.tgz',
230 'FILES' => q[cpan/Config-Perl-V],
237 'DISTRIBUTION' => 'RJBS/constant-1.33.tar.gz',
238 'FILES' => q[dist/constant],
250 'DISTRIBUTION' => 'ANDK/CPAN-2.10.tar.gz',
251 'FILES' => q[cpan/CPAN],
258 qw( lib/CPAN/Admin.pm
272 t/43distroprefspref.t
279 t/71_minimumversion.t
285 # See commit 3198fda65dbcd975c56916e4b98f515fab7f02e5
286 'CUSTOMIZED' => [ qw[ lib/CPAN.pm ] ],
289 # Note: When updating CPAN-Meta the META.* files will need to be regenerated
290 # perl -Icpan/CPAN-Meta/lib Porting/makemeta
292 'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-2.150005.tar.gz',
293 'FILES' => q[cpan/CPAN-Meta],
295 qw[t/00-report-prereqs.t
296 t/00-report-prereqs.dd
297 t/data-test/x_deprecated-META.json
298 t/data-valid/x_deprecated-META.yml
305 'CPAN::Meta::Requirements' => {
306 'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-Requirements-2.133.tar.gz',
307 'FILES' => q[cpan/CPAN-Meta-Requirements],
309 qw(t/00-report-prereqs.t),
310 qw(t/00-report-prereqs.dd),
311 qw(t/version-cleanup.t),
316 'CPAN::Meta::YAML' => {
317 'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-YAML-0.017-TRIAL.tar.gz',
318 'FILES' => q[cpan/CPAN-Meta-YAML],
320 't/00-report-prereqs.t',
321 't/00-report-prereqs.dd',
327 'DISTRIBUTION' => 'SMUELLER/Data-Dumper-2.154.tar.gz',
328 'FILES' => q[dist/Data-Dumper],
332 'DISTRIBUTION' => 'PMQS/DB_File-1.835.tar.gz',
333 'FILES' => q[cpan/DB_File],
344 'DISTRIBUTION' => 'WOLFSAGE/Devel-PPPort-3.32.tar.gz',
345 # RJBS has asked MHX to have UPSTREAM be 'blead'
346 # (i.e. move this from cpan/ to dist/)
347 'FILES' => q[cpan/Devel-PPPort],
349 'PPPort.pm', # we use PPPort_pm.PL instead
353 'Devel::SelfStubber' => {
354 'DISTRIBUTION' => 'FLORA/Devel-SelfStubber-1.05.tar.gz',
355 'FILES' => q[dist/Devel-SelfStubber],
356 'EXCLUDED' => [qr{^t/release-.*\.t}],
360 'DISTRIBUTION' => 'GAAS/Digest-1.17.tar.gz',
361 'FILES' => q[cpan/Digest],
362 'EXCLUDED' => ['digest-bench'],
366 'DISTRIBUTION' => 'GAAS/Digest-MD5-2.54.tar.gz',
367 'FILES' => q[cpan/Digest-MD5],
368 'EXCLUDED' => ['rfc1321.txt'],
372 'DISTRIBUTION' => 'MSHELOR/Digest-SHA-5.95.tar.gz',
373 'FILES' => q[cpan/Digest-SHA],
383 'DISTRIBUTION' => 'FLORA/Dumpvalue-1.17.tar.gz',
384 'FILES' => q[dist/Dumpvalue],
385 'EXCLUDED' => [qr{^t/release-.*\.t}],
389 'DISTRIBUTION' => 'DANKOGAI/Encode-2.78.tar.gz',
390 'FILES' => q[cpan/Encode],
399 'encoding::warnings' => {
400 'DISTRIBUTION' => 'AUDREYT/encoding-warnings-0.11.tar.gz',
401 'FILES' => q[dist/encoding-warnings],
409 'DISTRIBUTION' => 'FLORA/Env-1.04.tar.gz',
410 'FILES' => q[dist/Env],
411 'EXCLUDED' => [qr{^t/release-.*\.t}],
415 'DISTRIBUTION' => 'LEONT/experimental-0.016.tar.gz',
416 'FILES' => q[cpan/experimental],
417 'EXCLUDED' => [qr{^xt/}],
421 'DISTRIBUTION' => 'TODDR/Exporter-5.72.tar.gz',
422 'FILES' => q[dist/Exporter],
430 'ExtUtils::CBuilder' => {
431 'DISTRIBUTION' => 'AMBS/ExtUtils-CBuilder-0.280224.tar.gz',
432 'FILES' => q[dist/ExtUtils-CBuilder],
439 'ExtUtils::Constant' => {
441 'DISTRIBUTION' => 'NWCLARK/ExtUtils-Constant-0.23.tar.gz',
442 'FILES' => q[cpan/ExtUtils-Constant],
444 qw( lib/ExtUtils/Constant/Aaargh56Hash.pm
445 examples/perl_keyword.pl
446 examples/perl_regcomp_posix_keyword.pl
448 # cc37ebcee3 to fix VMS failure
449 'CUSTOMIZED' => [ qw(t/Constant.t) ],
454 'ExtUtils::Install' => {
455 'DISTRIBUTION' => 'BINGOS/ExtUtils-Install-2.04.tar.gz',
456 'FILES' => q[cpan/ExtUtils-Install],
458 qw( t/lib/Test/Builder.pm
459 t/lib/Test/Builder/Module.pm
468 'ExtUtils::MakeMaker' => {
469 'DISTRIBUTION' => 'BINGOS/ExtUtils-MakeMaker-7.10.tar.gz',
470 'FILES' => q[cpan/ExtUtils-MakeMaker],
474 qr{^t/Liblist_Kid.t},
479 'lib/ExtUtils/MakeMaker/version/vpp.pm',
481 # Upstreamed as https://github.com/Perl-Toolchain-Gang/ExtUtils-MakeMaker/commit/ede9ea4a
483 qq[lib/ExtUtils/MakeMaker.pm],
486 # Upstreamed as https://github.com/Perl-Toolchain-Gang/ExtUtils-MakeMaker/commit/dd1e236ab
487 qq[lib/ExtUtils/MM_VMS.pm],
491 'ExtUtils::Manifest' => {
492 'DISTRIBUTION' => 'ETHER/ExtUtils-Manifest-1.70.tar.gz',
493 'FILES' => q[cpan/ExtUtils-Manifest],
495 qr(^t/00-report-prereqs),
500 'ExtUtils::ParseXS' => {
501 'DISTRIBUTION' => 'SMUELLER/ExtUtils-ParseXS-3.30.tar.gz',
502 'FILES' => q[dist/ExtUtils-ParseXS],
506 'DISTRIBUTION' => 'BINGOS/File-Fetch-0.48.tar.gz',
507 'FILES' => q[cpan/File-Fetch],
511 'DISTRIBUTION' => 'RICHE/File-Path-2.12.tar.gz',
512 'FILES' => q[cpan/File-Path],
520 'DISTRIBUTION' => 'DAGOLDEN/File-Temp-0.2304.tar.gz',
521 'FILES' => q[cpan/File-Temp],
523 qw( misc/benchmark.pl
526 qw[t/00-report-prereqs.t],
531 'Filter::Simple' => {
532 'DISTRIBUTION' => 'SMUELLER/Filter-Simple-0.91.tar.gz',
533 'FILES' => q[dist/Filter-Simple],
539 'Filter::Util::Call' => {
540 'DISTRIBUTION' => 'RURBAN/Filter-1.55.tar.gz',
541 'FILES' => q[cpan/Filter-Util-Call
562 t/z_perl_minimum_version.t
568 'Call/' => 'cpan/Filter-Util-Call/',
569 'filter-util.pl' => 'cpan/Filter-Util-Call/filter-util.pl',
570 'perlfilter.pod' => 'pod/perlfilter.pod',
571 '' => 'cpan/Filter-Util-Call/',
576 'DISTRIBUTION' => 'JV/Getopt-Long-2.48.tar.gz',
577 'FILES' => q[cpan/Getopt-Long],
580 qw( perl-Getopt-Long.spec
588 'DISTRIBUTION' => 'DAGOLDEN/HTTP-Tiny-0.056.tar.gz',
589 'FILES' => q[cpan/HTTP-Tiny],
591 't/00-report-prereqs.t',
592 't/00-report-prereqs.dd',
594 't/200_live_local_ip.t',
602 'DISTRIBUTION' => 'FLORA/I18N-Collate-1.02.tar.gz',
603 'FILES' => q[dist/I18N-Collate],
604 'EXCLUDED' => [qr{^t/release-.*\.t}],
607 'I18N::LangTags' => {
608 'FILES' => q[dist/I18N-LangTags],
612 'DISTRIBUTION' => 'RJBS/if-0.0606.tar.gz',
613 'FILES' => q[dist/if],
617 'DISTRIBUTION' => 'GBARR/IO-1.25.tar.gz',
618 'FILES' => q[dist/IO/],
619 'EXCLUDED' => ['t/test.pl'],
623 'DISTRIBUTION' => 'PMQS/IO-Compress-2.069.tar.gz',
624 'FILES' => q[cpan/IO-Compress],
628 't/010examples-bzip2.t',
629 't/010examples-zlib.t',
634 'IO::Socket::IP' => {
635 'DISTRIBUTION' => 'PEVANS/IO-Socket-IP-0.37.tar.gz',
636 'FILES' => q[cpan/IO-Socket-IP],
643 'DISTRIBUTION' => 'TOMHUGHES/IO-Zlib-1.10.tar.gz',
644 'FILES' => q[cpan/IO-Zlib],
648 'DISTRIBUTION' => 'BINGOS/IPC-Cmd-0.92.tar.gz',
649 'FILES' => q[cpan/IPC-Cmd],
653 'DISTRIBUTION' => 'MHX/IPC-SysV-2.04.tar.gz',
654 'FILES' => q[cpan/IPC-SysV],
663 'DISTRIBUTION' => 'MAKAMAKA/JSON-PP-2.27300.tar.gz',
664 'FILES' => q[cpan/JSON-PP],
668 'DISTRIBUTION' => 'SMUELLER/lib-0.63.tar.gz',
669 'FILES' => q[dist/lib/],
678 'DISTRIBUTION' => 'SHAY/libnet-3.07.tar.gz',
679 'FILES' => q[cpan/libnet],
693 'DISTRIBUTION' => 'SBECK/Locale-Codes-3.36.tar.gz',
694 'FILES' => q[cpan/Locale-Codes],
701 qr{^t/runtests\.bat},
707 'Locale::Maketext' => {
708 'DISTRIBUTION' => 'TODDR/Locale-Maketext-1.26.tar.gz',
709 'FILES' => q[dist/Locale-Maketext],
719 'Locale::Maketext::Simple' => {
720 'DISTRIBUTION' => 'JESSE/Locale-Maketext-Simple-0.21.tar.gz',
721 'FILES' => q[cpan/Locale-Maketext-Simple],
725 'DISTRIBUTION' => 'PJACKLAM/Math-BigInt-1.999710.tar.gz',
726 'FILES' => q[cpan/Math-BigInt],
738 'Math::BigInt::FastCalc' => {
739 'DISTRIBUTION' => 'PJACKLAM/Math-BigInt-FastCalc-0.37.tar.gz',
740 'FILES' => q[cpan/Math-BigInt-FastCalc],
749 # instead we use the versions of these test
750 # files that come with Math::BigInt:
762 'DISTRIBUTION' => 'PJACKLAM/Math-BigRat-0.260801.tar.gz',
763 'FILES' => q[cpan/Math-BigRat],
773 qw( lib/Math/BigRat.pm
779 'DISTRIBUTION' => 'ZEFRAM/Math-Complex-1.59.tar.gz',
780 'FILES' => q[cpan/Math-Complex],
789 'DISTRIBUTION' => 'MJD/Memoize-1.03.tgz',
790 'FILES' => q[cpan/Memoize],
791 'EXCLUDED' => ['article.html'],
795 'DISTRIBUTION' => 'GAAS/MIME-Base64-3.15.tar.gz',
796 'FILES' => q[cpan/MIME-Base64],
797 'EXCLUDED' => ['t/bad-sv.t'],
800 'Module::CoreList' => {
801 'DISTRIBUTION' => 'BINGOS/Module-CoreList-5.20151020.tar.gz',
802 'FILES' => q[dist/Module-CoreList],
806 'DISTRIBUTION' => 'BINGOS/Module-Load-0.32.tar.gz',
807 'FILES' => q[cpan/Module-Load],
810 'Module::Load::Conditional' => {
811 'DISTRIBUTION' => 'BINGOS/Module-Load-Conditional-0.64.tar.gz',
812 'FILES' => q[cpan/Module-Load-Conditional],
815 'Module::Loaded' => {
816 'DISTRIBUTION' => 'BINGOS/Module-Loaded-0.08.tar.gz',
817 'FILES' => q[cpan/Module-Loaded],
820 'Module::Metadata' => {
821 'DISTRIBUTION' => 'ETHER/Module-Metadata-1.000030-TRIAL.tar.gz',
822 'FILES' => q[cpan/Module-Metadata],
824 qw(t/00-report-prereqs.t),
825 qw(t/00-report-prereqs.dd),
832 'DISTRIBUTION' => 'SMPETERS/Net-Ping-2.41.tar.gz',
833 'FILES' => q[dist/Net-Ping],
837 'DISTRIBUTION' => 'FLORA/NEXT-0.65.tar.gz',
838 'FILES' => q[cpan/NEXT],
839 'EXCLUDED' => [qr{^demo/}],
843 'DISTRIBUTION' => 'BINGOS/Params-Check-0.38.tar.gz',
844 'FILES' => q[cpan/Params-Check],
848 'DISTRIBUTION' => 'CORION/parent-0.234.tar.gz',
849 'FILES' => q[cpan/parent],
852 'Parse::CPAN::Meta' => {
853 'DISTRIBUTION' => 'DAGOLDEN/Parse-CPAN-Meta-1.4417.tar.gz',
854 'FILES' => q[cpan/Parse-CPAN-Meta],
856 qw[t/00-report-prereqs.dd],
857 qw[t/00-report-prereqs.t],
863 'DISTRIBUTION' => 'RJBS/PathTools-3.59.tar.gz',
864 'FILES' => q[dist/PathTools],
867 qw( t/rel2abs_vs_symlink.t),
872 'DISTRIBUTION' => 'DAGOLDEN/Perl-OSType-1.009.tar.gz',
873 'FILES' => q[cpan/Perl-OSType],
874 'EXCLUDED' => [qw(tidyall.ini), qr/^xt/, qr{^t/00-}],
878 'DISTRIBUTION' => 'LLAP/perlfaq-5.021010.tar.gz',
879 'FILES' => q[cpan/perlfaq],
881 qw( inc/CreateQuestionList.pm
888 'PerlIO::via::QuotedPrint' => {
889 'DISTRIBUTION' => 'SHAY/PerlIO-via-QuotedPrint-0.08.tar.gz',
890 'FILES' => q[cpan/PerlIO-via-QuotedPrint],
894 'DISTRIBUTION' => 'MAREKR/Pod-Checker-1.60.tar.gz',
895 'FILES' => q[cpan/Pod-Checker],
899 'DISTRIBUTION' => 'NEILB/Pod-Escapes-1.07.tar.gz',
900 'FILES' => q[cpan/Pod-Escapes],
904 'DISTRIBUTION' => 'MAREKR/Pod-Parser-1.63.tar.gz',
905 'FILES' => q[cpan/Pod-Parser],
909 'DISTRIBUTION' => 'MALLEN/Pod-Perldoc-3.25.tar.gz',
910 'FILES' => q[cpan/Pod-Perldoc],
912 # Note that we use the CPAN-provided Makefile.PL, since it
913 # contains special handling of the installation of perldoc.pod
915 # In blead, the perldoc executable is generated by perldoc.PL
917 # XXX We can and should fix this, but clean up the DRY-failure in utils
919 'EXCLUDED' => ['perldoc'],
921 # https://rt.cpan.org/Ticket/Display.html?id=106798
922 'CUSTOMIZED' => [ qw[ lib/Pod/Perldoc.pm ] ],
926 'DISTRIBUTION' => 'MARCGREEN/Pod-Simple-3.32.tar.gz',
927 'FILES' => q[cpan/Pod-Simple],
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 # https://rt.cpan.org/Ticket/Display.html?id=107058
995 'CUSTOMIZED' => [ qw[ Socket.pm Socket.xs ] ],
999 'DISTRIBUTION' => 'AMS/Storable-2.51.tar.gz',
1000 'FILES' => q[dist/Storable],
1007 'DISTRIBUTION' => 'SAPER/Sys-Syslog-0.33.tar.gz',
1008 'FILES' => q[cpan/Sys-Syslog],
1023 'Term::ANSIColor' => {
1024 'DISTRIBUTION' => 'RRA/Term-ANSIColor-4.03.tar.gz',
1025 'FILES' => q[cpan/Term-ANSIColor],
1031 qw( t/module/aliases-env.t ),
1036 'DISTRIBUTION' => 'JSTOWE/Term-Cap-1.17.tar.gz',
1037 'FILES' => q[cpan/Term-Cap],
1040 'Term::Complete' => {
1041 'DISTRIBUTION' => 'FLORA/Term-Complete-1.402.tar.gz',
1042 'FILES' => q[dist/Term-Complete],
1043 'EXCLUDED' => [qr{^t/release-.*\.t}],
1046 'Term::ReadLine' => {
1047 'DISTRIBUTION' => 'FLORA/Term-ReadLine-1.14.tar.gz',
1048 'FILES' => q[dist/Term-ReadLine],
1049 'EXCLUDED' => [qr{^t/release-.*\.t}],
1053 'DISTRIBUTION' => 'JESSE/Test-1.26.tar.gz',
1054 'FILES' => q[dist/Test],
1057 'Test::Harness' => {
1058 'DISTRIBUTION' => 'LEONT/Test-Harness-3.35.tar.gz',
1059 'FILES' => q[cpan/Test-Harness],
1066 MANIFEST.CUMMULATIVE
1077 'DISTRIBUTION' => 'EXODIST/Test-Simple-1.001014.tar.gz',
1078 'FILES' => q[cpan/Test-Simple],
1087 t/xxx-changes_updated.t
1093 'DISTRIBUTION' => 'FLORA/Text-Abbrev-1.02.tar.gz',
1094 'FILES' => q[dist/Text-Abbrev],
1095 'EXCLUDED' => [qr{^t/release-.*\.t}],
1098 'Text::Balanced' => {
1099 'DISTRIBUTION' => 'SHAY/Text-Balanced-2.03.tar.gz',
1100 'FILES' => q[cpan/Text-Balanced],
1109 'Text::ParseWords' => {
1110 'DISTRIBUTION' => 'CHORNY/Text-ParseWords-3.30.tar.gz',
1111 'FILES' => q[cpan/Text-ParseWords],
1113 # Waiting to be merged upstream:
1114 # see https://github.com/chorny/Text-ParseWords/pull/6
1121 'Text-Tabs+Wrap' => {
1122 'DISTRIBUTION' => 'MUIR/modules/Text-Tabs+Wrap-2013.0523.tar.gz',
1123 'FILES' => q[cpan/Text-Tabs],
1126 't/dnsparks.t', # see af6492bf9e
1129 '' => 'cpan/Text-Tabs/',
1130 'lib.modern/Text/Tabs.pm' => 'cpan/Text-Tabs/lib/Text/Tabs.pm',
1131 'lib.modern/Text/Wrap.pm' => 'cpan/Text-Tabs/lib/Text/Wrap.pm',
1135 # Jerry Hedden does take patches that are applied to blead first, even
1136 # though that can be hard to discern from the Git history; so it's
1137 # correct for this (and Thread::Semaphore, threads, and threads::shared)
1138 # to be under dist/ rather than cpan/
1139 'Thread::Queue' => {
1140 'DISTRIBUTION' => 'JDHEDDEN/Thread-Queue-3.07.tar.gz',
1141 'FILES' => q[dist/Thread-Queue],
1151 'Thread::Semaphore' => {
1152 'DISTRIBUTION' => 'JDHEDDEN/Thread-Semaphore-2.12.tar.gz',
1153 'FILES' => q[dist/Thread-Semaphore],
1155 qw( examples/semaphore.pl
1164 'DISTRIBUTION' => 'JDHEDDEN/threads-2.02.tar.gz',
1165 'FILES' => q[dist/threads],
1175 'threads::shared' => {
1176 'DISTRIBUTION' => 'JDHEDDEN/threads-shared-1.48.tar.gz',
1177 'FILES' => q[dist/threads-shared],
1179 qw( examples/class.pl
1188 'DISTRIBUTION' => 'TODDR/Tie-File-1.00.tar.gz',
1189 'FILES' => q[dist/Tie-File],
1193 'DISTRIBUTION' => 'FLORA/Tie-RefHash-1.39.tar.gz',
1194 'FILES' => q[cpan/Tie-RefHash],
1198 'DISTRIBUTION' => 'RJBS/Time-HiRes-1.9728.tar.gz',
1199 'FILES' => q[cpan/Time-HiRes],
1203 'DISTRIBUTION' => 'DROLSKY/Time-Local-1.2300.tar.gz',
1204 'FILES' => q[cpan/Time-Local],
1206 qr{^t/release-.*\.t},
1211 'DISTRIBUTION' => 'ESAYM/Time-Piece-1.31.tar.gz',
1212 'FILES' => q[cpan/Time-Piece],
1215 'Unicode::Collate' => {
1216 'DISTRIBUTION' => 'SADAHIRO/Unicode-Collate-1.14.tar.gz',
1217 'FILES' => q[cpan/Unicode-Collate],
1229 'Unicode::Normalize' => {
1230 'DISTRIBUTION' => 'KHW/Unicode-Normalize-1.23.tar.gz',
1231 'FILES' => q[cpan/Unicode-Normalize],
1235 'DISTRIBUTION' => 'JPEACOCK/version-0.9909.tar.gz',
1236 'FILES' => q[cpan/version vutil.c vutil.h vxs.inc],
1239 'vutil/Makefile.PL',
1244 'lib/version/vpp.pm',
1247 # When adding the CPAN-distributed files for version.pm, it is necessary
1248 # to delete an entire block out of lib/version.pm, since that code is
1249 # only necessary with the CPAN release.
1254 # Merged upstream, waiting for new CPAN release: see CPAN RT#92721
1260 'vperl/' => 'cpan/version/lib/version/',
1262 '' => 'cpan/version/',
1276 'DISTRIBUTION' => "JDB/Win32-0.52.tar.gz",
1277 'FILES' => q[cpan/Win32],
1280 'Win32API::File' => {
1281 'DISTRIBUTION' => 'CHORNY/Win32API-File-0.1202.tar.gz',
1282 'FILES' => q[cpan/Win32API-File],
1287 # Currently all EOL differences. Waiting for a new upstream release:
1288 # All the files in the GitHub repo have UNIX EOLs already.
1290 qw( ExtUtils/Myconst2perl.pm
1304 'DISTRIBUTION' => 'SAPER/XSLoader-0.16.tar.gz',
1305 'FILES' => q[dist/XSLoader],
1315 'XSLoader.pm', # we use XSLoader_pm.PL
1319 # this pseudo-module represents all the files under ext/ and lib/
1320 # that aren't otherwise claimed. This means that the following two
1321 # commands will check that every file under ext/ and lib/ is
1322 # accounted for, and that there are no duplicates:
1324 # perl Porting/Maintainers --checkmani lib ext
1325 # perl Porting/Maintainers --checkmani
1335 ext/ExtUtils-Miniperl/
1342 ext/Hash-Util-FieldHash/
1350 ext/PerlIO-encoding/
1358 ext/Tie-Hash-NamedCapture/
1370 lib/AnyDBM_File.{pm,t}
1371 lib/Benchmark.{pm,t}
1372 lib/B/Deparse{.pm,.t,-*.t}
1375 lib/Class/Struct.{pm,t}
1377 lib/Config/Extensions.{pm,t}
1381 lib/DirHandle.{pm,t}
1383 lib/ExtUtils/Embed.pm
1384 lib/ExtUtils/XSSymSet.pm
1385 lib/ExtUtils/t/Embed.t
1386 lib/ExtUtils/typemap
1387 lib/File/Basename.{pm,t}
1388 lib/File/Compare.{pm,t}
1389 lib/File/Copy.{pm,t}
1390 lib/File/stat{.pm,.t,-7896.t}
1391 lib/FileHandle.{pm,t}
1393 lib/Getopt/Std.{pm,t}
1395 lib/meta_notation.{pm,t}
1396 lib/Net/hostent.{pm,t}
1397 lib/Net/netent.{pm,t}
1398 lib/Net/protoent.{pm,t}
1399 lib/Net/servent.{pm,t}
1401 lib/Pod/t/InputObjects.t
1405 lib/SelectSaver.{pm,t}
1414 lib/Tie/Scalar.{pm,t}
1415 lib/Tie/StdHandle.pm
1416 lib/Tie/SubstrHash.{pm,t}
1417 lib/Time/gmtime.{pm,t}
1418 lib/Time/localtime.{pm,t}
1422 lib/Unicode/UCD.{pm,t}
1423 lib/User/grent.{pm,t}
1424 lib/User/pwent.{pm,t}
1429 lib/charnames.{pm,t}
1430 lib/dbm_filter_util.pl
1432 lib/diagnostics.{pm,t}
1443 lib/overload/numbers.pm
1444 lib/overloading.{pm,t}
1445 lib/overload{.pm,.t,64.t}
1455 lib/vars{.pm,.t,_carp.t}
1462 for ( values %Modules ) {
1463 $_->{CPAN} = !!$_->{DISTRIBUTION};
1466 # legacy UPSTREAM flag
1467 for ( keys %Modules ) {
1468 # Keep any existing UPSTREAM flag so that "overrides" can be applied
1469 next if exists $Modules{$_}{UPSTREAM};
1471 if ($_ eq '_PERLLIB' or $Modules{$_}{FILES} =~ m{^\s*(?:dist|ext|lib)/}) {
1472 $Modules{$_}{UPSTREAM} = 'blead';
1474 elsif ($Modules{$_}{FILES} =~ m{^\s*cpan/}) {
1475 $Modules{$_}{UPSTREAM} = 'cpan';
1478 warn "Unexpected location of FILES for module $_: $Modules{$_}{FILES}";
1482 # legacy MAINTAINER field
1483 for ( keys %Modules ) {
1484 # Keep any existing MAINTAINER flag so that "overrides" can be applied
1485 next if exists $Modules{$_}{MAINTAINER};
1487 if ($Modules{$_}{UPSTREAM} eq 'blead') {
1488 $Modules{$_}{MAINTAINER} = 'P5P';
1489 $Maintainers{P5P} = 'perl5-porters <perl5-porters@perl.org>';
1491 elsif (exists $Modules{$_}{DISTRIBUTION}) {
1492 (my $pause_id = $Modules{$_}{DISTRIBUTION}) =~ s{/.*$}{};
1493 $Modules{$_}{MAINTAINER} = $pause_id;
1494 $Maintainers{$pause_id} = "<$pause_id\@cpan.org>";
1497 warn "No DISTRIBUTION for non-blead module $_";