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