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