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