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