This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Upgrade IO-Socket-IP from version 0.30 to 0.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
20     ANNOUNCE Announce Artistic AUTHORS BENCHMARK BUGS Build.PL
21     CHANGELOG ChangeLog Changelog CHANGES Changes CONTRIBUTING COPYING Copying
22     cpanfile CREDITS dist.ini GOALS HISTORY INSTALL INSTALL.SKIP LICENSE
23     Makefile.PL MANIFEST MANIFEST.SKIP META.json META.yml MYMETA.json
24     MYMETA.yml NEW NOTES perlcritic.rc ppport.h README README.PATCHING
25     SIGNATURE THANKS TODO Todo VERSION WHATSNEW .perlcriticrc.perltidyrc
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.00.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' => 'PJF/autodie-2.25.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         'CUSTOMIZED'   => [
160             # Waiting to be merged upstream: see CPAN RT#87237
161             qw( t/utf8_open.t ),
162         ],
163     },
164
165     'AutoLoader' => {
166         'DISTRIBUTION' => 'SMUELLER/AutoLoader-5.74.tar.gz',
167         'FILES'        => q[cpan/AutoLoader],
168         'EXCLUDED'     => ['t/00pod.t'],
169     },
170
171     'autouse' => {
172         'DISTRIBUTION' => 'WOLFSAGE/autouse-1.08.tar.gz',
173         'FILES'        => q[dist/autouse],
174         'EXCLUDED'     => [qr{^t/release-.*\.t}],
175     },
176
177     'B::Debug' => {
178         'DISTRIBUTION' => 'RURBAN/B-Debug-1.19.tar.gz',
179         'FILES'        => q[cpan/B-Debug],
180         'EXCLUDED'     => ['t/pod.t'],
181     },
182
183     'base' => {
184         'DISTRIBUTION' => 'RGARCIA/base-2.18.tar.gz',
185         'FILES'        => q[dist/base],
186     },
187
188     'bignum' => {
189         'DISTRIBUTION' => 'PJACKLAM/bignum-0.37.tar.gz',
190         'FILES'        => q[dist/bignum],
191         'EXCLUDED'     => [
192             qr{^inc/Module/},
193             qw( t/pod.t
194                 t/pod_cov.t
195                 ),
196         ],
197     },
198
199     'Carp' => {
200         'DISTRIBUTION' => 'ZEFRAM/Carp-1.3301.tar.gz',
201         'FILES'        => q[dist/Carp],
202     },
203
204     'Compress::Raw::Bzip2' => {
205         'DISTRIBUTION' => 'PMQS/Compress-Raw-Bzip2-2.064.tar.gz',
206         'FILES'        => q[cpan/Compress-Raw-Bzip2],
207         'EXCLUDED'     => [
208             qr{^t/Test/},
209             'bzip2-src/bzip2-cpp.patch',
210         ],
211     },
212
213     'Compress::Raw::Zlib' => {
214         'DISTRIBUTION' => 'PMQS/Compress-Raw-Zlib-2.065.tar.gz',
215
216         'FILES'    => q[cpan/Compress-Raw-Zlib],
217         'EXCLUDED' => [
218             qr{^examples/},
219             qr{^t/Test/},
220             qw( t/000prereq.t
221                 t/99pod.t
222                 ),
223         ],
224     },
225
226     'Config::Perl::V' => {
227         'DISTRIBUTION' => 'HMBRAND/Config-Perl-V-0.20.tgz',
228         'FILES'        => q[cpan/Config-Perl-V],
229         'EXCLUDED'     => ['examples/show-v.pl'],
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.05.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             qw( lib/CPAN/Admin.pm
254                 scripts/cpan-mirrors
255                 PAUSE2015.pub
256                 SlayMakefile
257                 t/00signature.t
258                 t/04clean_load.t
259                 t/12cpan.t
260                 t/13tarzip.t
261                 t/14forkbomb.t
262                 t/30shell.coverage
263                 t/30shell.t
264                 t/31sessions.t
265                 t/41distribution.t
266                 t/42distroprefs.t
267                 t/43distroprefspref.t
268                 t/44cpanmeta.t
269                 t/50pod.t
270                 t/51pod.t
271                 t/52podcover.t
272                 t/60credentials.t
273                 t/70_critic.t
274                 t/71_minimumversion.t
275                 t/local_utils.pm
276                 t/perlcriticrc
277                 t/yaml_code.yml
278                 ),
279         ],
280     },
281
282     # Note: When updating CPAN-Meta the META.* files will need to be regenerated
283     # perl -Icpan/CPAN-Meta/lib Porting/makemeta
284     'CPAN::Meta' => {
285         'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-2.141520.tar.gz',
286         'FILES'        => q[cpan/CPAN-Meta],
287         'EXCLUDED'     => [
288             qw[t/00-report-prereqs.t],
289             qr{t/README-data.txt},
290             qr{^xt},
291             qr{^history},
292         ],
293     },
294
295     'CPAN::Meta::Requirements' => {
296         'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-Requirements-2.125.tar.gz',
297         'FILES'        => q[cpan/CPAN-Meta-Requirements],
298         'EXCLUDED'     => [
299             qw(t/00-compile.t),
300             qw(t/00-report-prereqs.t),
301             qr{^xt},
302         ],
303     },
304
305     'CPAN::Meta::YAML' => {
306         'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-YAML-0.012.tar.gz',
307         'FILES'        => q[cpan/CPAN-Meta-YAML],
308         'EXCLUDED'     => [
309             't/00-compile.t',
310             't/00-report-prereqs.t',
311             't/04_scalar.t',    # requires YAML.pm
312             qr{^xt},
313         ],
314     },
315
316     'Data::Dumper' => {
317         'DISTRIBUTION' => 'SMUELLER/Data-Dumper-2.151.tar.gz',
318         'FILES'        => q[dist/Data-Dumper],
319     },
320
321     'DB_File' => {
322         # https://rt.cpan.org/Ticket/Display.html?id=96126
323         "CUSTOMIZED" => [ "DB_File.xs" ],
324         'DISTRIBUTION' => 'PMQS/DB_File-1.831.tar.gz',
325         'FILES'        => q[cpan/DB_File],
326         'EXCLUDED'     => [
327             qr{^patches/},
328             qw( t/pod.t
329                 fallback.h
330                 fallback.xs
331                 ),
332         ],
333     },
334
335     'Devel::PPPort' => {
336         'DISTRIBUTION' => 'WOLFSAGE/Devel-PPPort-3.24.tar.gz',
337         # RJBS has asked MHX to have UPSTREAM be 'blead'
338         # (i.e. move this from cpan/ to dist/)
339         'FILES'        => q[cpan/Devel-PPPort],
340         'EXCLUDED'     => [
341             'PPPort.pm',    # we use PPPort_pm.PL instead
342             'README.md',
343         ]
344     },
345
346     'Devel::SelfStubber' => {
347         'DISTRIBUTION' => 'FLORA/Devel-SelfStubber-1.05.tar.gz',
348         'FILES'        => q[dist/Devel-SelfStubber],
349         'EXCLUDED'     => [qr{^t/release-.*\.t}],
350     },
351
352     'Digest' => {
353         'DISTRIBUTION' => 'GAAS/Digest-1.17.tar.gz',
354         'FILES'        => q[cpan/Digest],
355         'EXCLUDED'     => ['digest-bench'],
356     },
357
358     'Digest::MD5' => {
359         'DISTRIBUTION' => 'GAAS/Digest-MD5-2.53.tar.gz',
360         'FILES'        => q[cpan/Digest-MD5],
361         'EXCLUDED'     => ['rfc1321.txt'],
362         # Waiting to be merged upstream: see CPAN RT#89612
363         'CUSTOMIZED'   => ['t/files.t'],
364     },
365
366     'Digest::SHA' => {
367         'DISTRIBUTION' => 'MSHELOR/Digest-SHA-5.92.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.62.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.008.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/ExtUtils-CBuilder-0.280216.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' => 'FLORA/ExtUtils-Command-1.18.tar.gz',
433         'FILES'        => q[dist/ExtUtils-Command],
434         'EXCLUDED'     => [qr{^t/release-}],
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-1.68.tar.gz',
454         'FILES'        => q[dist/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-6.98.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     },
479
480     'ExtUtils::Manifest' => {
481         'DISTRIBUTION' => 'FLORA/ExtUtils-Manifest-1.63.tar.gz',
482         'FILES'        => q[dist/ExtUtils-Manifest],
483         'EXCLUDED'     => [qr(t/release-.*\.t)],
484     },
485
486     'ExtUtils::ParseXS' => {
487         'DISTRIBUTION' => 'SMUELLER/ExtUtils-ParseXS-3.24.tar.gz',
488         'FILES'        => q[dist/ExtUtils-ParseXS],
489     },
490
491     'File::Fetch' => {
492         'DISTRIBUTION' => 'BINGOS/File-Fetch-0.48.tar.gz',
493         'FILES'        => q[cpan/File-Fetch],
494     },
495
496     'File::Path' => {
497         'DISTRIBUTION' => 'DLAND/File-Path-2.09.tar.gz',
498         'FILES'        => q[cpan/File-Path],
499         'EXCLUDED'     => [
500             qw( eg/setup-extra-tests
501                 t/pod.t
502                 )
503         ],
504         'MAP' => {
505             ''   => 'cpan/File-Path/lib/File/',
506             't/' => 'cpan/File-Path/t/',
507         },
508     },
509
510     'File::Temp' => {
511         'DISTRIBUTION' => 'DAGOLDEN/File-Temp-0.2304.tar.gz',
512         'FILES'        => q[cpan/File-Temp],
513         'EXCLUDED'     => [
514             qw( misc/benchmark.pl
515                 misc/results.txt
516                 ),
517             qw[t/00-report-prereqs.t],
518             qr{^xt},
519         ],
520     },
521
522     'Filter::Simple' => {
523         'DISTRIBUTION' => 'SMUELLER/Filter-Simple-0.91.tar.gz',
524         'FILES'        => q[dist/Filter-Simple],
525         'EXCLUDED'     => [
526             qr{^demo/}
527         ],
528     },
529
530     'Filter::Util::Call' => {
531         'DISTRIBUTION' => 'RURBAN/Filter-1.49.tar.gz',
532         'FILES'        => q[cpan/Filter-Util-Call
533                  pod/perlfilter.pod
534                 ],
535         'EXCLUDED' => [
536             qr{^decrypt/},
537             qr{^examples/},
538             qr{^Exec/},
539             qr{^lib/Filter/},
540             qr{^tee/},
541             qw( Call/Makefile.PL
542                 Call/ppport.h
543                 Call/typemap
544                 mytest
545                 t/cpp.t
546                 t/decrypt.t
547                 t/exec.t
548                 t/order.t
549                 t/sh.t
550                 t/tee.t
551                 t/z_kwalitee.t
552                 t/z_meta.t
553                 t/z_perl_minimum_version.t
554                 t/z_pod-coverage.t
555                 t/z_pod.t
556                 ),
557         ],
558         'MAP' => {
559             'Call/'          => 'cpan/Filter-Util-Call/',
560             'filter-util.pl' => 'cpan/Filter-Util-Call/filter-util.pl',
561             'perlfilter.pod' => 'pod/perlfilter.pod',
562             ''               => 'cpan/Filter-Util-Call/',
563         },
564     },
565
566     'Getopt::Long' => {
567         'DISTRIBUTION' => 'JV/Getopt-Long-2.42.tar.gz',
568         'FILES'        => q[cpan/Getopt-Long],
569         'EXCLUDED'     => [
570             qr{^examples/},
571             qw( perl-Getopt-Long.spec
572                 lib/newgetopt.pl
573                 t/gol-compat.t
574                 ),
575         ],
576     },
577
578     'HTTP::Tiny' => {
579         'DISTRIBUTION' => 'DAGOLDEN/HTTP-Tiny-0.043.tar.gz',
580         'FILES'        => q[cpan/HTTP-Tiny],
581         'EXCLUDED'     => [
582             't/00-report-prereqs.t',
583             't/200_live.t',
584             't/200_live_local_ip.t',
585             't/210_live_ssl.t',
586             qr/^eg/,
587             qr/^xt/
588         ],
589     },
590
591     'I18N::Collate' => {
592         'DISTRIBUTION' => 'FLORA/I18N-Collate-1.02.tar.gz',
593         'FILES'        => q[dist/I18N-Collate],
594         'EXCLUDED'     => [qr{^t/release-.*\.t}],
595     },
596
597     'I18N::LangTags' => {
598         'FILES'        => q[dist/I18N-LangTags],
599     },
600
601     'if' => {
602         'DISTRIBUTION' => 'ILYAZ/modules/if-0.0601.tar.gz',
603         'FILES'        => q[dist/if],
604     },
605
606     'IO' => {
607         'DISTRIBUTION' => 'GBARR/IO-1.25.tar.gz',
608         'FILES'        => q[dist/IO/],
609         'EXCLUDED'     => ['t/test.pl'],
610     },
611
612     'IO-Compress' => {
613         'DISTRIBUTION' => 'PMQS/IO-Compress-2.064.tar.gz',
614         'FILES'        => q[cpan/IO-Compress],
615         'EXCLUDED'     => [
616             qr{^examples/},
617             qr{^t/Test/},
618             't/010examples-bzip2.t',
619             't/010examples-zlib.t',
620             't/cz-05examples.t',
621         ],
622     },
623
624     'IO::Socket::IP' => {
625         'DISTRIBUTION' => 'PEVANS/IO-Socket-IP-0.31.tar.gz',
626         'FILES'        => q[cpan/IO-Socket-IP],
627         'EXCLUDED'     => [
628             qr{^examples/},
629         ],
630     },
631
632     'IO::Zlib' => {
633         'DISTRIBUTION' => 'TOMHUGHES/IO-Zlib-1.10.tar.gz',
634         'FILES'        => q[cpan/IO-Zlib],
635     },
636
637     'IPC::Cmd' => {
638         'DISTRIBUTION' => 'BINGOS/IPC-Cmd-0.92.tar.gz',
639         'FILES'        => q[cpan/IPC-Cmd],
640     },
641
642     'IPC::SysV' => {
643         'DISTRIBUTION' => 'MHX/IPC-SysV-2.04.tar.gz',
644         'FILES'        => q[cpan/IPC-SysV],
645         'EXCLUDED'     => [
646             qw( const-c.inc
647                 const-xs.inc
648                 ),
649         ],
650     },
651
652     'JSON::PP' => {
653         'DISTRIBUTION' => 'MAKAMAKA/JSON-PP-2.27203.tar.gz',
654         'FILES'        => q[cpan/JSON-PP],
655     },
656
657     'lib' => {
658         'DISTRIBUTION' => 'SMUELLER/lib-0.63.tar.gz',
659         'FILES'        => q[dist/lib/],
660         'EXCLUDED'     => [
661             qw( forPAUSE/lib.pm
662                 t/00pod.t
663                 ),
664         ],
665     },
666
667     'libnet' => {
668         'DISTRIBUTION' => 'SHAY/libnet-1.27.tar.gz',
669         'FILES'        => q[cpan/libnet],
670         'EXCLUDED'     => [
671             qw( Configure
672                 install-nomake
673                 ),
674             qr(^demos/),
675         ],
676     },
677
678     'Locale-Codes' => {
679         'DISTRIBUTION' => 'SBECK/Locale-Codes-3.31.tar.gz',
680         'FILES'        => q[cpan/Locale-Codes],
681         'EXCLUDED'     => [
682             qw( README.first
683                 t/pod_coverage.ign
684                 t/pod_coverage.t
685                 t/pod.t),
686             qr{^t/runtests},
687             qr{^t/runtests\.bat},
688             qr{^internal/},
689             qr{^examples/},
690         ],
691     },
692
693     'Locale::Maketext' => {
694         'DISTRIBUTION' => 'TODDR/Locale-Maketext-1.25.tar.gz',
695         'FILES'        => q[dist/Locale-Maketext],
696         'EXCLUDED'     => [
697             qw(
698                 perlcriticrc
699                 t/00_load.t
700                 t/pod.t
701                 ),
702         ],
703     },
704
705     'Locale::Maketext::Simple' => {
706         'DISTRIBUTION' => 'JESSE/Locale-Maketext-Simple-0.21.tar.gz',
707         'FILES'        => q[cpan/Locale-Maketext-Simple],
708     },
709
710     'Math::BigInt' => {
711         'DISTRIBUTION' => 'PJACKLAM/Math-BigInt-1.9993.tar.gz',
712         'FILES'        => q[dist/Math-BigInt],
713         'EXCLUDED'     => [
714             qr{^inc/},
715             qr{^examples/},
716             qw( t/00sig.t
717                 t/01load.t
718                 t/02pod.t
719                 t/03podcov.t
720                 ),
721         ],
722     },
723
724     'Math::BigInt::FastCalc' => {
725         'DISTRIBUTION' => 'PJACKLAM/Math-BigInt-FastCalc-0.31.tar.gz',
726         'FILES'        => q[dist/Math-BigInt-FastCalc],
727         'EXCLUDED'     => [
728             qr{^inc/},
729             qw( t/00sig.t
730                 t/01load.t
731                 t/02pod.t
732                 t/03podcov.t
733                 ),
734
735             # instead we use the versions of these test
736             # files that come with Math::BigInt:
737             qw( t/bigfltpm.inc
738                 t/bigfltpm.t
739                 t/bigintpm.inc
740                 t/bigintpm.t
741                 t/mbimbf.inc
742                 t/mbimbf.t
743                 ),
744         ],
745     },
746
747     'Math::BigRat' => {
748         'DISTRIBUTION' => 'PJACKLAM/Math-BigRat-0.2606.tar.gz',
749         'FILES'        => q[dist/Math-BigRat],
750         'EXCLUDED'     => [
751             qr{^inc/},
752             qw( t/00sig.t
753                 t/01load.t
754                 t/02pod.t
755                 t/03podcov.t
756                 ),
757         ],
758     },
759
760     'Math::Complex' => {
761         'DISTRIBUTION' => 'ZEFRAM/Math-Complex-1.59.tar.gz',
762         'FILES'        => q[cpan/Math-Complex],
763         'EXCLUDED'     => [
764             qw( t/pod.t
765                 t/pod-coverage.t
766                 ),
767         ],
768     },
769
770     'Memoize' => {
771         'DISTRIBUTION' => 'MJD/Memoize-1.03.tgz',
772         'FILES'        => q[cpan/Memoize],
773         'EXCLUDED'     => ['article.html'],
774     },
775
776     'MIME::Base64' => {
777         'DISTRIBUTION' => 'GAAS/MIME-Base64-3.14.tar.gz',
778         'FILES'        => q[cpan/MIME-Base64],
779         'EXCLUDED'     => ['t/bad-sv.t'],
780     },
781
782     'Module::CoreList' => {
783         'DISTRIBUTION' => 'BINGOS/Module-CoreList-5.021001.tar.gz',
784         'FILES'        => q[dist/Module-CoreList],
785     },
786
787     'Module::Load' => {
788         'DISTRIBUTION' => 'BINGOS/Module-Load-0.32.tar.gz',
789         'FILES'        => q[cpan/Module-Load],
790     },
791
792     'Module::Load::Conditional' => {
793         'DISTRIBUTION' => 'BINGOS/Module-Load-Conditional-0.62.tar.gz',
794         'FILES'        => q[cpan/Module-Load-Conditional],
795     },
796
797     'Module::Loaded' => {
798         'DISTRIBUTION' => 'BINGOS/Module-Loaded-0.08.tar.gz',
799         'FILES'        => q[cpan/Module-Loaded],
800     },
801
802     'Module::Metadata' => {
803         'DISTRIBUTION' => 'ETHER/Module-Metadata-1.000024.tar.gz',
804         'FILES'        => q[cpan/Module-Metadata],
805         'EXCLUDED'     => [
806             qw(README.md),
807             qw(t/00-report-prereqs.t),
808             qr{^xt},
809         ],
810     },
811
812     'Net::Ping' => {
813         'DISTRIBUTION' => 'SMPETERS/Net-Ping-2.41.tar.gz',
814         'FILES'        => q[dist/Net-Ping],
815         'EXCLUDED'     => [
816             qr{^.travis.yml},
817             qr{^README.md},
818         ],
819     },
820
821     'NEXT' => {
822         'DISTRIBUTION' => 'FLORA/NEXT-0.65.tar.gz',
823         'FILES'        => q[cpan/NEXT],
824         'EXCLUDED'     => [qr{^demo/}],
825     },
826
827     'Params::Check' => {
828         'DISTRIBUTION' => 'BINGOS/Params-Check-0.38.tar.gz',
829         'FILES'        => q[cpan/Params-Check],
830     },
831
832     'parent' => {
833         'DISTRIBUTION' => 'CORION/parent-0.228.tar.gz',
834         'FILES'        => q[cpan/parent],
835     },
836
837     'Parse::CPAN::Meta' => {
838         'DISTRIBUTION' => 'DAGOLDEN/Parse-CPAN-Meta-1.4414.tar.gz',
839         'FILES'        => q[cpan/Parse-CPAN-Meta],
840         'EXCLUDED'     => [
841             qw[t/00-report-prereqs.t],
842             qr{^xt},
843         ],
844     },
845
846     'PathTools' => {
847         'DISTRIBUTION' => 'SMUELLER/PathTools-3.47.tar.gz',
848         'FILES'        => q[dist/PathTools],
849         'EXCLUDED'     => [qr{^t/lib/Test/}],
850     },
851
852     'Perl::OSType' => {
853         'DISTRIBUTION' => 'DAGOLDEN/Perl-OSType-1.007.tar.gz',
854         'FILES'        => q[cpan/Perl-OSType],
855         'EXCLUDED'     => [qw(tidyall.ini), qr/^xt/, qr{^t/00-}],
856     },
857
858     'perlfaq' => {
859         'DISTRIBUTION' => 'LLAP/perlfaq-5.0150044.tar.gz',
860         'FILES'        => q[cpan/perlfaq],
861         'EXCLUDED'     => [
862             qw( t/release-pod-syntax.t
863                 t/release-eol.t
864                 t/release-no-tabs.t
865                 )
866         ],
867     },
868
869     'PerlIO::via::QuotedPrint' => {
870         'DISTRIBUTION' => 'ELIZABETH/PerlIO-via-QuotedPrint-0.07.tar.gz',
871         'FILES'        => q[cpan/PerlIO-via-QuotedPrint],
872
873         # Waiting to be merged upstream: see CPAN RT#54047
874         'CUSTOMIZED'   => [
875             qw( t/QuotedPrint.t
876                 ),
877         ],
878
879     },
880
881     'Pod::Checker' => {
882         'DISTRIBUTION' => 'MAREKR/Pod-Checker-1.60.tar.gz',
883         'FILES'        => q[cpan/Pod-Checker],
884     },
885
886     'Pod::Escapes' => {
887         'DISTRIBUTION' => 'NEILB/Pod-Escapes-1.06.tar.gz',
888         'FILES'        => q[cpan/Pod-Escapes],
889     },
890
891     'Pod::Parser' => {
892         'DISTRIBUTION' => 'MAREKR/Pod-Parser-1.62.tar.gz',
893         'FILES'        => q[cpan/Pod-Parser],
894     },
895
896     'Pod::Perldoc' => {
897         'DISTRIBUTION' => 'MALLEN/Pod-Perldoc-3.23.tar.gz',
898         'FILES'        => q[cpan/Pod-Perldoc],
899
900         # Note that we use the CPAN-provided Makefile.PL, since it
901         # contains special handling of the installation of perldoc.pod
902
903         # In blead, the perldoc executable is generated by perldoc.PL
904         # instead
905         # XXX We can and should fix this, but clean up the DRY-failure in utils
906         # first
907         'EXCLUDED' => ['perldoc'],
908     },
909
910     'Pod::Simple' => {
911         'DISTRIBUTION' => 'DWHEELER/Pod-Simple-3.28.tar.gz',
912         'FILES'        => q[cpan/Pod-Simple],
913     },
914
915     'Pod::Usage' => {
916         'DISTRIBUTION' => 'MAREKR/Pod-Usage-1.64.tar.gz',
917         'FILES'        => q[cpan/Pod-Usage],
918     },
919
920     'podlators' => {
921         'DISTRIBUTION' => 'RRA/podlators-2.5.3.tar.gz',
922         'FILES'        => q[cpan/podlators pod/perlpodstyle.pod],
923
924         # The perl distribution has pod2man.PL and pod2text.PL,  which are
925         # run to create pod2man and pod2text, while the CPAN distribution
926         # just has the post-generated pod2man and pod2text files.
927         # The following entries attempt to codify that odd fact.
928         'CUSTOMIZED' => [
929             qw( scripts/pod2man.PL
930                 scripts/pod2text.PL
931                 ),
932         ],
933         'MAP' => {
934             ''                 => 'cpan/podlators/',
935             'scripts/pod2man'  => 'cpan/podlators/scripts/pod2man.PL',
936             'scripts/pod2text' => 'cpan/podlators/scripts/pod2text.PL',
937
938             # this file lives outside the cpan/ directory
939             'pod/perlpodstyle.pod' => 'pod/perlpodstyle.pod',
940         },
941     },
942
943     'Safe' => {
944         'DISTRIBUTION' => 'RGARCIA/Safe-2.35.tar.gz',
945         'FILES'        => q[dist/Safe],
946     },
947
948     'Scalar-List-Utils' => {
949         'DISTRIBUTION' => 'PEVANS/Scalar-List-Utils-1.39.tar.gz',
950         'FILES'    => q[cpan/Scalar-List-Utils],
951     },
952
953     'Search::Dict' => {
954         'DISTRIBUTION' => 'DAGOLDEN/Search-Dict-1.07.tar.gz',
955         'FILES'        => q[dist/Search-Dict],
956     },
957
958     'SelfLoader' => {
959         'DISTRIBUTION' => 'SMUELLER/SelfLoader-1.20.tar.gz',
960         'FILES'        => q[dist/SelfLoader],
961         'EXCLUDED'     => ['t/00pod.t'],
962     },
963
964     'Socket' => {
965         'DISTRIBUTION' => 'PEVANS/Socket-2.014.tar.gz',
966         'FILES'        => q[cpan/Socket],
967     },
968
969     'Storable' => {
970         'DISTRIBUTION' => 'AMS/Storable-2.51.tar.gz',
971         'FILES'        => q[dist/Storable],
972     },
973
974     'Sys::Syslog' => {
975         'DISTRIBUTION' => 'SAPER/Sys-Syslog-0.33.tar.gz',
976         'FILES'        => q[cpan/Sys-Syslog],
977         'EXCLUDED'     => [
978             qr{^eg/},
979             qw( README.win32
980                 t/data-validation.t
981                 t/distchk.t
982                 t/pod.t
983                 t/podcover.t
984                 t/podspell.t
985                 t/portfs.t
986                 win32/PerlLog.RES
987                 ),
988         ],
989     },
990
991     'Term::ANSIColor' => {
992         'DISTRIBUTION' => 'RRA/Term-ANSIColor-4.03.tar.gz',
993         'FILES'        => q[cpan/Term-ANSIColor],
994         'EXCLUDED'     => [
995             qr{^examples/},
996             qr{^t/data/},
997             qr{^t/docs/},
998             qr{^t/style/},
999             qw( t/module/aliases-env.t ),
1000         ],
1001     },
1002
1003     'Term::Cap' => {
1004         'DISTRIBUTION' => 'JSTOWE/Term-Cap-1.15.tar.gz',
1005         'FILES'        => q[cpan/Term-Cap],
1006     },
1007
1008     'Term::Complete' => {
1009         'DISTRIBUTION' => 'FLORA/Term-Complete-1.402.tar.gz',
1010         'FILES'        => q[dist/Term-Complete],
1011         'EXCLUDED'     => [qr{^t/release-.*\.t}],
1012     },
1013
1014     'Term::ReadLine' => {
1015         'DISTRIBUTION' => 'FLORA/Term-ReadLine-1.14.tar.gz',
1016         'FILES'        => q[dist/Term-ReadLine],
1017         'EXCLUDED'     => [qr{^t/release-.*\.t}],
1018     },
1019
1020     'Test' => {
1021         'DISTRIBUTION' => 'JESSE/Test-1.26.tar.gz',
1022         'FILES'        => q[cpan/Test],
1023     },
1024
1025     'Test::Harness' => {
1026         'DISTRIBUTION' => 'LEONT/Test-Harness-3.32.tar.gz',
1027         'FILES'        => q[cpan/Test-Harness],
1028         'EXCLUDED'     => [
1029             qr{^examples/},
1030             qr{^inc/},
1031             qr{^t/lib/Test/},
1032             qr{^xt/},
1033             qw( Changes-2.64
1034                 MANIFEST.CUMMULATIVE
1035                 NotBuild.PL
1036                 HACKING.pod
1037                 perlcriticrc
1038                 t/000-load.t
1039                 t/lib/if.pm
1040                 ),
1041         ],
1042     },
1043
1044     'Test::Simple' => {
1045         'DISTRIBUTION' => 'EXODIST/Test-Simple-1.001003.tar.gz',
1046         'FILES'        => q[cpan/Test-Simple],
1047         'EXCLUDED'     => [
1048             qr{^t/xt},
1049             qw( .perlcriticrc
1050                 .perltidyrc
1051                 examples/indent.pl
1052                 examples/subtest.t
1053                 t/00compile.t
1054                 t/pod.t
1055                 t/pod-coverage.t
1056                 t/Builder/reset_outputs.t
1057                 lib/Test/Builder/IO/Scalar.pm
1058                 ),
1059         ],
1060     },
1061
1062     'Text::Abbrev' => {
1063         'DISTRIBUTION' => 'FLORA/Text-Abbrev-1.02.tar.gz',
1064         'FILES'        => q[dist/Text-Abbrev],
1065         'EXCLUDED'     => [qr{^t/release-.*\.t}],
1066     },
1067
1068     'Text::Balanced' => {
1069         'DISTRIBUTION' => 'ADAMK/Text-Balanced-2.02.tar.gz',
1070         'FILES'        => q[cpan/Text-Balanced],
1071         'EXCLUDED'     => [
1072             qw( t/97_meta.t
1073                 t/98_pod.t
1074                 t/99_pmv.t
1075                 ),
1076         ],
1077
1078         # Waiting to be merged upstream: see CPAN RT#87788
1079         'CUSTOMIZED'   => [
1080             qw( t/01_compile.t
1081                 t/02_extbrk.t
1082                 t/03_extcbk.t
1083                 t/04_extdel.t
1084                 t/05_extmul.t
1085                 t/06_extqlk.t
1086                 t/07_exttag.t
1087                 t/08_extvar.t
1088                 t/09_gentag.t
1089                 ),
1090         ],
1091
1092     },
1093
1094     'Text::ParseWords' => {
1095         'DISTRIBUTION' => 'CHORNY/Text-ParseWords-3.29.tar.gz',
1096         'FILES'        => q[cpan/Text-ParseWords],
1097
1098         # Waiting to be merged upstream: see CPAN RT#50929
1099         'CUSTOMIZED'   => [
1100             qw( t/ParseWords.t
1101                 t/taint.t
1102                 ),
1103         ],
1104
1105         # For the benefit of make_ext.pl, we have to have this accessible:
1106         'MAP' => {
1107             'ParseWords.pm' => 'cpan/Text-ParseWords/lib/Text/ParseWords.pm',
1108             ''              => 'cpan/Text-ParseWords/',
1109         },
1110     },
1111
1112     'Text-Tabs+Wrap' => {
1113         'DISTRIBUTION' => 'MUIR/modules/Text-Tabs+Wrap-2013.0523.tar.gz',
1114         'FILES'        => q[cpan/Text-Tabs],
1115         'EXCLUDED'   => [
1116             qr/^lib\.old/,
1117             't/dnsparks.t',    # see af6492bf9e
1118         ],
1119         'MAP'          => {
1120             ''                        => 'cpan/Text-Tabs/',
1121             'lib.modern/Text/Tabs.pm' => 'cpan/Text-Tabs/lib/Text/Tabs.pm',
1122             'lib.modern/Text/Wrap.pm' => 'cpan/Text-Tabs/lib/Text/Wrap.pm',
1123         },
1124     },
1125
1126     # Jerry Hedden does take patches that are applied to blead first, even
1127     # though that can be hard to discern from the Git history; so it's
1128     # correct for this (and Thread::Semaphore, threads, and threads::shared)
1129     # to be under dist/ rather than cpan/
1130     'Thread::Queue' => {
1131         'DISTRIBUTION' => 'JDHEDDEN/Thread-Queue-3.05.tar.gz',
1132         'FILES'        => q[dist/Thread-Queue],
1133         'EXCLUDED'     => [
1134             qr{^examples/},
1135             qw( t/00_load.t
1136                 t/99_pod.t
1137                 t/test.pl
1138                 ),
1139         ],
1140     },
1141
1142     'Thread::Semaphore' => {
1143         'DISTRIBUTION' => 'JDHEDDEN/Thread-Semaphore-2.12.tar.gz',
1144         'FILES'        => q[dist/Thread-Semaphore],
1145         'EXCLUDED'     => [
1146             qw( examples/semaphore.pl
1147                 t/00_load.t
1148                 t/99_pod.t
1149                 t/test.pl
1150                 ),
1151         ],
1152     },
1153
1154     'threads' => {
1155         'DISTRIBUTION' => 'JDHEDDEN/threads-1.92.tar.gz',
1156         'FILES'        => q[dist/threads],
1157         'EXCLUDED'     => [
1158             qr{^examples/},
1159             qw( t/pod.t
1160                 t/test.pl
1161                 threads.h
1162                 ),
1163         ],
1164     },
1165
1166     'threads::shared' => {
1167         'DISTRIBUTION' => 'JDHEDDEN/threads-shared-1.46.tar.gz',
1168         'FILES'        => q[dist/threads-shared],
1169         'EXCLUDED'     => [
1170             qw( examples/class.pl
1171                 shared.h
1172                 t/pod.t
1173                 t/test.pl
1174                 ),
1175         ],
1176     },
1177
1178     'Tie::File' => {
1179         'DISTRIBUTION' => 'TODDR/Tie-File-1.00.tar.gz',
1180         'FILES'        => q[dist/Tie-File],
1181     },
1182
1183     'Tie::RefHash' => {
1184         'DISTRIBUTION' => 'FLORA/Tie-RefHash-1.39.tar.gz',
1185         'FILES'        => q[cpan/Tie-RefHash],
1186     },
1187
1188     'Time::HiRes' => {
1189         'DISTRIBUTION' => 'ZEFRAM/Time-HiRes-1.9726.tar.gz',
1190         'FILES'        => q[cpan/Time-HiRes],
1191     },
1192
1193     'Time::Local' => {
1194         'DISTRIBUTION' => 'DROLSKY/Time-Local-1.2300.tar.gz',
1195         'FILES'        => q[cpan/Time-Local],
1196         'EXCLUDED'     => [
1197             qr{^t/release-.*\.t},
1198         ],
1199     },
1200
1201     'Time::Piece' => {
1202         'DISTRIBUTION' => 'RJBS/Time-Piece-1.27.tar.gz',
1203         'FILES'        => q[cpan/Time-Piece],
1204     },
1205
1206     'Unicode::Collate' => {
1207         'DISTRIBUTION' => 'SADAHIRO/Unicode-Collate-1.07.tar.gz',
1208         'FILES'        => q[cpan/Unicode-Collate],
1209         'EXCLUDED'     => [
1210             qr{N$},
1211             qr{^data/},
1212             qr{^gendata/},
1213             qw( disableXS
1214                 enableXS
1215                 mklocale
1216                 ),
1217         ],
1218     },
1219
1220     'Unicode::Normalize' => {
1221         'DISTRIBUTION' => 'SADAHIRO/Unicode-Normalize-1.18.tar.gz',
1222         'FILES'        => q[cpan/Unicode-Normalize],
1223     },
1224
1225     'version' => {
1226         'DISTRIBUTION' => 'JPEACOCK/version-0.9908.tar.gz',
1227         'FILES'        => q[cpan/version vutil.c vutil.h vxs.inc],
1228         'EXCLUDED' => [
1229             qr{^vutil/lib/},
1230             'vutil/Makefile.PL',
1231             'vutil/ppport.h',
1232             'vutil/vxs.xs',
1233             't/survey_locales',
1234         ],
1235
1236         # When adding the CPAN-distributed files for version.pm, it is necessary
1237         # to delete an entire block out of lib/version.pm, since that code is
1238         # only necessary with the CPAN release.
1239         'CUSTOMIZED'   => [
1240             qw( lib/version.pm
1241                 ),
1242
1243             # Merged upstream, waiting for new CPAN release: see CPAN RT#92721
1244             qw( vutil.c
1245                 vxs.inc
1246                 ),
1247         ],
1248
1249         'MAP' => {
1250             'vperl/'         => 'cpan/version/lib/version/',
1251             'vutil/'         => '',
1252             ''               => 'cpan/version/',
1253         },
1254     },
1255
1256     'warnings' => {
1257         'FILES'      => q[
1258                  lib/warnings
1259                  lib/warnings.{pm,t}
1260                  regen/warnings.pl
1261                  t/lib/warnings
1262         ],
1263     },
1264
1265     'Win32' => {
1266         'DISTRIBUTION' => "JDB/Win32-0.49.tar.gz",
1267         'FILES'        => q[cpan/Win32],
1268     },
1269
1270     'Win32API::File' => {
1271         'DISTRIBUTION' => 'CHORNY/Win32API-File-0.1201.tar.gz',
1272         'FILES'        => q[cpan/Win32API-File],
1273         'EXCLUDED'     => [
1274             qr{^ex/},
1275             't/pod.t',
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,-core.t}
1347                 lib/CORE.pod
1348                 lib/Class/Struct.{pm,t}
1349                 lib/Config.t
1350                 lib/Config/Extensions.{pm,t}
1351                 lib/DB.{pm,t}
1352                 lib/DBM_Filter.pm
1353                 lib/DBM_Filter/
1354                 lib/DirHandle.{pm,t}
1355                 lib/English.{pm,t}
1356                 lib/ExtUtils/Embed.pm
1357                 lib/ExtUtils/XSSymSet.pm
1358                 lib/ExtUtils/t/Embed.t
1359                 lib/ExtUtils/typemap
1360                 lib/File/Basename.{pm,t}
1361                 lib/File/Compare.{pm,t}
1362                 lib/File/Copy.{pm,t}
1363                 lib/File/stat{.pm,.t,-7896.t}
1364                 lib/FileHandle.{pm,t}
1365                 lib/FindBin.{pm,t}
1366                 lib/Getopt/Std.{pm,t}
1367                 lib/Internals.t
1368                 lib/Net/hostent.{pm,t}
1369                 lib/Net/netent.{pm,t}
1370                 lib/Net/protoent.{pm,t}
1371                 lib/Net/servent.{pm,t}
1372                 lib/PerlIO.pm
1373                 lib/Pod/t/InputObjects.t
1374                 lib/Pod/t/Select.t
1375                 lib/Pod/t/Usage.t
1376                 lib/Pod/t/utils.t
1377                 lib/SelectSaver.{pm,t}
1378                 lib/Symbol.{pm,t}
1379                 lib/Thread.{pm,t}
1380                 lib/Tie/Array.pm
1381                 lib/Tie/Array/
1382                 lib/Tie/ExtraHash.t
1383                 lib/Tie/Handle.pm
1384                 lib/Tie/Handle/
1385                 lib/Tie/Hash.{pm,t}
1386                 lib/Tie/Scalar.{pm,t}
1387                 lib/Tie/StdHandle.pm
1388                 lib/Tie/SubstrHash.{pm,t}
1389                 lib/Time/gmtime.{pm,t}
1390                 lib/Time/localtime.{pm,t}
1391                 lib/Time/tm.pm
1392                 lib/UNIVERSAL.pm
1393                 lib/Unicode/README
1394                 lib/Unicode/UCD.{pm,t}
1395                 lib/User/grent.{pm,t}
1396                 lib/User/pwent.{pm,t}
1397                 lib/_charnames.pm
1398                 lib/blib.{pm,t}
1399                 lib/bytes.{pm,t}
1400                 lib/bytes_heavy.pl
1401                 lib/charnames.{pm,t}
1402                 lib/dbm_filter_util.pl
1403                 lib/deprecate.pm
1404                 lib/diagnostics.{pm,t}
1405                 lib/dumpvar.{pl,t}
1406                 lib/feature.{pm,t}
1407                 lib/feature/
1408                 lib/filetest.{pm,t}
1409                 lib/h2ph.t
1410                 lib/h2xs.t
1411                 lib/integer.{pm,t}
1412                 lib/less.{pm,t}
1413                 lib/locale.{pm,t}
1414                 lib/open.{pm,t}
1415                 lib/overload/numbers.pm
1416                 lib/overloading.{pm,t}
1417                 lib/overload{.pm,.t,64.t}
1418                 lib/perl5db.{pl,t}
1419                 lib/perl5db/
1420                 lib/sigtrap.{pm,t}
1421                 lib/sort.{pm,t}
1422                 lib/strict.{pm,t}
1423                 lib/subs.{pm,t}
1424                 lib/unicore/
1425                 lib/utf8.{pm,t}
1426                 lib/utf8_heavy.pl
1427                 lib/vars{.pm,.t,_carp.t}
1428                 lib/vmsish.{pm,t}
1429                 ],
1430     },
1431 );
1432
1433 # legacy CPAN flag
1434 for ( values %Modules ) {
1435     $_->{CPAN} = !!$_->{DISTRIBUTION};
1436 }
1437
1438 # legacy UPSTREAM flag
1439 for ( keys %Modules ) {
1440     # Keep any existing UPSTREAM flag so that "overrides" can be applied
1441     next if exists $Modules{$_}{UPSTREAM};
1442
1443     if ($_ eq '_PERLLIB' or $Modules{$_}{FILES} =~ m{^\s*(?:dist|ext|lib)/}) {
1444         $Modules{$_}{UPSTREAM} = 'blead';
1445     }
1446     elsif ($Modules{$_}{FILES} =~ m{^\s*cpan/}) {
1447         $Modules{$_}{UPSTREAM} = 'cpan';
1448     }
1449     else {
1450         warn "Unexpected location of FILES for module $_: $Modules{$_}{FILES}";
1451     }
1452 }
1453
1454 # legacy MAINTAINER field
1455 for ( keys %Modules ) {
1456     # Keep any existing MAINTAINER flag so that "overrides" can be applied
1457     next if exists $Modules{$_}{MAINTAINER};
1458
1459     if ($Modules{$_}{UPSTREAM} eq 'blead') {
1460         $Modules{$_}{MAINTAINER} = 'P5P';
1461         $Maintainers{P5P} = 'perl5-porters <perl5-porters@perl.org>';
1462     }
1463     elsif (exists $Modules{$_}{DISTRIBUTION}) {
1464         (my $pause_id = $Modules{$_}{DISTRIBUTION}) =~ s{/.*$}{};
1465         $Modules{$_}{MAINTAINER} = $pause_id;
1466         $Maintainers{$pause_id} = "<$pause_id\@cpan.org>";
1467     }
1468     else {
1469         warn "No DISTRIBUTION for non-blead module $_";
1470     }
1471 }
1472
1473 1;