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);
15 'abigail' => 'Abigail <abigail@abigail.be>',
16 'avar' => 'Ævar Arnfjörð Bjarmason <avar@cpan.org>',
17 'craig' => 'Craig Berry <craigberry@mac.com>',
18 'elizabeth' => 'Elizabeth Mattijsen <liz@dijkmat.nl>',
19 'jand' => 'Jan Dubois <jand@activestate.com>',
20 'laun' => 'Wolfgang Laun <Wolfgang.Laun@alcatel.at>',
21 'lwall' => 'Larry Wall <lwall@cpan.org>',
22 'mjd' => 'Mark-Jason Dominus <mjd@plover.com>',
23 'pmqs' => 'Paul Marquess <pmqs@cpan.org>',
24 'pvhp' => 'Peter Prymmer <pvhp@best.com>',
25 'sartak' => 'Shawn M Moore <sartak@gmail.com>',
26 'sburke' => 'Sean Burke <sburke@cpan.org>',
27 'smccam' => 'Stephen McCamant <smccam@cpan.org>',
30 # IGNORABLE: files which, if they appear in the root of a CPAN
31 # distribution, need not appear in core (i.e. core-cpan-diff won't
32 # complain if it can't find them)
35 .cvsignore .dualLivedDiffConfig .gitignore
36 ANNOUNCE Announce Artistic AUTHORS BENCHMARK BUGS Build.PL
37 CHANGELOG ChangeLog Changelog CHANGES Changes CONTRIBUTING COPYING Copying
38 cpanfile CREDITS dist.ini GOALS HISTORY INSTALL INSTALL.SKIP LICENSE
39 Makefile.PL MANIFEST MANIFEST.SKIP META.json META.yml MYMETA.json
40 MYMETA.yml NEW NOTES perlcritic.rc ppport.h README README.PATCHING
41 SIGNATURE THANKS TODO Todo VERSION WHATSNEW
44 # Each entry in the %Modules hash roughly represents a distribution,
45 # except when DISTRIBUTION is set, where it *exactly* represents a single
48 # The keys of %Modules are human descriptions of the distributions, and
49 # may not exactly match a module or distribution name. Distributions
50 # which have an obvious top-level module associated with them will usually
51 # have a key named for that module, e.g. 'Archive::Extract' for
52 # Archive-Extract-N.NN.tar.gz; the remaining keys are likely to be based
53 # on the name of the distribution, e.g. 'Locale-Codes' for
54 # Locale-Codes-N.NN.tar.gz'.
56 # MAINTAINER indicates who the current maintainer of the module is. For
57 # modules with no MAINTAINER field given, this is understood to be either
58 # the Perl 5 Porters if there is no DISTRIBUTION field or the UPSTREAM
59 # field is set to 'blead', or else the CPAN author whose PAUSE user ID
60 # forms the first part of the DISTRIBUTION value, e.g. 'BINGOS' in the
61 # case of 'BINGOS/Archive-Tar-1.92.tar.gz'. (PAUSE's View Permissions
62 # page may be consulted to find other authors who have owner or co-maint
63 # permissions for the module in question.) The few explicitly listed
64 # MAINTAINERs refer to authors whose email address is listed in the
65 # %Maintainers hash above.
67 # FILES is a list of filenames, glob patterns, and directory
68 # names to be recursed down, which collectively generate a complete list
69 # of the files associated with the distribution.
71 # UPSTREAM indicates where patches should go. undef implies
72 # that this hasn't been discussed for the module at hand.
73 # "blead" indicates that the copy of the module in the blead
74 # sources is to be considered canonical, "cpan" means that the
75 # module on CPAN is to be patched first.
77 # BUGS is an email or url to post bug reports. For modules with
78 # UPSTREAM => 'blead', use perl5-porters@perl.org. rt.cpan.org
79 # appears to automatically provide a URL for CPAN modules; any value
80 # given here overrides the default:
81 # http://rt.cpan.org/Public/Dist/Display.html?Name=$ModuleName
83 # DISTRIBUTION names the tarball on CPAN which (allegedly) the files
84 # included in core are derived from. Note that the file's version may not
85 # necessarily match the newest version on CPAN.
87 # EXCLUDED is a list of files to be excluded from a CPAN tarball before
88 # comparing the remaining contents with core. Each item can either be a
89 # full pathname (eg 't/foo.t') or a pattern (e.g. qr{^t/}).
90 # It defaults to the empty list.
92 # CUSTOMIZED is a list of files that have been customized within the
93 # Perl core. Use this whenever patching a cpan upstream distribution
94 # or whenever we expect to have a file that differs from the tarball.
95 # If the file in blead matches the file in the tarball from CPAN,
96 # Porting/core-cpan-diff will warn about it, as it indicates an expected
97 # customization might have been lost when updating from upstream. The
98 # path should be relative to the distribution directory. If the upstream
99 # distribution should be modified to incorporate the change then be sure
100 # to raise a ticket for it on rt.cpan.org and add a comment alongside the
101 # list of CUSTOMIZED files noting the ticket number.
103 # DEPRECATED contains the *first* version of Perl in which the module
104 # was considered deprecated. It should only be present if the module is
105 # actually deprecated. Such modules should use deprecated.pm to
106 # issue a warning if used. E.g.:
108 # use if $] >= 5.011, 'deprecate';
111 # MAP is a hash that maps CPAN paths to their core equivalents.
112 # Each key represents a string prefix, with longest prefixes checked
113 # first. The first match causes that prefix to be replaced with the
114 # corresponding key. For example, with the following MAP:
120 # these files are mapped as shown:
122 # README becomes lib/Foo/README
123 # lib/Foo.pm becomes lib/Foo.pm
125 # The default is dependent on the type of module.
126 # For distributions which appear to be stored under ext/, it defaults to:
128 # { '' => 'ext/Foo-Bar/' }
134 # '' => 'lib/Foo/Bar/',
140 'FILES' => q[lib/AnyDBM_File.{pm,t}],
141 'UPSTREAM' => 'blead',
145 'DISTRIBUTION' => 'BINGOS/Archive-Tar-1.92.tar.gz',
146 'FILES' => q[cpan/Archive-Tar],
147 'UPSTREAM' => 'cpan',
148 'BUGS' => 'bug-archive-tar@rt.cpan.org',
151 'Attribute::Handlers' => {
152 'DISTRIBUTION' => 'SMUELLER/Attribute-Handlers-0.93.tar.gz',
153 'FILES' => q[dist/Attribute-Handlers],
154 'UPSTREAM' => 'blead',
158 'FILES' => q[ext/attributes],
159 'UPSTREAM' => 'blead',
163 'DISTRIBUTION' => 'PJF/autodie-2.22.tar.gz',
164 'FILES' => q[cpan/autodie],
167 # All these tests depend upon external
168 # modules that don't exist when we're
169 # building the core. Hence, they can
170 # never run, and should not be merged.
171 qw( t/author-critic.t
179 t/release-pod-coverage.t
180 t/release-pod-syntax.t
186 # Waiting to be merged upstream: see CPAN RT#87237
189 'UPSTREAM' => 'cpan',
193 'DISTRIBUTION' => 'SMUELLER/AutoLoader-5.73.tar.gz',
194 'FILES' => q[cpan/AutoLoader],
195 'EXCLUDED' => ['t/00pod.t'],
196 'UPSTREAM' => 'cpan',
200 'DISTRIBUTION' => 'FLORA/autouse-1.07.tar.gz',
201 'FILES' => q[dist/autouse],
202 'EXCLUDED' => [qr{^t/release-.*\.t}],
203 'UPSTREAM' => 'blead',
213 'UPSTREAM' => 'blead',
217 'MAINTAINER' => 'smccam',
218 'FILES' => q[ext/B/B/Concise.pm ext/B/t/concise.t],
219 'UPSTREAM' => 'blead',
223 'DISTRIBUTION' => 'RURBAN/B-Debug-1.18.tar.gz',
224 'FILES' => q[cpan/B-Debug],
225 'EXCLUDED' => ['t/pod.t'],
226 'UPSTREAM' => 'cpan',
230 'MAINTAINER' => 'smccam',
231 'FILES' => q[dist/B-Deparse],
232 'UPSTREAM' => 'blead',
236 'DISTRIBUTION' => 'RGARCIA/base-2.18.tar.gz',
237 'FILES' => q[dist/base],
238 'UPSTREAM' => 'blead',
242 'FILES' => q[lib/Benchmark.{pm,t}],
243 'UPSTREAM' => 'blead',
247 'DISTRIBUTION' => 'FLORA/bignum-0.32.tar.gz',
248 'FILES' => q[dist/bignum],
255 'UPSTREAM' => 'blead',
259 'DISTRIBUTION' => 'ZEFRAM/Carp-1.32.tar.gz',
260 'FILES' => q[dist/Carp],
261 'UPSTREAM' => 'blead',
265 'DISTRIBUTION' => 'MARKSTOS/CGI.pm-3.63.tar.gz',
266 'FILES' => q[cpan/CGI],
269 examples/WORLD_WRITABLE/18.157.1.253.sav
270 t/gen-tests/gen-start-end-tags.pl
274 'UPSTREAM' => 'cpan',
278 'FILES' => q[lib/Class/Struct.{pm,t}],
279 'UPSTREAM' => 'blead',
282 'Compress::Raw::Bzip2' => {
283 'DISTRIBUTION' => 'PMQS/Compress-Raw-Bzip2-2.062.tar.gz',
284 'FILES' => q[cpan/Compress-Raw-Bzip2],
287 'bzip2-src/bzip2-cpp.patch',
289 'UPSTREAM' => 'cpan',
292 'Compress::Raw::Zlib' => {
293 'DISTRIBUTION' => 'PMQS/Compress-Raw-Zlib-2.062.tar.gz',
295 'FILES' => q[cpan/Compress-Raw-Zlib],
302 'UPSTREAM' => 'cpan',
305 'Config::Perl::V' => {
306 'DISTRIBUTION' => 'HMBRAND/Config-Perl-V-0.19.tgz',
307 'FILES' => q[cpan/Config-Perl-V],
308 'EXCLUDED' => ['examples/show-v.pl'],
309 'UPSTREAM' => 'cpan',
313 'DISTRIBUTION' => 'SAPER/constant-1.27.tar.gz',
314 'FILES' => q[dist/constant],
323 'UPSTREAM' => 'blead',
327 'DISTRIBUTION' => 'ANDK/CPAN-2.03-TRIAL.tar.gz',
328 'FILES' => q[cpan/CPAN],
332 qr{^t/CPAN/authors/},
333 qw( lib/CPAN/Admin.pm
348 t/43distroprefspref.t
354 t/71_minimumversion.t
355 t/CPAN/CpanTestDummies-1.55.pm
357 t/CPAN/TestMirroredBy
359 t/CPAN/modules/02packages.details.txt
360 t/CPAN/modules/03modlist.data
361 t/data/META-dynamic.json
362 t/data/META-dynamic.yml
363 t/data/META-static.json
364 t/data/META-static.yml
372 'UPSTREAM' => 'cpan',
375 # Note: When updating CPAN-Meta the META.* files will need to be regenerated
376 # perl -Icpan/CPAN-Meta/lib Porting/makemeta
378 'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-2.132661.tar.gz',
379 'FILES' => q[cpan/CPAN-Meta],
382 qw[t/00-report-prereqs.t],
387 'UPSTREAM' => 'cpan',
390 'CPAN::Meta::Requirements' => {
391 'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-Requirements-2.125.tar.gz',
392 'FILES' => q[cpan/CPAN-Meta-Requirements],
395 qw(t/00-report-prereqs.t),
399 'UPSTREAM' => 'cpan',
402 'CPAN::Meta::YAML' => {
403 'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-YAML-0.010.tar.gz',
404 'FILES' => q[cpan/CPAN-Meta-YAML],
407 't/04_scalar.t', # requires YAML.pm
410 'UPSTREAM' => 'cpan',
414 'DISTRIBUTION' => 'SMUELLER/Data-Dumper-2.145.tar.gz',
415 'FILES' => q[dist/Data-Dumper],
416 'UPSTREAM' => 'blead',
420 'DISTRIBUTION' => 'PMQS/DB_File-1.829.tar.gz',
421 'FILES' => q[cpan/DB_File],
429 'UPSTREAM' => 'cpan',
433 'FILES' => q[lib/DBM_Filter.pm lib/DBM_Filter],
434 'UPSTREAM' => 'blead',
438 'FILES' => q[ext/Devel-Peek],
439 'UPSTREAM' => 'blead',
443 'DISTRIBUTION' => 'MHX/Devel-PPPort-3.21.tar.gz',
444 'FILES' => q[cpan/Devel-PPPort],
445 'EXCLUDED' => ['PPPort.pm'], # we use PPPort_pm.PL instead
446 'UPSTREAM' => undef, # rjbs has asked mhx to have blead be upstream
449 'Devel::SelfStubber' => {
450 'DISTRIBUTION' => 'FLORA/Devel-SelfStubber-1.05.tar.gz',
451 'FILES' => q[dist/Devel-SelfStubber],
452 'EXCLUDED' => [qr{^t/release-.*\.t}],
453 'UPSTREAM' => 'blead',
457 'FILES' => q[lib/diagnostics.{pm,t}],
458 'UPSTREAM' => 'blead',
462 'DISTRIBUTION' => 'GAAS/Digest-1.17.tar.gz',
463 'FILES' => q[cpan/Digest],
464 'EXCLUDED' => ['digest-bench'],
465 'UPSTREAM' => "cpan",
469 'DISTRIBUTION' => 'GAAS/Digest-MD5-2.53.tar.gz',
470 'FILES' => q[cpan/Digest-MD5],
471 'EXCLUDED' => ['rfc1321.txt'],
472 'UPSTREAM' => "cpan",
476 'DISTRIBUTION' => 'MSHELOR/Digest-SHA-5.85.tar.gz',
477 'FILES' => q[cpan/Digest-SHA],
484 'UPSTREAM' => 'cpan',
488 'FILES' => q[lib/DirHandle.{pm,t}],
489 'UPSTREAM' => 'blead',
493 'DISTRIBUTION' => 'FLORA/Dumpvalue-1.17.tar.gz',
494 'FILES' => q[dist/Dumpvalue],
495 'EXCLUDED' => [qr{^t/release-.*\.t}],
496 'UPSTREAM' => 'blead',
500 'FILES' => q[ext/DynaLoader],
501 'UPSTREAM' => 'blead',
505 'DISTRIBUTION' => 'DANKOGAI/Encode-2.55.tar.gz',
506 'FILES' => q[cpan/Encode],
507 'UPSTREAM' => 'cpan',
510 'encoding::warnings' => {
511 'DISTRIBUTION' => 'AUDREYT/encoding-warnings-0.11.tar.gz',
512 'FILES' => q[cpan/encoding-warnings],
521 'FILES' => q[lib/English.{pm,t}],
522 'UPSTREAM' => 'blead',
526 'DISTRIBUTION' => 'FLORA/Env-1.04.tar.gz',
527 'FILES' => q[dist/Env],
528 'EXCLUDED' => [qr{^t/release-.*\.t}],
529 'UPSTREAM' => 'blead',
533 'FILES' => q[ext/Errno],
534 'UPSTREAM' => 'blead',
538 'DISTRIBUTION' => 'TODDR/Exporter-5.68.tar.gz',
539 'FILES' => q[dist/Exporter],
545 'UPSTREAM' => 'blead',
548 'ExtUtils::CBuilder' => {
549 'DISTRIBUTION' => 'AMBS/ExtUtils/ExtUtils-CBuilder-0.280212.tar.gz',
550 'FILES' => q[dist/ExtUtils-CBuilder],
555 'UPSTREAM' => 'blead',
558 'ExtUtils::Command' => {
559 'DISTRIBUTION' => 'FLORA/ExtUtils-Command-1.18.tar.gz',
560 'FILES' => q[dist/ExtUtils-Command],
561 'EXCLUDED' => [qr{^t/release-}],
562 'UPSTREAM' => 'blead',
565 'ExtUtils::Constant' => {
567 # Nick has confirmed that while we have diverged from CPAN,
568 # this package isn't primarily maintained in core
569 # Another release will happen "Sometime"
570 'DISTRIBUTION' => '', #'NWCLARK/ExtUtils-Constant-0.16.tar.gz',
571 'FILES' => q[cpan/ExtUtils-Constant],
573 qw( lib/ExtUtils/Constant/Aaargh56Hash.pm
574 examples/perl_keyword.pl
575 examples/perl_regcomp_posix_keyword.pl
581 'ExtUtils::Install' => {
582 'DISTRIBUTION' => 'YVES/ExtUtils-Install-1.54.tar.gz',
583 'FILES' => q[dist/ExtUtils-Install],
585 qw( t/lib/Test/Builder.pm
586 t/lib/Test/Builder/Module.pm
593 'UPSTREAM' => 'blead',
596 'ExtUtils::MakeMaker' => {
597 'DISTRIBUTION' => 'BINGOS/ExtUtils-MakeMaker-6.78.tar.gz',
598 'FILES' => q[cpan/ExtUtils-MakeMaker],
602 qr{^t/Liblist_Kid.t},
606 'UPSTREAM' => 'cpan',
609 'ExtUtils::Manifest' => {
610 'DISTRIBUTION' => 'FLORA/ExtUtils-Manifest-1.63.tar.gz',
611 'FILES' => q[dist/ExtUtils-Manifest],
612 'EXCLUDED' => [qr(t/release-.*\.t)],
613 'UPSTREAM' => 'blead',
616 'ExtUtils::ParseXS' => {
617 'DISTRIBUTION' => 'SMUELLER/ExtUtils-ParseXS-3.22.tar.gz',
618 'FILES' => q[dist/ExtUtils-ParseXS],
619 'UPSTREAM' => 'blead',
623 'FILES' => q[ext/Fcntl],
624 'UPSTREAM' => 'blead',
627 'File::Basename' => {
628 'FILES' => q[lib/File/Basename.{pm,t}],
629 'UPSTREAM' => 'blead',
633 'FILES' => q[lib/File/Compare.{pm,t}],
634 'UPSTREAM' => 'blead',
638 'FILES' => q[lib/File/Copy.{pm,t}],
639 'UPSTREAM' => 'blead',
643 'FILES' => q[ext/File-DosGlob],
644 'UPSTREAM' => 'blead',
648 'DISTRIBUTION' => 'BINGOS/File-Fetch-0.44.tar.gz',
649 'FILES' => q[cpan/File-Fetch],
650 'UPSTREAM' => 'cpan',
654 'FILES' => q[ext/File-Find],
655 'UPSTREAM' => 'blead',
659 'FILES' => q[ext/File-Glob],
660 'UPSTREAM' => 'blead',
664 'DISTRIBUTION' => 'DLAND/File-Path-2.09.tar.gz',
665 'FILES' => q[cpan/File-Path],
667 qw( eg/setup-extra-tests
672 '' => 'cpan/File-Path/lib/File/',
673 't/' => 'cpan/File-Path/t/',
679 'FILES' => q[lib/File/stat{.pm,*.t}],
680 'UPSTREAM' => 'blead',
684 'DISTRIBUTION' => 'DAGOLDEN/File-Temp-0.2302.tar.gz',
685 'FILES' => q[cpan/File-Temp],
687 qw( misc/benchmark.pl
691 qw[t/00-report-prereqs.t],
694 'UPSTREAM' => 'cpan',
698 'FILES' => q[ext/FileCache],
699 'UPSTREAM' => 'blead',
703 'FILES' => q[lib/FileHandle.{pm,t}],
704 'UPSTREAM' => 'blead',
707 'Filter::Simple' => {
708 'DISTRIBUTION' => 'SMUELLER/Filter-Simple-0.88.tar.gz',
709 'FILES' => q[dist/Filter-Simple],
713 'UPSTREAM' => 'blead',
716 'Filter::Util::Call' => {
717 'DISTRIBUTION' => 'RURBAN/Filter-1.49.tar.gz',
718 'FILES' => q[cpan/Filter-Util-Call
740 t/z_perl_minimum_version.t
746 'Call/' => 'cpan/Filter-Util-Call/',
747 'filter-util.pl' => 'cpan/Filter-Util-Call/filter-util.pl',
748 'perlfilter.pod' => 'pod/perlfilter.pod',
749 '' => 'cpan/Filter-Util-Call/',
751 'UPSTREAM' => 'cpan',
755 'FILES' => q[lib/FindBin.{pm,t}],
756 'UPSTREAM' => 'blead',
760 'FILES' => q[ext/GDBM_File],
761 'UPSTREAM' => 'blead',
765 'DISTRIBUTION' => 'JV/Getopt-Long-2.42.tar.gz',
766 'FILES' => q[cpan/Getopt-Long],
769 qw( perl-Getopt-Long.spec
774 'UPSTREAM' => 'cpan',
778 'FILES' => q[lib/Getopt/Std.{pm,t}],
779 'UPSTREAM' => 'blead',
783 'FILES' => q[ext/Hash-Util],
784 'UPSTREAM' => 'blead',
787 'Hash::Util::FieldHash' => {
788 'FILES' => q[ext/Hash-Util-FieldHash],
789 'UPSTREAM' => 'blead',
793 'DISTRIBUTION' => 'DAGOLDEN/HTTP-Tiny-0.036.tar.gz',
794 'FILES' => q[cpan/HTTP-Tiny],
798 't/00-report-prereqs.t',
800 't/200_live_local_ip.t',
805 'UPSTREAM' => 'cpan',
809 'DISTRIBUTION' => 'FLORA/I18N-Collate-1.02.tar.gz',
810 'FILES' => q[dist/I18N-Collate],
811 'EXCLUDED' => [qr{^t/release-.*\.t}],
812 'UPSTREAM' => 'blead',
815 'I18N::Langinfo' => {
816 'FILES' => q[ext/I18N-Langinfo],
817 'UPSTREAM' => 'blead',
820 'I18N::LangTags' => {
821 'FILES' => q[dist/I18N-LangTags],
822 'UPSTREAM' => 'blead',
826 'DISTRIBUTION' => 'ILYAZ/modules/if-0.0601.tar.gz',
827 'FILES' => q[dist/if],
828 'UPSTREAM' => 'blead',
832 'DISTRIBUTION' => 'GBARR/IO-1.25.tar.gz',
833 'FILES' => q[dist/IO/],
834 'EXCLUDED' => ['t/test.pl'],
835 'UPSTREAM' => 'blead',
839 'DISTRIBUTION' => 'PMQS/IO-Compress-2.062.tar.gz',
840 'FILES' => q[cpan/IO-Compress],
841 'EXCLUDED' => [qr{t/Test/}],
842 'UPSTREAM' => 'cpan',
846 'DISTRIBUTION' => 'TOMHUGHES/IO-Zlib-1.10.tar.gz',
847 'FILES' => q[cpan/IO-Zlib],
852 'DISTRIBUTION' => 'BINGOS/IPC-Cmd-0.84.tar.gz',
853 'FILES' => q[cpan/IPC-Cmd],
854 'UPSTREAM' => 'cpan',
858 'FILES' => q[ext/IPC-Open3],
859 'UPSTREAM' => 'blead',
863 'DISTRIBUTION' => 'MHX/IPC-SysV-2.04.tar.gz',
864 'FILES' => q[cpan/IPC-SysV],
870 'UPSTREAM' => 'cpan',
874 'DISTRIBUTION' => 'MAKAMAKA/JSON-PP-2.27202.tar.gz',
875 'FILES' => q[cpan/JSON-PP],
877 't/900_pod.t', # Pod testing
880 # Waiting to be merged upstream: see PERL RT#119825
885 'UPSTREAM' => 'cpan',
889 'DISTRIBUTION' => 'SMUELLER/lib-0.63.tar.gz',
890 'FILES' => q[dist/lib/],
896 'UPSTREAM' => 'blead',
900 'DISTRIBUTION' => 'SHAY/libnet-1.23.tar.gz',
901 'FILES' => q[cpan/libnet],
907 # Customized for perl since we cannot use either an auto-generated
908 # script or the version in the CPAN distro.
909 'CUSTOMIZED' => ['Makefile.PL'],
910 'UPSTREAM' => 'cpan',
914 'DISTRIBUTION' => 'SBECK/Locale-Codes-3.27.tar.gz',
915 'FILES' => q[cpan/Locale-Codes],
920 qr{^t/runtests\.bat},
924 'UPSTREAM' => 'cpan',
927 'Locale::Maketext' => {
928 'DISTRIBUTION' => 'TODDR/Locale-Maketext-1.23.tar.gz',
929 'FILES' => q[dist/Locale-Maketext],
937 'UPSTREAM' => 'blead',
940 'Locale::Maketext::Simple' => {
941 'DISTRIBUTION' => 'JESSE/Locale-Maketext-Simple-0.21.tar.gz',
942 'FILES' => q[cpan/Locale-Maketext-Simple],
943 'EXCLUDED' => [qr{^inc/}],
944 'UPSTREAM' => 'cpan',
948 'MAINTAINER' => 'lwall',
954 'DISTRIBUTION' => 'PJACKLAM/Math-BigInt-1.997.tar.gz',
955 'FILES' => q[dist/Math-BigInt],
965 'UPSTREAM' => 'blead',
968 'Math::BigInt::FastCalc' => {
969 'DISTRIBUTION' => 'PJACKLAM/Math-BigInt-FastCalc-0.30.tar.gz',
970 'FILES' => q[dist/Math-BigInt-FastCalc],
979 # instead we use the versions of these test
980 # files that come with Math::BigInt:
989 'UPSTREAM' => 'blead',
993 'DISTRIBUTION' => 'PJACKLAM/Math-BigRat-0.2602.tar.gz',
994 'FILES' => q[dist/Math-BigRat],
1003 'UPSTREAM' => 'blead',
1006 'Math::Complex' => {
1007 'DISTRIBUTION' => 'ZEFRAM/Math-Complex-1.59.tar.gz',
1008 'FILES' => q[cpan/Math-Complex],
1014 'UPSTREAM' => 'cpan',
1018 'DISTRIBUTION' => 'MJD/Memoize-1.03.tgz',
1019 'FILES' => q[cpan/Memoize],
1020 'EXCLUDED' => ['article.html'],
1021 'UPSTREAM' => 'cpan',
1025 'DISTRIBUTION' => 'GAAS/MIME-Base64-3.14.tar.gz',
1026 'FILES' => q[cpan/MIME-Base64],
1027 'EXCLUDED' => ['t/bad-sv.t'],
1028 'UPSTREAM' => 'cpan',
1032 # To update Module-Build in blead see
1033 # https://github.com/Perl-Toolchain-Gang/Module-Build/blob/master/devtools/patching_blead.pod
1036 'Module::Build' => {
1037 'DISTRIBUTION' => 'LEONT/Module-Build-0.4007.tar.gz',
1038 'FILES' => q[cpan/Module-Build],
1046 # Generated file, not part of the CPAN distro:
1047 'CUSTOMIZED' => ['lib/Module/Build/ConfigData.pm'],
1048 'DEPRECATED' => '5.019000',
1049 'UPSTREAM' => 'cpan',
1052 'Module::CoreList' => {
1053 'DISTRIBUTION' => 'BINGOS/Module-CoreList-2.99.tar.gz',
1054 'FILES' => q[dist/Module-CoreList],
1055 'UPSTREAM' => 'blead',
1059 'DISTRIBUTION' => 'BINGOS/Module-Load-0.24.tar.gz',
1060 'FILES' => q[cpan/Module-Load],
1061 'UPSTREAM' => 'cpan',
1064 'Module::Load::Conditional' => {
1065 'DISTRIBUTION' => 'BINGOS/Module-Load-Conditional-0.58.tar.gz',
1066 'FILES' => q[cpan/Module-Load-Conditional],
1067 'UPSTREAM' => 'cpan',
1070 'Module::Loaded' => {
1071 'DISTRIBUTION' => 'BINGOS/Module-Loaded-0.08.tar.gz',
1072 'FILES' => q[cpan/Module-Loaded],
1073 'UPSTREAM' => 'cpan',
1076 'Module::Metadata' => {
1077 'DISTRIBUTION' => 'ETHER/Module-Metadata-1.000018.tar.gz',
1078 'FILES' => q[cpan/Module-Metadata],
1083 'UPSTREAM' => 'cpan',
1087 'FILES' => q[ext/mro],
1088 'UPSTREAM' => 'blead',
1092 'FILES' => q[ext/NDBM_File],
1093 'UPSTREAM' => 'blead',
1097 'DISTRIBUTION' => 'SMPETERS/Net-Ping-2.41.tar.gz',
1098 'FILES' => q[dist/Net-Ping],
1103 'UPSTREAM' => 'blead',
1107 'DISTRIBUTION' => 'FLORA/NEXT-0.65.tar.gz',
1108 'FILES' => q[cpan/NEXT],
1109 'EXCLUDED' => [qr{^demo/}],
1110 'UPSTREAM' => 'cpan',
1114 'FILES' => q[ext/ODBM_File],
1115 'UPSTREAM' => 'blead',
1119 'FILES' => q[ext/Opcode],
1120 'UPSTREAM' => 'blead',
1124 'FILES' => q[lib/overload{.pm,.t,64.t}],
1125 'UPSTREAM' => 'blead',
1128 'Package::Constants' => {
1129 'DISTRIBUTION' => 'KANE/Package-Constants-0.02.tar.gz',
1130 'FILES' => q[cpan/Package-Constants],
1131 'UPSTREAM' => 'cpan',
1134 'Params::Check' => {
1135 'DISTRIBUTION' => 'BINGOS/Params-Check-0.38.tar.gz',
1136 'EXCLUDED' => ['Params-Check-0.26.tar.gz'],
1137 'FILES' => q[cpan/Params-Check],
1138 'UPSTREAM' => 'cpan',
1142 'DISTRIBUTION' => 'CORION/parent-0.228.tar.gz',
1143 'FILES' => q[cpan/parent],
1144 'UPSTREAM' => undef,
1147 'Parse::CPAN::Meta' => {
1148 'DISTRIBUTION' => 'DAGOLDEN/Parse-CPAN-Meta-1.4409.tar.gz',
1149 'FILES' => q[cpan/Parse-CPAN-Meta],
1152 qw[t/00-report-prereqs.t],
1156 'UPSTREAM' => 'cpan',
1160 'DISTRIBUTION' => 'SMUELLER/PathTools-3.40.tar.gz',
1161 'FILES' => q[dist/Cwd],
1162 'EXCLUDED' => [qr{^t/lib/Test/}],
1163 'UPSTREAM' => "blead",
1165 # NOTE: PathTools is in dist/Cwd/ instead of dist/PathTools because it
1166 # contains Cwd.xs and something, possibly Makefile.SH, makes an assumption
1167 # that the leafname of some file corresponds with the pathname of the
1172 'DISTRIBUTION' => 'DAGOLDEN/Perl-OSType-1.006.tar.gz',
1173 'FILES' => q[cpan/Perl-OSType],
1174 'EXCLUDED' => [qw(cpanfile), qw(tidyall.ini), qr/^xt/, qr{^t/00-}],
1175 'UPSTREAM' => 'cpan',
1179 'MAINTAINER' => 'sartak',
1180 'FILES' => q[pod/perldtrace.pod],
1181 'UPSTREAM' => 'blead',
1185 'MAINTAINER' => 'pvhp',
1186 'FILES' => q[pod/perlebcdic.pod],
1187 'UPSTREAM' => undef,
1191 'DISTRIBUTION' => 'LLAP/perlfaq-5.0150044.tar.gz',
1192 'FILES' => q[cpan/perlfaq],
1194 qw( t/release-pod-syntax.t
1199 'UPSTREAM' => 'cpan',
1203 'FILES' => q[lib/PerlIO.pm],
1204 'UPSTREAM' => undef,
1207 'PerlIO::encoding' => {
1208 'FILES' => q[ext/PerlIO-encoding],
1209 'UPSTREAM' => 'blead',
1213 'FILES' => q[ext/PerlIO-mmap],
1214 'UPSTREAM' => 'blead',
1217 'PerlIO::scalar' => {
1218 'FILES' => q[ext/PerlIO-scalar],
1219 'UPSTREAM' => 'blead',
1223 'FILES' => q[ext/PerlIO-via],
1224 'UPSTREAM' => 'blead',
1227 'PerlIO::via::QuotedPrint' => {
1228 'DISTRIBUTION' => 'ELIZABETH/PerlIO-via-QuotedPrint-0.07.tar.gz',
1229 'FILES' => q[cpan/PerlIO-via-QuotedPrint],
1231 # Waiting to be merged upstream: see CPAN RT#54047
1237 'UPSTREAM' => undef,
1241 'MAINTAINER' => 'laun',
1242 'FILES' => q[pod/perlpacktut.pod],
1243 'UPSTREAM' => undef,
1247 'MAINTAINER' => 'sburke',
1248 'FILES' => q[pod/perlpodspec.pod],
1249 'UPSTREAM' => undef,
1253 'MAINTAINER' => 'abigail',
1254 'FILES' => q[pod/perlrecharclass.pod
1255 pod/perlrebackslash.pod],
1256 'UPSTREAM' => undef,
1260 MAINTAINER => 'avar',
1261 FILES => q[pod/perlreapi.pod],
1262 'UPSTREAM' => undef,
1266 'MAINTAINER' => 'mjd',
1267 'FILES' => q[pod/perlreftut.pod],
1268 'UPSTREAM' => 'blead',
1272 'MAINTAINER' => 'elizabeth',
1273 'FILES' => q[pod/perlthrtut.pod],
1274 'UPSTREAM' => undef,
1278 'DISTRIBUTION' => 'MAREKR/Pod-Checker-1.60.tar.gz',
1279 'FILES' => q[cpan/Pod-Checker],
1280 'UPSTREAM' => 'cpan',
1284 'DISTRIBUTION' => 'SBURKE/Pod-Escapes-1.04.tar.gz',
1285 'FILES' => q[cpan/Pod-Escapes],
1286 'UPSTREAM' => undef,
1289 'Pod::Functions' => {
1290 'FILES' => q[ext/Pod-Functions],
1291 'UPSTREAM' => 'blead',
1295 'FILES' => q[ext/Pod-Html],
1296 'UPSTREAM' => 'blead',
1300 'DISTRIBUTION' => 'MAREKR/Pod-Parser-1.61.tar.gz',
1301 'FILES' => q[cpan/Pod-Parser],
1302 'UPSTREAM' => 'cpan',
1306 'DISTRIBUTION' => 'MALLEN/Pod-Perldoc-3.20.tar.gz',
1307 'FILES' => q[cpan/Pod-Perldoc],
1309 # in blead, the perldoc executable is generated by perldoc.PL
1311 # XXX We can and should fix this, but clean up the DRY-failure in utils
1313 'EXCLUDED' => ['perldoc'],
1314 'UPSTREAM' => 'cpan',
1318 'DISTRIBUTION' => 'DWHEELER/Pod-Simple-3.28.tar.gz',
1319 'FILES' => q[cpan/Pod-Simple],
1320 'UPSTREAM' => 'cpan',
1324 'DISTRIBUTION' => 'MAREKR/Pod-Usage-1.63.tar.gz',
1325 'FILES' => q[cpan/Pod-Usage],
1326 'UPSTREAM' => 'cpan',
1330 'DISTRIBUTION' => 'RRA/podlators-2.5.2.tar.gz',
1331 'FILES' => q[cpan/podlators pod/perlpodstyle.pod],
1333 # The perl distribution has pod2man.PL and pod2text.PL, which are
1334 # run to create pod2man and pod2text, while the CPAN distribution
1335 # just has the post-generated pod2man and pod2text files.
1336 # The following entries attempt to codify that odd fact.
1338 qw( scripts/pod2man.PL
1343 '' => 'cpan/podlators/',
1344 'scripts/pod2man' => 'cpan/podlators/scripts/pod2man.PL',
1345 'scripts/pod2text' => 'cpan/podlators/scripts/pod2text.PL',
1347 # this file lives outside the cpan/ directory
1348 'pod/perlpodstyle.pod' => 'pod/perlpodstyle.pod',
1350 'UPSTREAM' => 'cpan',
1354 'FILES' => q[ext/POSIX],
1355 'UPSTREAM' => 'blead',
1359 'FILES' => q[ext/re],
1360 'UPSTREAM' => 'blead',
1364 'MAINTAINER' => 'laun',
1365 'FILES' => q[x2p/s2p.PL],
1366 'UPSTREAM' => undef,
1370 'DISTRIBUTION' => 'RGARCIA/Safe-2.35.tar.gz',
1371 'FILES' => q[dist/Safe],
1372 'UPSTREAM' => 'blead',
1375 'Scalar-List-Utils' => {
1376 'DISTRIBUTION' => 'PEVANS/Scalar-List-Utils-1.32.tar.gz',
1377 'FILES' => q[cpan/List-Util],
1383 'UPSTREAM' => 'cpan',
1387 'FILES' => q[ext/SDBM_File],
1388 'UPSTREAM' => 'blead',
1392 'DISTRIBUTION' => 'DAGOLDEN/Search-Dict-1.07.tar.gz',
1393 'FILES' => q[dist/Search-Dict],
1394 'EXCLUDED' => [qr{^t/release-.*\.t},qr{^README\..*}],
1395 'UPSTREAM' => 'blead',
1399 'DISTRIBUTION' => 'SMUELLER/SelfLoader-1.20.tar.gz',
1400 'FILES' => q[dist/SelfLoader],
1401 'EXCLUDED' => ['t/00pod.t'],
1402 'UPSTREAM' => 'blead',
1406 'FILES' => q[lib/sigtrap.{pm,t}],
1407 'UPSTREAM' => 'blead',
1411 'DISTRIBUTION' => 'PEVANS/Socket-2.012.tar.gz',
1412 'FILES' => q[cpan/Socket],
1413 'UPSTREAM' => 'cpan',
1417 'DISTRIBUTION' => 'AMS/Storable-2.45.tar.gz',
1418 'FILES' => q[dist/Storable],
1419 'EXCLUDED' => [qr{^t/Test/}],
1420 'UPSTREAM' => 'blead',
1423 'Sys::Hostname' => {
1424 'FILES' => q[ext/Sys-Hostname],
1425 'UPSTREAM' => 'blead',
1429 'DISTRIBUTION' => 'SAPER/Sys-Syslog-0.33.tar.gz',
1430 'FILES' => q[cpan/Sys-Syslog],
1433 qw( t/data-validation.t
1442 'UPSTREAM' => 'cpan',
1445 'Term::ANSIColor' => {
1446 'DISTRIBUTION' => 'RRA/Term-ANSIColor-4.02.tar.gz',
1447 'FILES' => q[cpan/Term-ANSIColor],
1462 'UPSTREAM' => 'cpan',
1466 'DISTRIBUTION' => 'JSTOWE/Term-Cap-1.12.tar.gz',
1467 'FILES' => q[cpan/Term-Cap],
1469 # Waiting to be merged upstream: see CPAN RT#73447
1476 'UPSTREAM' => undef,
1479 'Term::Complete' => {
1480 'DISTRIBUTION' => 'FLORA/Term-Complete-1.402.tar.gz',
1481 'FILES' => q[dist/Term-Complete],
1482 'EXCLUDED' => [qr{^t/release-.*\.t}],
1483 'UPSTREAM' => 'blead',
1486 'Term::ReadLine' => {
1487 'DISTRIBUTION' => 'FLORA/Term-ReadLine-1.14.tar.gz',
1488 'FILES' => q[dist/Term-ReadLine],
1489 'EXCLUDED' => [qr{^t/release-.*\.t}],
1490 'UPSTREAM' => 'blead',
1494 'DISTRIBUTION' => 'JESSE/Test-1.26.tar.gz',
1495 'FILES' => q[cpan/Test],
1496 'UPSTREAM' => 'cpan',
1499 'Test::Harness' => {
1500 'DISTRIBUTION' => 'OVID/Test-Harness-3.28.tar.gz',
1501 'FILES' => q[cpan/Test-Harness],
1515 # Waiting to be merged upstream: see CPAN RT#64353
1516 'CUSTOMIZED' => [ 't/source.t' ],
1518 'UPSTREAM' => 'cpan',
1522 'DISTRIBUTION' => 'MSCHWERN/Test-Simple-0.98.tar.gz',
1523 'FILES' => q[cpan/Test-Simple],
1530 t/Builder/reset_outputs.t
1531 lib/Test/Builder/IO/Scalar.pm
1536 # Waiting to be merged upstream: see CPAN RT#79762
1539 # Waiting to be merged upstream: see PERL RT#119825
1540 'lib/Test/Builder.pm',
1541 'lib/Test/Builder/Module.pm',
1543 'lib/Test/Simple.pm',
1546 'UPSTREAM' => 'cpan',
1550 'DISTRIBUTION' => 'FLORA/Text-Abbrev-1.02.tar.gz',
1551 'FILES' => q[dist/Text-Abbrev],
1552 'EXCLUDED' => [qr{^t/release-.*\.t}],
1553 'UPSTREAM' => 'blead',
1556 'Text::Balanced' => {
1557 'DISTRIBUTION' => 'ADAMK/Text-Balanced-2.02.tar.gz',
1558 'FILES' => q[cpan/Text-Balanced],
1566 # Waiting to be merged upstream: see CPAN RT#87788
1580 'UPSTREAM' => 'cpan',
1583 'Text::ParseWords' => {
1584 'DISTRIBUTION' => 'CHORNY/Text-ParseWords-3.29.tar.gz',
1585 'FILES' => q[cpan/Text-ParseWords],
1586 'EXCLUDED' => ['t/pod.t'],
1588 # Waiting to be merged upstream: see CPAN RT#50929
1595 # For the benefit of make_ext.pl, we have to have this accessible:
1597 'ParseWords.pm' => 'cpan/Text-ParseWords/lib/Text/ParseWords.pm',
1598 '' => 'cpan/Text-ParseWords/',
1600 'UPSTREAM' => undef,
1603 'Text-Tabs+Wrap' => {
1604 'DISTRIBUTION' => 'MUIR/modules/Text-Tabs+Wrap-2013.0523.tar.gz',
1605 'FILES' => q[cpan/Text-Tabs],
1608 't/dnsparks.t', # see af6492bf9e
1611 '' => 'cpan/Text-Tabs/',
1612 'lib.modern/Text/Tabs.pm' => 'cpan/Text-Tabs/lib/Text/Tabs.pm',
1613 'lib.modern/Text/Wrap.pm' => 'cpan/Text-Tabs/lib/Text/Wrap.pm',
1615 'UPSTREAM' => 'cpan',
1618 'Thread::Queue' => {
1619 'DISTRIBUTION' => 'JDHEDDEN/Thread-Queue-3.02.tar.gz',
1620 'FILES' => q[dist/Thread-Queue],
1628 'UPSTREAM' => 'blead',
1631 'Thread::Semaphore' => {
1632 'DISTRIBUTION' => 'JDHEDDEN/Thread-Semaphore-2.12.tar.gz',
1633 'FILES' => q[dist/Thread-Semaphore],
1635 qw( examples/semaphore.pl
1641 'UPSTREAM' => 'blead',
1645 'DISTRIBUTION' => 'JDHEDDEN/threads-1.89.tar.gz',
1646 'FILES' => q[dist/threads],
1654 'UPSTREAM' => 'blead',
1657 'threads::shared' => {
1658 'DISTRIBUTION' => 'JDHEDDEN/threads-shared-1.43.tar.gz',
1659 'FILES' => q[dist/threads-shared],
1661 qw( examples/class.pl
1667 'UPSTREAM' => 'blead',
1671 'DISTRIBUTION' => 'TODDR/Tie-File-0.98.tar.gz',
1672 'FILES' => q[dist/Tie-File],
1673 'UPSTREAM' => 'blead',
1677 'FILES' => q[lib/Tie/Hash.{pm,t}],
1678 'UPSTREAM' => 'blead',
1681 'Tie::Hash::NamedCapture' => {
1682 'FILES' => q[ext/Tie-Hash-NamedCapture],
1683 'UPSTREAM' => 'blead',
1687 'FILES' => q[ext/Tie-Memoize],
1688 'UPSTREAM' => 'blead',
1692 'DISTRIBUTION' => 'FLORA/Tie-RefHash-1.39.tar.gz',
1693 'FILES' => q[cpan/Tie-RefHash],
1694 'UPSTREAM' => 'cpan',
1698 'DISTRIBUTION' => 'ZEFRAM/Time-HiRes-1.9726.tar.gz',
1699 'FILES' => q[cpan/Time-HiRes],
1700 'UPSTREAM' => 'cpan',
1704 'DISTRIBUTION' => 'DROLSKY/Time-Local-1.2300.tar.gz',
1705 'FILES' => q[cpan/Time-Local],
1707 qw( t/pod-coverage.t
1710 qr{^t/release-.*\.t},
1712 'UPSTREAM' => 'cpan',
1716 'DISTRIBUTION' => 'RJBS/Time-Piece-1.23.tar.gz',
1717 'FILES' => q[cpan/Time-Piece],
1718 'UPSTREAM' => undef,
1721 'Unicode::Collate' => {
1722 'DISTRIBUTION' => 'SADAHIRO/Unicode-Collate-0.99.tar.gz',
1723 'FILES' => q[cpan/Unicode-Collate],
1733 'UPSTREAM' => 'cpan',
1736 'Unicode::Normalize' => {
1737 'DISTRIBUTION' => 'SADAHIRO/Unicode-Normalize-1.16.tar.gz',
1738 'FILES' => q[cpan/Unicode-Normalize],
1746 'UPSTREAM' => 'cpan',
1750 'FILES' => q[lib/Unicode/UCD.{pm,t}],
1751 'UPSTREAM' => 'blead',
1755 'DISTRIBUTION' => 'JPEACOCK/version-0.9904.tar.gz',
1756 'FILES' => q[cpan/version],
1759 'lib/version/typemap',
1764 # Waiting to be merged upstream: see CPAN RT#87513
1772 'UPSTREAM' => undef,
1776 'MAINTAINER' => 'craig',
1777 'FILES' => q[vms configure.com README.vms],
1778 'UPSTREAM' => undef,
1782 'MAINTAINER' => 'craig',
1783 'FILES' => q[ext/VMS-DCLsym],
1784 'UPSTREAM' => undef,
1787 'VMS::Filespec' => {
1788 'FILES' => q[ext/VMS-Filespec],
1789 'UPSTREAM' => undef,
1793 'MAINTAINER' => 'craig',
1794 'FILES' => q[ext/VMS-Stdio],
1795 'UPSTREAM' => undef,
1799 'MAINTAINER' => 'pmqs',
1800 'FILES' => q[regen/warnings.pl
1805 'UPSTREAM' => 'blead',
1809 'MAINTAINER' => 'jand',
1810 'FILES' => q[win32 t/win32 README.win32 ext/Win32CORE],
1811 'UPSTREAM' => undef,
1815 'DISTRIBUTION' => "JDB/Win32-0.47.tar.gz",
1816 'FILES' => q[cpan/Win32],
1817 'UPSTREAM' => 'cpan',
1820 'Win32API::File' => {
1821 'DISTRIBUTION' => 'CHORNY/Win32API-File-0.1201.tar.gz',
1822 'FILES' => q[cpan/Win32API-File],
1827 'UPSTREAM' => 'cpan',
1831 'FILES' => q[ext/XS-Typemap],
1832 'UPSTREAM' => 'blead',
1836 'DISTRIBUTION' => 'SAPER/XSLoader-0.16.tar.gz',
1837 'FILES' => q[dist/XSLoader],
1847 'XSLoader.pm', # we use XSLoader_pm.PL
1849 # Revert UPSTREAM to 'blead' after 0.17 is released
1850 'UPSTREAM' => undef,
1853 # this pseudo-module represents all the files under ext/ and lib/
1854 # that aren't otherwise claimed. This means that the following two
1855 # commands will check that every file under ext/ and lib/ is
1856 # accounted for, and that there are no duplicates:
1858 # perl Porting/Maintainers --checkmani lib ext
1859 # perl Porting/Maintainers --checkmani
1864 ext/ExtUtils-Miniperl/
1868 lib/Config/Extensions.{pm,t}
1870 lib/ExtUtils/Embed.pm
1871 lib/ExtUtils/XSSymSet.pm
1872 lib/ExtUtils/t/Embed.t
1873 lib/ExtUtils/typemap
1875 lib/Net/hostent.{pm,t}
1876 lib/Net/netent.{pm,t}
1877 lib/Net/protoent.{pm,t}
1878 lib/Net/servent.{pm,t}
1879 lib/Pod/t/InputObjects.t
1883 lib/SelectSaver.{pm,t}
1891 lib/Tie/Scalar.{pm,t}
1892 lib/Tie/StdHandle.pm
1893 lib/Tie/SubstrHash.{pm,t}
1894 lib/Time/gmtime.{pm,t}
1895 lib/Time/localtime.{pm,t}
1899 lib/User/grent.{pm,t}
1900 lib/User/pwent.{pm,t}
1905 lib/charnames.{pm,t}
1906 lib/dbm_filter_util.pl
1918 lib/overload/numbers.pm
1919 lib/overloading.{pm,t}
1928 lib/vars{.pm,.t,_carp.t}
1931 'UPSTREAM' => 'blead',
1936 for ( values %Modules ) {
1937 $_->{CPAN} = !!$_->{DISTRIBUTION};
1940 # legacy MAINTAINER field
1941 for ( values %Modules ) {
1942 next if exists $_->{MAINTAINER};
1943 if (not exists $_->{DISTRIBUTION} or (defined $_->{UPSTREAM} and $_->{UPSTREAM} eq 'blead')) {
1944 $_->{MAINTAINER} = 'p5p';
1945 $Maintainers{p5p} = 'perl5-porters <perl5-porters@perl.org>';
1948 (my $pause_id = $_->{DISTRIBUTION}) =~ s{/.*$}{};
1949 $_->{MAINTAINER} = $pause_id;
1950 $Maintainers{$pause_id} = "<$pause_id\@cpan.org>";