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