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