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