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