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 .perlcriticrc.perltidyrc
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.00.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.25.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 # Waiting to be merged upstream: see CPAN RT#87237
166 'DISTRIBUTION' => 'SMUELLER/AutoLoader-5.74.tar.gz',
167 'FILES' => q[cpan/AutoLoader],
168 'EXCLUDED' => ['t/00pod.t'],
172 'DISTRIBUTION' => 'WOLFSAGE/autouse-1.08.tar.gz',
173 'FILES' => q[dist/autouse],
174 'EXCLUDED' => [qr{^t/release-.*\.t}],
178 'DISTRIBUTION' => 'RURBAN/B-Debug-1.19.tar.gz',
179 'FILES' => q[cpan/B-Debug],
180 'EXCLUDED' => ['t/pod.t'],
184 'DISTRIBUTION' => 'RGARCIA/base-2.18.tar.gz',
185 'FILES' => q[dist/base],
189 'DISTRIBUTION' => 'PJACKLAM/bignum-0.37.tar.gz',
190 'FILES' => q[dist/bignum],
200 'DISTRIBUTION' => 'ZEFRAM/Carp-1.3301.tar.gz',
201 'FILES' => q[dist/Carp],
204 'Compress::Raw::Bzip2' => {
205 'DISTRIBUTION' => 'PMQS/Compress-Raw-Bzip2-2.064.tar.gz',
206 'FILES' => q[cpan/Compress-Raw-Bzip2],
209 'bzip2-src/bzip2-cpp.patch',
213 'Compress::Raw::Zlib' => {
214 'DISTRIBUTION' => 'PMQS/Compress-Raw-Zlib-2.065.tar.gz',
216 'FILES' => q[cpan/Compress-Raw-Zlib],
226 'Config::Perl::V' => {
227 'DISTRIBUTION' => 'HMBRAND/Config-Perl-V-0.20.tgz',
228 'FILES' => q[cpan/Config-Perl-V],
229 'EXCLUDED' => ['examples/show-v.pl'],
233 'DISTRIBUTION' => 'SAPER/constant-1.27.tar.gz',
234 'FILES' => q[dist/constant],
246 'DISTRIBUTION' => 'ANDK/CPAN-2.05.tar.gz',
247 'FILES' => q[cpan/CPAN],
253 qw( lib/CPAN/Admin.pm
267 t/43distroprefspref.t
274 t/71_minimumversion.t
282 # Note: When updating CPAN-Meta the META.* files will need to be regenerated
283 # perl -Icpan/CPAN-Meta/lib Porting/makemeta
285 'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-2.141520.tar.gz',
286 'FILES' => q[cpan/CPAN-Meta],
288 qw[t/00-report-prereqs.t],
289 qr{t/README-data.txt},
295 'CPAN::Meta::Requirements' => {
296 'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-Requirements-2.125.tar.gz',
297 'FILES' => q[cpan/CPAN-Meta-Requirements],
300 qw(t/00-report-prereqs.t),
305 'CPAN::Meta::YAML' => {
306 'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-YAML-0.012.tar.gz',
307 'FILES' => q[cpan/CPAN-Meta-YAML],
310 't/00-report-prereqs.t',
311 't/04_scalar.t', # requires YAML.pm
317 'DISTRIBUTION' => 'SMUELLER/Data-Dumper-2.151.tar.gz',
318 'FILES' => q[dist/Data-Dumper],
322 # https://rt.cpan.org/Ticket/Display.html?id=96126
323 "CUSTOMIZED" => [ "DB_File.xs" ],
324 'DISTRIBUTION' => 'PMQS/DB_File-1.831.tar.gz',
325 'FILES' => q[cpan/DB_File],
336 'DISTRIBUTION' => 'WOLFSAGE/Devel-PPPort-3.24.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.53.tar.gz',
360 'FILES' => q[cpan/Digest-MD5],
361 'EXCLUDED' => ['rfc1321.txt'],
362 # Waiting to be merged upstream: see CPAN RT#89612
363 'CUSTOMIZED' => ['t/files.t'],
367 'DISTRIBUTION' => 'MSHELOR/Digest-SHA-5.92.tar.gz',
368 'FILES' => q[cpan/Digest-SHA],
378 'DISTRIBUTION' => 'FLORA/Dumpvalue-1.17.tar.gz',
379 'FILES' => q[dist/Dumpvalue],
380 'EXCLUDED' => [qr{^t/release-.*\.t}],
384 'DISTRIBUTION' => 'DANKOGAI/Encode-2.62.tar.gz',
385 'FILES' => q[cpan/Encode],
388 'encoding::warnings' => {
389 'DISTRIBUTION' => 'AUDREYT/encoding-warnings-0.11.tar.gz',
390 'FILES' => q[cpan/encoding-warnings],
398 'DISTRIBUTION' => 'FLORA/Env-1.04.tar.gz',
399 'FILES' => q[dist/Env],
400 'EXCLUDED' => [qr{^t/release-.*\.t}],
404 'DISTRIBUTION' => 'LEONT/experimental-0.008.tar.gz',
405 'FILES' => q[cpan/experimental],
407 qr{^t/release-.*\.t},
413 'DISTRIBUTION' => 'TODDR/Exporter-5.70.tar.gz',
414 'FILES' => q[dist/Exporter],
422 'ExtUtils::CBuilder' => {
423 'DISTRIBUTION' => 'AMBS/ExtUtils/ExtUtils-CBuilder-0.280216.tar.gz',
424 'FILES' => q[dist/ExtUtils-CBuilder],
431 'ExtUtils::Command' => {
432 'DISTRIBUTION' => 'FLORA/ExtUtils-Command-1.18.tar.gz',
433 'FILES' => q[dist/ExtUtils-Command],
434 'EXCLUDED' => [qr{^t/release-}],
437 'ExtUtils::Constant' => {
439 # Nick has confirmed that while we have diverged from CPAN,
440 # this package isn't primarily maintained in core
441 # Another release will happen "Sometime"
442 'DISTRIBUTION' => '', #'NWCLARK/ExtUtils-Constant-0.16.tar.gz',
443 'FILES' => q[cpan/ExtUtils-Constant],
445 qw( lib/ExtUtils/Constant/Aaargh56Hash.pm
446 examples/perl_keyword.pl
447 examples/perl_regcomp_posix_keyword.pl
452 'ExtUtils::Install' => {
453 'DISTRIBUTION' => 'BINGOS/ExtUtils-Install-1.68.tar.gz',
454 'FILES' => q[dist/ExtUtils-Install],
456 qw( t/lib/Test/Builder.pm
457 t/lib/Test/Builder/Module.pm
466 'ExtUtils::MakeMaker' => {
467 'DISTRIBUTION' => 'BINGOS/ExtUtils-MakeMaker-6.98.tar.gz',
468 'FILES' => q[cpan/ExtUtils-MakeMaker],
472 qr{^t/Liblist_Kid.t},
480 'ExtUtils::Manifest' => {
481 'DISTRIBUTION' => 'FLORA/ExtUtils-Manifest-1.63.tar.gz',
482 'FILES' => q[dist/ExtUtils-Manifest],
483 'EXCLUDED' => [qr(t/release-.*\.t)],
486 'ExtUtils::ParseXS' => {
487 'DISTRIBUTION' => 'SMUELLER/ExtUtils-ParseXS-3.24.tar.gz',
488 'FILES' => q[dist/ExtUtils-ParseXS],
492 'DISTRIBUTION' => 'BINGOS/File-Fetch-0.48.tar.gz',
493 'FILES' => q[cpan/File-Fetch],
497 'DISTRIBUTION' => 'DLAND/File-Path-2.09.tar.gz',
498 'FILES' => q[cpan/File-Path],
500 qw( eg/setup-extra-tests
505 '' => 'cpan/File-Path/lib/File/',
506 't/' => 'cpan/File-Path/t/',
511 'DISTRIBUTION' => 'DAGOLDEN/File-Temp-0.2304.tar.gz',
512 'FILES' => q[cpan/File-Temp],
514 qw( misc/benchmark.pl
517 qw[t/00-report-prereqs.t],
522 'Filter::Simple' => {
523 'DISTRIBUTION' => 'SMUELLER/Filter-Simple-0.91.tar.gz',
524 'FILES' => q[dist/Filter-Simple],
530 'Filter::Util::Call' => {
531 'DISTRIBUTION' => 'RURBAN/Filter-1.49.tar.gz',
532 'FILES' => q[cpan/Filter-Util-Call
553 t/z_perl_minimum_version.t
559 'Call/' => 'cpan/Filter-Util-Call/',
560 'filter-util.pl' => 'cpan/Filter-Util-Call/filter-util.pl',
561 'perlfilter.pod' => 'pod/perlfilter.pod',
562 '' => 'cpan/Filter-Util-Call/',
567 'DISTRIBUTION' => 'JV/Getopt-Long-2.42.tar.gz',
568 'FILES' => q[cpan/Getopt-Long],
571 qw( perl-Getopt-Long.spec
579 'DISTRIBUTION' => 'DAGOLDEN/HTTP-Tiny-0.043.tar.gz',
580 'FILES' => q[cpan/HTTP-Tiny],
582 't/00-report-prereqs.t',
584 't/200_live_local_ip.t',
592 'DISTRIBUTION' => 'FLORA/I18N-Collate-1.02.tar.gz',
593 'FILES' => q[dist/I18N-Collate],
594 'EXCLUDED' => [qr{^t/release-.*\.t}],
597 'I18N::LangTags' => {
598 'FILES' => q[dist/I18N-LangTags],
602 'DISTRIBUTION' => 'ILYAZ/modules/if-0.0601.tar.gz',
603 'FILES' => q[dist/if],
607 'DISTRIBUTION' => 'GBARR/IO-1.25.tar.gz',
608 'FILES' => q[dist/IO/],
609 'EXCLUDED' => ['t/test.pl'],
613 'DISTRIBUTION' => 'PMQS/IO-Compress-2.064.tar.gz',
614 'FILES' => q[cpan/IO-Compress],
618 't/010examples-bzip2.t',
619 't/010examples-zlib.t',
624 'IO::Socket::IP' => {
625 'DISTRIBUTION' => 'PEVANS/IO-Socket-IP-0.31.tar.gz',
626 'FILES' => q[cpan/IO-Socket-IP],
633 'DISTRIBUTION' => 'TOMHUGHES/IO-Zlib-1.10.tar.gz',
634 'FILES' => q[cpan/IO-Zlib],
638 'DISTRIBUTION' => 'BINGOS/IPC-Cmd-0.92.tar.gz',
639 'FILES' => q[cpan/IPC-Cmd],
643 'DISTRIBUTION' => 'MHX/IPC-SysV-2.04.tar.gz',
644 'FILES' => q[cpan/IPC-SysV],
653 'DISTRIBUTION' => 'MAKAMAKA/JSON-PP-2.27203.tar.gz',
654 'FILES' => q[cpan/JSON-PP],
658 'DISTRIBUTION' => 'SMUELLER/lib-0.63.tar.gz',
659 'FILES' => q[dist/lib/],
668 'DISTRIBUTION' => 'SHAY/libnet-1.27.tar.gz',
669 'FILES' => q[cpan/libnet],
679 'DISTRIBUTION' => 'SBECK/Locale-Codes-3.31.tar.gz',
680 'FILES' => q[cpan/Locale-Codes],
687 qr{^t/runtests\.bat},
693 'Locale::Maketext' => {
694 'DISTRIBUTION' => 'TODDR/Locale-Maketext-1.25.tar.gz',
695 'FILES' => q[dist/Locale-Maketext],
705 'Locale::Maketext::Simple' => {
706 'DISTRIBUTION' => 'JESSE/Locale-Maketext-Simple-0.21.tar.gz',
707 'FILES' => q[cpan/Locale-Maketext-Simple],
711 'DISTRIBUTION' => 'PJACKLAM/Math-BigInt-1.9993.tar.gz',
712 'FILES' => q[dist/Math-BigInt],
724 'Math::BigInt::FastCalc' => {
725 'DISTRIBUTION' => 'PJACKLAM/Math-BigInt-FastCalc-0.31.tar.gz',
726 'FILES' => q[dist/Math-BigInt-FastCalc],
735 # instead we use the versions of these test
736 # files that come with Math::BigInt:
748 'DISTRIBUTION' => 'PJACKLAM/Math-BigRat-0.2606.tar.gz',
749 'FILES' => q[dist/Math-BigRat],
761 'DISTRIBUTION' => 'ZEFRAM/Math-Complex-1.59.tar.gz',
762 'FILES' => q[cpan/Math-Complex],
771 'DISTRIBUTION' => 'MJD/Memoize-1.03.tgz',
772 'FILES' => q[cpan/Memoize],
773 'EXCLUDED' => ['article.html'],
777 'DISTRIBUTION' => 'GAAS/MIME-Base64-3.14.tar.gz',
778 'FILES' => q[cpan/MIME-Base64],
779 'EXCLUDED' => ['t/bad-sv.t'],
782 'Module::CoreList' => {
783 'DISTRIBUTION' => 'BINGOS/Module-CoreList-5.021001.tar.gz',
784 'FILES' => q[dist/Module-CoreList],
788 'DISTRIBUTION' => 'BINGOS/Module-Load-0.32.tar.gz',
789 'FILES' => q[cpan/Module-Load],
792 'Module::Load::Conditional' => {
793 'DISTRIBUTION' => 'BINGOS/Module-Load-Conditional-0.62.tar.gz',
794 'FILES' => q[cpan/Module-Load-Conditional],
797 'Module::Loaded' => {
798 'DISTRIBUTION' => 'BINGOS/Module-Loaded-0.08.tar.gz',
799 'FILES' => q[cpan/Module-Loaded],
802 'Module::Metadata' => {
803 'DISTRIBUTION' => 'ETHER/Module-Metadata-1.000024.tar.gz',
804 'FILES' => q[cpan/Module-Metadata],
807 qw(t/00-report-prereqs.t),
813 'DISTRIBUTION' => 'SMPETERS/Net-Ping-2.41.tar.gz',
814 'FILES' => q[dist/Net-Ping],
822 'DISTRIBUTION' => 'FLORA/NEXT-0.65.tar.gz',
823 'FILES' => q[cpan/NEXT],
824 'EXCLUDED' => [qr{^demo/}],
828 'DISTRIBUTION' => 'BINGOS/Params-Check-0.38.tar.gz',
829 'FILES' => q[cpan/Params-Check],
833 'DISTRIBUTION' => 'CORION/parent-0.228.tar.gz',
834 'FILES' => q[cpan/parent],
837 'Parse::CPAN::Meta' => {
838 'DISTRIBUTION' => 'DAGOLDEN/Parse-CPAN-Meta-1.4414.tar.gz',
839 'FILES' => q[cpan/Parse-CPAN-Meta],
841 qw[t/00-report-prereqs.t],
847 'DISTRIBUTION' => 'SMUELLER/PathTools-3.47.tar.gz',
848 'FILES' => q[dist/PathTools],
849 'EXCLUDED' => [qr{^t/lib/Test/}],
853 'DISTRIBUTION' => 'DAGOLDEN/Perl-OSType-1.007.tar.gz',
854 'FILES' => q[cpan/Perl-OSType],
855 'EXCLUDED' => [qw(tidyall.ini), qr/^xt/, qr{^t/00-}],
859 'DISTRIBUTION' => 'LLAP/perlfaq-5.0150044.tar.gz',
860 'FILES' => q[cpan/perlfaq],
862 qw( t/release-pod-syntax.t
869 'PerlIO::via::QuotedPrint' => {
870 'DISTRIBUTION' => 'ELIZABETH/PerlIO-via-QuotedPrint-0.07.tar.gz',
871 'FILES' => q[cpan/PerlIO-via-QuotedPrint],
873 # Waiting to be merged upstream: see CPAN RT#54047
882 'DISTRIBUTION' => 'MAREKR/Pod-Checker-1.60.tar.gz',
883 'FILES' => q[cpan/Pod-Checker],
887 'DISTRIBUTION' => 'NEILB/Pod-Escapes-1.06.tar.gz',
888 'FILES' => q[cpan/Pod-Escapes],
892 'DISTRIBUTION' => 'MAREKR/Pod-Parser-1.62.tar.gz',
893 'FILES' => q[cpan/Pod-Parser],
897 'DISTRIBUTION' => 'MALLEN/Pod-Perldoc-3.23.tar.gz',
898 'FILES' => q[cpan/Pod-Perldoc],
900 # Note that we use the CPAN-provided Makefile.PL, since it
901 # contains special handling of the installation of perldoc.pod
903 # In blead, the perldoc executable is generated by perldoc.PL
905 # XXX We can and should fix this, but clean up the DRY-failure in utils
907 'EXCLUDED' => ['perldoc'],
911 'DISTRIBUTION' => 'DWHEELER/Pod-Simple-3.28.tar.gz',
912 'FILES' => q[cpan/Pod-Simple],
916 'DISTRIBUTION' => 'MAREKR/Pod-Usage-1.64.tar.gz',
917 'FILES' => q[cpan/Pod-Usage],
921 'DISTRIBUTION' => 'RRA/podlators-2.5.3.tar.gz',
922 'FILES' => q[cpan/podlators pod/perlpodstyle.pod],
924 # The perl distribution has pod2man.PL and pod2text.PL, which are
925 # run to create pod2man and pod2text, while the CPAN distribution
926 # just has the post-generated pod2man and pod2text files.
927 # The following entries attempt to codify that odd fact.
929 qw( scripts/pod2man.PL
934 '' => 'cpan/podlators/',
935 'scripts/pod2man' => 'cpan/podlators/scripts/pod2man.PL',
936 'scripts/pod2text' => 'cpan/podlators/scripts/pod2text.PL',
938 # this file lives outside the cpan/ directory
939 'pod/perlpodstyle.pod' => 'pod/perlpodstyle.pod',
944 'DISTRIBUTION' => 'RGARCIA/Safe-2.35.tar.gz',
945 'FILES' => q[dist/Safe],
948 'Scalar-List-Utils' => {
949 'DISTRIBUTION' => 'PEVANS/Scalar-List-Utils-1.39.tar.gz',
950 'FILES' => q[cpan/Scalar-List-Utils],
954 'DISTRIBUTION' => 'DAGOLDEN/Search-Dict-1.07.tar.gz',
955 'FILES' => q[dist/Search-Dict],
959 'DISTRIBUTION' => 'SMUELLER/SelfLoader-1.20.tar.gz',
960 'FILES' => q[dist/SelfLoader],
961 'EXCLUDED' => ['t/00pod.t'],
965 'DISTRIBUTION' => 'PEVANS/Socket-2.014.tar.gz',
966 'FILES' => q[cpan/Socket],
970 'DISTRIBUTION' => 'AMS/Storable-2.51.tar.gz',
971 'FILES' => q[dist/Storable],
975 'DISTRIBUTION' => 'SAPER/Sys-Syslog-0.33.tar.gz',
976 'FILES' => q[cpan/Sys-Syslog],
991 'Term::ANSIColor' => {
992 'DISTRIBUTION' => 'RRA/Term-ANSIColor-4.03.tar.gz',
993 'FILES' => q[cpan/Term-ANSIColor],
999 qw( t/module/aliases-env.t ),
1004 'DISTRIBUTION' => 'JSTOWE/Term-Cap-1.15.tar.gz',
1005 'FILES' => q[cpan/Term-Cap],
1008 'Term::Complete' => {
1009 'DISTRIBUTION' => 'FLORA/Term-Complete-1.402.tar.gz',
1010 'FILES' => q[dist/Term-Complete],
1011 'EXCLUDED' => [qr{^t/release-.*\.t}],
1014 'Term::ReadLine' => {
1015 'DISTRIBUTION' => 'FLORA/Term-ReadLine-1.14.tar.gz',
1016 'FILES' => q[dist/Term-ReadLine],
1017 'EXCLUDED' => [qr{^t/release-.*\.t}],
1021 'DISTRIBUTION' => 'JESSE/Test-1.26.tar.gz',
1022 'FILES' => q[cpan/Test],
1025 'Test::Harness' => {
1026 'DISTRIBUTION' => 'LEONT/Test-Harness-3.32.tar.gz',
1027 'FILES' => q[cpan/Test-Harness],
1034 MANIFEST.CUMMULATIVE
1045 'DISTRIBUTION' => 'EXODIST/Test-Simple-1.001003.tar.gz',
1046 'FILES' => q[cpan/Test-Simple],
1056 t/Builder/reset_outputs.t
1057 lib/Test/Builder/IO/Scalar.pm
1063 'DISTRIBUTION' => 'FLORA/Text-Abbrev-1.02.tar.gz',
1064 'FILES' => q[dist/Text-Abbrev],
1065 'EXCLUDED' => [qr{^t/release-.*\.t}],
1068 'Text::Balanced' => {
1069 'DISTRIBUTION' => 'ADAMK/Text-Balanced-2.02.tar.gz',
1070 'FILES' => q[cpan/Text-Balanced],
1078 # Waiting to be merged upstream: see CPAN RT#87788
1094 'Text::ParseWords' => {
1095 'DISTRIBUTION' => 'CHORNY/Text-ParseWords-3.29.tar.gz',
1096 'FILES' => q[cpan/Text-ParseWords],
1098 # Waiting to be merged upstream: see CPAN RT#50929
1105 # For the benefit of make_ext.pl, we have to have this accessible:
1107 'ParseWords.pm' => 'cpan/Text-ParseWords/lib/Text/ParseWords.pm',
1108 '' => 'cpan/Text-ParseWords/',
1112 'Text-Tabs+Wrap' => {
1113 'DISTRIBUTION' => 'MUIR/modules/Text-Tabs+Wrap-2013.0523.tar.gz',
1114 'FILES' => q[cpan/Text-Tabs],
1117 't/dnsparks.t', # see af6492bf9e
1120 '' => 'cpan/Text-Tabs/',
1121 'lib.modern/Text/Tabs.pm' => 'cpan/Text-Tabs/lib/Text/Tabs.pm',
1122 'lib.modern/Text/Wrap.pm' => 'cpan/Text-Tabs/lib/Text/Wrap.pm',
1126 # Jerry Hedden does take patches that are applied to blead first, even
1127 # though that can be hard to discern from the Git history; so it's
1128 # correct for this (and Thread::Semaphore, threads, and threads::shared)
1129 # to be under dist/ rather than cpan/
1130 'Thread::Queue' => {
1131 'DISTRIBUTION' => 'JDHEDDEN/Thread-Queue-3.05.tar.gz',
1132 'FILES' => q[dist/Thread-Queue],
1142 'Thread::Semaphore' => {
1143 'DISTRIBUTION' => 'JDHEDDEN/Thread-Semaphore-2.12.tar.gz',
1144 'FILES' => q[dist/Thread-Semaphore],
1146 qw( examples/semaphore.pl
1155 'DISTRIBUTION' => 'JDHEDDEN/threads-1.92.tar.gz',
1156 'FILES' => q[dist/threads],
1166 'threads::shared' => {
1167 'DISTRIBUTION' => 'JDHEDDEN/threads-shared-1.46.tar.gz',
1168 'FILES' => q[dist/threads-shared],
1170 qw( examples/class.pl
1179 'DISTRIBUTION' => 'TODDR/Tie-File-1.00.tar.gz',
1180 'FILES' => q[dist/Tie-File],
1184 'DISTRIBUTION' => 'FLORA/Tie-RefHash-1.39.tar.gz',
1185 'FILES' => q[cpan/Tie-RefHash],
1189 'DISTRIBUTION' => 'ZEFRAM/Time-HiRes-1.9726.tar.gz',
1190 'FILES' => q[cpan/Time-HiRes],
1194 'DISTRIBUTION' => 'DROLSKY/Time-Local-1.2300.tar.gz',
1195 'FILES' => q[cpan/Time-Local],
1197 qr{^t/release-.*\.t},
1202 'DISTRIBUTION' => 'RJBS/Time-Piece-1.27.tar.gz',
1203 'FILES' => q[cpan/Time-Piece],
1206 'Unicode::Collate' => {
1207 'DISTRIBUTION' => 'SADAHIRO/Unicode-Collate-1.07.tar.gz',
1208 'FILES' => q[cpan/Unicode-Collate],
1220 'Unicode::Normalize' => {
1221 'DISTRIBUTION' => 'SADAHIRO/Unicode-Normalize-1.18.tar.gz',
1222 'FILES' => q[cpan/Unicode-Normalize],
1226 'DISTRIBUTION' => 'JPEACOCK/version-0.9908.tar.gz',
1227 'FILES' => q[cpan/version vutil.c vutil.h vxs.inc],
1230 'vutil/Makefile.PL',
1236 # When adding the CPAN-distributed files for version.pm, it is necessary
1237 # to delete an entire block out of lib/version.pm, since that code is
1238 # only necessary with the CPAN release.
1243 # Merged upstream, waiting for new CPAN release: see CPAN RT#92721
1250 'vperl/' => 'cpan/version/lib/version/',
1252 '' => 'cpan/version/',
1266 'DISTRIBUTION' => "JDB/Win32-0.49.tar.gz",
1267 'FILES' => q[cpan/Win32],
1270 'Win32API::File' => {
1271 'DISTRIBUTION' => 'CHORNY/Win32API-File-0.1201.tar.gz',
1272 'FILES' => q[cpan/Win32API-File],
1280 'DISTRIBUTION' => 'SAPER/XSLoader-0.16.tar.gz',
1281 'FILES' => q[dist/XSLoader],
1291 'XSLoader.pm', # we use XSLoader_pm.PL
1295 # this pseudo-module represents all the files under ext/ and lib/
1296 # that aren't otherwise claimed. This means that the following two
1297 # commands will check that every file under ext/ and lib/ is
1298 # accounted for, and that there are no duplicates:
1300 # perl Porting/Maintainers --checkmani lib ext
1301 # perl Porting/Maintainers --checkmani
1309 ext/ExtUtils-Miniperl/
1316 ext/Hash-Util-FieldHash/
1324 ext/PerlIO-encoding/
1332 ext/Tie-Hash-NamedCapture/
1344 lib/AnyDBM_File.{pm,t}
1345 lib/Benchmark.{pm,t}
1346 lib/B/Deparse{.pm,.t,-core.t}
1348 lib/Class/Struct.{pm,t}
1350 lib/Config/Extensions.{pm,t}
1354 lib/DirHandle.{pm,t}
1356 lib/ExtUtils/Embed.pm
1357 lib/ExtUtils/XSSymSet.pm
1358 lib/ExtUtils/t/Embed.t
1359 lib/ExtUtils/typemap
1360 lib/File/Basename.{pm,t}
1361 lib/File/Compare.{pm,t}
1362 lib/File/Copy.{pm,t}
1363 lib/File/stat{.pm,.t,-7896.t}
1364 lib/FileHandle.{pm,t}
1366 lib/Getopt/Std.{pm,t}
1368 lib/Net/hostent.{pm,t}
1369 lib/Net/netent.{pm,t}
1370 lib/Net/protoent.{pm,t}
1371 lib/Net/servent.{pm,t}
1373 lib/Pod/t/InputObjects.t
1377 lib/SelectSaver.{pm,t}
1386 lib/Tie/Scalar.{pm,t}
1387 lib/Tie/StdHandle.pm
1388 lib/Tie/SubstrHash.{pm,t}
1389 lib/Time/gmtime.{pm,t}
1390 lib/Time/localtime.{pm,t}
1394 lib/Unicode/UCD.{pm,t}
1395 lib/User/grent.{pm,t}
1396 lib/User/pwent.{pm,t}
1401 lib/charnames.{pm,t}
1402 lib/dbm_filter_util.pl
1404 lib/diagnostics.{pm,t}
1415 lib/overload/numbers.pm
1416 lib/overloading.{pm,t}
1417 lib/overload{.pm,.t,64.t}
1427 lib/vars{.pm,.t,_carp.t}
1434 for ( values %Modules ) {
1435 $_->{CPAN} = !!$_->{DISTRIBUTION};
1438 # legacy UPSTREAM flag
1439 for ( keys %Modules ) {
1440 # Keep any existing UPSTREAM flag so that "overrides" can be applied
1441 next if exists $Modules{$_}{UPSTREAM};
1443 if ($_ eq '_PERLLIB' or $Modules{$_}{FILES} =~ m{^\s*(?:dist|ext|lib)/}) {
1444 $Modules{$_}{UPSTREAM} = 'blead';
1446 elsif ($Modules{$_}{FILES} =~ m{^\s*cpan/}) {
1447 $Modules{$_}{UPSTREAM} = 'cpan';
1450 warn "Unexpected location of FILES for module $_: $Modules{$_}{FILES}";
1454 # legacy MAINTAINER field
1455 for ( keys %Modules ) {
1456 # Keep any existing MAINTAINER flag so that "overrides" can be applied
1457 next if exists $Modules{$_}{MAINTAINER};
1459 if ($Modules{$_}{UPSTREAM} eq 'blead') {
1460 $Modules{$_}{MAINTAINER} = 'P5P';
1461 $Maintainers{P5P} = 'perl5-porters <perl5-porters@perl.org>';
1463 elsif (exists $Modules{$_}{DISTRIBUTION}) {
1464 (my $pause_id = $Modules{$_}{DISTRIBUTION}) =~ s{/.*$}{};
1465 $Modules{$_}{MAINTAINER} = $pause_id;
1466 $Maintainers{$pause_id} = "<$pause_id\@cpan.org>";
1469 warn "No DISTRIBUTION for non-blead module $_";