This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Porting/Maintainers.pl - Remove most MAINTAINER fields
[perl5.git] / Porting / Maintainers.pl
CommitLineData
1f00b0d6 1#!perl
c9fe4ea1
JH
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
97556ec3 7# and in CPAN.
b128a327 8
0cf51544
JH
9package Maintainers;
10
cdad3b53 11use utf8;
9b9b4b79
NC
12use File::Glob qw(:case);
13
4f3a742d 14%Maintainers = (
4f3a742d 15 'abigail' => 'Abigail <abigail@abigail.be>',
4f3a742d 16 'avar' => 'Ævar Arnfjörð Bjarmason <avar@cpan.org>',
4f3a742d 17 'craig' => 'Craig Berry <craigberry@mac.com>',
4f3a742d 18 'elizabeth' => 'Elizabeth Mattijsen <liz@dijkmat.nl>',
4f3a742d 19 'jand' => 'Jan Dubois <jand@activestate.com>',
4f3a742d 20 'laun' => 'Wolfgang Laun <Wolfgang.Laun@alcatel.at>',
4f3a742d 21 'lwall' => 'Larry Wall <lwall@cpan.org>',
4f3a742d 22 'mjd' => 'Mark-Jason Dominus <mjd@plover.com>',
4f3a742d
DR
23 'pmqs' => 'Paul Marquess <pmqs@cpan.org>',
24 'pvhp' => 'Peter Prymmer <pvhp@best.com>',
4f3a742d 25 'sartak' => 'Shawn M Moore <sartak@gmail.com>',
4f3a742d 26 'sburke' => 'Sean Burke <sburke@cpan.org>',
4f3a742d 27 'smccam' => 'Stephen McCamant <smccam@cpan.org>',
4f3a742d 28);
2c95b6e4
DM
29
30# IGNORABLE: files which, if they appear in the root of a CPAN
31# distribution, need not appear in core (i.e. core-cpan-diff won't
32# complain if it can't find them)
33
34@IGNORABLE = qw(
35 .cvsignore .dualLivedDiffConfig .gitignore
36 ANNOUNCE Announce Artistic AUTHORS BENCHMARK BUGS Build.PL
d4e90f16 37 CHANGELOG ChangeLog Changelog CHANGES Changes CONTRIBUTING COPYING Copying
01b177dd
CBW
38 cpanfile CREDITS dist.ini GOALS HISTORY INSTALL INSTALL.SKIP LICENSE
39 Makefile.PL MANIFEST MANIFEST.SKIP META.json META.yml MYMETA.json
40 MYMETA.yml NEW NOTES perlcritic.rc ppport.h README README.PATCHING
41 SIGNATURE THANKS TODO Todo VERSION WHATSNEW
2c95b6e4
DM
42);
43
e30e10b5 44# Each entry in the %Modules hash roughly represents a distribution,
97556ec3 45# except when DISTRIBUTION is set, where it *exactly* represents a single
e30e10b5
DM
46# CPAN distribution.
47
48# The keys of %Modules are human descriptions of the distributions, and
49# may not exactly match a module or distribution name. Distributions
50# which have an obvious top-level module associated with them will usually
51# have a key named for that module, e.g. 'Archive::Extract' for
52# Archive-Extract-N.NN.tar.gz; the remaining keys are likely to be based
53# on the name of the distribution, e.g. 'Locale-Codes' for
54# Locale-Codes-N.NN.tar.gz'.
d350de41
SH
55
56# MAINTAINER indicates who the current maintainer of the module is. For
57# modules with no MAINTAINER field given, this is understood to be either
58# the Perl 5 Porters if there is no DISTRIBUTION field or the UPSTREAM
59# field is set to 'blead', or else the CPAN author whose PAUSE user ID
60# forms the first part of the DISTRIBUTION value, e.g. 'BINGOS' in the
61# case of 'BINGOS/Archive-Tar-1.92.tar.gz'. (PAUSE's View Permissions
62# page may be consulted to find other authors who have owner or co-maint
63# permissions for the module in question.) The few explicitly listed
64# MAINTAINERs refer to authors whose email address is listed in the
65# %Maintainers hash above.
66
e30e10b5
DM
67# FILES is a list of filenames, glob patterns, and directory
68# names to be recursed down, which collectively generate a complete list
69# of the files associated with the distribution.
70
adc42316
S
71# UPSTREAM indicates where patches should go. undef implies
72# that this hasn't been discussed for the module at hand.
73# "blead" indicates that the copy of the module in the blead
74# sources is to be considered canonical, "cpan" means that the
0582d0ad 75# module on CPAN is to be patched first.
adc42316 76
e1466347
JC
77# BUGS is an email or url to post bug reports. For modules with
78# UPSTREAM => 'blead', use perl5-porters@perl.org. rt.cpan.org
79# appears to automatically provide a URL for CPAN modules; any value
80# given here overrides the default:
81# http://rt.cpan.org/Public/Dist/Display.html?Name=$ModuleName
82
a55d270d
DM
83# DISTRIBUTION names the tarball on CPAN which (allegedly) the files
84# included in core are derived from. Note that the file's version may not
85# necessarily match the newest version on CPAN.
86
2c95b6e4
DM
87# EXCLUDED is a list of files to be excluded from a CPAN tarball before
88# comparing the remaining contents with core. Each item can either be a
89# full pathname (eg 't/foo.t') or a pattern (e.g. qr{^t/}).
90# It defaults to the empty list.
91
d43babf1 92# CUSTOMIZED is a list of files that have been customized within the
24b68a05
DG
93# Perl core. Use this whenever patching a cpan upstream distribution
94# or whenever we expect to have a file that differs from the tarball.
95# If the file in blead matches the file in the tarball from CPAN,
96# Porting/core-cpan-diff will warn about it, as it indicates an expected
fae38280 97# customization might have been lost when updating from upstream. The
f81a37f2
SH
98# path should be relative to the distribution directory. If the upstream
99# distribution should be modified to incorporate the change then be sure
100# to raise a ticket for it on rt.cpan.org and add a comment alongside the
101# list of CUSTOMIZED files noting the ticket number.
d43babf1 102
ab87ca4d
DG
103# DEPRECATED contains the *first* version of Perl in which the module
104# was considered deprecated. It should only be present if the module is
105# actually deprecated. Such modules should use deprecated.pm to
106# issue a warning if used. E.g.:
107#
108# use if $] >= 5.011, 'deprecate';
109#
110
2c95b6e4 111# MAP is a hash that maps CPAN paths to their core equivalents.
47e01c32 112# Each key represents a string prefix, with longest prefixes checked
2c95b6e4
DM
113# first. The first match causes that prefix to be replaced with the
114# corresponding key. For example, with the following MAP:
613f422f 115# {
4f3a742d
DR
116# 'lib/' => 'lib/',
117# '' => 'lib/Foo/',
2c95b6e4
DM
118# },
119#
120# these files are mapped as shown:
121#
122# README becomes lib/Foo/README
613f422f 123# lib/Foo.pm becomes lib/Foo.pm
2c95b6e4
DM
124#
125# The default is dependent on the type of module.
126# For distributions which appear to be stored under ext/, it defaults to:
127#
128# { '' => 'ext/Foo-Bar/' }
129#
130# otherwise, it's
131#
613f422f 132# {
4f3a742d
DR
133# 'lib/' => 'lib/',
134# '' => 'lib/Foo/Bar/',
2c95b6e4
DM
135# }
136
b128a327
JH
137%Modules = (
138
4f3a742d 139 'AnyDBM_File' => {
4f3a742d
DR
140 'FILES' => q[lib/AnyDBM_File.{pm,t}],
141 'UPSTREAM' => 'blead',
142 },
143
4f3a742d 144 'Archive::Tar' => {
14f3ea66 145 'DISTRIBUTION' => 'BINGOS/Archive-Tar-1.92.tar.gz',
4f3a742d 146 'FILES' => q[cpan/Archive-Tar],
4f3a742d
DR
147 'UPSTREAM' => 'cpan',
148 'BUGS' => 'bug-archive-tar@rt.cpan.org',
149 },
150
151 'Attribute::Handlers' => {
e9742164 152 'DISTRIBUTION' => 'SMUELLER/Attribute-Handlers-0.93.tar.gz',
4f3a742d
DR
153 'FILES' => q[dist/Attribute-Handlers],
154 'UPSTREAM' => 'blead',
155 },
156
157 'attributes' => {
4f3a742d
DR
158 'FILES' => q[ext/attributes],
159 'UPSTREAM' => 'blead',
160 },
161
162 'autodie' => {
ff4ad1c0 163 'DISTRIBUTION' => 'PJF/autodie-2.22.tar.gz',
4f3a742d
DR
164 'FILES' => q[cpan/autodie],
165 'EXCLUDED' => [
273225d4 166 qr{benchmarks},
4f3a742d
DR
167 # All these tests depend upon external
168 # modules that don't exist when we're
169 # building the core. Hence, they can
170 # never run, and should not be merged.
ff4ad1c0
SH
171 qw( t/author-critic.t
172 t/boilerplate.t
4f3a742d
DR
173 t/critic.t
174 t/fork.t
175 t/kwalitee.t
176 t/lex58.t
177 t/pod-coverage.t
178 t/pod.t
273225d4
CBW
179 t/release-pod-coverage.t
180 t/release-pod-syntax.t
4f3a742d
DR
181 t/socket.t
182 t/system.t
183 )
184 ],
a1a6b6b3 185 'CUSTOMIZED' => [
dd9a180e
CB
186 # Waiting to be merged upstream: see CPAN RT#87237
187 qw( t/utf8_open.t ),
a1a6b6b3 188 ],
4f3a742d 189 'UPSTREAM' => 'cpan',
4f3a742d
DR
190 },
191
192 'AutoLoader' => {
07e2e970 193 'DISTRIBUTION' => 'SMUELLER/AutoLoader-5.73.tar.gz',
4f3a742d
DR
194 'FILES' => q[cpan/AutoLoader],
195 'EXCLUDED' => ['t/00pod.t'],
196 'UPSTREAM' => 'cpan',
197 },
198
199 'autouse' => {
adac38df 200 'DISTRIBUTION' => 'FLORA/autouse-1.07.tar.gz',
4f3a742d
DR
201 'FILES' => q[dist/autouse],
202 'EXCLUDED' => [qr{^t/release-.*\.t}],
203 'UPSTREAM' => 'blead',
204 },
205
206 'B' => {
4f3a742d
DR
207 'FILES' => q[ext/B],
208 'EXCLUDED' => [
209 qw( B/Concise.pm
210 t/concise.t
211 ),
212 ],
213 'UPSTREAM' => 'blead',
214 },
215
216 'B::Concise' => {
217 'MAINTAINER' => 'smccam',
218 'FILES' => q[ext/B/B/Concise.pm ext/B/t/concise.t],
6331a2f5 219 'UPSTREAM' => 'blead',
4f3a742d
DR
220 },
221
222 'B::Debug' => {
9d2d23d9 223 'DISTRIBUTION' => 'RURBAN/B-Debug-1.18.tar.gz',
4f3a742d
DR
224 'FILES' => q[cpan/B-Debug],
225 'EXCLUDED' => ['t/pod.t'],
226 'UPSTREAM' => 'cpan',
227 },
228
229 'B::Deparse' => {
230 'MAINTAINER' => 'smccam',
231 'FILES' => q[dist/B-Deparse],
232 'UPSTREAM' => 'blead',
233 },
234
4f3a742d 235 'base' => {
7af2899e 236 'DISTRIBUTION' => 'RGARCIA/base-2.18.tar.gz',
4f3a742d
DR
237 'FILES' => q[dist/base],
238 'UPSTREAM' => 'blead',
239 },
240
241 'Benchmark' => {
4f3a742d
DR
242 'FILES' => q[lib/Benchmark.{pm,t}],
243 'UPSTREAM' => 'blead',
244 },
245
246 'bignum' => {
168d28a2 247 'DISTRIBUTION' => 'FLORA/bignum-0.32.tar.gz',
4f3a742d
DR
248 'FILES' => q[dist/bignum],
249 'EXCLUDED' => [
250 qr{^inc/Module/},
251 qw( t/pod.t
252 t/pod_cov.t
253 ),
254 ],
255 'UPSTREAM' => 'blead',
256 },
257
258 'Carp' => {
cc24d4fc 259 'DISTRIBUTION' => 'ZEFRAM/Carp-1.32.tar.gz',
4f3a742d
DR
260 'FILES' => q[dist/Carp],
261 'UPSTREAM' => 'blead',
262 },
263
264 'CGI' => {
a2b3762a 265 'DISTRIBUTION' => 'MARKSTOS/CGI.pm-3.63.tar.gz',
4f3a742d
DR
266 'FILES' => q[cpan/CGI],
267 'EXCLUDED' => [
a506842e 268 qw( cgi_docs.html
4f3a742d
DR
269 examples/WORLD_WRITABLE/18.157.1.253.sav
270 t/gen-tests/gen-start-end-tags.pl
271 t/fast.t
272 ),
273 ],
274 'UPSTREAM' => 'cpan',
4f3a742d
DR
275 },
276
277 'Class::Struct' => {
4f3a742d
DR
278 'FILES' => q[lib/Class/Struct.{pm,t}],
279 'UPSTREAM' => 'blead',
280 },
281
282 'Compress::Raw::Bzip2' => {
ef379d05 283 'DISTRIBUTION' => 'PMQS/Compress-Raw-Bzip2-2.062.tar.gz',
4f3a742d
DR
284 'FILES' => q[cpan/Compress-Raw-Bzip2],
285 'EXCLUDED' => [
286 qr{^t/Test/},
287 'bzip2-src/bzip2-cpp.patch',
288 ],
289 'UPSTREAM' => 'cpan',
290 },
291
292 'Compress::Raw::Zlib' => {
ef379d05 293 'DISTRIBUTION' => 'PMQS/Compress-Raw-Zlib-2.062.tar.gz',
4f3a742d
DR
294
295 'FILES' => q[cpan/Compress-Raw-Zlib],
296 'EXCLUDED' => [
297 qr{^t/Test/},
298 qw( t/000prereq.t
299 t/99pod.t
300 ),
301 ],
302 'UPSTREAM' => 'cpan',
303 },
304
4b07058c 305 'Config::Perl::V' => {
89e01640 306 'DISTRIBUTION' => 'HMBRAND/Config-Perl-V-0.19.tgz',
4b07058c 307 'FILES' => q[cpan/Config-Perl-V],
1fe0c842 308 'EXCLUDED' => ['examples/show-v.pl'],
4b07058c
RS
309 'UPSTREAM' => 'cpan',
310 },
311
4f3a742d 312 'constant' => {
e2943784 313 'DISTRIBUTION' => 'SAPER/constant-1.27.tar.gz',
4f3a742d
DR
314 'FILES' => q[dist/constant],
315 'EXCLUDED' => [
316 qw( t/00-load.t
317 t/more-tests.t
318 t/pod-coverage.t
319 t/pod.t
320 eg/synopsis.pl
321 ),
322 ],
323 'UPSTREAM' => 'blead',
324 },
325
326 'CPAN' => {
bfae5bde 327 'DISTRIBUTION' => 'ANDK/CPAN-2.03-TRIAL.tar.gz',
4f3a742d
DR
328 'FILES' => q[cpan/CPAN],
329 'EXCLUDED' => [
330 qr{^distroprefs/},
331 qr{^inc/Test/},
332 qr{^t/CPAN/authors/},
333 qw( lib/CPAN/Admin.pm
6156383d 334 scripts/cpan-mirrors
bfae5bde 335 PAUSE2015.pub
4f3a742d
DR
336 SlayMakefile
337 t/00signature.t
338 t/04clean_load.t
339 t/12cpan.t
340 t/13tarzip.t
341 t/14forkbomb.t
342 t/30shell.coverage
343 t/30shell.t
344 t/31sessions.t
345 t/41distribution.t
346 t/42distroprefs.t
6156383d 347 t/44cpanmeta.t
4f3a742d
DR
348 t/43distroprefspref.t
349 t/50pod.t
350 t/51pod.t
351 t/52podcover.t
352 t/60credentials.t
353 t/70_critic.t
bfae5bde 354 t/71_minimumversion.t
4f3a742d
DR
355 t/CPAN/CpanTestDummies-1.55.pm
356 t/CPAN/TestConfig.pm
357 t/CPAN/TestMirroredBy
358 t/CPAN/TestPatch.txt
359 t/CPAN/modules/02packages.details.txt
360 t/CPAN/modules/03modlist.data
6156383d 361 t/data/META-dynamic.json
4f3a742d 362 t/data/META-dynamic.yml
6156383d 363 t/data/META-static.json
4f3a742d 364 t/data/META-static.yml
6156383d
SH
365 t/data/MYMETA.json
366 t/data/MYMETA.yml
4f3a742d
DR
367 t/local_utils.pm
368 t/perlcriticrc
369 t/yaml_code.yml
370 ),
371 ],
372 'UPSTREAM' => 'cpan',
373 },
374
278337cd
CBW
375 # Note: When updating CPAN-Meta the META.* files will need to be regenerated
376 # perl -Icpan/CPAN-Meta/lib Porting/makemeta
4f3a742d 377 'CPAN::Meta' => {
14d9af8f 378 'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-2.132661.tar.gz',
4f3a742d
DR
379 'FILES' => q[cpan/CPAN-Meta],
380 'EXCLUDED' => [
ecaff076 381 qw(t/00-compile.t),
7f6e6ca2 382 qw[t/00-report-prereqs.t],
53bb269a 383 qw(cpanfile),
4f3a742d
DR
384 qr{^xt},
385 qr{^history},
386 ],
387 'UPSTREAM' => 'cpan',
388 },
389
b6ae0ea7 390 'CPAN::Meta::Requirements' => {
56284aa9 391 'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-Requirements-2.125.tar.gz',
b6ae0ea7
CBW
392 'FILES' => q[cpan/CPAN-Meta-Requirements],
393 'EXCLUDED' => [
394 qw(t/00-compile.t),
c4814040 395 qw(t/00-report-prereqs.t),
b6ae0ea7
CBW
396 qr{^xt},
397 qr{^history},
398 ],
399 'UPSTREAM' => 'cpan',
400 },
401
4f3a742d 402 'CPAN::Meta::YAML' => {
9c5cc6d5 403 'DISTRIBUTION' => 'DAGOLDEN/CPAN-Meta-YAML-0.010.tar.gz',
4f3a742d
DR
404 'FILES' => q[cpan/CPAN-Meta-YAML],
405 'EXCLUDED' => [
b3100a1d 406 't/00-compile.t',
4f3a742d
DR
407 't/04_scalar.t', # requires YAML.pm
408 qr{^xt},
409 ],
410 'UPSTREAM' => 'cpan',
411 },
412
413 'Data::Dumper' => {
0fcd5a59 414 'DISTRIBUTION' => 'SMUELLER/Data-Dumper-2.145.tar.gz',
4f3a742d
DR
415 'FILES' => q[dist/Data-Dumper],
416 'UPSTREAM' => 'blead',
417 },
418
419 'DB_File' => {
10af739e 420 'DISTRIBUTION' => 'PMQS/DB_File-1.829.tar.gz',
4f3a742d
DR
421 'FILES' => q[cpan/DB_File],
422 'EXCLUDED' => [
423 qr{^patches/},
424 qw( t/pod.t
425 fallback.h
426 fallback.xs
427 ),
428 ],
b34385a6 429 'UPSTREAM' => 'cpan',
4f3a742d
DR
430 },
431
432 'DBM_Filter' => {
4f3a742d
DR
433 'FILES' => q[lib/DBM_Filter.pm lib/DBM_Filter],
434 'UPSTREAM' => 'blead',
435 },
436
4f3a742d 437 'Devel::Peek' => {
4f3a742d
DR
438 'FILES' => q[ext/Devel-Peek],
439 'UPSTREAM' => 'blead',
440 },
441
442 'Devel::PPPort' => {
c74cf62f 443 'DISTRIBUTION' => 'MHX/Devel-PPPort-3.21.tar.gz',
4f3a742d 444 'FILES' => q[cpan/Devel-PPPort],
f81a37f2 445 'EXCLUDED' => ['PPPort.pm'], # we use PPPort_pm.PL instead
c74cf62f 446 'UPSTREAM' => undef, # rjbs has asked mhx to have blead be upstream
4f3a742d
DR
447 },
448
97b1d6e6 449 'Devel::SelfStubber' => {
97b1d6e6
SH
450 'DISTRIBUTION' => 'FLORA/Devel-SelfStubber-1.05.tar.gz',
451 'FILES' => q[dist/Devel-SelfStubber],
452 'EXCLUDED' => [qr{^t/release-.*\.t}],
453 'UPSTREAM' => 'blead',
454 },
455
4f3a742d 456 'diagnostics' => {
4f3a742d
DR
457 'FILES' => q[lib/diagnostics.{pm,t}],
458 'UPSTREAM' => 'blead',
459 },
460
461 'Digest' => {
4f3a742d
DR
462 'DISTRIBUTION' => 'GAAS/Digest-1.17.tar.gz',
463 'FILES' => q[cpan/Digest],
464 'EXCLUDED' => ['digest-bench'],
465 'UPSTREAM' => "cpan",
466 },
467
468 'Digest::MD5' => {
aeb2a38c 469 'DISTRIBUTION' => 'GAAS/Digest-MD5-2.53.tar.gz',
4f3a742d
DR
470 'FILES' => q[cpan/Digest-MD5],
471 'EXCLUDED' => ['rfc1321.txt'],
472 'UPSTREAM' => "cpan",
473 },
474
475 'Digest::SHA' => {
96d38a9d 476 'DISTRIBUTION' => 'MSHELOR/Digest-SHA-5.85.tar.gz',
4f3a742d
DR
477 'FILES' => q[cpan/Digest-SHA],
478 'EXCLUDED' => [
479 qw( t/pod.t
480 t/podcover.t
481 examples/dups
482 ),
483 ],
484 'UPSTREAM' => 'cpan',
485 },
486
487 'DirHandle' => {
4f3a742d
DR
488 'FILES' => q[lib/DirHandle.{pm,t}],
489 'UPSTREAM' => 'blead',
490 },
491
492 'Dumpvalue' => {
f6e46c4d 493 'DISTRIBUTION' => 'FLORA/Dumpvalue-1.17.tar.gz',
4f3a742d
DR
494 'FILES' => q[dist/Dumpvalue],
495 'EXCLUDED' => [qr{^t/release-.*\.t}],
496 'UPSTREAM' => 'blead',
497 },
498
499 'DynaLoader' => {
4f3a742d
DR
500 'FILES' => q[ext/DynaLoader],
501 'UPSTREAM' => 'blead',
502 },
503
504 'Encode' => {
369b9ffe 505 'DISTRIBUTION' => 'DANKOGAI/Encode-2.55.tar.gz',
4f3a742d
DR
506 'FILES' => q[cpan/Encode],
507 'UPSTREAM' => 'cpan',
508 },
509
510 'encoding::warnings' => {
4f3a742d
DR
511 'DISTRIBUTION' => 'AUDREYT/encoding-warnings-0.11.tar.gz',
512 'FILES' => q[cpan/encoding-warnings],
513 'EXCLUDED' => [
514 qr{^inc/Module/},
94c85d8e 515 qw(t/0-signature.t),
4f3a742d
DR
516 ],
517 'UPSTREAM' => undef,
518 },
519
520 'English' => {
4f3a742d
DR
521 'FILES' => q[lib/English.{pm,t}],
522 'UPSTREAM' => 'blead',
523 },
524
525 'Env' => {
126fc07f 526 'DISTRIBUTION' => 'FLORA/Env-1.04.tar.gz',
4f3a742d
DR
527 'FILES' => q[dist/Env],
528 'EXCLUDED' => [qr{^t/release-.*\.t}],
529 'UPSTREAM' => 'blead',
530 },
531
532 'Errno' => {
4f3a742d
DR
533 'FILES' => q[ext/Errno],
534 'UPSTREAM' => 'blead',
535 },
536
537 'Exporter' => {
b5de49e5 538 'DISTRIBUTION' => 'TODDR/Exporter-5.68.tar.gz',
3110a055 539 'FILES' => q[dist/Exporter],
4f3a742d
DR
540 'EXCLUDED' => [
541 qw( t/pod.t
542 t/use.t
543 ),
544 ],
4f3a742d
DR
545 'UPSTREAM' => 'blead',
546 },
547
548 'ExtUtils::CBuilder' => {
a0e78e9f 549 'DISTRIBUTION' => 'AMBS/ExtUtils/ExtUtils-CBuilder-0.280212.tar.gz',
4f3a742d 550 'FILES' => q[dist/ExtUtils-CBuilder],
a0e78e9f
SH
551 'EXCLUDED' => [
552 qw(README.mkdn),
553 qr{^xt},
554 ],
4f3a742d
DR
555 'UPSTREAM' => 'blead',
556 },
557
558 'ExtUtils::Command' => {
044aa601 559 'DISTRIBUTION' => 'FLORA/ExtUtils-Command-1.18.tar.gz',
4f3a742d
DR
560 'FILES' => q[dist/ExtUtils-Command],
561 'EXCLUDED' => [qr{^t/release-}],
562 'UPSTREAM' => 'blead',
563 },
564
565 'ExtUtils::Constant' => {
4f3a742d
DR
566
567 # Nick has confirmed that while we have diverged from CPAN,
568 # this package isn't primarily maintained in core
569 # Another release will happen "Sometime"
570 'DISTRIBUTION' => '', #'NWCLARK/ExtUtils-Constant-0.16.tar.gz',
571 'FILES' => q[cpan/ExtUtils-Constant],
572 'EXCLUDED' => [
573 qw( lib/ExtUtils/Constant/Aaargh56Hash.pm
574 examples/perl_keyword.pl
575 examples/perl_regcomp_posix_keyword.pl
576 ),
577 ],
578 'UPSTREAM' => undef,
579 },
580
581 'ExtUtils::Install' => {
4f3a742d
DR
582 'DISTRIBUTION' => 'YVES/ExtUtils-Install-1.54.tar.gz',
583 'FILES' => q[dist/ExtUtils-Install],
584 'EXCLUDED' => [
585 qw( t/lib/Test/Builder.pm
586 t/lib/Test/Builder/Module.pm
587 t/lib/Test/More.pm
588 t/lib/Test/Simple.pm
589 t/pod-coverage.t
590 t/pod.t
591 ),
592 ],
593 'UPSTREAM' => 'blead',
594 },
595
596 'ExtUtils::MakeMaker' => {
c6ba1525 597 'DISTRIBUTION' => 'BINGOS/ExtUtils-MakeMaker-6.78.tar.gz',
4f3a742d
DR
598 'FILES' => q[cpan/ExtUtils-MakeMaker],
599 'EXCLUDED' => [
600 qr{^t/lib/Test/},
601 qr{^(bundled|my)/},
602 qr{^t/Liblist_Kid.t},
603 qr{^t/liblist/},
78fd4358 604 qr{^\.perlcriticrc},
4f3a742d 605 ],
0582d0ad 606 'UPSTREAM' => 'cpan',
4f3a742d
DR
607 },
608
609 'ExtUtils::Manifest' => {
6db8f88e 610 'DISTRIBUTION' => 'FLORA/ExtUtils-Manifest-1.63.tar.gz',
4f3a742d
DR
611 'FILES' => q[dist/ExtUtils-Manifest],
612 'EXCLUDED' => [qr(t/release-.*\.t)],
613 'UPSTREAM' => 'blead',
614 },
615
616 'ExtUtils::ParseXS' => {
c0bf20e0 617 'DISTRIBUTION' => 'SMUELLER/ExtUtils-ParseXS-3.22.tar.gz',
4f3a742d
DR
618 'FILES' => q[dist/ExtUtils-ParseXS],
619 'UPSTREAM' => 'blead',
620 },
621
97b1d6e6 622 'Fcntl' => {
97b1d6e6
SH
623 'FILES' => q[ext/Fcntl],
624 'UPSTREAM' => 'blead',
4f3a742d
DR
625 },
626
627 'File::Basename' => {
4f3a742d
DR
628 'FILES' => q[lib/File/Basename.{pm,t}],
629 'UPSTREAM' => 'blead',
630 },
631
632 'File::Compare' => {
4f3a742d
DR
633 'FILES' => q[lib/File/Compare.{pm,t}],
634 'UPSTREAM' => 'blead',
635 },
636
637 'File::Copy' => {
4f3a742d
DR
638 'FILES' => q[lib/File/Copy.{pm,t}],
639 'UPSTREAM' => 'blead',
640 },
641
4f3a742d 642 'File::DosGlob' => {
005b65f9 643 'FILES' => q[ext/File-DosGlob],
4f3a742d
DR
644 'UPSTREAM' => 'blead',
645 },
646
647 'File::Fetch' => {
2900b141 648 'DISTRIBUTION' => 'BINGOS/File-Fetch-0.44.tar.gz',
4f3a742d
DR
649 'FILES' => q[cpan/File-Fetch],
650 'UPSTREAM' => 'cpan',
651 },
652
653 'File::Find' => {
6de85bb4 654 'FILES' => q[ext/File-Find],
4f3a742d
DR
655 'UPSTREAM' => 'blead',
656 },
657
658 'File::Glob' => {
4f3a742d
DR
659 'FILES' => q[ext/File-Glob],
660 'UPSTREAM' => 'blead',
661 },
662
663 'File::Path' => {
8f65b4cd 664 'DISTRIBUTION' => 'DLAND/File-Path-2.09.tar.gz',
4f3a742d
DR
665 'FILES' => q[cpan/File-Path],
666 'EXCLUDED' => [
667 qw( eg/setup-extra-tests
668 t/pod.t
669 )
670 ],
671 'MAP' => {
672 '' => 'cpan/File-Path/lib/File/',
673 't/' => 'cpan/File-Path/t/',
674 },
675 'UPSTREAM' => undef,
676 },
677
678 'File::stat' => {
92508f95 679 'FILES' => q[lib/File/stat{.pm,*.t}],
4f3a742d
DR
680 'UPSTREAM' => 'blead',
681 },
682
683 'File::Temp' => {
01b177dd 684 'DISTRIBUTION' => 'DAGOLDEN/File-Temp-0.2302.tar.gz',
4f3a742d
DR
685 'FILES' => q[cpan/File-Temp],
686 'EXCLUDED' => [
687 qw( misc/benchmark.pl
688 misc/results.txt
689 ),
814e893f
CBW
690 qw(t/00-compile.t),
691 qw[t/00-report-prereqs.t],
692 qr{^xt},
4f3a742d 693 ],
f828ccba 694 'UPSTREAM' => 'cpan',
4f3a742d
DR
695 },
696
697 'FileCache' => {
4f3a742d
DR
698 'FILES' => q[ext/FileCache],
699 'UPSTREAM' => 'blead',
700 },
701
702 'FileHandle' => {
4f3a742d
DR
703 'FILES' => q[lib/FileHandle.{pm,t}],
704 'UPSTREAM' => 'blead',
705 },
706
707 'Filter::Simple' => {
c3958279 708 'DISTRIBUTION' => 'SMUELLER/Filter-Simple-0.88.tar.gz',
4f3a742d
DR
709 'FILES' => q[dist/Filter-Simple],
710 'EXCLUDED' => [
4f3a742d
DR
711 qr{^demo/}
712 ],
713 'UPSTREAM' => 'blead',
714 },
715
716 'Filter::Util::Call' => {
d8b87a9b 717 'DISTRIBUTION' => 'RURBAN/Filter-1.49.tar.gz',
4f3a742d
DR
718 'FILES' => q[cpan/Filter-Util-Call
719 pod/perlfilter.pod
720 ],
721 'EXCLUDED' => [
722 qr{^decrypt/},
723 qr{^examples/},
724 qr{^Exec/},
725 qr{^lib/Filter/},
726 qr{^tee/},
727 qw( Call/Makefile.PL
728 Call/ppport.h
729 Call/typemap
730 mytest
731 t/cpp.t
732 t/decrypt.t
733 t/exec.t
734 t/order.t
735 t/pod.t
736 t/sh.t
737 t/tee.t
533d93cc
SH
738 t/z_kwalitee.t
739 t/z_meta.t
740 t/z_perl_minimum_version.t
741 t/z_pod-coverage.t
742 t/z_pod.t
4f3a742d
DR
743 ),
744 ],
745 'MAP' => {
746 'Call/' => 'cpan/Filter-Util-Call/',
747 'filter-util.pl' => 'cpan/Filter-Util-Call/filter-util.pl',
748 'perlfilter.pod' => 'pod/perlfilter.pod',
749 '' => 'cpan/Filter-Util-Call/',
750 },
b1208b3a 751 'UPSTREAM' => 'cpan',
4f3a742d
DR
752 },
753
754 'FindBin' => {
4f3a742d
DR
755 'FILES' => q[lib/FindBin.{pm,t}],
756 'UPSTREAM' => 'blead',
757 },
758
759 'GDBM_File' => {
4f3a742d
DR
760 'FILES' => q[ext/GDBM_File],
761 'UPSTREAM' => 'blead',
762 },
763
4f3a742d 764 'Getopt::Long' => {
7867c822 765 'DISTRIBUTION' => 'JV/Getopt-Long-2.42.tar.gz',
4f3a742d
DR
766 'FILES' => q[cpan/Getopt-Long],
767 'EXCLUDED' => [
768 qr{^examples/},
769 qw( perl-Getopt-Long.spec
770 lib/newgetopt.pl
974d5816 771 t/gol-compat.t
4f3a742d
DR
772 ),
773 ],
4f3a742d
DR
774 'UPSTREAM' => 'cpan',
775 },
776
777 'Getopt::Std' => {
4f3a742d
DR
778 'FILES' => q[lib/Getopt/Std.{pm,t}],
779 'UPSTREAM' => 'blead',
780 },
781
97b1d6e6 782 'Hash::Util' => {
97b1d6e6 783 'FILES' => q[ext/Hash-Util],
4f3a742d
DR
784 'UPSTREAM' => 'blead',
785 },
786
97b1d6e6 787 'Hash::Util::FieldHash' => {
97b1d6e6 788 'FILES' => q[ext/Hash-Util-FieldHash],
4f3a742d
DR
789 'UPSTREAM' => 'blead',
790 },
791
792 'HTTP::Tiny' => {
1d28c016 793 'DISTRIBUTION' => 'DAGOLDEN/HTTP-Tiny-0.036.tar.gz',
4f3a742d
DR
794 'FILES' => q[cpan/HTTP-Tiny],
795 'EXCLUDED' => [
4403b774
SH
796 'cpanfile',
797 't/00-compile.t',
fcfb9f49 798 't/00-report-prereqs.t',
4f3a742d 799 't/200_live.t',
44347bc3 800 't/200_live_local_ip.t',
fcfb9f49 801 't/210_live_ssl.t',
4f3a742d
DR
802 qr/^eg/,
803 qr/^xt/
804 ],
805 'UPSTREAM' => 'cpan',
806 },
807
808 'I18N::Collate' => {
4f3a742d
DR
809 'DISTRIBUTION' => 'FLORA/I18N-Collate-1.02.tar.gz',
810 'FILES' => q[dist/I18N-Collate],
811 'EXCLUDED' => [qr{^t/release-.*\.t}],
812 'UPSTREAM' => 'blead',
813 },
814
815 'I18N::Langinfo' => {
4f3a742d
DR
816 'FILES' => q[ext/I18N-Langinfo],
817 'UPSTREAM' => 'blead',
818 },
434ffb5a 819
4f3a742d 820 'I18N::LangTags' => {
4f3a742d
DR
821 'FILES' => q[dist/I18N-LangTags],
822 'UPSTREAM' => 'blead',
823 },
824
825 'if' => {
4f3a742d
DR
826 'DISTRIBUTION' => 'ILYAZ/modules/if-0.0601.tar.gz',
827 'FILES' => q[dist/if],
828 'UPSTREAM' => 'blead',
829 },
830
831 'IO' => {
4f3a742d
DR
832 'DISTRIBUTION' => 'GBARR/IO-1.25.tar.gz',
833 'FILES' => q[dist/IO/],
834 'EXCLUDED' => ['t/test.pl'],
835 'UPSTREAM' => 'blead',
836 },
837
838 'IO-Compress' => {
ef379d05 839 'DISTRIBUTION' => 'PMQS/IO-Compress-2.062.tar.gz',
4f3a742d
DR
840 'FILES' => q[cpan/IO-Compress],
841 'EXCLUDED' => [qr{t/Test/}],
842 'UPSTREAM' => 'cpan',
843 },
844
845 'IO::Zlib' => {
4f3a742d
DR
846 'DISTRIBUTION' => 'TOMHUGHES/IO-Zlib-1.10.tar.gz',
847 'FILES' => q[cpan/IO-Zlib],
848 'UPSTREAM' => undef,
849 },
850
851 'IPC::Cmd' => {
c7e51fe7 852 'DISTRIBUTION' => 'BINGOS/IPC-Cmd-0.84.tar.gz',
4f3a742d
DR
853 'FILES' => q[cpan/IPC-Cmd],
854 'UPSTREAM' => 'cpan',
855 },
856
857 'IPC::Open3' => {
4f3a742d
DR
858 'FILES' => q[ext/IPC-Open3],
859 'UPSTREAM' => 'blead',
860 },
861
862 'IPC::SysV' => {
dd0df890 863 'DISTRIBUTION' => 'MHX/IPC-SysV-2.04.tar.gz',
4f3a742d
DR
864 'FILES' => q[cpan/IPC-SysV],
865 'EXCLUDED' => [
866 qw( const-c.inc
867 const-xs.inc
868 ),
869 ],
870 'UPSTREAM' => 'cpan',
871 },
872
873 'JSON::PP' => {
16880a15 874 'DISTRIBUTION' => 'MAKAMAKA/JSON-PP-2.27202.tar.gz',
4f3a742d
DR
875 'FILES' => q[cpan/JSON-PP],
876 'EXCLUDED' => [
877 't/900_pod.t', # Pod testing
878 ],
a48e1170
SH
879
880 # Waiting to be merged upstream: see PERL RT#119825
881 'CUSTOMIZED' => [
882 'lib/JSON/PP.pm',
883 ],
884
4f3a742d
DR
885 'UPSTREAM' => 'cpan',
886 },
887
888 'lib' => {
4f3a742d
DR
889 'DISTRIBUTION' => 'SMUELLER/lib-0.63.tar.gz',
890 'FILES' => q[dist/lib/],
891 'EXCLUDED' => [
892 qw( forPAUSE/lib.pm
893 t/00pod.t
894 ),
895 ],
896 'UPSTREAM' => 'blead',
897 },
898
899 'libnet' => {
07513bb4 900 'DISTRIBUTION' => 'SHAY/libnet-1.23.tar.gz',
4f3a742d
DR
901 'FILES' => q[cpan/libnet],
902 'EXCLUDED' => [
903 qw( Configure
904 install-nomake
4f3a742d
DR
905 ),
906 ],
f81a37f2
SH
907 # Customized for perl since we cannot use either an auto-generated
908 # script or the version in the CPAN distro.
4f3a742d 909 'CUSTOMIZED' => ['Makefile.PL'],
07513bb4 910 'UPSTREAM' => 'cpan',
4f3a742d
DR
911 },
912
913 'Locale-Codes' => {
94eda824 914 'DISTRIBUTION' => 'SBECK/Locale-Codes-3.27.tar.gz',
4f3a742d
DR
915 'FILES' => q[cpan/Locale-Codes],
916 'EXCLUDED' => [
917 qw( t/pod_coverage.t
918 t/pod.t),
919 qr{^t/runtests},
920 qr{^t/runtests\.bat},
921 qr{^internal/},
922 qr{^examples/},
923 ],
924 'UPSTREAM' => 'cpan',
925 },
926
927 'Locale::Maketext' => {
f318c24d 928 'DISTRIBUTION' => 'TODDR/Locale-Maketext-1.23.tar.gz',
4f3a742d
DR
929 'FILES' => q[dist/Locale-Maketext],
930 'EXCLUDED' => [
931 qw(
932 perlcriticrc
933 t/00_load.t
934 t/pod.t
935 ),
936 ],
937 'UPSTREAM' => 'blead',
938 },
939
940 'Locale::Maketext::Simple' => {
4f3a742d
DR
941 'DISTRIBUTION' => 'JESSE/Locale-Maketext-Simple-0.21.tar.gz',
942 'FILES' => q[cpan/Locale-Maketext-Simple],
943 'EXCLUDED' => [qr{^inc/}],
944 'UPSTREAM' => 'cpan',
945 },
946
4f3a742d
DR
947 'mad' => {
948 'MAINTAINER' => 'lwall',
949 'FILES' => q[mad],
950 'UPSTREAM' => undef,
951 },
952
953 'Math::BigInt' => {
4f3a742d
DR
954 'DISTRIBUTION' => 'PJACKLAM/Math-BigInt-1.997.tar.gz',
955 'FILES' => q[dist/Math-BigInt],
956 'EXCLUDED' => [
957 qr{^inc/},
958 qr{^examples/},
959 qw( t/00sig.t
960 t/01load.t
961 t/02pod.t
962 t/03podcov.t
963 ),
964 ],
965 'UPSTREAM' => 'blead',
966 },
967
968 'Math::BigInt::FastCalc' => {
4f3a742d
DR
969 'DISTRIBUTION' => 'PJACKLAM/Math-BigInt-FastCalc-0.30.tar.gz',
970 'FILES' => q[dist/Math-BigInt-FastCalc],
971 'EXCLUDED' => [
972 qr{^inc/},
973 qw( t/00sig.t
974 t/01load.t
975 t/02pod.t
976 t/03podcov.t
977 ),
978
979 # instead we use the versions of these test
980 # files that come with Math::BigInt:
981 qw( t/bigfltpm.inc
982 t/bigfltpm.t
983 t/bigintpm.inc
984 t/bigintpm.t
985 t/mbimbf.inc
986 t/mbimbf.t
987 ),
988 ],
989 'UPSTREAM' => 'blead',
990 },
991
992 'Math::BigRat' => {
4f3a742d
DR
993 'DISTRIBUTION' => 'PJACKLAM/Math-BigRat-0.2602.tar.gz',
994 'FILES' => q[dist/Math-BigRat],
995 'EXCLUDED' => [
996 qr{^inc/},
997 qw( t/00sig.t
998 t/01load.t
999 t/02pod.t
1000 t/03podcov.t
1001 ),
1002 ],
1003 'UPSTREAM' => 'blead',
1004 },
1005
1006 'Math::Complex' => {
04ae1553 1007 'DISTRIBUTION' => 'ZEFRAM/Math-Complex-1.59.tar.gz',
4f3a742d
DR
1008 'FILES' => q[cpan/Math-Complex],
1009 'EXCLUDED' => [
1010 qw( t/pod.t
1011 t/pod-coverage.t
1012 ),
1013 ],
1014 'UPSTREAM' => 'cpan',
1015 },
1016
1017 'Memoize' => {
8114efa0 1018 'DISTRIBUTION' => 'MJD/Memoize-1.03.tgz',
4f3a742d
DR
1019 'FILES' => q[cpan/Memoize],
1020 'EXCLUDED' => ['article.html'],
1021 'UPSTREAM' => 'cpan',
1022 },
1023
1024 'MIME::Base64' => {
43f93048 1025 'DISTRIBUTION' => 'GAAS/MIME-Base64-3.14.tar.gz',
4f3a742d
DR
1026 'FILES' => q[cpan/MIME-Base64],
1027 'EXCLUDED' => ['t/bad-sv.t'],
1028 'UPSTREAM' => 'cpan',
1029 },
1030
1031 #
1032 # To update Module-Build in blead see
236cbe8d 1033 # https://github.com/Perl-Toolchain-Gang/Module-Build/blob/master/devtools/patching_blead.pod
4f3a742d 1034 #
462ea751 1035
4f3a742d 1036 'Module::Build' => {
d9be4ae3 1037 'DISTRIBUTION' => 'LEONT/Module-Build-0.4007.tar.gz',
4f3a742d
DR
1038 'FILES' => q[cpan/Module-Build],
1039 'EXCLUDED' => [
1040 qw( t/par.t
1041 t/signature.t
1042 ),
1043 qr{^contrib/},
4f3a742d
DR
1044 qr{^inc},
1045 ],
f81a37f2 1046 # Generated file, not part of the CPAN distro:
fae38280 1047 'CUSTOMIZED' => ['lib/Module/Build/ConfigData.pm'],
47369ecd 1048 'DEPRECATED' => '5.019000',
4f3a742d
DR
1049 'UPSTREAM' => 'cpan',
1050 },
1051
1052 'Module::CoreList' => {
4c908bf5 1053 'DISTRIBUTION' => 'BINGOS/Module-CoreList-2.99.tar.gz',
4f3a742d
DR
1054 'FILES' => q[dist/Module-CoreList],
1055 'UPSTREAM' => 'blead',
1056 },
1057
1058 'Module::Load' => {
ba9b1d71 1059 'DISTRIBUTION' => 'BINGOS/Module-Load-0.24.tar.gz',
4f3a742d
DR
1060 'FILES' => q[cpan/Module-Load],
1061 'UPSTREAM' => 'cpan',
1062 },
1063
1064 'Module::Load::Conditional' => {
6c52f6c9 1065 'DISTRIBUTION' => 'BINGOS/Module-Load-Conditional-0.58.tar.gz',
4f3a742d
DR
1066 'FILES' => q[cpan/Module-Load-Conditional],
1067 'UPSTREAM' => 'cpan',
1068 },
1069
1070 'Module::Loaded' => {
4f3a742d
DR
1071 'DISTRIBUTION' => 'BINGOS/Module-Loaded-0.08.tar.gz',
1072 'FILES' => q[cpan/Module-Loaded],
1073 'UPSTREAM' => 'cpan',
1074 },
1075
1076 'Module::Metadata' => {
979f1f2b 1077 'DISTRIBUTION' => 'ETHER/Module-Metadata-1.000018.tar.gz',
4f3a742d
DR
1078 'FILES' => q[cpan/Module-Metadata],
1079 'EXCLUDED' => [
1080 qr{^maint},
1081 qr{^xt},
1082 ],
1083 'UPSTREAM' => 'cpan',
1084 },
1085
4f3a742d 1086 'mro' => {
4f3a742d
DR
1087 'FILES' => q[ext/mro],
1088 'UPSTREAM' => 'blead',
1089 },
1090
1091 'NDBM_File' => {
4f3a742d
DR
1092 'FILES' => q[ext/NDBM_File],
1093 'UPSTREAM' => 'blead',
1094 },
1095
1096 'Net::Ping' => {
4e0aac35 1097 'DISTRIBUTION' => 'SMPETERS/Net-Ping-2.41.tar.gz',
4f3a742d 1098 'FILES' => q[dist/Net-Ping],
4e0aac35
MM
1099 'EXCLUDED' => [
1100 qr{^.travis.yml},
1101 qr{^README.md},
1102 ],
4f3a742d
DR
1103 'UPSTREAM' => 'blead',
1104 },
1105
1106 'NEXT' => {
4f3a742d
DR
1107 'DISTRIBUTION' => 'FLORA/NEXT-0.65.tar.gz',
1108 'FILES' => q[cpan/NEXT],
1109 'EXCLUDED' => [qr{^demo/}],
1110 'UPSTREAM' => 'cpan',
1111 },
1112
4f3a742d 1113 'ODBM_File' => {
4f3a742d
DR
1114 'FILES' => q[ext/ODBM_File],
1115 'UPSTREAM' => 'blead',
1116 },
1117
1118 'Opcode' => {
4f3a742d
DR
1119 'FILES' => q[ext/Opcode],
1120 'UPSTREAM' => 'blead',
1121 },
1122
1123 'overload' => {
4f3a742d
DR
1124 'FILES' => q[lib/overload{.pm,.t,64.t}],
1125 'UPSTREAM' => 'blead',
1126 },
1127
1128 'Package::Constants' => {
4f3a742d
DR
1129 'DISTRIBUTION' => 'KANE/Package-Constants-0.02.tar.gz',
1130 'FILES' => q[cpan/Package-Constants],
1131 'UPSTREAM' => 'cpan',
1132 },
1133
1134 'Params::Check' => {
8b21fa03 1135 'DISTRIBUTION' => 'BINGOS/Params-Check-0.38.tar.gz',
4f3a742d
DR
1136 'EXCLUDED' => ['Params-Check-0.26.tar.gz'],
1137 'FILES' => q[cpan/Params-Check],
1138 'UPSTREAM' => 'cpan',
1139 },
1140
1141 'parent' => {
11100026 1142 'DISTRIBUTION' => 'CORION/parent-0.228.tar.gz',
4f3a742d
DR
1143 'FILES' => q[cpan/parent],
1144 'UPSTREAM' => undef,
1145 },
1146
1147 'Parse::CPAN::Meta' => {
7d7e3722 1148 'DISTRIBUTION' => 'DAGOLDEN/Parse-CPAN-Meta-1.4409.tar.gz',
4f3a742d 1149 'FILES' => q[cpan/Parse-CPAN-Meta],
342e4710
CBW
1150 'EXCLUDED' => [
1151 qw(t/00-compile.t),
1152 qw[t/00-report-prereqs.t],
545c8cda 1153 qw(cpanfile),
342e4710
CBW
1154 qr{^xt},
1155 ],
4f3a742d
DR
1156 'UPSTREAM' => 'cpan',
1157 },
1158
1159 'PathTools' => {
061a8e13 1160 'DISTRIBUTION' => 'SMUELLER/PathTools-3.40.tar.gz',
4f3a742d
DR
1161 'FILES' => q[dist/Cwd],
1162 'EXCLUDED' => [qr{^t/lib/Test/}],
1163 'UPSTREAM' => "blead",
1164
1165 # NOTE: PathTools is in dist/Cwd/ instead of dist/PathTools because it
1166 # contains Cwd.xs and something, possibly Makefile.SH, makes an assumption
1167 # that the leafname of some file corresponds with the pathname of the
1168 # directory.
1169 },
1170
97b1d6e6 1171 'Perl::OSType' => {
e9d1f52f 1172 'DISTRIBUTION' => 'DAGOLDEN/Perl-OSType-1.006.tar.gz',
97b1d6e6 1173 'FILES' => q[cpan/Perl-OSType],
e9d1f52f 1174 'EXCLUDED' => [qw(cpanfile), qw(tidyall.ini), qr/^xt/, qr{^t/00-}],
97b1d6e6
SH
1175 'UPSTREAM' => 'cpan',
1176 },
1177
4f3a742d
DR
1178 'perldtrace' => {
1179 'MAINTAINER' => 'sartak',
1180 'FILES' => q[pod/perldtrace.pod],
1181 'UPSTREAM' => 'blead',
1182 },
1183
1184 'perlebcdic' => {
1185 'MAINTAINER' => 'pvhp',
1186 'FILES' => q[pod/perlebcdic.pod],
1187 'UPSTREAM' => undef,
1188 },
1189
97b1d6e6 1190 'perlfaq' => {
97b1d6e6
SH
1191 'DISTRIBUTION' => 'LLAP/perlfaq-5.0150044.tar.gz',
1192 'FILES' => q[cpan/perlfaq],
1193 'EXCLUDED' => [
1194 qw( t/release-pod-syntax.t
1195 t/release-eol.t
1196 t/release-no-tabs.t
1197 )
1198 ],
1199 'UPSTREAM' => 'cpan',
1200 },
1201
4f3a742d 1202 'PerlIO' => {
4f3a742d
DR
1203 'FILES' => q[lib/PerlIO.pm],
1204 'UPSTREAM' => undef,
1205 },
1206
1207 'PerlIO::encoding' => {
4f3a742d
DR
1208 'FILES' => q[ext/PerlIO-encoding],
1209 'UPSTREAM' => 'blead',
1210 },
1211
307764ab 1212 'PerlIO::mmap' => {
307764ab
LT
1213 'FILES' => q[ext/PerlIO-mmap],
1214 'UPSTREAM' => 'blead',
1215 },
1216
4f3a742d 1217 'PerlIO::scalar' => {
4f3a742d
DR
1218 'FILES' => q[ext/PerlIO-scalar],
1219 'UPSTREAM' => 'blead',
1220 },
1221
1222 'PerlIO::via' => {
4f3a742d
DR
1223 'FILES' => q[ext/PerlIO-via],
1224 'UPSTREAM' => 'blead',
1225 },
1226
1227 'PerlIO::via::QuotedPrint' => {
7e286960 1228 'DISTRIBUTION' => 'ELIZABETH/PerlIO-via-QuotedPrint-0.07.tar.gz',
4f3a742d 1229 'FILES' => q[cpan/PerlIO-via-QuotedPrint],
f81a37f2
SH
1230
1231 # Waiting to be merged upstream: see CPAN RT#54047
1232 'CUSTOMIZED' => [
1233 qw( t/QuotedPrint.t
1234 ),
1235 ],
1236
4f3a742d
DR
1237 'UPSTREAM' => undef,
1238 },
1239
4f3a742d
DR
1240 'perlpacktut' => {
1241 'MAINTAINER' => 'laun',
1242 'FILES' => q[pod/perlpacktut.pod],
1243 'UPSTREAM' => undef,
1244 },
1245
1246 'perlpodspec' => {
1247 'MAINTAINER' => 'sburke',
1248 'FILES' => q[pod/perlpodspec.pod],
1249 'UPSTREAM' => undef,
1250 },
1251
1252 'perlre' => {
1253 'MAINTAINER' => 'abigail',
1254 'FILES' => q[pod/perlrecharclass.pod
1255 pod/perlrebackslash.pod],
1256 'UPSTREAM' => undef,
1257 },
1258
1259 'perlreapi' => {
1260 MAINTAINER => 'avar',
1261 FILES => q[pod/perlreapi.pod],
1262 'UPSTREAM' => undef,
1263 },
1264
1265 'perlreftut' => {
1266 'MAINTAINER' => 'mjd',
1267 'FILES' => q[pod/perlreftut.pod],
1268 'UPSTREAM' => 'blead',
1269 },
1270
1271 'perlthrtut' => {
1272 'MAINTAINER' => 'elizabeth',
1273 'FILES' => q[pod/perlthrtut.pod],
1274 'UPSTREAM' => undef,
1275 },
1276
0c501878 1277 'Pod::Checker' => {
0c501878
CBW
1278 'DISTRIBUTION' => 'MAREKR/Pod-Checker-1.60.tar.gz',
1279 'FILES' => q[cpan/Pod-Checker],
1280 'UPSTREAM' => 'cpan',
1281 },
1282
4f3a742d 1283 'Pod::Escapes' => {
4f3a742d
DR
1284 'DISTRIBUTION' => 'SBURKE/Pod-Escapes-1.04.tar.gz',
1285 'FILES' => q[cpan/Pod-Escapes],
1286 'UPSTREAM' => undef,
1287 },
1288
d5f215f1 1289 'Pod::Functions' => {
d5f215f1
NC
1290 'FILES' => q[ext/Pod-Functions],
1291 'UPSTREAM' => 'blead',
1292 },
1293
4f3a742d 1294 'Pod::Html' => {
4f3a742d
DR
1295 'FILES' => q[ext/Pod-Html],
1296 'UPSTREAM' => 'blead',
1297 },
1298
4f3a742d 1299 'Pod::Parser' => {
9a031c8e 1300 'DISTRIBUTION' => 'MAREKR/Pod-Parser-1.61.tar.gz',
4f3a742d 1301 'FILES' => q[cpan/Pod-Parser],
1051d5b5 1302 'UPSTREAM' => 'cpan',
4f3a742d
DR
1303 },
1304
1305 'Pod::Perldoc' => {
cb1974ba 1306 'DISTRIBUTION' => 'MALLEN/Pod-Perldoc-3.20.tar.gz',
00e518b3 1307 'FILES' => q[cpan/Pod-Perldoc],
4f3a742d
DR
1308
1309 # in blead, the perldoc executable is generated by perldoc.PL
1310 # instead
1311 # XXX We can and should fix this, but clean up the DRY-failure in utils
1312 # first
1313 'EXCLUDED' => ['perldoc'],
00e518b3 1314 'UPSTREAM' => 'cpan',
4f3a742d
DR
1315 },
1316
1317 'Pod::Simple' => {
b5ae6e74 1318 'DISTRIBUTION' => 'DWHEELER/Pod-Simple-3.28.tar.gz',
4f3a742d
DR
1319 'FILES' => q[cpan/Pod-Simple],
1320 'UPSTREAM' => 'cpan',
1321 },
1322
0c501878 1323 'Pod::Usage' => {
2ed39982 1324 'DISTRIBUTION' => 'MAREKR/Pod-Usage-1.63.tar.gz',
0c501878
CBW
1325 'FILES' => q[cpan/Pod-Usage],
1326 'UPSTREAM' => 'cpan',
1327 },
1328
4f3a742d 1329 'podlators' => {
b7c730ff 1330 'DISTRIBUTION' => 'RRA/podlators-2.5.2.tar.gz',
4f3a742d
DR
1331 'FILES' => q[cpan/podlators pod/perlpodstyle.pod],
1332
1333 # The perl distribution has pod2man.PL and pod2text.PL, which are
1334 # run to create pod2man and pod2text, while the CPAN distribution
1335 # just has the post-generated pod2man and pod2text files.
1336 # The following entries attempt to codify that odd fact.
1337 'CUSTOMIZED' => [
1338 qw( scripts/pod2man.PL
1339 scripts/pod2text.PL
4f3a742d
DR
1340 ),
1341 ],
1342 'MAP' => {
1343 '' => 'cpan/podlators/',
1344 'scripts/pod2man' => 'cpan/podlators/scripts/pod2man.PL',
1345 'scripts/pod2text' => 'cpan/podlators/scripts/pod2text.PL',
1346
1347 # this file lives outside the cpan/ directory
1348 'pod/perlpodstyle.pod' => 'pod/perlpodstyle.pod',
1349 },
1350 'UPSTREAM' => 'cpan',
1351 },
1352
1353 'POSIX' => {
4f3a742d
DR
1354 'FILES' => q[ext/POSIX],
1355 'UPSTREAM' => 'blead',
1356 },
1357
1358 're' => {
4f3a742d
DR
1359 'FILES' => q[ext/re],
1360 'UPSTREAM' => 'blead',
1361 },
1362
97b1d6e6
SH
1363 's2p' => {
1364 'MAINTAINER' => 'laun',
1365 'FILES' => q[x2p/s2p.PL],
1366 'UPSTREAM' => undef,
1367 },
1368
4f3a742d 1369 'Safe' => {
e739c653 1370 'DISTRIBUTION' => 'RGARCIA/Safe-2.35.tar.gz',
4f3a742d
DR
1371 'FILES' => q[dist/Safe],
1372 'UPSTREAM' => 'blead',
1373 },
1374
1375 'Scalar-List-Utils' => {
ad434879 1376 'DISTRIBUTION' => 'PEVANS/Scalar-List-Utils-1.32.tar.gz',
4f3a742d
DR
1377 'FILES' => q[cpan/List-Util],
1378 'EXCLUDED' => [
1379 qr{^inc/Module/},
1380 qr{^inc/Test/},
1381 'mytypemap',
1382 ],
1383 'UPSTREAM' => 'cpan',
1384 },
1385
1386 'SDBM_File' => {
4f3a742d
DR
1387 'FILES' => q[ext/SDBM_File],
1388 'UPSTREAM' => 'blead',
1389 },
1390
1391 'Search::Dict' => {
0b0a7092 1392 'DISTRIBUTION' => 'DAGOLDEN/Search-Dict-1.07.tar.gz',
4f3a742d 1393 'FILES' => q[dist/Search-Dict],
0b0a7092 1394 'EXCLUDED' => [qr{^t/release-.*\.t},qr{^README\..*}],
4f3a742d
DR
1395 'UPSTREAM' => 'blead',
1396 },
1397
1398 'SelfLoader' => {
c3958279 1399 'DISTRIBUTION' => 'SMUELLER/SelfLoader-1.20.tar.gz',
4f3a742d
DR
1400 'FILES' => q[dist/SelfLoader],
1401 'EXCLUDED' => ['t/00pod.t'],
1402 'UPSTREAM' => 'blead',
1403 },
1404
1405 'sigtrap' => {
4f3a742d
DR
1406 'FILES' => q[lib/sigtrap.{pm,t}],
1407 'UPSTREAM' => 'blead',
1408 },
1409
1410 'Socket' => {
406cccc2 1411 'DISTRIBUTION' => 'PEVANS/Socket-2.012.tar.gz',
4f3a742d
DR
1412 'FILES' => q[cpan/Socket],
1413 'UPSTREAM' => 'cpan',
1414 },
1415
1416 'Storable' => {
8371a44d 1417 'DISTRIBUTION' => 'AMS/Storable-2.45.tar.gz',
4f3a742d
DR
1418 'FILES' => q[dist/Storable],
1419 'EXCLUDED' => [qr{^t/Test/}],
1420 'UPSTREAM' => 'blead',
1421 },
1422
1423 'Sys::Hostname' => {
4f3a742d
DR
1424 'FILES' => q[ext/Sys-Hostname],
1425 'UPSTREAM' => 'blead',
1426 },
1427
1428 'Sys::Syslog' => {
848ca32c 1429 'DISTRIBUTION' => 'SAPER/Sys-Syslog-0.33.tar.gz',
4f3a742d
DR
1430 'FILES' => q[cpan/Sys-Syslog],
1431 'EXCLUDED' => [
1432 qr{^eg/},
1433 qw( t/data-validation.t
1434 t/distchk.t
1435 t/pod.t
1436 t/podcover.t
1437 t/podspell.t
1438 t/portfs.t
1439 win32/PerlLog.RES
4f3a742d
DR
1440 ),
1441 ],
1442 'UPSTREAM' => 'cpan',
4f3a742d
DR
1443 },
1444
1445 'Term::ANSIColor' => {
522ce57f 1446 'DISTRIBUTION' => 'RRA/Term-ANSIColor-4.02.tar.gz',
4f3a742d
DR
1447 'FILES' => q[cpan/Term-ANSIColor],
1448 'EXCLUDED' => [
1449 qr{^tests/},
92f80b37
CBW
1450 qr{^examples/},
1451 qr{^t/data/},
1452 qw( t/aliases-env.t
1453 t/critic.t
1454 t/minimum-version.t
1455 t/pod-spelling.t
1456 t/pod-coverage.t
4f3a742d 1457 t/pod.t
92f80b37
CBW
1458 t/strict.t
1459 t/synopsis.t
4f3a742d
DR
1460 ),
1461 ],
1462 'UPSTREAM' => 'cpan',
1463 },
1464
1465 'Term::Cap' => {
4f3a742d
DR
1466 'DISTRIBUTION' => 'JSTOWE/Term-Cap-1.12.tar.gz',
1467 'FILES' => q[cpan/Term-Cap],
f81a37f2
SH
1468
1469 # Waiting to be merged upstream: see CPAN RT#73447
1470 'CUSTOMIZED' => [
1471 qw( Cap.pm
1472 test.pl
1473 ),
1474 ],
1475
4f3a742d
DR
1476 'UPSTREAM' => undef,
1477 },
1478
1479 'Term::Complete' => {
4f3a742d
DR
1480 'DISTRIBUTION' => 'FLORA/Term-Complete-1.402.tar.gz',
1481 'FILES' => q[dist/Term-Complete],
1482 'EXCLUDED' => [qr{^t/release-.*\.t}],
1483 'UPSTREAM' => 'blead',
1484 },
1485
1486 'Term::ReadLine' => {
75ad3638 1487 'DISTRIBUTION' => 'FLORA/Term-ReadLine-1.14.tar.gz',
4f3a742d
DR
1488 'FILES' => q[dist/Term-ReadLine],
1489 'EXCLUDED' => [qr{^t/release-.*\.t}],
1490 'UPSTREAM' => 'blead',
1491 },
1492
4f3a742d 1493 'Test' => {
1c22e001 1494 'DISTRIBUTION' => 'JESSE/Test-1.26.tar.gz',
4f3a742d
DR
1495 'FILES' => q[cpan/Test],
1496 'UPSTREAM' => 'cpan',
1497 },
1498
1499 'Test::Harness' => {
dbd04185 1500 'DISTRIBUTION' => 'OVID/Test-Harness-3.28.tar.gz',
4f3a742d
DR
1501 'FILES' => q[cpan/Test-Harness],
1502 'EXCLUDED' => [
1503 qr{^examples/},
1504 qr{^inc/},
1505 qr{^t/lib/Test/},
1506 qr{^xt/},
1507 qw( Changes-2.64
1508 NotBuild.PL
1509 HACKING.pod
1510 perlcriticrc
1511 t/lib/if.pm
1512 ),
1513 ],
f81a37f2
SH
1514
1515 # Waiting to be merged upstream: see CPAN RT#64353
d7958bf2 1516 'CUSTOMIZED' => [ 't/source.t' ],
f81a37f2 1517
4f3a742d 1518 'UPSTREAM' => 'cpan',
4f3a742d
DR
1519 },
1520
1521 'Test::Simple' => {
4f3a742d
DR
1522 'DISTRIBUTION' => 'MSCHWERN/Test-Simple-0.98.tar.gz',
1523 'FILES' => q[cpan/Test-Simple],
1524 'EXCLUDED' => [
1525 qw( .perlcriticrc
1526 .perltidyrc
1527 t/00compile.t
1528 t/pod.t
1529 t/pod-coverage.t
1530 t/Builder/reset_outputs.t
1531 lib/Test/Builder/IO/Scalar.pm
1532 ),
1533 ],
f81a37f2 1534
a48e1170
SH
1535 'CUSTOMIZED' => [
1536 # Waiting to be merged upstream: see CPAN RT#79762
1537 't/fail-more.t',
1538
1539 # Waiting to be merged upstream: see PERL RT#119825
1540 'lib/Test/Builder.pm',
1541 'lib/Test/Builder/Module.pm',
1542 'lib/Test/More.pm',
1543 'lib/Test/Simple.pm',
1544 ],
f81a37f2 1545
4f3a742d
DR
1546 'UPSTREAM' => 'cpan',
1547 },
1548
1549 'Text::Abbrev' => {
5e96eee9 1550 'DISTRIBUTION' => 'FLORA/Text-Abbrev-1.02.tar.gz',
4f3a742d
DR
1551 'FILES' => q[dist/Text-Abbrev],
1552 'EXCLUDED' => [qr{^t/release-.*\.t}],
1553 'UPSTREAM' => 'blead',
1554 },
1555
1556 'Text::Balanced' => {
4f3a742d
DR
1557 'DISTRIBUTION' => 'ADAMK/Text-Balanced-2.02.tar.gz',
1558 'FILES' => q[cpan/Text-Balanced],
1559 'EXCLUDED' => [
1560 qw( t/97_meta.t
1561 t/98_pod.t
1562 t/99_pmv.t
1563 ),
1564 ],
f81a37f2
SH
1565
1566 # Waiting to be merged upstream: see CPAN RT#87788
b5d178c9
SH
1567 'CUSTOMIZED' => [
1568 qw( t/01_compile.t
1569 t/02_extbrk.t
1570 t/03_extcbk.t
1571 t/04_extdel.t
1572 t/05_extmul.t
1573 t/06_extqlk.t
1574 t/07_exttag.t
1575 t/08_extvar.t
1576 t/09_gentag.t
1577 ),
1578 ],
f81a37f2 1579
4f3a742d
DR
1580 'UPSTREAM' => 'cpan',
1581 },
1582
1583 'Text::ParseWords' => {
33954ec3 1584 'DISTRIBUTION' => 'CHORNY/Text-ParseWords-3.29.tar.gz',
4f3a742d
DR
1585 'FILES' => q[cpan/Text-ParseWords],
1586 'EXCLUDED' => ['t/pod.t'],
1587
f81a37f2
SH
1588 # Waiting to be merged upstream: see CPAN RT#50929
1589 'CUSTOMIZED' => [
1590 qw( t/ParseWords.t
1591 t/taint.t
1592 ),
1593 ],
1594
4f3a742d
DR
1595 # For the benefit of make_ext.pl, we have to have this accessible:
1596 'MAP' => {
1597 'ParseWords.pm' => 'cpan/Text-ParseWords/lib/Text/ParseWords.pm',
1598 '' => 'cpan/Text-ParseWords/',
1599 },
1600 'UPSTREAM' => undef,
1601 },
1602
4f3a742d 1603 'Text-Tabs+Wrap' => {
83aea42c 1604 'DISTRIBUTION' => 'MUIR/modules/Text-Tabs+Wrap-2013.0523.tar.gz',
4f3a742d 1605 'FILES' => q[cpan/Text-Tabs],
e7b92d54
SH
1606 'EXCLUDED' => [
1607 qr/^lib\.old/,
1608 't/dnsparks.t', # see af6492bf9e
4f3a742d 1609 ],
e7b92d54
SH
1610 'MAP' => {
1611 '' => 'cpan/Text-Tabs/',
ab2a3ce2
SH
1612 'lib.modern/Text/Tabs.pm' => 'cpan/Text-Tabs/lib/Text/Tabs.pm',
1613 'lib.modern/Text/Wrap.pm' => 'cpan/Text-Tabs/lib/Text/Wrap.pm',
e7b92d54
SH
1614 },
1615 'UPSTREAM' => 'cpan',
4f3a742d
DR
1616 },
1617
1618 'Thread::Queue' => {
c7bac10a 1619 'DISTRIBUTION' => 'JDHEDDEN/Thread-Queue-3.02.tar.gz',
4f3a742d
DR
1620 'FILES' => q[dist/Thread-Queue],
1621 'EXCLUDED' => [
1fd4700e
JH
1622 qr{^examples/},
1623 qw( t/00_load.t
4f3a742d
DR
1624 t/99_pod.t
1625 t/test.pl
1626 ),
1627 ],
1628 'UPSTREAM' => 'blead',
1629 },
1630
1631 'Thread::Semaphore' => {
4f3a742d
DR
1632 'DISTRIBUTION' => 'JDHEDDEN/Thread-Semaphore-2.12.tar.gz',
1633 'FILES' => q[dist/Thread-Semaphore],
1634 'EXCLUDED' => [
1635 qw( examples/semaphore.pl
1636 t/00_load.t
1637 t/99_pod.t
1638 t/test.pl
1639 ),
1640 ],
1641 'UPSTREAM' => 'blead',
1642 },
1643
1644 'threads' => {
6d76e7fc 1645 'DISTRIBUTION' => 'JDHEDDEN/threads-1.89.tar.gz',
4f3a742d
DR
1646 'FILES' => q[dist/threads],
1647 'EXCLUDED' => [
1648 qr{^examples/},
1649 qw( t/pod.t
1650 t/test.pl
1651 threads.h
1652 ),
1653 ],
1654 'UPSTREAM' => 'blead',
1655 },
1656
1657 'threads::shared' => {
5a016e9b 1658 'DISTRIBUTION' => 'JDHEDDEN/threads-shared-1.43.tar.gz',
4f3a742d
DR
1659 'FILES' => q[dist/threads-shared],
1660 'EXCLUDED' => [
1661 qw( examples/class.pl
1662 shared.h
1663 t/pod.t
1664 t/test.pl
1665 ),
1666 ],
1667 'UPSTREAM' => 'blead',
1668 },
1669
1670 'Tie::File' => {
c0504019
TR
1671 'DISTRIBUTION' => 'TODDR/Tie-File-0.98.tar.gz',
1672 'FILES' => q[dist/Tie-File],
1673 'UPSTREAM' => 'blead',
4f3a742d
DR
1674 },
1675
1676 'Tie::Hash' => {
4f3a742d
DR
1677 'FILES' => q[lib/Tie/Hash.{pm,t}],
1678 'UPSTREAM' => 'blead',
1679 },
1680
1681 'Tie::Hash::NamedCapture' => {
4f3a742d
DR
1682 'FILES' => q[ext/Tie-Hash-NamedCapture],
1683 'UPSTREAM' => 'blead',
1684 },
1685
1686 'Tie::Memoize' => {
4f3a742d
DR
1687 'FILES' => q[ext/Tie-Memoize],
1688 'UPSTREAM' => 'blead',
1689 },
1690
1691 'Tie::RefHash' => {
4f3a742d
DR
1692 'DISTRIBUTION' => 'FLORA/Tie-RefHash-1.39.tar.gz',
1693 'FILES' => q[cpan/Tie-RefHash],
1694 'UPSTREAM' => 'cpan',
1695 },
1696
1697 'Time::HiRes' => {
0f0eae2c 1698 'DISTRIBUTION' => 'ZEFRAM/Time-HiRes-1.9726.tar.gz',
4f3a742d
DR
1699 'FILES' => q[cpan/Time-HiRes],
1700 'UPSTREAM' => 'cpan',
1701 },
1702
1703 'Time::Local' => {
62e824cf 1704 'DISTRIBUTION' => 'DROLSKY/Time-Local-1.2300.tar.gz',
4f3a742d
DR
1705 'FILES' => q[cpan/Time-Local],
1706 'EXCLUDED' => [
1707 qw( t/pod-coverage.t
1708 t/pod.t
1709 ),
62e824cf 1710 qr{^t/release-.*\.t},
4f3a742d
DR
1711 ],
1712 'UPSTREAM' => 'cpan',
1713 },
1714
1715 'Time::Piece' => {
9bc7f50b 1716 'DISTRIBUTION' => 'RJBS/Time-Piece-1.23.tar.gz',
4f3a742d
DR
1717 'FILES' => q[cpan/Time-Piece],
1718 'UPSTREAM' => undef,
1719 },
1720
1721 'Unicode::Collate' => {
60f577e0 1722 'DISTRIBUTION' => 'SADAHIRO/Unicode-Collate-0.99.tar.gz',
4f3a742d
DR
1723 'FILES' => q[cpan/Unicode-Collate],
1724 'EXCLUDED' => [
1725 qr{N$},
1726 qr{^data/},
1727 qr{^gendata/},
1728 qw( disableXS
1729 enableXS
1730 mklocale
1731 ),
1732 ],
53445dc6 1733 'UPSTREAM' => 'cpan',
4f3a742d
DR
1734 },
1735
1736 'Unicode::Normalize' => {
a257baa9 1737 'DISTRIBUTION' => 'SADAHIRO/Unicode-Normalize-1.16.tar.gz',
4f3a742d
DR
1738 'FILES' => q[cpan/Unicode-Normalize],
1739 'EXCLUDED' => [
1740 qw( MANIFEST.N
1741 Normalize.pmN
1742 disableXS
1743 enableXS
1744 ),
1745 ],
53445dc6 1746 'UPSTREAM' => 'cpan',
4f3a742d
DR
1747 },
1748
1749 'Unicode::UCD' => {
4f3a742d
DR
1750 'FILES' => q[lib/Unicode/UCD.{pm,t}],
1751 'UPSTREAM' => 'blead',
1752 },
1753
4f3a742d 1754 'version' => {
5565c738 1755 'DISTRIBUTION' => 'JPEACOCK/version-0.9904.tar.gz',
fb794281 1756 'FILES' => q[cpan/version],
4f3a742d 1757 'EXCLUDED' => [
4f3a742d
DR
1758 qr{^vutil/},
1759 'lib/version/typemap',
1760 't/survey_locales',
1761 'vperl/vpp.pm',
1762 ],
f81a37f2
SH
1763
1764 # Waiting to be merged upstream: see CPAN RT#87513
1765 'CUSTOMIZED' => [
1766 qw( lib/version.pm
f81a37f2 1767 t/07locale.t
5565c738 1768 t/08_corelist.t
f81a37f2
SH
1769 ),
1770 ],
1771
4f3a742d
DR
1772 'UPSTREAM' => undef,
1773 },
1774
1775 'vms' => {
1776 'MAINTAINER' => 'craig',
1777 'FILES' => q[vms configure.com README.vms],
1778 'UPSTREAM' => undef,
1779 },
1780
1781 'VMS::DCLsym' => {
1782 'MAINTAINER' => 'craig',
1783 'FILES' => q[ext/VMS-DCLsym],
1784 'UPSTREAM' => undef,
1785 },
1786
2d11a7e9 1787 'VMS::Filespec' => {
2d11a7e9
NC
1788 'FILES' => q[ext/VMS-Filespec],
1789 'UPSTREAM' => undef,
1790 },
1791
4f3a742d
DR
1792 'VMS::Stdio' => {
1793 'MAINTAINER' => 'craig',
1794 'FILES' => q[ext/VMS-Stdio],
1795 'UPSTREAM' => undef,
1796 },
1797
1798 'warnings' => {
1799 'MAINTAINER' => 'pmqs',
1800 'FILES' => q[regen/warnings.pl
1801 lib/warnings.{pm,t}
1802 lib/warnings
1803 t/lib/warnings
1804 ],
69a8a234 1805 'UPSTREAM' => 'blead',
4f3a742d
DR
1806 },
1807
1808 'win32' => {
1809 'MAINTAINER' => 'jand',
1810 'FILES' => q[win32 t/win32 README.win32 ext/Win32CORE],
1811 'UPSTREAM' => undef,
1812 },
1813
1814 'Win32' => {
7772d855 1815 'DISTRIBUTION' => "JDB/Win32-0.47.tar.gz",
4f3a742d
DR
1816 'FILES' => q[cpan/Win32],
1817 'UPSTREAM' => 'cpan',
1818 },
1819
1820 'Win32API::File' => {
113b1f2c 1821 'DISTRIBUTION' => 'CHORNY/Win32API-File-0.1201.tar.gz',
4f3a742d
DR
1822 'FILES' => q[cpan/Win32API-File],
1823 'EXCLUDED' => [
1824 qr{^ex/},
1825 't/pod.t',
1826 ],
1827 'UPSTREAM' => 'cpan',
1828 },
1829
1830 'XS::Typemap' => {
4f3a742d
DR
1831 'FILES' => q[ext/XS-Typemap],
1832 'UPSTREAM' => 'blead',
1833 },
1834
1835 'XSLoader' => {
681a49bf 1836 'DISTRIBUTION' => 'SAPER/XSLoader-0.16.tar.gz',
4f3a742d
DR
1837 'FILES' => q[dist/XSLoader],
1838 'EXCLUDED' => [
1839 qr{^eg/},
57f9caa0
SH
1840 qw( t/00-load.t
1841 t/01-api.t
1842 t/distchk.t
1843 t/pod.t
4f3a742d
DR
1844 t/podcover.t
1845 t/portfs.t
1846 ),
1847 'XSLoader.pm', # we use XSLoader_pm.PL
1848 ],
e52529ca
RGS
1849 # Revert UPSTREAM to 'blead' after 0.17 is released
1850 'UPSTREAM' => undef,
4f3a742d
DR
1851 },
1852
462ea751
DM
1853 # this pseudo-module represents all the files under ext/ and lib/
1854 # that aren't otherwise claimed. This means that the following two
1855 # commands will check that every file under ext/ and lib/ is
1856 # accounted for, and that there are no duplicates:
1857 #
1858 # perl Porting/Maintainers --checkmani lib ext
d8ada404 1859 # perl Porting/Maintainers --checkmani
462ea751 1860
4f3a742d 1861 '_PERLLIB' => {
4f3a742d
DR
1862 'FILES' => q[
1863 ext/arybase/
7b4d95f7 1864 ext/ExtUtils-Miniperl/
4f3a742d
DR
1865 ext/XS-APItest/
1866 lib/CORE.pod
1867 lib/Config.t
1868 lib/Config/Extensions.{pm,t}
1869 lib/DB.{pm,t}
1870 lib/ExtUtils/Embed.pm
1871 lib/ExtUtils/XSSymSet.pm
1872 lib/ExtUtils/t/Embed.t
1873 lib/ExtUtils/typemap
1874 lib/Internals.t
1875 lib/Net/hostent.{pm,t}
1876 lib/Net/netent.{pm,t}
1877 lib/Net/protoent.{pm,t}
1878 lib/Net/servent.{pm,t}
4f3a742d
DR
1879 lib/Pod/t/InputObjects.t
1880 lib/Pod/t/Select.t
1881 lib/Pod/t/Usage.t
4f3a742d
DR
1882 lib/Pod/t/utils.t
1883 lib/SelectSaver.{pm,t}
1884 lib/Symbol.{pm,t}
1885 lib/Thread.{pm,t}
1886 lib/Tie/Array.pm
1887 lib/Tie/Array/
1888 lib/Tie/ExtraHash.t
1889 lib/Tie/Handle.pm
1890 lib/Tie/Handle/
1891 lib/Tie/Scalar.{pm,t}
1892 lib/Tie/StdHandle.pm
1893 lib/Tie/SubstrHash.{pm,t}
1894 lib/Time/gmtime.{pm,t}
1895 lib/Time/localtime.{pm,t}
1896 lib/Time/tm.pm
1897 lib/UNIVERSAL.pm
1898 lib/Unicode/README
1899 lib/User/grent.{pm,t}
1900 lib/User/pwent.{pm,t}
1901 lib/blib.{pm,t}
1902 lib/bytes.{pm,t}
1903 lib/bytes_heavy.pl
e7a078a0 1904 lib/_charnames.pm
4f3a742d
DR
1905 lib/charnames.{pm,t}
1906 lib/dbm_filter_util.pl
1907 lib/deprecate.pm
1908 lib/dumpvar.{pl,t}
1909 lib/feature.{pm,t}
1910 lib/feature/
1911 lib/filetest.{pm,t}
1912 lib/h2ph.t
1913 lib/h2xs.t
1914 lib/integer.{pm,t}
1915 lib/less.{pm,t}
1916 lib/locale.{pm,t}
1917 lib/open.{pm,t}
1918 lib/overload/numbers.pm
1919 lib/overloading.{pm,t}
1920 lib/perl5db.{pl,t}
1921 lib/perl5db/
1922 lib/sort.{pm,t}
1923 lib/strict.{pm,t}
1924 lib/subs.{pm,t}
1925 lib/unicore/
1926 lib/utf8.{pm,t}
1927 lib/utf8_heavy.pl
1928 lib/vars{.pm,.t,_carp.t}
1929 lib/vmsish.{pm,t}
1930 ],
1931 'UPSTREAM' => 'blead',
1932 },
462ea751 1933);
b128a327 1934
97556ec3 1935# legacy CPAN flag
4f3a742d 1936for ( values %Modules ) {
97556ec3
GA
1937 $_->{CPAN} = !!$_->{DISTRIBUTION};
1938}
1939
d350de41
SH
1940# legacy MAINTAINER field
1941for ( values %Modules ) {
1942 next if exists $_->{MAINTAINER};
1943 if (not exists $_->{DISTRIBUTION} or (defined $_->{UPSTREAM} and $_->{UPSTREAM} eq 'blead')) {
1944 $_->{MAINTAINER} = 'p5p';
1945 $Maintainers{p5p} = 'perl5-porters <perl5-porters@perl.org>';
1946 }
1947 else {
1948 (my $pause_id = $_->{DISTRIBUTION}) =~ s{/.*$}{};
1949 $_->{MAINTAINER} = $pause_id;
1950 $Maintainers{$pause_id} = "<$pause_id\@cpan.org>";
1951 }
1952}
1953
b128a327 19541;