This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update Getopt-Long to CPAN version 2.49
[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.08.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' => 'RJBS/autouse-1.11.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.26.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.14-TRIAL.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     },
287
288     # Note: When updating CPAN-Meta the META.* files will need to be regenerated
289     # perl -Icpan/CPAN-Meta/lib Porting/makemeta
290     'CPAN::Meta' => {
291         'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-2.150005.tar.gz',
292         'FILES'        => q[cpan/CPAN-Meta],
293         'EXCLUDED'     => [
294             qw[t/00-report-prereqs.t
295                t/00-report-prereqs.dd
296                t/data-test/x_deprecated-META.json
297                t/data-valid/x_deprecated-META.yml
298                t/README-data.txt],
299             qr{^xt},
300             qr{^history},
301         ],
302     },
303
304     'CPAN::Meta::Requirements' => {
305         'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-Requirements-2.140.tar.gz',
306         'FILES'        => q[cpan/CPAN-Meta-Requirements],
307         'EXCLUDED'     => [
308             qw(t/00-report-prereqs.t),
309             qw(t/00-report-prereqs.dd),
310             qw(t/version-cleanup.t),
311             qr{^xt},
312         ],
313     },
314
315     'CPAN::Meta::YAML' => {
316         'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-YAML-0.018.tar.gz',
317         'FILES'        => q[cpan/CPAN-Meta-YAML],
318         'EXCLUDED'     => [
319             't/00-report-prereqs.t',
320             't/00-report-prereqs.dd',
321             qr{^xt},
322         ],
323     },
324
325     'Data::Dumper' => {
326         'DISTRIBUTION' => 'SMUELLER/Data-Dumper-2.154.tar.gz',
327         'FILES'        => q[dist/Data-Dumper],
328     },
329
330     'DB_File' => {
331         'DISTRIBUTION' => 'PMQS/DB_File-1.838.tar.gz',
332         'FILES'        => q[cpan/DB_File],
333         'EXCLUDED'     => [
334             qr{^patches/},
335             qw( t/pod.t
336                 fallback.h
337                 fallback.xs
338                 ),
339         ],
340     },
341
342     'Devel::PPPort' => {
343         'DISTRIBUTION' => 'WOLFSAGE/Devel-PPPort-3.32.tar.gz',
344         # RJBS has asked MHX to have UPSTREAM be 'blead'
345         # (i.e. move this from cpan/ to dist/)
346         'FILES'        => q[cpan/Devel-PPPort],
347         'EXCLUDED'     => [
348             'PPPort.pm',    # we use PPPort_pm.PL instead
349         ]
350     },
351
352     'Devel::SelfStubber' => {
353         'DISTRIBUTION' => 'FLORA/Devel-SelfStubber-1.05.tar.gz',
354         'FILES'        => q[dist/Devel-SelfStubber],
355         'EXCLUDED'     => [qr{^t/release-.*\.t}],
356     },
357
358     'Digest' => {
359         'DISTRIBUTION' => 'GAAS/Digest-1.17.tar.gz',
360         'FILES'        => q[cpan/Digest],
361         'EXCLUDED'     => ['digest-bench'],
362     },
363
364     'Digest::MD5' => {
365         'DISTRIBUTION' => 'GAAS/Digest-MD5-2.55.tar.gz',
366         'FILES'        => q[cpan/Digest-MD5],
367         'EXCLUDED'     => ['rfc1321.txt'],
368     },
369
370     'Digest::SHA' => {
371         'DISTRIBUTION' => 'MSHELOR/Digest-SHA-5.95.tar.gz',
372         'FILES'        => q[cpan/Digest-SHA],
373         'EXCLUDED'     => [
374             qw( t/pod.t
375                 t/podcover.t
376                 examples/dups
377                 ),
378         ],
379     },
380
381     'Dumpvalue' => {
382         'DISTRIBUTION' => 'FLORA/Dumpvalue-1.17.tar.gz',
383         'FILES'        => q[dist/Dumpvalue],
384         'EXCLUDED'     => [qr{^t/release-.*\.t}],
385     },
386
387     'Encode' => {
388         'DISTRIBUTION' => 'DANKOGAI/Encode-2.80.tar.gz',
389         'FILES'        => q[cpan/Encode],
390         CUSTOMIZED     => [
391             qw( encoding.pm
392                 ),
393         ],
394     },
395
396     'encoding::warnings' => {
397         'DISTRIBUTION' => 'AUDREYT/encoding-warnings-0.11.tar.gz',
398         'FILES'        => q[dist/encoding-warnings],
399         'EXCLUDED'     => [
400             qr{^inc/Module/},
401             qw(t/0-signature.t),
402         ],
403     },
404
405     'Env' => {
406         'DISTRIBUTION' => 'FLORA/Env-1.04.tar.gz',
407         'FILES'        => q[dist/Env],
408         'EXCLUDED'     => [qr{^t/release-.*\.t}],
409     },
410
411     'experimental' => {
412         'DISTRIBUTION' => 'LEONT/experimental-0.016.tar.gz',
413         'FILES'        => q[cpan/experimental],
414         'EXCLUDED'     => [qr{^xt/}],
415     },
416
417     'Exporter' => {
418         'DISTRIBUTION' => 'TODDR/Exporter-5.72.tar.gz',
419         'FILES'        => q[dist/Exporter],
420         'EXCLUDED' => [
421             qw( t/pod.t
422                 t/use.t
423                 ),
424         ],
425     },
426
427     'ExtUtils::CBuilder' => {
428         'DISTRIBUTION' => 'AMBS/ExtUtils-CBuilder-0.280224.tar.gz',
429         'FILES'        => q[dist/ExtUtils-CBuilder],
430         'EXCLUDED'     => [
431             qw(README.mkdn),
432             qr{^xt},
433         ],
434     },
435
436     'ExtUtils::Constant' => {
437
438         'DISTRIBUTION' => 'NWCLARK/ExtUtils-Constant-0.23.tar.gz',
439         'FILES'    => q[cpan/ExtUtils-Constant],
440         'EXCLUDED' => [
441             qw( lib/ExtUtils/Constant/Aaargh56Hash.pm
442                 examples/perl_keyword.pl
443                 examples/perl_regcomp_posix_keyword.pl
444                 ),
445         ],
446         # cc37ebcee3 to fix VMS failure
447         'CUSTOMIZED'   => [ qw(t/Constant.t) ],
448     },
449
450     'ExtUtils::Install' => {
451         'DISTRIBUTION' => 'BINGOS/ExtUtils-Install-2.04.tar.gz',
452         'FILES'        => q[cpan/ExtUtils-Install],
453         'EXCLUDED'     => [
454             qw( t/lib/Test/Builder.pm
455                 t/lib/Test/Builder/Module.pm
456                 t/lib/Test/More.pm
457                 t/lib/Test/Simple.pm
458                 t/pod-coverage.t
459                 t/pod.t
460                 ),
461         ],
462     },
463
464     'ExtUtils::MakeMaker' => {
465         'DISTRIBUTION' => 'BINGOS/ExtUtils-MakeMaker-7.18.tar.gz',
466         'FILES'        => q[cpan/ExtUtils-MakeMaker],
467         'EXCLUDED'     => [
468             qr{^t/lib/Test/},
469             qr{^(bundled|my)/},
470             qr{^t/Liblist_Kid.t},
471             qr{^t/liblist/},
472             qr{^\.perlcriticrc},
473             'PATCHING',
474             'README.packaging',
475             'lib/ExtUtils/MakeMaker/version/vpp.pm',
476         ],
477         'CUSTOMIZED' => [ qw( t/basic.t ) ],
478     },
479
480     'ExtUtils::Manifest' => {
481         'DISTRIBUTION' => 'ETHER/ExtUtils-Manifest-1.70.tar.gz',
482         'FILES'        => q[cpan/ExtUtils-Manifest],
483         'EXCLUDED'     => [
484             qr(^t/00-report-prereqs),
485             qr(^xt/)
486         ],
487     },
488
489     'ExtUtils::ParseXS' => {
490         'DISTRIBUTION' => 'SMUELLER/ExtUtils-ParseXS-3.30.tar.gz',
491         'FILES'        => q[dist/ExtUtils-ParseXS],
492     },
493
494     'File::Fetch' => {
495         'DISTRIBUTION' => 'BINGOS/File-Fetch-0.48.tar.gz',
496         'FILES'        => q[cpan/File-Fetch],
497     },
498
499     'File::Path' => {
500         'DISTRIBUTION' => 'RICHE/File-Path-2.12.tar.gz',
501         'FILES'        => q[cpan/File-Path],
502         'EXCLUDED'     => [
503             qw(t/Path-Class.t),
504             qr{^xt/},
505         ],
506         # https://github.com/rpcme/File-Path/pull/34
507         'CUSTOMIZED' => [ qw( lib/File/Path.pm t/Path_win32.t ) ],
508     },
509
510     'File::Temp' => {
511         'DISTRIBUTION' => 'DAGOLDEN/File-Temp-0.2304.tar.gz',
512         'FILES'        => q[cpan/File-Temp],
513         'EXCLUDED'     => [
514             qw( misc/benchmark.pl
515                 misc/results.txt
516                 ),
517             qw[t/00-report-prereqs.t],
518             qr{^xt},
519         ],
520     },
521
522     'Filter::Simple' => {
523         'DISTRIBUTION' => 'SMUELLER/Filter-Simple-0.91.tar.gz',
524         'FILES'        => q[dist/Filter-Simple],
525         'EXCLUDED'     => [
526             qr{^demo/}
527         ],
528     },
529
530     'Filter::Util::Call' => {
531         'DISTRIBUTION' => 'RURBAN/Filter-1.55.tar.gz',
532         'FILES'        => q[cpan/Filter-Util-Call
533                  pod/perlfilter.pod
534                 ],
535         'EXCLUDED' => [
536             qr{^decrypt/},
537             qr{^examples/},
538             qr{^Exec/},
539             qr{^lib/Filter/},
540             qr{^tee/},
541             qw( Call/Makefile.PL
542                 Call/ppport.h
543                 Call/typemap
544                 mytest
545                 t/cpp.t
546                 t/decrypt.t
547                 t/exec.t
548                 t/order.t
549                 t/sh.t
550                 t/tee.t
551                 t/z_kwalitee.t
552                 t/z_meta.t
553                 t/z_perl_minimum_version.t
554                 t/z_pod-coverage.t
555                 t/z_pod.t
556                 ),
557         ],
558         'MAP' => {
559             'Call/'          => 'cpan/Filter-Util-Call/',
560             'filter-util.pl' => 'cpan/Filter-Util-Call/filter-util.pl',
561             'perlfilter.pod' => 'pod/perlfilter.pod',
562             ''               => 'cpan/Filter-Util-Call/',
563         },
564     },
565
566     'Getopt::Long' => {
567         'DISTRIBUTION' => 'JV/Getopt-Long-2.49.tar.gz',
568         'FILES'        => q[cpan/Getopt-Long],
569         'EXCLUDED'     => [
570             qr{^examples/},
571             qw( perl-Getopt-Long.spec
572                 lib/newgetopt.pl
573                 t/gol-compat.t
574                 ),
575         ],
576     },
577
578     'HTTP::Tiny' => {
579         'DISTRIBUTION' => 'DAGOLDEN/HTTP-Tiny-0.056.tar.gz',
580         'FILES'        => q[cpan/HTTP-Tiny],
581         'EXCLUDED'     => [
582             't/00-report-prereqs.t',
583             't/00-report-prereqs.dd',
584             't/200_live.t',
585             't/200_live_local_ip.t',
586             't/210_live_ssl.t',
587             qr/^eg/,
588             qr/^xt/
589         ],
590     },
591
592     'I18N::Collate' => {
593         'DISTRIBUTION' => 'FLORA/I18N-Collate-1.02.tar.gz',
594         'FILES'        => q[dist/I18N-Collate],
595         'EXCLUDED'     => [qr{^t/release-.*\.t}],
596     },
597
598     'I18N::LangTags' => {
599         'FILES'        => q[dist/I18N-LangTags],
600     },
601
602     'if' => {
603         'DISTRIBUTION' => 'RJBS/if-0.0606.tar.gz',
604         'FILES'        => q[dist/if],
605     },
606
607     'IO' => {
608         'DISTRIBUTION' => 'GBARR/IO-1.25.tar.gz',
609         'FILES'        => q[dist/IO/],
610         'EXCLUDED'     => ['t/test.pl'],
611     },
612
613     'IO-Compress' => {
614         'DISTRIBUTION' => 'PMQS/IO-Compress-2.069.tar.gz',
615         'FILES'        => q[cpan/IO-Compress],
616         'EXCLUDED'     => [
617             qr{^examples/},
618             qr{^t/Test/},
619             't/010examples-bzip2.t',
620             't/010examples-zlib.t',
621             't/cz-05examples.t',
622         ],
623     },
624
625     'IO::Socket::IP' => {
626         'DISTRIBUTION' => 'PEVANS/IO-Socket-IP-0.37.tar.gz',
627         'FILES'        => q[cpan/IO-Socket-IP],
628         'EXCLUDED'     => [
629             qr{^examples/},
630         ],
631     },
632
633     'IO::Zlib' => {
634         'DISTRIBUTION' => 'TOMHUGHES/IO-Zlib-1.10.tar.gz',
635         'FILES'        => q[cpan/IO-Zlib],
636     },
637
638     'IPC::Cmd' => {
639         'DISTRIBUTION' => 'BINGOS/IPC-Cmd-0.94.tar.gz',
640         'FILES'        => q[cpan/IPC-Cmd],
641     },
642
643     'IPC::SysV' => {
644         'DISTRIBUTION' => 'MHX/IPC-SysV-2.07.tar.gz',
645         'FILES'        => q[cpan/IPC-SysV],
646         'EXCLUDED'     => [
647             qw( const-c.inc
648                 const-xs.inc
649                 ),
650         ],
651     },
652
653     'JSON::PP' => {
654         'DISTRIBUTION' => 'MAKAMAKA/JSON-PP-2.27300.tar.gz',
655         'FILES'        => q[cpan/JSON-PP],
656     },
657
658     'lib' => {
659         'DISTRIBUTION' => 'SMUELLER/lib-0.63.tar.gz',
660         'FILES'        => q[dist/lib/],
661         'EXCLUDED'     => [
662             qw( forPAUSE/lib.pm
663                 t/00pod.t
664                 ),
665         ],
666     },
667
668     'libnet' => {
669         'DISTRIBUTION' => 'SHAY/libnet-3.08.tar.gz',
670         'FILES'        => q[cpan/libnet],
671         'EXCLUDED'     => [
672             qw( Configure
673                 t/changes.t
674                 t/critic.t
675                 t/pod.t
676                 t/pod_coverage.t
677                 ),
678             qr(^demos/),
679             qr(^t/external/),
680         ],
681     },
682
683     'Locale-Codes' => {
684         'DISTRIBUTION' => 'SBECK/Locale-Codes-3.38.tar.gz',
685         'FILES'        => q[cpan/Locale-Codes],
686         'EXCLUDED'     => [
687             qw( README.first
688                 t/pod_coverage.ign
689                 t/pod_coverage.t
690                 t/pod.t),
691             qr{^t/runtests},
692             qr{^t/runtests\.bat},
693             qr{^internal/},
694             qr{^examples/},
695         ],
696     },
697
698     'Locale::Maketext' => {
699         'DISTRIBUTION' => 'TODDR/Locale-Maketext-1.26.tar.gz',
700         'FILES'        => q[dist/Locale-Maketext],
701         'EXCLUDED'     => [
702             qw(
703                 perlcriticrc
704                 t/00_load.t
705                 t/pod.t
706                 ),
707         ],
708     },
709
710     'Locale::Maketext::Simple' => {
711         'DISTRIBUTION' => 'JESSE/Locale-Maketext-Simple-0.21.tar.gz',
712         'FILES'        => q[cpan/Locale-Maketext-Simple],
713     },
714
715     'Math::BigInt' => {
716         'DISTRIBUTION' => 'PJACKLAM/Math-BigInt-1.999715.tar.gz',
717         'FILES'        => q[cpan/Math-BigInt],
718         'EXCLUDED'     => [
719             qr{^inc/},
720             qr{^examples/},
721             qr{^t/author-},
722             qw( t/00sig.t
723                 t/01load.t
724                 t/02pod.t
725                 t/03podcov.t
726                 ),
727         ],
728     },
729
730     'Math::BigInt::FastCalc' => {
731         'DISTRIBUTION' => 'PJACKLAM/Math-BigInt-FastCalc-0.40.tar.gz',
732         'FILES'        => q[cpan/Math-BigInt-FastCalc],
733         'EXCLUDED'     => [
734             qr{^inc/},
735             qw( t/00sig.t
736                 t/01load.t
737                 t/02pod.t
738                 t/03podcov.t
739                 ),
740
741             # instead we use the versions of these test
742             # files that come with Math::BigInt:
743             qw( t/bigfltpm.inc
744                 t/bigfltpm.t
745                 t/bigintpm.inc
746                 t/bigintpm.t
747                 t/mbimbf.inc
748                 t/mbimbf.t
749                 ),
750         ],
751     },
752
753     'Math::BigRat' => {
754         'DISTRIBUTION' => 'PJACKLAM/Math-BigRat-0.260802.tar.gz',
755         'FILES'        => q[cpan/Math-BigRat],
756         'EXCLUDED'     => [
757             qr{^inc/},
758             qw( t/00sig.t
759                 t/01load.t
760                 t/02pod.t
761                 t/03podcov.t
762                 t/blog-mbr.t
763                 ),
764         ],
765         'CUSTOMIZED'   => [
766             qw( lib/Math/BigRat.pm
767                 ),
768         ],
769     },
770
771     'Math::Complex' => {
772         'DISTRIBUTION' => 'ZEFRAM/Math-Complex-1.59.tar.gz',
773         'FILES'        => q[cpan/Math-Complex],
774         'EXCLUDED'     => [
775             qw( t/pod.t
776                 t/pod-coverage.t
777                 ),
778         ],
779     },
780
781     'Memoize' => {
782         'DISTRIBUTION' => 'MJD/Memoize-1.03.tgz',
783         'FILES'        => q[cpan/Memoize],
784         'EXCLUDED'     => ['article.html'],
785     },
786
787     'MIME::Base64' => {
788         'DISTRIBUTION' => 'GAAS/MIME-Base64-3.15.tar.gz',
789         'FILES'        => q[cpan/MIME-Base64],
790         'EXCLUDED'     => ['t/bad-sv.t'],
791     },
792
793     'Module::CoreList' => {
794         'DISTRIBUTION' => 'BINGOS/Module-CoreList-5.20160520.tar.gz',
795         'FILES'        => q[dist/Module-CoreList],
796     },
797
798     'Module::Load' => {
799         'DISTRIBUTION' => 'BINGOS/Module-Load-0.32.tar.gz',
800         'FILES'        => q[cpan/Module-Load],
801     },
802
803     'Module::Load::Conditional' => {
804         'DISTRIBUTION' => 'BINGOS/Module-Load-Conditional-0.64.tar.gz',
805         'FILES'        => q[cpan/Module-Load-Conditional],
806     },
807
808     'Module::Loaded' => {
809         'DISTRIBUTION' => 'BINGOS/Module-Loaded-0.08.tar.gz',
810         'FILES'        => q[cpan/Module-Loaded],
811     },
812
813     'Module::Metadata' => {
814         'DISTRIBUTION' => 'ETHER/Module-Metadata-1.000032-TRIAL.tar.gz',
815         'FILES'        => q[cpan/Module-Metadata],
816         'EXCLUDED'     => [
817             qw(t/00-report-prereqs.t),
818             qw(t/00-report-prereqs.dd),
819             qr{weaver.ini},
820             qr{^xt},
821         ],
822     },
823
824     'Net::Ping' => {
825         'DISTRIBUTION' => 'SMPETERS/Net-Ping-2.41.tar.gz',
826         'FILES'        => q[dist/Net-Ping],
827     },
828
829     'NEXT' => {
830         'DISTRIBUTION' => 'FLORA/NEXT-0.65.tar.gz',
831         'FILES'        => q[cpan/NEXT],
832         'EXCLUDED'     => [qr{^demo/}],
833     },
834
835     'Params::Check' => {
836         'DISTRIBUTION' => 'BINGOS/Params-Check-0.38.tar.gz',
837         'FILES'        => q[cpan/Params-Check],
838     },
839
840     'parent' => {
841         'DISTRIBUTION' => 'CORION/parent-0.234.tar.gz',
842         'FILES'        => q[cpan/parent],
843     },
844
845     'Parse::CPAN::Meta' => {
846         'DISTRIBUTION' => 'DAGOLDEN/Parse-CPAN-Meta-1.4417.tar.gz',
847         'FILES'        => q[cpan/Parse-CPAN-Meta],
848         'EXCLUDED'     => [
849             qw[t/00-report-prereqs.dd],
850             qw[t/00-report-prereqs.t],
851             qr{^xt},
852         ],
853     },
854
855     'PathTools' => {
856         'DISTRIBUTION' => 'RJBS/PathTools-3.62.tar.gz',
857         'FILES'        => q[dist/PathTools],
858         'EXCLUDED'     => [
859             qr{^t/lib/Test/},
860             qw( t/rel2abs_vs_symlink.t),
861         ],
862     },
863
864     'Perl::OSType' => {
865         'DISTRIBUTION' => 'DAGOLDEN/Perl-OSType-1.009.tar.gz',
866         'FILES'        => q[cpan/Perl-OSType],
867         'EXCLUDED'     => [qw(tidyall.ini), qr/^xt/, qr{^t/00-}],
868     },
869
870     'perlfaq' => {
871         'DISTRIBUTION' => 'LLAP/perlfaq-5.021011.tar.gz',
872         'FILES'        => q[cpan/perlfaq],
873         'EXCLUDED'     => [
874             qw( inc/CreateQuestionList.pm
875                 inc/perlfaq.tt
876                 t/00-compile.t),
877             qr{^xt/},
878         ],
879     },
880
881     'PerlIO::via::QuotedPrint' => {
882         'DISTRIBUTION' => 'SHAY/PerlIO-via-QuotedPrint-0.08.tar.gz',
883         'FILES'        => q[cpan/PerlIO-via-QuotedPrint],
884     },
885
886     'Pod::Checker' => {
887         'DISTRIBUTION' => 'MAREKR/Pod-Checker-1.72.tar.gz',
888         'FILES'        => q[cpan/Pod-Checker],
889     },
890
891     'Pod::Escapes' => {
892         'DISTRIBUTION' => 'NEILB/Pod-Escapes-1.07.tar.gz',
893         'FILES'        => q[cpan/Pod-Escapes],
894     },
895
896     'Pod::Parser' => {
897         'DISTRIBUTION' => 'MAREKR/Pod-Parser-1.63.tar.gz',
898         'FILES'        => q[cpan/Pod-Parser],
899     },
900
901     'Pod::Perldoc' => {
902         'DISTRIBUTION' => 'MALLEN/Pod-Perldoc-3.25.tar.gz',
903         'FILES'        => q[cpan/Pod-Perldoc],
904
905         # Note that we use the CPAN-provided Makefile.PL, since it
906         # contains special handling of the installation of perldoc.pod
907
908         # In blead, the perldoc executable is generated by perldoc.PL
909         # instead
910         # XXX We can and should fix this, but clean up the DRY-failure in utils
911         # first
912         'EXCLUDED' => ['perldoc'],
913
914         # https://rt.cpan.org/Ticket/Display.html?id=106798
915         # https://rt.cpan.org/Ticket/Display.html?id=110368
916         'CUSTOMIZED'   => [ qw[ lib/Pod/Perldoc.pm ] ],
917     },
918
919     'Pod::Simple' => {
920         'DISTRIBUTION' => 'MARCGREEN/Pod-Simple-3.32.tar.gz',
921         'FILES'        => q[cpan/Pod-Simple],
922     },
923
924     'Pod::Usage' => {
925         'DISTRIBUTION' => 'MAREKR/Pod-Usage-1.68.tar.gz',
926         'FILES'        => q[cpan/Pod-Usage],
927     },
928
929     'podlators' => {
930         'DISTRIBUTION' => 'RRA/podlators-4.07.tar.gz',
931         'FILES'        => q[cpan/podlators pod/perlpodstyle.pod],
932
933         'MAP' => {
934             ''                 => 'cpan/podlators/',
935             # this file lives outside the cpan/ directory
936             'pod/perlpodstyle' => 'pod/perlpodstyle.pod',
937         },
938     },
939
940     'Safe' => {
941         'DISTRIBUTION' => 'RGARCIA/Safe-2.35.tar.gz',
942         'FILES'        => q[dist/Safe],
943     },
944
945     'Scalar-List-Utils' => {
946         'DISTRIBUTION' => 'PEVANS/Scalar-List-Utils-1.45.tar.gz',
947         'FILES'        => q[cpan/Scalar-List-Utils],
948         # Waiting to be merged upstream
949         # https://github.com/Scalar-List-Utils/Scalar-List-Utils/pull/42
950         'CUSTOMIZED'   => [
951             qw( ListUtil.xs
952                 lib/List/Util.pm
953                 lib/List/Util/XS.pm
954                 lib/Scalar/Util.pm
955                 lib/Sub/Util.pm
956                 )
957         ],
958     },
959
960     'Search::Dict' => {
961         'DISTRIBUTION' => 'DAGOLDEN/Search-Dict-1.07.tar.gz',
962         'FILES'        => q[dist/Search-Dict],
963     },
964
965     'SelfLoader' => {
966         'DISTRIBUTION' => 'SMUELLER/SelfLoader-1.20.tar.gz',
967         'FILES'        => q[dist/SelfLoader],
968         'EXCLUDED'     => ['t/00pod.t'],
969     },
970
971     'Socket' => {
972         'DISTRIBUTION' => 'PEVANS/Socket-2.020.tar.gz',
973         'FILES'        => q[cpan/Socket],
974
975         # https://rt.cpan.org/Ticket/Display.html?id=106797
976         # https://rt.cpan.org/Ticket/Display.html?id=107058
977         # https://rt.cpan.org/Ticket/Display.html?id=111707
978         'CUSTOMIZED'   => [ qw[ Socket.pm Socket.xs ] ],
979     },
980
981     'Storable' => {
982         'DISTRIBUTION' => 'AMS/Storable-2.51.tar.gz',
983         'FILES'        => q[dist/Storable],
984         'EXCLUDED'     => [
985             qr{^t/compat/},
986         ],
987     },
988
989     'Sys::Syslog' => {
990         'DISTRIBUTION' => 'SAPER/Sys-Syslog-0.34.tar.gz',
991         'FILES'        => q[cpan/Sys-Syslog],
992         'EXCLUDED'     => [
993             qr{^eg/},
994             qw( README.win32
995                 t/data-validation.t
996                 t/distchk.t
997                 t/pod.t
998                 t/podcover.t
999                 t/podspell.t
1000                 t/portfs.t
1001                 win32/PerlLog.RES
1002                 ),
1003         ],
1004     },
1005
1006     'Term::ANSIColor' => {
1007         'DISTRIBUTION' => 'RRA/Term-ANSIColor-4.05.tar.gz',
1008         'FILES'        => q[cpan/Term-ANSIColor],
1009         'EXCLUDED'     => [
1010             qr{^examples/},
1011             qr{^t/data/},
1012             qr{^t/docs/},
1013             qr{^t/style/},
1014             qw( t/module/aliases-env.t ),
1015         ],
1016     },
1017
1018     'Term::Cap' => {
1019         'DISTRIBUTION' => 'JSTOWE/Term-Cap-1.17.tar.gz',
1020         'FILES'        => q[cpan/Term-Cap],
1021     },
1022
1023     'Term::Complete' => {
1024         'DISTRIBUTION' => 'FLORA/Term-Complete-1.402.tar.gz',
1025         'FILES'        => q[dist/Term-Complete],
1026         'EXCLUDED'     => [qr{^t/release-.*\.t}],
1027     },
1028
1029     'Term::ReadLine' => {
1030         'DISTRIBUTION' => 'FLORA/Term-ReadLine-1.14.tar.gz',
1031         'FILES'        => q[dist/Term-ReadLine],
1032         'EXCLUDED'     => [qr{^t/release-.*\.t}],
1033     },
1034
1035     'Test' => {
1036         'DISTRIBUTION' => 'JESSE/Test-1.26.tar.gz',
1037         'FILES'        => q[dist/Test],
1038     },
1039
1040     'Test::Harness' => {
1041         'DISTRIBUTION' => 'LEONT/Test-Harness-3.36.tar.gz',
1042         'FILES'        => q[cpan/Test-Harness],
1043         'EXCLUDED'     => [
1044             qr{^examples/},
1045             qr{^xt/},
1046             qw( Changes-2.64
1047                 MANIFEST.CUMMULATIVE
1048                 HACKING.pod
1049                 perlcriticrc
1050                 t/000-load.t
1051                 t/lib/if.pm
1052                 ),
1053         ],
1054     },
1055
1056     'Test::Simple' => {
1057         'DISTRIBUTION' => 'EXODIST/Test-Simple-1.302026.tar.gz',
1058         'FILES'        => q[cpan/Test-Simple],
1059         'EXCLUDED'     => [
1060             qr{^t/xt},
1061             qr{^xt},
1062             qw( .perlcriticrc
1063                 .perltidyrc
1064                 perltidyrc
1065                 dist.ini
1066                 examples/indent.pl
1067                 examples/subtest.t
1068                 examples/tools.t
1069                 examples/tools.t
1070                 t/00compile.t
1071                 t/xxx-changes_updated.t
1072                 t/00-report.t
1073                 t/zzz-check-breaks.t
1074                 ),
1075         ],
1076     },
1077
1078     'Text::Abbrev' => {
1079         'DISTRIBUTION' => 'FLORA/Text-Abbrev-1.02.tar.gz',
1080         'FILES'        => q[dist/Text-Abbrev],
1081         'EXCLUDED'     => [qr{^t/release-.*\.t}],
1082     },
1083
1084     'Text::Balanced' => {
1085         'DISTRIBUTION' => 'SHAY/Text-Balanced-2.03.tar.gz',
1086         'FILES'        => q[cpan/Text-Balanced],
1087         'EXCLUDED'     => [
1088             qw( t/97_meta.t
1089                 t/98_pod.t
1090                 t/99_pmv.t
1091                 ),
1092         ],
1093     },
1094
1095     'Text::ParseWords' => {
1096         'DISTRIBUTION' => 'CHORNY/Text-ParseWords-3.30.tar.gz',
1097         'FILES'        => q[cpan/Text-ParseWords],
1098     },
1099
1100     'Text-Tabs+Wrap' => {
1101         'DISTRIBUTION' => 'MUIR/modules/Text-Tabs+Wrap-2013.0523.tar.gz',
1102         'FILES'        => q[cpan/Text-Tabs],
1103         'EXCLUDED'   => [
1104             qr/^lib\.old/,
1105             't/dnsparks.t',    # see af6492bf9e
1106         ],
1107         'MAP'          => {
1108             ''                        => 'cpan/Text-Tabs/',
1109             'lib.modern/Text/Tabs.pm' => 'cpan/Text-Tabs/lib/Text/Tabs.pm',
1110             'lib.modern/Text/Wrap.pm' => 'cpan/Text-Tabs/lib/Text/Wrap.pm',
1111         },
1112     },
1113
1114     # Jerry Hedden does take patches that are applied to blead first, even
1115     # though that can be hard to discern from the Git history; so it's
1116     # correct for this (and Thread::Semaphore, threads, and threads::shared)
1117     # to be under dist/ rather than cpan/
1118     'Thread::Queue' => {
1119         'DISTRIBUTION' => 'JDHEDDEN/Thread-Queue-3.11.tar.gz',
1120         'FILES'        => q[dist/Thread-Queue],
1121         'EXCLUDED'     => [
1122             qr{^examples/},
1123             qw( t/00_load.t
1124                 t/99_pod.t
1125                 t/test.pl
1126                 ),
1127         ],
1128     },
1129
1130     'Thread::Semaphore' => {
1131         'DISTRIBUTION' => 'JDHEDDEN/Thread-Semaphore-2.12.tar.gz',
1132         'FILES'        => q[dist/Thread-Semaphore],
1133         'EXCLUDED'     => [
1134             qw( examples/semaphore.pl
1135                 t/00_load.t
1136                 t/99_pod.t
1137                 t/test.pl
1138                 ),
1139         ],
1140     },
1141
1142     'threads' => {
1143         'DISTRIBUTION' => 'JDHEDDEN/threads-2.09.tar.gz',
1144         'FILES'        => q[dist/threads],
1145         'EXCLUDED'     => [
1146             qr{^examples/},
1147             qw( t/pod.t
1148                 t/test.pl
1149                 threads.h
1150                 ),
1151         ],
1152     },
1153
1154     'threads::shared' => {
1155         'DISTRIBUTION' => 'JDHEDDEN/threads-shared-1.52.tar.gz',
1156         'FILES'        => q[dist/threads-shared],
1157         'EXCLUDED'     => [
1158             qw( examples/class.pl
1159                 shared.h
1160                 t/pod.t
1161                 t/test.pl
1162                 ),
1163         ],
1164     },
1165
1166     'Tie::File' => {
1167         'DISTRIBUTION' => 'TODDR/Tie-File-1.00.tar.gz',
1168         'FILES'        => q[dist/Tie-File],
1169     },
1170
1171     'Tie::RefHash' => {
1172         'DISTRIBUTION' => 'FLORA/Tie-RefHash-1.39.tar.gz',
1173         'FILES'        => q[cpan/Tie-RefHash],
1174     },
1175
1176     'Time::HiRes' => {
1177         'DISTRIBUTION' => 'JHI/Time-HiRes-1.9733.tar.gz',
1178         'FILES'        => q[dist/Time-HiRes],
1179     },
1180
1181     'Time::Local' => {
1182         'DISTRIBUTION' => 'DROLSKY/Time-Local-1.2300.tar.gz',
1183         'FILES'        => q[cpan/Time-Local],
1184         'EXCLUDED'     => [
1185             qr{^t/release-.*\.t},
1186         ],
1187     },
1188
1189     'Time::Piece' => {
1190         'DISTRIBUTION' => 'ESAYM/Time-Piece-1.31.tar.gz',
1191         'FILES'        => q[cpan/Time-Piece],
1192     },
1193
1194     'Unicode::Collate' => {
1195         'DISTRIBUTION' => 'SADAHIRO/Unicode-Collate-1.14.tar.gz',
1196         'FILES'        => q[cpan/Unicode-Collate],
1197         'EXCLUDED'     => [
1198             qr{N$},
1199             qr{^data/},
1200             qr{^gendata/},
1201             qw( disableXS
1202                 enableXS
1203                 mklocale
1204                 ),
1205         ],
1206     },
1207
1208     'Unicode::Normalize' => {
1209         'DISTRIBUTION' => 'KHW/Unicode-Normalize-1.25.tar.gz',
1210         'FILES'        => q[cpan/Unicode-Normalize],
1211         'EXCLUDED'     => [
1212             qw( MANIFEST.N
1213                 Normalize.pmN
1214                 disableXS
1215                 enableXS
1216                 ),
1217         ],
1218     },
1219
1220     'version' => {
1221         'DISTRIBUTION' => 'JPEACOCK/version-0.9916.tar.gz',
1222         'FILES'        => q[cpan/version vutil.c vutil.h vxs.inc],
1223         'EXCLUDED' => [
1224             qr{^vutil/lib/},
1225             'vutil/Makefile.PL',
1226             'vutil/ppport.h',
1227             'vutil/vxs.xs',
1228             't/00impl-pp.t',
1229             't/survey_locales',
1230             'lib/version/vpp.pm',
1231         ],
1232
1233         # When adding the CPAN-distributed files for version.pm, it is necessary
1234         # to delete an entire block out of lib/version.pm, since that code is
1235         # only necessary with the CPAN release.
1236         'CUSTOMIZED'   => [
1237             qw( lib/version.pm
1238                 ),
1239         ],
1240
1241         'MAP' => {
1242             'vperl/'         => 'cpan/version/lib/version/',
1243             'vutil/'         => '',
1244             ''               => 'cpan/version/',
1245         },
1246     },
1247
1248     'warnings' => {
1249         'FILES'      => q[
1250                  lib/warnings
1251                  lib/warnings.{pm,t}
1252                  regen/warnings.pl
1253                  t/lib/warnings
1254         ],
1255     },
1256
1257     'Win32' => {
1258         'DISTRIBUTION' => "JDB/Win32-0.52.tar.gz",
1259         'FILES'        => q[cpan/Win32],
1260     },
1261
1262     'Win32API::File' => {
1263         'DISTRIBUTION' => 'CHORNY/Win32API-File-0.1203.tar.gz',
1264         'FILES'        => q[cpan/Win32API-File],
1265         'EXCLUDED'     => [
1266             qr{^ex/},
1267         ],
1268     },
1269
1270     'XSLoader' => {
1271         'DISTRIBUTION' => 'SAPER/XSLoader-0.16.tar.gz',
1272         'FILES'        => q[dist/XSLoader],
1273         'EXCLUDED'     => [
1274             qr{^eg/},
1275             qw( t/00-load.t
1276                 t/01-api.t
1277                 t/distchk.t
1278                 t/pod.t
1279                 t/podcover.t
1280                 t/portfs.t
1281                 ),
1282             'XSLoader.pm',    # we use XSLoader_pm.PL
1283         ],
1284     },
1285
1286     # this pseudo-module represents all the files under ext/ and lib/
1287     # that aren't otherwise claimed. This means that the following two
1288     # commands will check that every file under ext/ and lib/ is
1289     # accounted for, and that there are no duplicates:
1290     #
1291     #    perl Porting/Maintainers --checkmani lib ext
1292     #    perl Porting/Maintainers --checkmani
1293
1294     '_PERLLIB' => {
1295         'FILES'    => q[
1296                 ext/Amiga-ARexx/
1297                 ext/Amiga-Exec/
1298                 ext/B/
1299                 ext/Devel-Peek/
1300                 ext/DynaLoader/
1301                 ext/Errno/
1302                 ext/ExtUtils-Miniperl/
1303                 ext/Fcntl/
1304                 ext/File-DosGlob/
1305                 ext/File-Find/
1306                 ext/File-Glob/
1307                 ext/FileCache/
1308                 ext/GDBM_File/
1309                 ext/Hash-Util-FieldHash/
1310                 ext/Hash-Util/
1311                 ext/I18N-Langinfo/
1312                 ext/IPC-Open3/
1313                 ext/NDBM_File/
1314                 ext/ODBM_File/
1315                 ext/Opcode/
1316                 ext/POSIX/
1317                 ext/PerlIO-encoding/
1318                 ext/PerlIO-mmap/
1319                 ext/PerlIO-scalar/
1320                 ext/PerlIO-via/
1321                 ext/Pod-Functions/
1322                 ext/Pod-Html/
1323                 ext/SDBM_File/
1324                 ext/Sys-Hostname/
1325                 ext/Tie-Hash-NamedCapture/
1326                 ext/Tie-Memoize/
1327                 ext/VMS-DCLsym/
1328                 ext/VMS-Filespec/
1329                 ext/VMS-Stdio/
1330                 ext/Win32CORE/
1331                 ext/XS-APItest/
1332                 ext/XS-Typemap/
1333                 ext/arybase/
1334                 ext/attributes/
1335                 ext/mro/
1336                 ext/re/
1337                 lib/AnyDBM_File.{pm,t}
1338                 lib/Benchmark.{pm,t}
1339                 lib/B/Deparse{.pm,.t,-*.t}
1340                 lib/B/Op_private.pm
1341                 lib/CORE.pod
1342                 lib/Class/Struct.{pm,t}
1343                 lib/Config.t
1344                 lib/Config/Extensions.{pm,t}
1345                 lib/DB.{pm,t}
1346                 lib/DBM_Filter.pm
1347                 lib/DBM_Filter/
1348                 lib/DirHandle.{pm,t}
1349                 lib/English.{pm,t}
1350                 lib/ExtUtils/Embed.pm
1351                 lib/ExtUtils/XSSymSet.pm
1352                 lib/ExtUtils/t/Embed.t
1353                 lib/ExtUtils/typemap
1354                 lib/File/Basename.{pm,t}
1355                 lib/File/Compare.{pm,t}
1356                 lib/File/Copy.{pm,t}
1357                 lib/File/stat{.pm,.t,-7896.t}
1358                 lib/FileHandle.{pm,t}
1359                 lib/FindBin.{pm,t}
1360                 lib/Getopt/Std.{pm,t}
1361                 lib/Internals.t
1362                 lib/meta_notation.{pm,t}
1363                 lib/Net/hostent.{pm,t}
1364                 lib/Net/netent.{pm,t}
1365                 lib/Net/protoent.{pm,t}
1366                 lib/Net/servent.{pm,t}
1367                 lib/PerlIO.pm
1368                 lib/Pod/t/InputObjects.t
1369                 lib/Pod/t/Select.t
1370                 lib/Pod/t/Usage.t
1371                 lib/Pod/t/utils.t
1372                 lib/SelectSaver.{pm,t}
1373                 lib/Symbol.{pm,t}
1374                 lib/Thread.{pm,t}
1375                 lib/Tie/Array.pm
1376                 lib/Tie/Array/
1377                 lib/Tie/ExtraHash.t
1378                 lib/Tie/Handle.pm
1379                 lib/Tie/Handle/
1380                 lib/Tie/Hash.{pm,t}
1381                 lib/Tie/Scalar.{pm,t}
1382                 lib/Tie/StdHandle.pm
1383                 lib/Tie/SubstrHash.{pm,t}
1384                 lib/Time/gmtime.{pm,t}
1385                 lib/Time/localtime.{pm,t}
1386                 lib/Time/tm.pm
1387                 lib/UNIVERSAL.pm
1388                 lib/Unicode/README
1389                 lib/Unicode/UCD.{pm,t}
1390                 lib/User/grent.{pm,t}
1391                 lib/User/pwent.{pm,t}
1392                 lib/_charnames.pm
1393                 lib/blib.{pm,t}
1394                 lib/bytes.{pm,t}
1395                 lib/bytes_heavy.pl
1396                 lib/charnames.{pm,t}
1397                 lib/dbm_filter_util.pl
1398                 lib/deprecate.pm
1399                 lib/diagnostics.{pm,t}
1400                 lib/dumpvar.{pl,t}
1401                 lib/feature.{pm,t}
1402                 lib/feature/
1403                 lib/filetest.{pm,t}
1404                 lib/h2ph.t
1405                 lib/h2xs.t
1406                 lib/integer.{pm,t}
1407                 lib/less.{pm,t}
1408                 lib/locale.{pm,t}
1409                 lib/open.{pm,t}
1410                 lib/overload/numbers.pm
1411                 lib/overloading.{pm,t}
1412                 lib/overload{.pm,.t,64.t}
1413                 lib/perl5db.{pl,t}
1414                 lib/perl5db/
1415                 lib/perlbug.t
1416                 lib/sigtrap.{pm,t}
1417                 lib/sort.{pm,t}
1418                 lib/strict.{pm,t}
1419                 lib/subs.{pm,t}
1420                 lib/unicore/
1421                 lib/utf8.{pm,t}
1422                 lib/utf8_heavy.pl
1423                 lib/vars{.pm,.t,_carp.t}
1424                 lib/vmsish.{pm,t}
1425                 ],
1426     },
1427 );
1428
1429 # legacy CPAN flag
1430 for ( values %Modules ) {
1431     $_->{CPAN} = !!$_->{DISTRIBUTION};
1432 }
1433
1434 # legacy UPSTREAM flag
1435 for ( keys %Modules ) {
1436     # Keep any existing UPSTREAM flag so that "overrides" can be applied
1437     next if exists $Modules{$_}{UPSTREAM};
1438
1439     if ($_ eq '_PERLLIB' or $Modules{$_}{FILES} =~ m{^\s*(?:dist|ext|lib)/}) {
1440         $Modules{$_}{UPSTREAM} = 'blead';
1441     }
1442     elsif ($Modules{$_}{FILES} =~ m{^\s*cpan/}) {
1443         $Modules{$_}{UPSTREAM} = 'cpan';
1444     }
1445     else {
1446         warn "Unexpected location of FILES for module $_: $Modules{$_}{FILES}";
1447     }
1448 }
1449
1450 # legacy MAINTAINER field
1451 for ( keys %Modules ) {
1452     # Keep any existing MAINTAINER flag so that "overrides" can be applied
1453     next if exists $Modules{$_}{MAINTAINER};
1454
1455     if ($Modules{$_}{UPSTREAM} eq 'blead') {
1456         $Modules{$_}{MAINTAINER} = 'P5P';
1457         $Maintainers{P5P} = 'perl5-porters <perl5-porters@perl.org>';
1458     }
1459     elsif (exists $Modules{$_}{DISTRIBUTION}) {
1460         (my $pause_id = $Modules{$_}{DISTRIBUTION}) =~ s{/.*$}{};
1461         $Modules{$_}{MAINTAINER} = $pause_id;
1462         $Maintainers{$pause_id} = "<$pause_id\@cpan.org>";
1463     }
1464     else {
1465         warn "No DISTRIBUTION for non-blead module $_";
1466     }
1467 }
1468
1469 1;