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