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