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.mkdn
22 COPYING Copying cpanfile CREDITS dist.ini GOALS HISTORY INSTALL INSTALL.SKIP
23 LICENCE LICENSE Makefile.PL MANIFEST MANIFEST.SKIP META.json META.yml
24 MYMETA.json MYMETA.yml NEW NEWS NOTES perlcritic.rc ppport.h README
25 README.PATCHING 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-2.00.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-2.04.tar.gz',
123 'FILES' => q[cpan/Archive-Tar],
124 'BUGS' => 'bug-archive-tar@rt.cpan.org',
130 'Attribute::Handlers' => {
131 'DISTRIBUTION' => 'SMUELLER/Attribute-Handlers-0.96.tar.gz',
132 'FILES' => q[dist/Attribute-Handlers],
136 'DISTRIBUTION' => 'PJF/autodie-2.28.tar.gz',
137 'FILES' => q[cpan/autodie],
141 # All these tests depend upon external
142 # modules that don't exist when we're
143 # building the core. Hence, they can
144 # never run, and should not be merged.
145 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.068.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.068.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
283 # Note: When updating CPAN-Meta the META.* files will need to be regenerated
284 # perl -Icpan/CPAN-Meta/lib Porting/makemeta
286 'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-2.150005.tar.gz',
287 'FILES' => q[cpan/CPAN-Meta],
289 qw[t/00-report-prereqs.t],
290 qw[t/00-report-prereqs.dd],
291 qr{t/README-data.txt},
297 'CPAN::Meta::Requirements' => {
298 'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-Requirements-2.133.tar.gz',
299 'FILES' => q[cpan/CPAN-Meta-Requirements],
301 qw(t/00-report-prereqs.t),
302 qw(t/00-report-prereqs.dd),
303 qw(t/version-cleanup.t),
308 'CPAN::Meta::YAML' => {
309 'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-YAML-0.016.tar.gz',
310 'FILES' => q[cpan/CPAN-Meta-YAML],
312 't/00-report-prereqs.t',
313 't/00-report-prereqs.dd',
319 'DISTRIBUTION' => 'SMUELLER/Data-Dumper-2.154.tar.gz',
320 'FILES' => q[dist/Data-Dumper],
324 'DISTRIBUTION' => 'PMQS/DB_File-1.835.tar.gz',
325 'FILES' => q[cpan/DB_File],
336 'DISTRIBUTION' => 'WOLFSAGE/Devel-PPPort-3.31.tar.gz',
337 # RJBS has asked MHX to have UPSTREAM be 'blead'
338 # (i.e. move this from cpan/ to dist/)
339 'FILES' => q[cpan/Devel-PPPort],
341 'PPPort.pm', # we use PPPort_pm.PL instead
346 'Devel::SelfStubber' => {
347 'DISTRIBUTION' => 'FLORA/Devel-SelfStubber-1.05.tar.gz',
348 'FILES' => q[dist/Devel-SelfStubber],
349 'EXCLUDED' => [qr{^t/release-.*\.t}],
353 'DISTRIBUTION' => 'GAAS/Digest-1.17.tar.gz',
354 'FILES' => q[cpan/Digest],
355 'EXCLUDED' => ['digest-bench'],
359 'DISTRIBUTION' => 'GAAS/Digest-MD5-2.54.tar.gz',
360 'FILES' => q[cpan/Digest-MD5],
361 'EXCLUDED' => ['rfc1321.txt'],
365 'DISTRIBUTION' => 'MSHELOR/Digest-SHA-5.95.tar.gz',
366 'FILES' => q[cpan/Digest-SHA],
376 'DISTRIBUTION' => 'FLORA/Dumpvalue-1.17.tar.gz',
377 'FILES' => q[dist/Dumpvalue],
378 'EXCLUDED' => [qr{^t/release-.*\.t}],
382 'DISTRIBUTION' => 'DANKOGAI/Encode-2.75.tar.gz',
383 'FILES' => q[cpan/Encode],
386 'encoding::warnings' => {
387 'DISTRIBUTION' => 'AUDREYT/encoding-warnings-0.11.tar.gz',
388 'FILES' => q[cpan/encoding-warnings],
396 'DISTRIBUTION' => 'FLORA/Env-1.04.tar.gz',
397 'FILES' => q[dist/Env],
398 'EXCLUDED' => [qr{^t/release-.*\.t}],
402 'DISTRIBUTION' => 'LEONT/experimental-0.013.tar.gz',
403 'FILES' => q[cpan/experimental],
405 qr{^t/release-.*\.t},
411 'DISTRIBUTION' => 'TODDR/Exporter-5.72.tar.gz',
412 'FILES' => q[dist/Exporter],
420 'ExtUtils::CBuilder' => {
421 'DISTRIBUTION' => 'AMBS/ExtUtils-CBuilder-0.280223.tar.gz',
422 'FILES' => q[dist/ExtUtils-CBuilder],
429 'ExtUtils::Command' => {
430 'DISTRIBUTION' => 'BINGOS/ExtUtils-Command-1.20.tar.gz',
431 'FILES' => q[cpan/ExtUtils-Command],
432 'EXCLUDED' => [qr{^xt/}],
435 'ExtUtils::Constant' => {
437 # Nick has confirmed that while we have diverged from CPAN,
438 # this package isn't primarily maintained in core
439 # Another release will happen "Sometime"
440 'DISTRIBUTION' => '', #'NWCLARK/ExtUtils-Constant-0.16.tar.gz',
441 'FILES' => q[cpan/ExtUtils-Constant],
443 qw( lib/ExtUtils/Constant/Aaargh56Hash.pm
444 examples/perl_keyword.pl
445 examples/perl_regcomp_posix_keyword.pl
450 'ExtUtils::Install' => {
451 'DISTRIBUTION' => 'BINGOS/ExtUtils-Install-2.04.tar.gz',
452 'FILES' => q[cpan/ExtUtils-Install],
454 qw( t/lib/Test/Builder.pm
455 t/lib/Test/Builder/Module.pm
464 'ExtUtils::MakeMaker' => {
465 'DISTRIBUTION' => 'BINGOS/ExtUtils-MakeMaker-7.04.tar.gz',
466 'FILES' => q[cpan/ExtUtils-MakeMaker],
470 qr{^t/Liblist_Kid.t},
476 # Applied upstream remove customisation when updating EUMM
477 'CUSTOMIZED' => [ qw[ t/pm_to_blib.t
479 lib/ExtUtils/Command/MM.pm
480 lib/ExtUtils/Liblist.pm
481 lib/ExtUtils/Liblist/Kid.pm
483 lib/ExtUtils/MM_AIX.pm
484 lib/ExtUtils/MM_Any.pm
485 lib/ExtUtils/MM_BeOS.pm
486 lib/ExtUtils/MM_Cygwin.pm
487 lib/ExtUtils/MM_DOS.pm
488 lib/ExtUtils/MM_Darwin.pm
489 lib/ExtUtils/MM_MacOS.pm
490 lib/ExtUtils/MM_NW5.pm
491 lib/ExtUtils/MM_OS2.pm
492 lib/ExtUtils/MM_QNX.pm
493 lib/ExtUtils/MM_UWIN.pm
494 lib/ExtUtils/MM_Unix.pm
495 lib/ExtUtils/MM_VMS.pm
496 lib/ExtUtils/MM_VOS.pm
497 lib/ExtUtils/MM_Win32.pm
498 lib/ExtUtils/MM_Win95.pm
500 lib/ExtUtils/MakeMaker.pm
501 lib/ExtUtils/MakeMaker/Config.pm
502 lib/ExtUtils/MakeMaker/FAQ.pod
503 lib/ExtUtils/MakeMaker/Locale.pm
504 lib/ExtUtils/MakeMaker/Tutorial.pod
505 lib/ExtUtils/MakeMaker/version.pm
506 lib/ExtUtils/MakeMaker/version/regex.pm
507 lib/ExtUtils/MakeMaker/version/vpp.pm
508 lib/ExtUtils/Mkbootstrap.pm
509 lib/ExtUtils/Mksymlists.pm
510 lib/ExtUtils/testlib.pm ] ],
513 'ExtUtils::Manifest' => {
514 'DISTRIBUTION' => 'ETHER/ExtUtils-Manifest-1.70.tar.gz',
515 'FILES' => q[cpan/ExtUtils-Manifest],
517 qr(^t/00-report-prereqs),
522 'ExtUtils::ParseXS' => {
523 'DISTRIBUTION' => 'SMUELLER/ExtUtils-ParseXS-3.24.tar.gz',
524 'FILES' => q[dist/ExtUtils-ParseXS],
528 'DISTRIBUTION' => 'BINGOS/File-Fetch-0.48.tar.gz',
529 'FILES' => q[cpan/File-Fetch],
533 'DISTRIBUTION' => 'DLAND/File-Path-2.09.tar.gz',
534 'FILES' => q[cpan/File-Path],
536 qw( eg/setup-extra-tests
541 '' => 'cpan/File-Path/lib/File/',
542 't/' => 'cpan/File-Path/t/',
547 'DISTRIBUTION' => 'DAGOLDEN/File-Temp-0.2304.tar.gz',
548 'FILES' => q[cpan/File-Temp],
550 qw( misc/benchmark.pl
553 qw[t/00-report-prereqs.t],
558 'Filter::Simple' => {
559 'DISTRIBUTION' => 'SMUELLER/Filter-Simple-0.91.tar.gz',
560 'FILES' => q[dist/Filter-Simple],
566 'Filter::Util::Call' => {
567 'DISTRIBUTION' => 'RURBAN/Filter-1.54.tar.gz',
568 'FILES' => q[cpan/Filter-Util-Call
589 t/z_perl_minimum_version.t
595 'Call/' => 'cpan/Filter-Util-Call/',
596 'filter-util.pl' => 'cpan/Filter-Util-Call/filter-util.pl',
597 'perlfilter.pod' => 'pod/perlfilter.pod',
598 '' => 'cpan/Filter-Util-Call/',
603 'DISTRIBUTION' => 'JV/Getopt-Long-2.47.tar.gz',
604 'FILES' => q[cpan/Getopt-Long],
607 qw( perl-Getopt-Long.spec
615 'DISTRIBUTION' => 'DAGOLDEN/HTTP-Tiny-0.056.tar.gz',
616 'FILES' => q[cpan/HTTP-Tiny],
618 't/00-report-prereqs.t',
619 't/00-report-prereqs.dd',
621 't/200_live_local_ip.t',
629 'DISTRIBUTION' => 'FLORA/I18N-Collate-1.02.tar.gz',
630 'FILES' => q[dist/I18N-Collate],
631 'EXCLUDED' => [qr{^t/release-.*\.t}],
634 'I18N::LangTags' => {
635 'FILES' => q[dist/I18N-LangTags],
639 'DISTRIBUTION' => 'ILYAZ/modules/if-0.0601.tar.gz',
640 'FILES' => q[dist/if],
644 'DISTRIBUTION' => 'GBARR/IO-1.25.tar.gz',
645 'FILES' => q[dist/IO/],
646 'EXCLUDED' => ['t/test.pl'],
650 'DISTRIBUTION' => 'PMQS/IO-Compress-2.068.tar.gz',
651 'FILES' => q[cpan/IO-Compress],
655 't/010examples-bzip2.t',
656 't/010examples-zlib.t',
661 'IO::Socket::IP' => {
662 'DISTRIBUTION' => 'PEVANS/IO-Socket-IP-0.37.tar.gz',
663 'FILES' => q[cpan/IO-Socket-IP],
670 'DISTRIBUTION' => 'TOMHUGHES/IO-Zlib-1.10.tar.gz',
671 'FILES' => q[cpan/IO-Zlib],
675 'DISTRIBUTION' => 'BINGOS/IPC-Cmd-0.92.tar.gz',
676 'FILES' => q[cpan/IPC-Cmd],
680 'DISTRIBUTION' => 'MHX/IPC-SysV-2.04.tar.gz',
681 'FILES' => q[cpan/IPC-SysV],
690 'DISTRIBUTION' => 'MAKAMAKA/JSON-PP-2.27300.tar.gz',
691 'FILES' => q[cpan/JSON-PP],
695 'DISTRIBUTION' => 'SMUELLER/lib-0.63.tar.gz',
696 'FILES' => q[dist/lib/],
705 'DISTRIBUTION' => 'SHAY/libnet-3.06.tar.gz',
706 'FILES' => q[cpan/libnet],
720 'DISTRIBUTION' => 'SBECK/Locale-Codes-3.35.tar.gz',
721 'FILES' => q[cpan/Locale-Codes],
728 qr{^t/runtests\.bat},
734 'Locale::Maketext' => {
735 'DISTRIBUTION' => 'TODDR/Locale-Maketext-1.26.tar.gz',
736 'FILES' => q[dist/Locale-Maketext],
746 'Locale::Maketext::Simple' => {
747 'DISTRIBUTION' => 'JESSE/Locale-Maketext-Simple-0.21.tar.gz',
748 'FILES' => q[cpan/Locale-Maketext-Simple],
752 'DISTRIBUTION' => 'PJACKLAM/Math-BigInt-1.9993.tar.gz',
753 'FILES' => q[dist/Math-BigInt],
765 'Math::BigInt::FastCalc' => {
766 'DISTRIBUTION' => 'PJACKLAM/Math-BigInt-FastCalc-0.31.tar.gz',
767 'FILES' => q[dist/Math-BigInt-FastCalc],
776 # instead we use the versions of these test
777 # files that come with Math::BigInt:
789 'DISTRIBUTION' => 'PJACKLAM/Math-BigRat-0.2606.tar.gz',
790 'FILES' => q[dist/Math-BigRat],
802 'DISTRIBUTION' => 'ZEFRAM/Math-Complex-1.59.tar.gz',
803 'FILES' => q[cpan/Math-Complex],
812 'DISTRIBUTION' => 'MJD/Memoize-1.03.tgz',
813 'FILES' => q[cpan/Memoize],
814 'EXCLUDED' => ['article.html'],
818 'DISTRIBUTION' => 'GAAS/MIME-Base64-3.15.tar.gz',
819 'FILES' => q[cpan/MIME-Base64],
820 'EXCLUDED' => ['t/bad-sv.t'],
823 'Module::CoreList' => {
824 'DISTRIBUTION' => 'BINGOS/Module-CoreList-5.20150620.tar.gz',
825 'FILES' => q[dist/Module-CoreList],
829 'DISTRIBUTION' => 'BINGOS/Module-Load-0.32.tar.gz',
830 'FILES' => q[cpan/Module-Load],
833 'Module::Load::Conditional' => {
834 'DISTRIBUTION' => 'BINGOS/Module-Load-Conditional-0.64.tar.gz',
835 'FILES' => q[cpan/Module-Load-Conditional],
838 'Module::Loaded' => {
839 'DISTRIBUTION' => 'BINGOS/Module-Loaded-0.08.tar.gz',
840 'FILES' => q[cpan/Module-Loaded],
843 'Module::Metadata' => {
844 'DISTRIBUTION' => 'ETHER/Module-Metadata-1.000027.tar.gz',
845 'FILES' => q[cpan/Module-Metadata],
848 qw(t/00-report-prereqs.t),
849 qw(t/00-report-prereqs.dd),
855 'DISTRIBUTION' => 'SMPETERS/Net-Ping-2.41.tar.gz',
856 'FILES' => q[dist/Net-Ping],
863 'DISTRIBUTION' => 'FLORA/NEXT-0.65.tar.gz',
864 'FILES' => q[cpan/NEXT],
865 'EXCLUDED' => [qr{^demo/}],
869 'DISTRIBUTION' => 'BINGOS/Params-Check-0.38.tar.gz',
870 'FILES' => q[cpan/Params-Check],
874 'DISTRIBUTION' => 'CORION/parent-0.234.tar.gz',
875 'FILES' => q[cpan/parent],
878 'Parse::CPAN::Meta' => {
879 'DISTRIBUTION' => 'DAGOLDEN/Parse-CPAN-Meta-1.4417.tar.gz',
880 'FILES' => q[cpan/Parse-CPAN-Meta],
882 qw[t/00-report-prereqs.t],
888 'DISTRIBUTION' => 'SMUELLER/PathTools-3.47.tar.gz',
889 'FILES' => q[dist/PathTools],
890 'EXCLUDED' => [qr{^t/lib/Test/}],
894 'DISTRIBUTION' => 'DAGOLDEN/Perl-OSType-1.008.tar.gz',
895 'FILES' => q[cpan/Perl-OSType],
896 'EXCLUDED' => [qw(tidyall.ini), qr/^xt/, qr{^t/00-}],
900 'DISTRIBUTION' => 'ETHER/perlfaq-5.021009.tar.gz',
901 'FILES' => q[cpan/perlfaq],
903 qw( inc/CreateQuestionList.pm
910 'PerlIO::via::QuotedPrint' => {
911 'DISTRIBUTION' => 'SHAY/PerlIO-via-QuotedPrint-0.08.tar.gz',
912 'FILES' => q[cpan/PerlIO-via-QuotedPrint],
916 'DISTRIBUTION' => 'MAREKR/Pod-Checker-1.60.tar.gz',
917 'FILES' => q[cpan/Pod-Checker],
921 'DISTRIBUTION' => 'NEILB/Pod-Escapes-1.07.tar.gz',
922 'FILES' => q[cpan/Pod-Escapes],
926 'DISTRIBUTION' => 'MAREKR/Pod-Parser-1.63.tar.gz',
927 'FILES' => q[cpan/Pod-Parser],
931 'DISTRIBUTION' => 'MALLEN/Pod-Perldoc-3.25.tar.gz',
932 'FILES' => q[cpan/Pod-Perldoc],
934 # Note that we use the CPAN-provided Makefile.PL, since it
935 # contains special handling of the installation of perldoc.pod
937 # In blead, the perldoc executable is generated by perldoc.PL
939 # XXX We can and should fix this, but clean up the DRY-failure in utils
941 'EXCLUDED' => ['perldoc'],
945 'DISTRIBUTION' => 'DWHEELER/Pod-Simple-3.30.tar.gz',
946 'FILES' => q[cpan/Pod-Simple],
947 # https://rt.cpan.org/Public/Bug/Display.html?id=103439
948 # https://rt.cpan.org/Public/Bug/Display.html?id=105192
949 # https://rt.cpan.org/Public/Bug/Display.html?id=105511
951 qw( cpan/Pod-Simple/lib/Pod/Simple/Search.pm
952 cpan/Pod-Simple/lib/Pod/Simple/BlackBox.pm
953 cpan/Pod-Simple/t/search10.t
954 cpan/Pod-Simple/t/search12.t
955 cpan/Pod-Simple/t/search20.t
956 cpan/Pod-Simple/t/search22.t
957 cpan/Pod-Simple/t/search26.t
958 cpan/Pod-Simple/t/search28.t
964 'DISTRIBUTION' => 'MAREKR/Pod-Usage-1.67.tar.gz',
965 'FILES' => q[cpan/Pod-Usage],
969 'DISTRIBUTION' => 'RRA/podlators-2.5.3.tar.gz',
970 'FILES' => q[cpan/podlators pod/perlpodstyle.pod],
972 # The perl distribution has pod2man.PL and pod2text.PL, which are
973 # run to create pod2man and pod2text, while the CPAN distribution
974 # just has the post-generated pod2man and pod2text files.
975 # The following entries attempt to codify that odd fact.
977 qw( scripts/pod2man.PL
982 '' => 'cpan/podlators/',
983 'scripts/pod2man' => 'cpan/podlators/scripts/pod2man.PL',
984 'scripts/pod2text' => 'cpan/podlators/scripts/pod2text.PL',
986 # this file lives outside the cpan/ directory
987 'pod/perlpodstyle.pod' => 'pod/perlpodstyle.pod',
992 'DISTRIBUTION' => 'RGARCIA/Safe-2.35.tar.gz',
993 'FILES' => q[dist/Safe],
996 'Scalar-List-Utils' => {
997 'DISTRIBUTION' => 'PEVANS/Scalar-List-Utils-1.42.tar.gz',
998 'FILES' => q[cpan/Scalar-List-Utils],
999 # Waiting to be merged upstream:
1000 # https://github.com/Scalar-List-Utils/Scalar-List-Utils/pull/24
1012 'DISTRIBUTION' => 'DAGOLDEN/Search-Dict-1.07.tar.gz',
1013 'FILES' => q[dist/Search-Dict],
1017 'DISTRIBUTION' => 'SMUELLER/SelfLoader-1.20.tar.gz',
1018 'FILES' => q[dist/SelfLoader],
1019 'EXCLUDED' => ['t/00pod.t'],
1023 'DISTRIBUTION' => 'PEVANS/Socket-2.020.tar.gz',
1024 'FILES' => q[cpan/Socket],
1028 'DISTRIBUTION' => 'AMS/Storable-2.51.tar.gz',
1029 'FILES' => q[dist/Storable],
1033 'DISTRIBUTION' => 'SAPER/Sys-Syslog-0.33.tar.gz',
1034 'FILES' => q[cpan/Sys-Syslog],
1049 'Term::ANSIColor' => {
1050 'DISTRIBUTION' => 'RRA/Term-ANSIColor-4.03.tar.gz',
1051 'FILES' => q[cpan/Term-ANSIColor],
1057 qw( t/module/aliases-env.t ),
1062 'DISTRIBUTION' => 'JSTOWE/Term-Cap-1.15.tar.gz',
1063 'FILES' => q[cpan/Term-Cap],
1066 'Term::Complete' => {
1067 'DISTRIBUTION' => 'FLORA/Term-Complete-1.402.tar.gz',
1068 'FILES' => q[dist/Term-Complete],
1069 'EXCLUDED' => [qr{^t/release-.*\.t}],
1072 'Term::ReadLine' => {
1073 'DISTRIBUTION' => 'FLORA/Term-ReadLine-1.14.tar.gz',
1074 'FILES' => q[dist/Term-ReadLine],
1075 'EXCLUDED' => [qr{^t/release-.*\.t}],
1079 'DISTRIBUTION' => 'JESSE/Test-1.26.tar.gz',
1080 'FILES' => q[cpan/Test],
1083 'Test::Harness' => {
1084 'DISTRIBUTION' => 'LEONT/Test-Harness-3.35.tar.gz',
1085 'FILES' => q[cpan/Test-Harness],
1092 MANIFEST.CUMMULATIVE
1103 'DISTRIBUTION' => 'EXODIST/Test-Simple-1.001014.tar.gz',
1104 'FILES' => q[cpan/Test-Simple],
1113 t/xxx-changes_updated.t
1119 'DISTRIBUTION' => 'FLORA/Text-Abbrev-1.02.tar.gz',
1120 'FILES' => q[dist/Text-Abbrev],
1121 'EXCLUDED' => [qr{^t/release-.*\.t}],
1124 'Text::Balanced' => {
1125 'DISTRIBUTION' => 'SHAY/Text-Balanced-2.03.tar.gz',
1126 'FILES' => q[cpan/Text-Balanced],
1135 'Text::ParseWords' => {
1136 'DISTRIBUTION' => 'CHORNY/Text-ParseWords-3.30.tar.gz',
1137 'FILES' => q[cpan/Text-ParseWords],
1139 # Waiting to be merged upstream:
1140 # see https://github.com/chorny/Text-ParseWords/pull/6
1147 'Text-Tabs+Wrap' => {
1148 'DISTRIBUTION' => 'MUIR/modules/Text-Tabs+Wrap-2013.0523.tar.gz',
1149 'FILES' => q[cpan/Text-Tabs],
1152 't/dnsparks.t', # see af6492bf9e
1155 '' => 'cpan/Text-Tabs/',
1156 'lib.modern/Text/Tabs.pm' => 'cpan/Text-Tabs/lib/Text/Tabs.pm',
1157 'lib.modern/Text/Wrap.pm' => 'cpan/Text-Tabs/lib/Text/Wrap.pm',
1161 # Jerry Hedden does take patches that are applied to blead first, even
1162 # though that can be hard to discern from the Git history; so it's
1163 # correct for this (and Thread::Semaphore, threads, and threads::shared)
1164 # to be under dist/ rather than cpan/
1165 'Thread::Queue' => {
1166 'DISTRIBUTION' => 'JDHEDDEN/Thread-Queue-3.05.tar.gz',
1167 'FILES' => q[dist/Thread-Queue],
1177 'Thread::Semaphore' => {
1178 'DISTRIBUTION' => 'JDHEDDEN/Thread-Semaphore-2.12.tar.gz',
1179 'FILES' => q[dist/Thread-Semaphore],
1181 qw( examples/semaphore.pl
1190 'DISTRIBUTION' => 'JDHEDDEN/threads-2.02.tar.gz',
1191 'FILES' => q[dist/threads],
1201 'threads::shared' => {
1202 'DISTRIBUTION' => 'JDHEDDEN/threads-shared-1.48.tar.gz',
1203 'FILES' => q[dist/threads-shared],
1205 qw( examples/class.pl
1214 'DISTRIBUTION' => 'TODDR/Tie-File-1.00.tar.gz',
1215 'FILES' => q[dist/Tie-File],
1219 'DISTRIBUTION' => 'FLORA/Tie-RefHash-1.39.tar.gz',
1220 'FILES' => q[cpan/Tie-RefHash],
1224 'DISTRIBUTION' => 'ZEFRAM/Time-HiRes-1.9726.tar.gz',
1225 'FILES' => q[cpan/Time-HiRes],
1229 'DISTRIBUTION' => 'DROLSKY/Time-Local-1.2300.tar.gz',
1230 'FILES' => q[cpan/Time-Local],
1232 qr{^t/release-.*\.t},
1237 'DISTRIBUTION' => 'RJBS/Time-Piece-1.30.tar.gz',
1238 'FILES' => q[cpan/Time-Piece],
1241 'Unicode::Collate' => {
1242 'DISTRIBUTION' => 'SADAHIRO/Unicode-Collate-1.12.tar.gz',
1243 'FILES' => q[cpan/Unicode-Collate],
1255 'Unicode::Normalize' => {
1256 'DISTRIBUTION' => 'SADAHIRO/Unicode-Normalize-1.18.tar.gz',
1257 'FILES' => q[cpan/Unicode-Normalize],
1261 'DISTRIBUTION' => 'JPEACOCK/version-0.9909.tar.gz',
1262 'FILES' => q[cpan/version vutil.c vutil.h vxs.inc],
1265 'vutil/Makefile.PL',
1271 # When adding the CPAN-distributed files for version.pm, it is necessary
1272 # to delete an entire block out of lib/version.pm, since that code is
1273 # only necessary with the CPAN release.
1278 # Merged upstream, waiting for new CPAN release: see CPAN RT#92721
1284 'vperl/' => 'cpan/version/lib/version/',
1286 '' => 'cpan/version/',
1300 'DISTRIBUTION' => "JDB/Win32-0.51.tar.gz",
1301 'FILES' => q[cpan/Win32],
1304 'Win32API::File' => {
1305 'DISTRIBUTION' => 'CHORNY/Win32API-File-0.1202.tar.gz',
1306 'FILES' => q[cpan/Win32API-File],
1311 # Currently all EOL differences. Waiting for a new upstream release:
1312 # All the files in the GitHub repo have UNIX EOLs already.
1314 qw( ExtUtils/Myconst2perl.pm
1328 'DISTRIBUTION' => 'SAPER/XSLoader-0.16.tar.gz',
1329 'FILES' => q[dist/XSLoader],
1339 'XSLoader.pm', # we use XSLoader_pm.PL
1343 # this pseudo-module represents all the files under ext/ and lib/
1344 # that aren't otherwise claimed. This means that the following two
1345 # commands will check that every file under ext/ and lib/ is
1346 # accounted for, and that there are no duplicates:
1348 # perl Porting/Maintainers --checkmani lib ext
1349 # perl Porting/Maintainers --checkmani
1357 ext/ExtUtils-Miniperl/
1364 ext/Hash-Util-FieldHash/
1372 ext/PerlIO-encoding/
1380 ext/Tie-Hash-NamedCapture/
1392 lib/AnyDBM_File.{pm,t}
1393 lib/Benchmark.{pm,t}
1394 lib/B/Deparse{.pm,.t,-*.t}
1397 lib/Class/Struct.{pm,t}
1399 lib/Config/Extensions.{pm,t}
1403 lib/DirHandle.{pm,t}
1405 lib/ExtUtils/Embed.pm
1406 lib/ExtUtils/XSSymSet.pm
1407 lib/ExtUtils/t/Embed.t
1408 lib/ExtUtils/typemap
1409 lib/File/Basename.{pm,t}
1410 lib/File/Compare.{pm,t}
1411 lib/File/Copy.{pm,t}
1412 lib/File/stat{.pm,.t,-7896.t}
1413 lib/FileHandle.{pm,t}
1415 lib/Getopt/Std.{pm,t}
1417 lib/meta_notation.{pm,t}
1418 lib/Net/hostent.{pm,t}
1419 lib/Net/netent.{pm,t}
1420 lib/Net/protoent.{pm,t}
1421 lib/Net/servent.{pm,t}
1423 lib/Pod/t/InputObjects.t
1427 lib/SelectSaver.{pm,t}
1436 lib/Tie/Scalar.{pm,t}
1437 lib/Tie/StdHandle.pm
1438 lib/Tie/SubstrHash.{pm,t}
1439 lib/Time/gmtime.{pm,t}
1440 lib/Time/localtime.{pm,t}
1444 lib/Unicode/UCD.{pm,t}
1445 lib/User/grent.{pm,t}
1446 lib/User/pwent.{pm,t}
1451 lib/charnames.{pm,t}
1452 lib/dbm_filter_util.pl
1454 lib/diagnostics.{pm,t}
1465 lib/overload/numbers.pm
1466 lib/overloading.{pm,t}
1467 lib/overload{.pm,.t,64.t}
1477 lib/vars{.pm,.t,_carp.t}
1484 for ( values %Modules ) {
1485 $_->{CPAN} = !!$_->{DISTRIBUTION};
1488 # legacy UPSTREAM flag
1489 for ( keys %Modules ) {
1490 # Keep any existing UPSTREAM flag so that "overrides" can be applied
1491 next if exists $Modules{$_}{UPSTREAM};
1493 if ($_ eq '_PERLLIB' or $Modules{$_}{FILES} =~ m{^\s*(?:dist|ext|lib)/}) {
1494 $Modules{$_}{UPSTREAM} = 'blead';
1496 elsif ($Modules{$_}{FILES} =~ m{^\s*cpan/}) {
1497 $Modules{$_}{UPSTREAM} = 'cpan';
1500 warn "Unexpected location of FILES for module $_: $Modules{$_}{FILES}";
1504 # legacy MAINTAINER field
1505 for ( keys %Modules ) {
1506 # Keep any existing MAINTAINER flag so that "overrides" can be applied
1507 next if exists $Modules{$_}{MAINTAINER};
1509 if ($Modules{$_}{UPSTREAM} eq 'blead') {
1510 $Modules{$_}{MAINTAINER} = 'P5P';
1511 $Maintainers{P5P} = 'perl5-porters <perl5-porters@perl.org>';
1513 elsif (exists $Modules{$_}{DISTRIBUTION}) {
1514 (my $pause_id = $Modules{$_}{DISTRIBUTION}) =~ s{/.*$}{};
1515 $Modules{$_}{MAINTAINER} = $pause_id;
1516 $Maintainers{$pause_id} = "<$pause_id\@cpan.org>";
1519 warn "No DISTRIBUTION for non-blead module $_";