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