This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
305af6d036b0d5c4bd74a0f17076b3aadf7deea6
[perl5.git] / Porting / Maintainers.pl
1 #!perl
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
7 # and in CPAN.
8
9 package Maintainers;
10
11 use utf8;
12 use File::Glob qw(:case);
13
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)
17
18 @IGNORABLE = qw(
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
26     Todo VERSION WHATSNEW
27 );
28
29 # Each entry in the  %Modules hash roughly represents a distribution,
30 # except when DISTRIBUTION is set, where it *exactly* represents a single
31 # CPAN distribution.
32
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'.
40
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.
47
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.)
55
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.
59
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
65
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.  (For dist/ distributions,
69 # which are blead-first, a request should be placed with the releaser(s) to
70 # upload the corresponding cpan release, and the entry in this file should
71 # only be updated when that release has been done.)
72
73 # EXCLUDED is a list of files to be excluded from a CPAN tarball before
74 # comparing the remaining contents with core. Each item can either be a
75 # full pathname (eg 't/foo.t') or a pattern (e.g. qr{^t/}).
76 # It defaults to the empty list.
77
78 # CUSTOMIZED is a list of files that have been customized within the
79 # Perl core.  Use this whenever patching a cpan upstream distribution
80 # or whenever we expect to have a file that differs from the tarball.
81 # If the file in blead matches the file in the tarball from CPAN,
82 # Porting/core-cpan-diff will warn about it, as it indicates an expected
83 # customization might have been lost when updating from upstream.  The
84 # path should be relative to the distribution directory.  If the upstream
85 # distribution should be modified to incorporate the change then be sure
86 # to raise a ticket for it on rt.cpan.org and add a comment alongside the
87 # list of CUSTOMIZED files noting the ticket number.
88
89 # DEPRECATED contains the *first* version of Perl in which the module
90 # was considered deprecated.  It should only be present if the module is
91 # actually deprecated.  Such modules should use deprecate.pm to
92 # issue a warning if used.  E.g.:
93 #
94 #     use if $] >= 5.011, 'deprecate';
95 #
96
97 # MAP is a hash that maps CPAN paths to their core equivalents.
98 # Each key represents a string prefix, with longest prefixes checked
99 # first. The first match causes that prefix to be replaced with the
100 # corresponding key. For example, with the following MAP:
101 #   {
102 #     'lib/'     => 'lib/',
103 #     ''     => 'lib/Foo/',
104 #   },
105 #
106 # these files are mapped as shown:
107 #
108 #    README     becomes lib/Foo/README
109 #    lib/Foo.pm becomes lib/Foo.pm
110 #
111 # The default is dependent on the type of module.
112 # For distributions which appear to be stored under ext/, it defaults to:
113 #
114 #   { '' => 'ext/Foo-Bar/' }
115 #
116 # otherwise, it's
117 #
118 #   {
119 #     'lib/'     => 'lib/',
120 #     ''     => 'lib/Foo/Bar/',
121 #   }
122
123 %Modules = (
124
125     'Archive::Tar' => {
126         'DISTRIBUTION' => 'BINGOS/Archive-Tar-2.32.tar.gz',
127         'FILES'        => q[cpan/Archive-Tar],
128         'BUGS'         => 'bug-archive-tar@rt.cpan.org',
129         'EXCLUDED'     => [
130             qw(t/07_ptardiff.t),
131         ],
132     },
133
134     'Attribute::Handlers' => {
135         'DISTRIBUTION' => 'RJBS/Attribute-Handlers-0.99.tar.gz',
136         'FILES'        => q[dist/Attribute-Handlers],
137     },
138
139     'autodie' => {
140         'DISTRIBUTION' => 'PJF/autodie-2.29.tar.gz',
141         'FILES'        => q[cpan/autodie],
142         'EXCLUDED'     => [
143             qr{benchmarks},
144             qr{README\.md},
145             # All these tests depend upon external
146             # modules that don't exist when we're
147             # building the core.  Hence, they can
148             # never run, and should not be merged.
149             qw( t/author-critic.t
150                 t/critic.t
151                 t/fork.t
152                 t/kwalitee.t
153                 t/lex58.t
154                 t/pod-coverage.t
155                 t/pod.t
156                 t/release-pod-coverage.t
157                 t/release-pod-syntax.t
158                 t/socket.t
159                 t/system.t
160                 )
161         ],
162         'CUSTOMIZED'   => [
163             # CPAN RT 105344
164             't/mkdir.t',
165             # smartmatch changes
166             'lib/autodie/exception.pm',
167             'lib/autodie/hints.pm',
168             't/exceptions.t',
169             't/lib/Hints_pod_examples.pm',
170             # CPAN RT#127762
171             't/recv.t',
172         ],
173     },
174
175     'AutoLoader' => {
176         'DISTRIBUTION' => 'SMUELLER/AutoLoader-5.74.tar.gz',
177         'FILES'        => q[cpan/AutoLoader],
178         'EXCLUDED'     => ['t/00pod.t'],
179     },
180
181     'autouse' => {
182         'DISTRIBUTION' => 'RJBS/autouse-1.11.tar.gz',
183         'FILES'        => q[dist/autouse],
184         'EXCLUDED'     => [qr{^t/release-.*\.t}],
185     },
186
187     'base' => {
188         'DISTRIBUTION' => 'RJBS/base-2.23.tar.gz',
189         'FILES'        => q[dist/base],
190     },
191
192     'bignum' => {
193         'DISTRIBUTION' => 'PJACKLAM/bignum-0.51.tar.gz',
194         'FILES'        => q[cpan/bignum],
195         'EXCLUDED'     => [
196             qr{^t/author-},
197             qr{^t/release-},
198             qw( t/00sig.t
199                 t/01load.t
200                 ),
201         ],
202     },
203
204     'Carp' => {
205         'DISTRIBUTION' => 'XSAWYERX/Carp-1.50.tar.gz',
206         'FILES'        => q[dist/Carp],
207     },
208
209     'Compress::Raw::Bzip2' => {
210         'DISTRIBUTION' => 'PMQS/Compress-Raw-Bzip2-2.087.tar.gz',
211         'FILES'        => q[cpan/Compress-Raw-Bzip2],
212         'EXCLUDED'     => [
213             qr{^t/Test/},
214             qr{^t/meta},
215             'bzip2-src/bzip2-const.patch',
216             'bzip2-src/bzip2-cpp.patch',
217             'bzip2-src/bzip2-unsigned.patch',
218         ],
219     },
220
221     'Compress::Raw::Zlib' => {
222         'DISTRIBUTION' => 'PMQS/Compress-Raw-Zlib-2.087.tar.gz',
223         'FILES'    => q[cpan/Compress-Raw-Zlib],
224         'EXCLUDED' => [
225             qr{^examples/},
226             qr{^t/Test/},
227             qr{^t/meta},
228             qw( t/000prereq.t
229                 t/99pod.t
230                 ),
231         ],
232     },
233
234     'Config::Perl::V' => {
235         'DISTRIBUTION' => 'HMBRAND/Config-Perl-V-0.31.tgz',
236         'FILES'        => q[cpan/Config-Perl-V],
237         'EXCLUDED'     => [qw(
238                 examples/show-v.pl
239                 )],
240         'CUSTOMIZED'   => [ qw(V.pm) ],
241     },
242
243     'constant' => {
244         'DISTRIBUTION' => 'RJBS/constant-1.33.tar.gz',
245         'FILES'        => q[dist/constant],
246         'EXCLUDED'     => [
247             qw( t/00-load.t
248                 t/more-tests.t
249                 t/pod-coverage.t
250                 t/pod.t
251                 eg/synopsis.pl
252                 ),
253         ],
254     },
255
256     'CPAN' => {
257         'DISTRIBUTION' => 'ANDK/CPAN-2.27-TRIAL2.tar.gz',
258         'FILES'        => q[cpan/CPAN],
259         'EXCLUDED'     => [
260             qr{^distroprefs/},
261             qr{^inc/Test/},
262             qr{^t/CPAN/},
263             qr{^t/data/},
264             qr{^t/97-},
265             qw( lib/CPAN/Admin.pm
266                 scripts/cpan-mirrors
267                 PAUSE2015.pub
268                 PAUSE2019.pub
269                 SlayMakefile
270                 t/00signature.t
271                 t/04clean_load.t
272                 t/12cpan.t
273                 t/13tarzip.t
274                 t/14forkbomb.t
275                 t/30shell.coverage
276                 t/30shell.t
277                 t/31sessions.t
278                 t/41distribution.t
279                 t/42distroprefs.t
280                 t/43distroprefspref.t
281                 t/44cpanmeta.t
282                 t/50pod.t
283                 t/51pod.t
284                 t/52podcover.t
285                 t/60credentials.t
286                 t/70_critic.t
287                 t/71_minimumversion.t
288                 t/local_utils.pm
289                 t/perlcriticrc
290                 t/yaml_code.yml
291                 ),
292         ],
293     },
294
295     # Note: When updating CPAN-Meta the META.* files will need to be regenerated
296     # perl -Icpan/CPAN-Meta/lib Porting/makemeta
297     'CPAN::Meta' => {
298         'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-2.150010.tar.gz',
299         'FILES'        => q[cpan/CPAN-Meta],
300         'EXCLUDED'     => [
301             qw[t/00-report-prereqs.t
302                t/00-report-prereqs.dd
303               ],
304             qr{^xt},
305             qr{^history},
306         ],
307     },
308
309     'CPAN::Meta::Requirements' => {
310         'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-Requirements-2.140.tar.gz',
311         'FILES'        => q[cpan/CPAN-Meta-Requirements],
312         'EXCLUDED'     => [
313             qw(t/00-report-prereqs.t),
314             qw(t/00-report-prereqs.dd),
315             qw(t/version-cleanup.t),
316             qr{^xt},
317         ],
318     },
319
320     'CPAN::Meta::YAML' => {
321         'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-YAML-0.018.tar.gz',
322         'FILES'        => q[cpan/CPAN-Meta-YAML],
323         'EXCLUDED'     => [
324             't/00-report-prereqs.t',
325             't/00-report-prereqs.dd',
326             qr{^xt},
327         ],
328     },
329
330     'Data::Dumper' => {
331         'DISTRIBUTION' => 'XSAWYERX/Data-Dumper-2.173.tar.gz',
332         'FILES'        => q[dist/Data-Dumper],
333     },
334
335     'DB_File' => {
336         'DISTRIBUTION' => 'PMQS/DB_File-1.852.tar.gz',
337         'FILES'        => q[cpan/DB_File],
338         'EXCLUDED'     => [
339             qr{^patches/},
340             qr{^t/meta},
341             qw( t/pod.t
342                 fallback.h
343                 fallback.xs
344                 ),
345         ],
346     },
347
348     'Devel::PPPort' => {
349         'DISTRIBUTION' => 'ATOOMIC/Devel-PPPort-3.52.tar.gz',
350         'FILES'        => q[dist/Devel-PPPort],
351         'EXCLUDED'     => [
352             'PPPort.pm',    # we use PPPort_pm.PL instead
353         ],
354     },
355
356     'Devel::SelfStubber' => {
357         'DISTRIBUTION' => 'FLORA/Devel-SelfStubber-1.05.tar.gz',
358         'FILES'        => q[dist/Devel-SelfStubber],
359         'EXCLUDED'     => [qr{^t/release-.*\.t}],
360     },
361
362     'Digest' => {
363         'DISTRIBUTION' => 'GAAS/Digest-1.17.tar.gz',
364         'FILES'        => q[cpan/Digest],
365         'EXCLUDED'     => ['digest-bench'],
366         'CUSTOMIZED'   => [
367             # CVE-2016-1238
368             qw( Digest.pm )
369         ],
370     },
371
372     'Digest::MD5' => {
373         'DISTRIBUTION' => 'GAAS/Digest-MD5-2.55.tar.gz',
374         'FILES'        => q[cpan/Digest-MD5],
375         'EXCLUDED'     => ['rfc1321.txt'],
376     },
377
378     'Digest::SHA' => {
379         'DISTRIBUTION' => 'MSHELOR/Digest-SHA-6.02.tar.gz',
380         'FILES'        => q[cpan/Digest-SHA],
381         'EXCLUDED'     => [
382             qw( t/pod.t
383                 t/podcover.t
384                 examples/dups
385                 ),
386         ],
387     },
388
389     'Dumpvalue' => {
390         'DISTRIBUTION' => 'FLORA/Dumpvalue-1.17.tar.gz',
391         'FILES'        => q[dist/Dumpvalue],
392         'EXCLUDED'     => [qr{^t/release-.*\.t}],
393     },
394
395     'Encode' => {
396         'DISTRIBUTION' => 'DANKOGAI/Encode-3.01.tar.gz',
397         'FILES'        => q[cpan/Encode],
398     },
399
400     'encoding::warnings' => {
401         'DISTRIBUTION' => 'AUDREYT/encoding-warnings-0.11.tar.gz',
402         'FILES'        => q[dist/encoding-warnings],
403         'EXCLUDED'     => [
404             qr{^inc/Module/},
405             qw(t/0-signature.t),
406         ],
407     },
408
409     'Env' => {
410         'DISTRIBUTION' => 'FLORA/Env-1.04.tar.gz',
411         'FILES'        => q[dist/Env],
412         'EXCLUDED'     => [qr{^t/release-.*\.t}],
413     },
414
415     'experimental' => {
416         'DISTRIBUTION' => 'LEONT/experimental-0.020.tar.gz',
417         'FILES'        => q[cpan/experimental],
418         'EXCLUDED'     => [qr{^xt/}],
419         'CUSTOMIZED'   => [
420             # smartmatch changes
421             't/basic.t',
422         ],
423     },
424
425     'Exporter' => {
426         'DISTRIBUTION' => 'TODDR/Exporter-5.73.tar.gz',
427         'FILES'        => q[dist/Exporter],
428         'EXCLUDED' => [
429             qw( t/pod.t
430                 t/use.t
431                 ),
432         ],
433     },
434
435     'ExtUtils::CBuilder' => {
436         'DISTRIBUTION' => 'AMBS/ExtUtils-CBuilder-0.280231.tar.gz',
437         'FILES'        => q[dist/ExtUtils-CBuilder],
438         'EXCLUDED'     => [
439             qw(README.mkdn),
440             qr{^xt},
441         ],
442     },
443
444     'ExtUtils::Constant' => {
445
446         'DISTRIBUTION' => 'NWCLARK/ExtUtils-Constant-0.25.tar.gz',
447         'FILES'    => q[cpan/ExtUtils-Constant],
448         'EXCLUDED' => [
449             qw( lib/ExtUtils/Constant/Aaargh56Hash.pm
450                 examples/perl_keyword.pl
451                 examples/perl_regcomp_posix_keyword.pl
452                 ),
453         ],
454     },
455
456     'ExtUtils::Install' => {
457         'DISTRIBUTION' => 'BINGOS/ExtUtils-Install-2.14.tar.gz',
458         'FILES'        => q[cpan/ExtUtils-Install],
459         'EXCLUDED'     => [
460             qw( t/lib/Test/Builder.pm
461                 t/lib/Test/Builder/Module.pm
462                 t/lib/Test/More.pm
463                 t/lib/Test/Simple.pm
464                 t/pod-coverage.t
465                 t/pod.t
466                 ),
467         ],
468     },
469
470     'ExtUtils::MakeMaker' => {
471         'DISTRIBUTION' => 'BINGOS/ExtUtils-MakeMaker-7.36.tar.gz',
472         'FILES'        => q[cpan/ExtUtils-MakeMaker],
473         'EXCLUDED'     => [
474             qr{^t/lib/Test/},
475             qr{^(bundled|my)/},
476             qr{^t/Liblist_Kid.t},
477             qr{^t/liblist/},
478             qr{^\.perlcriticrc},
479             'PATCHING',
480             'README.packaging',
481             'lib/ExtUtils/MakeMaker/version/vpp.pm',
482         ],
483     },
484
485     'ExtUtils::Manifest' => {
486         'DISTRIBUTION' => 'ETHER/ExtUtils-Manifest-1.72.tar.gz',
487         'FILES'        => q[cpan/ExtUtils-Manifest],
488         'EXCLUDED'     => [
489             qr(^t/00-report-prereqs),
490             qr(^xt/)
491         ],
492     },
493
494     'ExtUtils::ParseXS' => {
495         'DISTRIBUTION' => 'SMUELLER/ExtUtils-ParseXS-3.35.tar.gz',
496         'FILES'        => q[dist/ExtUtils-ParseXS],
497     },
498
499     'File::Fetch' => {
500         'DISTRIBUTION' => 'BINGOS/File-Fetch-0.56.tar.gz',
501         'FILES'        => q[cpan/File-Fetch],
502     },
503
504     'File::Path' => {
505         'DISTRIBUTION' => 'JKEENAN/File-Path-2.16.tar.gz',
506         'FILES'        => q[cpan/File-Path],
507         'EXCLUDED'     => [
508             qw(t/Path-Class.t),
509             qr{^xt/},
510         ],
511     },
512
513     'File::Temp' => {
514         'DISTRIBUTION' => 'ETHER/File-Temp-0.2309.tar.gz',
515         'FILES'        => q[cpan/File-Temp],
516         'EXCLUDED'     => [
517             qw( README.mkdn
518                 misc/benchmark.pl
519                 misc/results.txt
520                 ),
521             qr[^t/00-report-prereqs],
522             qr{^xt},
523         ],
524     },
525
526     'Filter::Simple' => {
527         'DISTRIBUTION' => 'SMUELLER/Filter-Simple-0.94.tar.gz',
528         'FILES'        => q[dist/Filter-Simple],
529         'EXCLUDED'     => [
530             qr{^demo/}
531         ],
532     },
533
534     'Filter::Util::Call' => {
535         'DISTRIBUTION' => 'RURBAN/Filter-1.59.tar.gz',
536         'FILES'        => q[cpan/Filter-Util-Call
537                  pod/perlfilter.pod
538                 ],
539         'EXCLUDED' => [
540             qr{^decrypt/},
541             qr{^examples/},
542             qr{^Exec/},
543             qr{^lib/Filter/},
544             qr{^tee/},
545             qw( .appveyor.yml
546                 Call/Makefile.PL
547                 Call/ppport.h
548                 Call/typemap
549                 mytest
550                 t/cpp.t
551                 t/decrypt.t
552                 t/exec.t
553                 t/m4.t
554                 t/order.t
555                 t/sh.t
556                 t/tee.t
557                 t/z_kwalitee.t
558                 t/z_manifest.t
559                 t/z_meta.t
560                 t/z_perl_minimum_version.t
561                 t/z_pod-coverage.t
562                 t/z_pod.t
563                 ),
564         ],
565         'MAP' => {
566             'Call/'            => 'cpan/Filter-Util-Call/',
567             't/filter-util.pl' => 'cpan/Filter-Util-Call/filter-util.pl',
568             'perlfilter.pod'   => 'pod/perlfilter.pod',
569             ''                 => 'cpan/Filter-Util-Call/',
570         },
571     },
572
573     'Getopt::Long' => {
574         'DISTRIBUTION' => 'JV/Getopt-Long-2.51.tar.gz',
575         'FILES'        => q[cpan/Getopt-Long],
576         'EXCLUDED'     => [
577             qr{^examples/},
578             qw( perl-Getopt-Long.spec
579                 lib/newgetopt.pl
580                 t/gol-compat.t
581                 ),
582         ],
583     },
584
585     'HTTP::Tiny' => {
586         'DISTRIBUTION' => 'DAGOLDEN/HTTP-Tiny-0.076.tar.gz',
587         'FILES'        => q[cpan/HTTP-Tiny],
588         'EXCLUDED'     => [
589             't/00-report-prereqs.t',
590             't/00-report-prereqs.dd',
591             't/200_live.t',
592             't/200_live_local_ip.t',
593             't/210_live_ssl.t',
594             qr/^eg/,
595             qr/^xt/
596         ],
597     },
598
599     'I18N::Collate' => {
600         'DISTRIBUTION' => 'FLORA/I18N-Collate-1.02.tar.gz',
601         'FILES'        => q[dist/I18N-Collate],
602         'EXCLUDED'     => [qr{^t/release-.*\.t}],
603     },
604
605     'I18N::LangTags' => {
606         'FILES'        => q[dist/I18N-LangTags],
607     },
608
609     'if' => {
610         'DISTRIBUTION' => 'XSAWYERX/if-0.0608.tar.gz',
611         'FILES'        => q[dist/if],
612     },
613
614     'IO' => {
615         'DISTRIBUTION' => 'TODDR/IO-1.39.tar.gz',
616         'FILES'        => q[dist/IO/],
617         'EXCLUDED'     => ['t/test.pl'],
618     },
619
620     'IO-Compress' => {
621         'DISTRIBUTION' => 'PMQS/IO-Compress-2.087.tar.gz',
622         'FILES'        => q[cpan/IO-Compress],
623         'EXCLUDED'     => [
624             qr{^examples/},
625             qr{^t/Test/},
626             qr{^t/999meta-},
627             't/010examples-bzip2.t',
628             't/010examples-zlib.t',
629             't/cz-05examples.t',
630         ],
631     },
632
633     'IO::Socket::IP' => {
634         'DISTRIBUTION' => 'PEVANS/IO-Socket-IP-0.39.tar.gz',
635         'FILES'        => q[cpan/IO-Socket-IP],
636         'EXCLUDED'     => [
637             qr{^examples/},
638         ],
639     },
640
641     'IO::Zlib' => {
642         'DISTRIBUTION' => 'TOMHUGHES/IO-Zlib-1.10.tar.gz',
643         'FILES'        => q[cpan/IO-Zlib],
644     },
645
646     'IPC::Cmd' => {
647         'DISTRIBUTION' => 'BINGOS/IPC-Cmd-1.04.tar.gz',
648         'FILES'        => q[cpan/IPC-Cmd],
649     },
650
651     'IPC::SysV' => {
652         'DISTRIBUTION' => 'MHX/IPC-SysV-2.07.tar.gz',
653         'FILES'        => q[cpan/IPC-SysV],
654         'EXCLUDED'     => [
655             qw( const-c.inc
656                 const-xs.inc
657                 ),
658         ],
659     },
660
661     'JSON::PP' => {
662         'DISTRIBUTION' => 'ISHIGAKI/JSON-PP-4.04.tar.gz',
663         'FILES'        => q[cpan/JSON-PP],
664     },
665
666     'lib' => {
667         'DISTRIBUTION' => 'SMUELLER/lib-0.63.tar.gz',
668         'FILES'        => q[dist/lib/],
669         'EXCLUDED'     => [
670             qw( forPAUSE/lib.pm
671                 t/00pod.t
672                 ),
673         ],
674     },
675
676     'libnet' => {
677         'DISTRIBUTION' => 'SHAY/libnet-3.11.tar.gz',
678         'FILES'        => q[cpan/libnet],
679         'EXCLUDED'     => [
680             qw( Configure
681                 t/changes.t
682                 t/critic.t
683                 t/pod.t
684                 t/pod_coverage.t
685                 ),
686             qr(^demos/),
687             qr(^t/external/),
688         ],
689     },
690
691     'Locale::Maketext' => {
692         'DISTRIBUTION' => 'TODDR/Locale-Maketext-1.28.tar.gz',
693         'FILES'        => q[dist/Locale-Maketext],
694         'EXCLUDED'     => [
695             qw(
696                 perlcriticrc
697                 t/00_load.t
698                 t/pod.t
699                 ),
700         ],
701     },
702
703     'Locale::Maketext::Simple' => {
704         'DISTRIBUTION' => 'JESSE/Locale-Maketext-Simple-0.21.tar.gz',
705         'FILES'        => q[cpan/Locale-Maketext-Simple],
706         'CUSTOMIZED'   => [
707             # CVE-2016-1238
708             qw( lib/Locale/Maketext/Simple.pm )
709         ],
710     },
711
712     'Math::BigInt' => {
713         'DISTRIBUTION' => 'PJACKLAM/Math-BigInt-1.999816.tar.gz',
714         'FILES'        => q[cpan/Math-BigInt],
715         'EXCLUDED'     => [
716             qr{^examples/},
717             qr{^t/author-},
718             qr{^t/release-},
719             qw( t/00sig.t
720                 t/01load.t
721                 ),
722         ],
723     },
724
725     'Math::BigInt::FastCalc' => {
726         'DISTRIBUTION' => 'PJACKLAM/Math-BigInt-FastCalc-0.5008.tar.gz',
727         'FILES'        => q[cpan/Math-BigInt-FastCalc],
728         'EXCLUDED'     => [
729             qr{^t/author-},
730             qr{^t/release-},
731             qr{^t/Math/BigInt/Lib/TestUtil.pm},
732             qw( t/00sig.t
733                 t/01load.t
734                 ),
735
736             # instead we use the versions of these test
737             # files that come with Math::BigInt:
738             qw( t/bigfltpm.inc
739                 t/bigfltpm.t
740                 t/bigintpm.inc
741                 t/bigintpm.t
742                 t/mbimbf.inc
743                 t/mbimbf.t
744                 ),
745         ],
746     },
747
748     'Math::BigRat' => {
749         'DISTRIBUTION' => 'PJACKLAM/Math-BigRat-0.2614.tar.gz',
750         'FILES'        => q[cpan/Math-BigRat],
751         'EXCLUDED'     => [
752             qr{^t/author-},
753             qr{^t/release-},
754             qw( t/00sig.t
755                 t/01load.t
756                 ),
757         ],
758     },
759
760     'Math::Complex' => {
761         'DISTRIBUTION' => 'ZEFRAM/Math-Complex-1.59.tar.gz',
762         'FILES'        => q[cpan/Math-Complex],
763         'CUSTOMIZED'   => [
764             'lib/Math/Complex.pm', # CPAN RT 118467
765             't/Complex.t',         # CPAN RT 118467
766             't/Trig.t',            # CPAN RT 118467
767         ],
768         'EXCLUDED'     => [
769             qw( t/pod.t
770                 t/pod-coverage.t
771                 ),
772         ],
773     },
774
775     'Memoize' => {
776         'DISTRIBUTION' => 'MJD/Memoize-1.03.tgz',
777         'FILES'        => q[cpan/Memoize],
778         'EXCLUDED'     => ['article.html'],
779         'CUSTOMIZED'   => [
780             # CVE-2016-1238
781             qw( Memoize.pm )
782         ],
783     },
784
785     'MIME::Base64' => {
786         'DISTRIBUTION' => 'GAAS/MIME-Base64-3.15.tar.gz',
787         'FILES'        => q[cpan/MIME-Base64],
788         'EXCLUDED'     => ['t/bad-sv.t'],
789     },
790
791     'Module::CoreList' => {
792         'DISTRIBUTION' => 'BINGOS/Module-CoreList-5.20190820.tar.gz',
793         'FILES'        => q[dist/Module-CoreList],
794     },
795
796     'Module::Load' => {
797         'DISTRIBUTION' => 'BINGOS/Module-Load-0.34.tar.gz',
798         'FILES'        => q[cpan/Module-Load],
799     },
800
801     'Module::Load::Conditional' => {
802         'DISTRIBUTION' => 'BINGOS/Module-Load-Conditional-0.68.tar.gz',
803         'FILES'        => q[cpan/Module-Load-Conditional],
804     },
805
806     'Module::Loaded' => {
807         'DISTRIBUTION' => 'BINGOS/Module-Loaded-0.08.tar.gz',
808         'FILES'        => q[cpan/Module-Loaded],
809     },
810
811     'Module::Metadata' => {
812         'DISTRIBUTION' => 'ETHER/Module-Metadata-1.000036.tar.gz',
813         'FILES'        => q[cpan/Module-Metadata],
814         'EXCLUDED'     => [
815             qw(t/00-report-prereqs.t),
816             qw(t/00-report-prereqs.dd),
817             qr{weaver.ini},
818             qr{^xt},
819         ],
820     },
821
822     'Net::Ping' => {
823         'DISTRIBUTION' => 'RURBAN/Net-Ping-2.71.tar.gz',
824         'FILES'        => q[dist/Net-Ping],
825         'EXCLUDED'     => [
826             qw(README.md.PL),
827             qw(t/020_external.t),
828             qw(t/600_pod.t),
829             qw(t/601_pod-coverage.t),
830         ],
831     },
832
833     'NEXT' => {
834         'DISTRIBUTION' => 'NEILB/NEXT-0.67.tar.gz',
835         'FILES'        => q[cpan/NEXT],
836         'EXCLUDED'     => [qr{^demo/}],
837         'CUSTOMIZED'   => [ qw(lib/NEXT.pm t/next.t) ],
838     },
839
840     'Params::Check' => {
841         'DISTRIBUTION' => 'BINGOS/Params-Check-0.38.tar.gz',
842         'FILES'        => q[cpan/Params-Check],
843     },
844
845     'parent' => {
846         'DISTRIBUTION' => 'CORION/parent-0.237.tar.gz',
847         'FILES'        => q[cpan/parent],
848         'EXCLUDED'     => [
849             qr{^xt}
850         ],
851     },
852
853     'PathTools' => {
854         'DISTRIBUTION' => 'XSAWYERX/PathTools-3.75.tar.gz',
855         'FILES'        => q[dist/PathTools],
856         'EXCLUDED'     => [
857             qr{^t/lib/Test/},
858             qw( t/rel2abs_vs_symlink.t),
859         ],
860     },
861
862     'Perl::OSType' => {
863         'DISTRIBUTION' => 'DAGOLDEN/Perl-OSType-1.010.tar.gz',
864         'FILES'        => q[cpan/Perl-OSType],
865         'EXCLUDED'     => [qw(tidyall.ini), qr/^xt/, qr{^t/00-}],
866     },
867
868     'perlfaq' => {
869         'DISTRIBUTION' => 'ETHER/perlfaq-5.20190126.tar.gz',
870         'FILES'        => q[cpan/perlfaq],
871         'EXCLUDED'     => [ qr/^inc/, qr/^xt/, qr{^t/00-} ],
872     },
873
874     'PerlIO::via::QuotedPrint' => {
875         'DISTRIBUTION' => 'SHAY/PerlIO-via-QuotedPrint-0.08.tar.gz',
876         'FILES'        => q[cpan/PerlIO-via-QuotedPrint],
877     },
878
879     'Pod::Checker' => {
880         'DISTRIBUTION' => 'MAREKR/Pod-Checker-1.73.tar.gz',
881         'FILES'        => q[cpan/Pod-Checker],
882         'CUSTOMIZED'   => [ qw[
883             t/pod/contains_bad_pod.xr
884             t/pod/selfcheck.t
885             t/pod/testcmp.pl
886             t/pod/testpchk.pl
887         ] ],
888     },
889
890     'Pod::Escapes' => {
891         'DISTRIBUTION' => 'NEILB/Pod-Escapes-1.07.tar.gz',
892         'FILES'        => q[cpan/Pod-Escapes],
893     },
894
895     'Pod::Perldoc' => {
896         'DISTRIBUTION' => 'MALLEN/Pod-Perldoc-3.28.tar.gz',
897         'FILES'        => q[cpan/Pod-Perldoc],
898
899         # Note that we use the CPAN-provided Makefile.PL, since it
900         # contains special handling of the installation of perldoc.pod
901
902         'EXCLUDED' => [
903             # In blead, the perldoc executable is generated by perldoc.PL
904             # instead
905             # XXX We can and should fix this, but clean up the DRY-failure in
906             # utils first
907             'perldoc',
908
909             # https://rt.cpan.org/Ticket/Display.html?id=116827
910             't/02_module_pod_output.t'
911         ],
912
913         'CUSTOMIZED'   => [
914             # [rt.cpan.org #88204], [rt.cpan.org #120229]
915             'lib/Pod/Perldoc.pm',
916         ],
917     },
918
919     'Pod::Simple' => {
920         'DISTRIBUTION' => 'KHW/Pod-Simple-3.39.tar.gz',
921         'FILES'        => q[cpan/Pod-Simple],
922     },
923
924     'Pod::Usage' => {
925         'DISTRIBUTION' => 'MAREKR/Pod-Usage-1.69.tar.gz',
926         'FILES'        => q[cpan/Pod-Usage],
927     },
928
929     'podlators' => {
930         'DISTRIBUTION' => 'RRA/podlators-4.12.tar.gz',
931         'FILES'        => q[cpan/podlators pod/perlpodstyle.pod],
932         'EXCLUDED'     => [
933             qr{^docs/metadata/},
934         ],
935
936         'MAP' => {
937             ''                 => 'cpan/podlators/',
938             # this file lives outside the cpan/ directory
939             'pod/perlpodstyle.pod' => 'pod/perlpodstyle.pod',
940         },
941     },
942
943     'Safe' => {
944         'DISTRIBUTION' => 'RGARCIA/Safe-2.35.tar.gz',
945         'FILES'        => q[dist/Safe],
946     },
947
948     'Scalar::Util' => {
949         'DISTRIBUTION' => 'PEVANS/Scalar-List-Utils-1.50.tar.gz',
950         'FILES'        => q[cpan/Scalar-List-Utils],
951     },
952
953     'Search::Dict' => {
954         'DISTRIBUTION' => 'DAGOLDEN/Search-Dict-1.07.tar.gz',
955         'FILES'        => q[dist/Search-Dict],
956     },
957
958     'SelfLoader' => {
959         'DISTRIBUTION' => 'SMUELLER/SelfLoader-1.24.tar.gz',
960         'FILES'        => q[dist/SelfLoader],
961         'EXCLUDED'     => ['t/00pod.t'],
962     },
963
964     'Socket' => {
965         'DISTRIBUTION' => 'PEVANS/Socket-2.029.tar.gz',
966         'FILES'        => q[cpan/Socket],
967     },
968
969     'Storable' => {
970         'DISTRIBUTION' => 'XSAWYERX/Storable-3.15.tar.gz',
971         'FILES'        => q[dist/Storable],
972         'EXCLUDED'     => [
973             qr{^t/compat/},
974         ],
975     },
976
977     'Sys::Syslog' => {
978         'DISTRIBUTION' => 'SAPER/Sys-Syslog-0.35.tar.gz',
979         'FILES'        => q[cpan/Sys-Syslog],
980         'EXCLUDED'     => [
981             qr{^eg/},
982             qw( README.win32
983                 t/data-validation.t
984                 t/distchk.t
985                 t/pod.t
986                 t/podcover.t
987                 t/podspell.t
988                 t/portfs.t
989                 win32/PerlLog.RES
990                 ),
991         ],
992     },
993
994     'Term::ANSIColor' => {
995         'DISTRIBUTION' => 'RRA/Term-ANSIColor-4.06.tar.gz',
996         'FILES'        => q[cpan/Term-ANSIColor],
997         'EXCLUDED'     => [
998             qr{^docs/},
999             qr{^examples/},
1000             qr{^t/data/},
1001             qr{^t/docs/},
1002             qr{^t/style/},
1003             qw( t/module/aliases-env.t ),
1004         ],
1005     },
1006
1007     'Term::Cap' => {
1008         'DISTRIBUTION' => 'JSTOWE/Term-Cap-1.17.tar.gz',
1009         'FILES'        => q[cpan/Term-Cap],
1010     },
1011
1012     'Term::Complete' => {
1013         'DISTRIBUTION' => 'FLORA/Term-Complete-1.402.tar.gz',
1014         'FILES'        => q[dist/Term-Complete],
1015         'EXCLUDED'     => [qr{^t/release-.*\.t}],
1016     },
1017
1018     'Term::ReadLine' => {
1019         'DISTRIBUTION' => 'FLORA/Term-ReadLine-1.14.tar.gz',
1020         'FILES'        => q[dist/Term-ReadLine],
1021         'EXCLUDED'     => [qr{^t/release-.*\.t}],
1022     },
1023
1024     'Test' => {
1025         'DISTRIBUTION' => 'JESSE/Test-1.26.tar.gz',
1026         'FILES'        => q[dist/Test],
1027     },
1028
1029     'Test::Harness' => {
1030         'DISTRIBUTION' => 'LEONT/Test-Harness-3.42.tar.gz',
1031         'FILES'        => q[cpan/Test-Harness],
1032         'EXCLUDED'     => [
1033             qr{^examples/},
1034             qr{^xt/},
1035             qw( Changes-2.64
1036                 MANIFEST.CUMMULATIVE
1037                 HACKING.pod
1038                 perlcriticrc
1039                 t/000-load.t
1040                 t/lib/if.pm
1041                 ),
1042         ],
1043     },
1044
1045     'Test::Simple' => {
1046         'DISTRIBUTION' => 'EXODIST/Test-Simple-1.302166.tar.gz',
1047         'FILES'        => q[cpan/Test-Simple],
1048         'EXCLUDED'     => [
1049             qr{^examples/},
1050             qr{^xt/},
1051             qw( appveyor.yml
1052                 t/00compile.t
1053                 t/00-report.t
1054                 t/zzz-check-breaks.t
1055                 ),
1056         ],
1057     },
1058
1059     'Text::Abbrev' => {
1060         'DISTRIBUTION' => 'FLORA/Text-Abbrev-1.02.tar.gz',
1061         'FILES'        => q[dist/Text-Abbrev],
1062         'EXCLUDED'     => [qr{^t/release-.*\.t}],
1063     },
1064
1065     'Text::Balanced' => {
1066         'DISTRIBUTION' => 'SHAY/Text-Balanced-2.03.tar.gz',
1067         'FILES'        => q[cpan/Text-Balanced],
1068         'EXCLUDED'     => [
1069             qw( t/97_meta.t
1070                 t/98_pod.t
1071                 t/99_pmv.t
1072                 ),
1073         ],
1074     },
1075
1076     'Text::ParseWords' => {
1077         'DISTRIBUTION' => 'CHORNY/Text-ParseWords-3.30.tar.gz',
1078         'FILES'        => q[cpan/Text-ParseWords],
1079     },
1080
1081     'Text-Tabs+Wrap' => {
1082         'DISTRIBUTION' => 'MUIR/modules/Text-Tabs+Wrap-2013.0523.tar.gz',
1083         'FILES'        => q[cpan/Text-Tabs],
1084         'EXCLUDED'   => [
1085             qr/^lib\.old/,
1086             't/dnsparks.t',    # see af6492bf9e
1087         ],
1088         'MAP'          => {
1089             ''                        => 'cpan/Text-Tabs/',
1090             'lib.modern/Text/Tabs.pm' => 'cpan/Text-Tabs/lib/Text/Tabs.pm',
1091             'lib.modern/Text/Wrap.pm' => 'cpan/Text-Tabs/lib/Text/Wrap.pm',
1092         },
1093     },
1094
1095     # Jerry Hedden does take patches that are applied to blead first, even
1096     # though that can be hard to discern from the Git history; so it's
1097     # correct for this (and Thread::Semaphore, threads, and threads::shared)
1098     # to be under dist/ rather than cpan/
1099     'Thread::Queue' => {
1100         'DISTRIBUTION' => 'JDHEDDEN/Thread-Queue-3.13.tar.gz',
1101         'FILES'        => q[dist/Thread-Queue],
1102         'EXCLUDED'     => [
1103             qr{^examples/},
1104             qw( t/00_load.t
1105                 t/99_pod.t
1106                 t/test.pl
1107                 ),
1108         ],
1109     },
1110
1111     'Thread::Semaphore' => {
1112         'DISTRIBUTION' => 'JDHEDDEN/Thread-Semaphore-2.13.tar.gz',
1113         'FILES'        => q[dist/Thread-Semaphore],
1114         'EXCLUDED'     => [
1115             qw( examples/semaphore.pl
1116                 t/00_load.t
1117                 t/99_pod.t
1118                 t/test.pl
1119                 ),
1120         ],
1121     },
1122
1123     'threads' => {
1124         'DISTRIBUTION' => 'JDHEDDEN/threads-2.21.tar.gz',
1125         'FILES'        => q[dist/threads],
1126         'EXCLUDED'     => [
1127             qr{^examples/},
1128             qw( t/pod.t
1129                 t/test.pl
1130                 threads.h
1131                 ),
1132         ],
1133     },
1134
1135     'threads::shared' => {
1136         'DISTRIBUTION' => 'JDHEDDEN/threads-shared-1.59.tar.gz',
1137         'FILES'        => q[dist/threads-shared],
1138         'EXCLUDED'     => [
1139             qw( examples/class.pl
1140                 shared.h
1141                 t/pod.t
1142                 t/test.pl
1143                 ),
1144         ],
1145     },
1146
1147     'Tie::File' => {
1148         'DISTRIBUTION' => 'TODDR/Tie-File-1.00.tar.gz',
1149         'FILES'        => q[dist/Tie-File],
1150     },
1151
1152     'Tie::RefHash' => {
1153         'DISTRIBUTION' => 'FLORA/Tie-RefHash-1.39.tar.gz',
1154         'FILES'        => q[cpan/Tie-RefHash],
1155     },
1156
1157     'Time::HiRes' => {
1158         'DISTRIBUTION' => 'ATOOMIC/Time-HiRes-1.9760.tar.gz',
1159         'FILES'        => q[dist/Time-HiRes],
1160     },
1161
1162     'Time::Local' => {
1163         'DISTRIBUTION' => 'DROLSKY/Time-Local-1.28.tar.gz',
1164         'FILES'        => q[cpan/Time-Local],
1165         'EXCLUDED'     => [
1166             qr{^xt/},
1167             qw( appveyor.yml
1168                 perlcriticrc
1169                 perltidyrc
1170                 tidyall.ini
1171                 t/00-report-prereqs.t
1172                 t/00-report-prereqs.dd
1173                 ),
1174         ],
1175     },
1176
1177     'Time::Piece' => {
1178         'DISTRIBUTION' => 'ESAYM/Time-Piece-1.33.tar.gz',
1179         'FILES'        => q[cpan/Time-Piece],
1180         'EXCLUDED'     => [ qw[reverse_deps.txt] ],
1181     },
1182
1183     'Unicode::Collate' => {
1184         'DISTRIBUTION' => 'SADAHIRO/Unicode-Collate-1.27.tar.gz',
1185         'FILES'        => q[cpan/Unicode-Collate],
1186         'EXCLUDED'     => [
1187             qr{N$},
1188             qr{^data/},
1189             qr{^gendata/},
1190             qw( disableXS
1191                 enableXS
1192                 mklocale
1193                 ),
1194         ],
1195     },
1196
1197     'Unicode::Normalize' => {
1198         'DISTRIBUTION' => 'KHW/Unicode-Normalize-1.26.tar.gz',
1199         'FILES'        => q[dist/Unicode-Normalize],
1200         'EXCLUDED'     => [
1201             qw( MANIFEST.N
1202                 Normalize.pmN
1203                 disableXS
1204                 enableXS
1205                 ),
1206         ],
1207     },
1208
1209     'version' => {
1210         'DISTRIBUTION' => 'JPEACOCK/version-0.9924.tar.gz',
1211         'FILES'        => q[cpan/version vutil.c vutil.h vxs.inc],
1212         'EXCLUDED' => [
1213             qr{^vutil/lib/},
1214             'vutil/Makefile.PL',
1215             'vutil/ppport.h',
1216             'vutil/vxs.xs',
1217             't/00impl-pp.t',
1218             't/survey_locales',
1219             'vperl/vpp.pm',
1220         ],
1221
1222         # When adding the CPAN-distributed files for version.pm, it is necessary
1223         # to delete an entire block out of lib/version.pm, since that code is
1224         # only necessary with the CPAN release.
1225         'CUSTOMIZED'   => [
1226             qw( lib/version.pm
1227                 vutil.c
1228                 ),
1229         ],
1230
1231         'MAP' => {
1232             'vutil/'         => '',
1233             ''               => 'cpan/version/',
1234         },
1235     },
1236
1237     'warnings' => {
1238         'FILES'      => q[
1239                  lib/warnings
1240                  lib/warnings.{pm,t}
1241                  regen/warnings.pl
1242                  t/lib/warnings
1243         ],
1244     },
1245
1246     'Win32' => {
1247         'DISTRIBUTION' => "JDB/Win32-0.53.tar.gz",
1248         'FILES'        => q[cpan/Win32],
1249     },
1250
1251     'Win32API::File' => {
1252         'DISTRIBUTION' => 'CHORNY/Win32API-File-0.1203.tar.gz',
1253         'FILES'        => q[cpan/Win32API-File],
1254         'EXCLUDED'     => [
1255             qr{^ex/},
1256         ],
1257     },
1258
1259     'XSLoader' => {
1260         'DISTRIBUTION' => 'SAPER/XSLoader-0.24.tar.gz',
1261         'FILES'        => q[dist/XSLoader],
1262         'EXCLUDED'     => [
1263             qr{^eg/},
1264             qw( t/00-load.t
1265                 t/01-api.t
1266                 t/distchk.t
1267                 t/pod.t
1268                 t/podcover.t
1269                 t/portfs.t
1270                 ),
1271             'XSLoader.pm',    # we use XSLoader_pm.PL
1272         ],
1273     },
1274
1275     # this pseudo-module represents all the files under ext/ and lib/
1276     # that aren't otherwise claimed. This means that the following two
1277     # commands will check that every file under ext/ and lib/ is
1278     # accounted for, and that there are no duplicates:
1279     #
1280     #    perl Porting/Maintainers --checkmani lib ext
1281     #    perl Porting/Maintainers --checkmani
1282
1283     '_PERLLIB' => {
1284         'FILES'    => q[
1285                 ext/Amiga-ARexx/
1286                 ext/Amiga-Exec/
1287                 ext/B/
1288                 ext/Devel-Peek/
1289                 ext/DynaLoader/
1290                 ext/Errno/
1291                 ext/ExtUtils-Miniperl/
1292                 ext/Fcntl/
1293                 ext/File-DosGlob/
1294                 ext/File-Find/
1295                 ext/File-Glob/
1296                 ext/FileCache/
1297                 ext/GDBM_File/
1298                 ext/Hash-Util-FieldHash/
1299                 ext/Hash-Util/
1300                 ext/I18N-Langinfo/
1301                 ext/IPC-Open3/
1302                 ext/NDBM_File/
1303                 ext/ODBM_File/
1304                 ext/Opcode/
1305                 ext/POSIX/
1306                 ext/PerlIO-encoding/
1307                 ext/PerlIO-mmap/
1308                 ext/PerlIO-scalar/
1309                 ext/PerlIO-via/
1310                 ext/Pod-Functions/
1311                 ext/Pod-Html/
1312                 ext/SDBM_File/
1313                 ext/Sys-Hostname/
1314                 ext/Tie-Hash-NamedCapture/
1315                 ext/Tie-Memoize/
1316                 ext/VMS-DCLsym/
1317                 ext/VMS-Filespec/
1318                 ext/VMS-Stdio/
1319                 ext/Win32CORE/
1320                 ext/XS-APItest/
1321                 ext/XS-Typemap/
1322                 ext/attributes/
1323                 ext/mro/
1324                 ext/re/
1325                 lib/AnyDBM_File.{pm,t}
1326                 lib/Benchmark.{pm,t}
1327                 lib/B/Deparse{.pm,.t,-*.t}
1328                 lib/B/Op_private.pm
1329                 lib/CORE.pod
1330                 lib/Class/Struct.{pm,t}
1331                 lib/Config.t
1332                 lib/Config/Extensions.{pm,t}
1333                 lib/DB.{pm,t}
1334                 lib/DBM_Filter.pm
1335                 lib/DBM_Filter/
1336                 lib/DirHandle.{pm,t}
1337                 lib/English.{pm,t}
1338                 lib/ExtUtils/Embed.pm
1339                 lib/ExtUtils/XSSymSet.pm
1340                 lib/ExtUtils/t/Embed.t
1341                 lib/ExtUtils/typemap
1342                 lib/File/Basename.{pm,t}
1343                 lib/File/Compare.{pm,t}
1344                 lib/File/Copy.{pm,t}
1345                 lib/File/stat{.pm,.t,-7896.t}
1346                 lib/FileHandle.{pm,t}
1347                 lib/FindBin.{pm,t}
1348                 lib/Getopt/Std.{pm,t}
1349                 lib/Internals.pod
1350                 lib/Internals.t
1351                 lib/meta_notation.{pm,t}
1352                 lib/Net/hostent.{pm,t}
1353                 lib/Net/netent.{pm,t}
1354                 lib/Net/protoent.{pm,t}
1355                 lib/Net/servent.{pm,t}
1356                 lib/PerlIO.pm
1357                 lib/Pod/t/Usage.t
1358                 lib/SelectSaver.{pm,t}
1359                 lib/Symbol.{pm,t}
1360                 lib/Thread.{pm,t}
1361                 lib/Tie/Array.pm
1362                 lib/Tie/Array/
1363                 lib/Tie/ExtraHash.t
1364                 lib/Tie/Handle.pm
1365                 lib/Tie/Handle/
1366                 lib/Tie/Hash.{pm,t}
1367                 lib/Tie/Scalar.{pm,t}
1368                 lib/Tie/StdHandle.pm
1369                 lib/Tie/SubstrHash.{pm,t}
1370                 lib/Time/gmtime.{pm,t}
1371                 lib/Time/localtime.{pm,t}
1372                 lib/Time/tm.pm
1373                 lib/UNIVERSAL.pm
1374                 lib/Unicode/README
1375                 lib/Unicode/UCD.{pm,t}
1376                 lib/User/grent.{pm,t}
1377                 lib/User/pwent.{pm,t}
1378                 lib/_charnames.pm
1379                 lib/blib.{pm,t}
1380                 lib/bytes.{pm,t}
1381                 lib/bytes_heavy.pl
1382                 lib/charnames.{pm,t}
1383                 lib/dbm_filter_util.pl
1384                 lib/deprecate.pm
1385                 lib/diagnostics.{pm,t}
1386                 lib/dumpvar.{pl,t}
1387                 lib/feature.{pm,t}
1388                 lib/feature/
1389                 lib/filetest.{pm,t}
1390                 lib/h2ph.t
1391                 lib/h2xs.t
1392                 lib/integer.{pm,t}
1393                 lib/less.{pm,t}
1394                 lib/locale.{pm,t}
1395                 lib/locale_threads.t
1396                 lib/open.{pm,t}
1397                 lib/overload/numbers.pm
1398                 lib/overloading.{pm,t}
1399                 lib/overload{.pm,.t,64.t}
1400                 lib/perl5db.{pl,t}
1401                 lib/perl5db/
1402                 lib/perlbug.t
1403                 lib/sigtrap.{pm,t}
1404                 lib/sort.{pm,t}
1405                 lib/strict.{pm,t}
1406                 lib/subs.{pm,t}
1407                 lib/unicore/
1408                 lib/utf8.{pm,t}
1409                 lib/utf8_heavy.pl
1410                 lib/vars{.pm,.t,_carp.t}
1411                 lib/vmsish.{pm,t}
1412                 ],
1413     },
1414 );
1415
1416 # legacy CPAN flag
1417 for ( values %Modules ) {
1418     $_->{CPAN} = !!$_->{DISTRIBUTION};
1419 }
1420
1421 # legacy UPSTREAM flag
1422 for ( keys %Modules ) {
1423     # Keep any existing UPSTREAM flag so that "overrides" can be applied
1424     next if exists $Modules{$_}{UPSTREAM};
1425
1426     if ($_ eq '_PERLLIB' or $Modules{$_}{FILES} =~ m{^\s*(?:dist|ext|lib)/}) {
1427         $Modules{$_}{UPSTREAM} = 'blead';
1428     }
1429     elsif ($Modules{$_}{FILES} =~ m{^\s*cpan/}) {
1430         $Modules{$_}{UPSTREAM} = 'cpan';
1431     }
1432     else {
1433         warn "Unexpected location of FILES for module $_: $Modules{$_}{FILES}";
1434     }
1435 }
1436
1437 # legacy MAINTAINER field
1438 for ( keys %Modules ) {
1439     # Keep any existing MAINTAINER flag so that "overrides" can be applied
1440     next if exists $Modules{$_}{MAINTAINER};
1441
1442     if ($Modules{$_}{UPSTREAM} eq 'blead') {
1443         $Modules{$_}{MAINTAINER} = 'P5P';
1444         $Maintainers{P5P} = 'perl5-porters <perl5-porters@perl.org>';
1445     }
1446     elsif (exists $Modules{$_}{DISTRIBUTION}) {
1447         (my $pause_id = $Modules{$_}{DISTRIBUTION}) =~ s{/.*$}{};
1448         $Modules{$_}{MAINTAINER} = $pause_id;
1449         $Maintainers{$pause_id} = "<$pause_id\@cpan.org>";
1450     }
1451     else {
1452         warn "No DISTRIBUTION for non-blead module $_";
1453     }
1454 }
1455
1456 1;