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