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