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