forked from Perl/perl5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MANIFEST
6485 lines (6485 loc) · 359 KB
/
MANIFEST
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
.dir-locals.el Emacs control file
.editorconfig EditorConfig style file
.lgtm.yml LGTM.com configuration file
.metaconf-exclusions.txt Symbols that should ignored when generating Configure
Artistic The "Artistic License"
asan_ignore Errors to skip under clang's Addresss Sanitizer
AUTHORS Contact info for contributors
autodoc.pl Creates pod/perlintern.pod and pod/perlapi.pod
av.c Array value code
av.h Array value header
builtin.c Functions in the builtin:: namespace
caretx.c C file to create $^X
cflags.SH A script that emits C compilation flags per file
Changes Describe how to peruse changes between releases
charclass_invlists.h Compiled-in inversion lists
class.c Internals of the `use feature 'class'` object system
CODE_OF_CONDUCT.md Information on where to find the Standards of Conduct
config_h.SH Produces config.h
configpm Produces lib/Config.pm
Configure Portability tool
configure.com Configure-equivalent for VMS
configure.gnu Crude emulation of GNU configure
cop.h Control operator header
Copying The GNU General Public License
cv.h Code value header
deb.c Debugging routines
doio.c I/O operations
doop.c Support code for various operations
dosish.h Some defines for MS/DOSish machines
dquote.c Functions for double quotish contexts
dump.c Debugging output
ebcdic_tables.h Generated tables included in utfebcdic.h
embed.fnc Database used by embed.pl
embed.h Maps symbols to safer names
embedvar.h C namespace management
EXTERN.h Included before foreign .h files
fakesdio.h stdio in terms of PerlIO
feature.h Feature header
form.h Public declarations for formats
generate_uudmap.c Generate uudmap.h, the uuencode decoding map
globals.c File to declare global symbols (for shared library)
globvar.sym Global variables that need hiding when embedded
gv.c Glob value code
gv.h Glob value header
handy.h Handy definitions
hv.c Hash value code
hv.h Hash value header
hv_func.h Hash value static inline function header
hv_macro.h Macros used by hv_func.h
inline.h Static inline functions
INSTALL Detailed installation instructions
install_lib.pl functions shared between install* scripts
installhtml Perl script to install html files for pods
installman Perl script to install man pages for pods
installperl Perl script to do "make install" dirty work
INTERN.h Included before domestic .h files
intrpvar.h Variables held in each interpreter instance
invlist_inline.h Inline functions for handling inversion lists
iperlsys.h Perl's interface to the system
keywords.c Perl_keyword(), generated by regen/keywords.pl
keywords.h The keyword numbers
l1_char_class_tab.h 256 word bit table of character classes (for handy.h)
locale.c locale-specific utility functions
make_ext.pl Used by Makefile to execute extension Makefiles
make_patchnum.pl Script to generate git_version.h and lib/Config_git.pl files for all OS'es
makedef.pl Create symbol export lists for linking
makedepend.SH Precursor to makedepend
makedepend_file.SH Precursor to makedepend_file
Makefile.micro microperl Makefile
Makefile.SH A script that generates Makefile
malloc.c A version of malloc you might not want
malloc_ctl.h A version of malloc you might not want
MANIFEST This list of files
mathoms.c A home for binary-compatible code artifacts
META.json Distribution meta-data in JSON
META.yml Distribution meta-data in YAML
metaconfig.h Control file for the metaconfig process
metaconfig.SH Control file for the metaconfig process
mg.c Magic code
mg.h Magic header
mg_names.inc Generated magic names used by dump.c
mg_raw.h Generated magic data used by generate_uudmap.c
mg_vtable.h Generated magic vtable data
miniperlmain.c Basic perl w/o dynamic loading or extensions
mkppport A script that distributes ppport.h
mkppport.lst List of extensions that need a ppport.h
mro_core.c Method Resolution Order code
myconfig.SH Prints summary of the current configuration
mydtrace.h Support for optional DTrace probes
nostdio.h Cause compile error on stdio calls
numeric.c Miscellaneous numeric conversion routines
op.c Opcode syntax tree code
op.h Opcode syntax tree header
op_reg_common.h Common parts of op.h, regexp.h header
opcode.h Automatically generated opcode header
opnames.h Automatically generated opcode header
overload.h generated overload enum (public)
overload.inc generated overload name table (implementation)
PACKAGING notes and best practice for packaging perl 5
packsizetables.inc The generated packprops array used in pp_pack.c
pad.c Scratchpad functions
pad.h Scratchpad headers
parser.h parser object header
patchlevel.h The current patch level of perl
peep.c The peephole optimizer and optree finalizer
perl.c main()
perl.h Global declarations
perl_inc_macro.h macro used to set \@INC using S_incpush_use_sep
perl_langinfo.h Perl's version of <langinfo.h>
perl_siphash.h Implementation of SipHash
perlapi.h Empty backwards-compat include
perldtrace.d D script for Perl probes
perlio.c C code for PerlIO abstraction
perlio.h PerlIO abstraction
perlio.sym Symbols for PerlIO abstraction
perliol.h PerlIO Layer definition
perlsdio.h Fake stdio using perlio
perlstatic.h Like inline.h, but functions not declared inline
perlvars.h Global variables
perly.act parser actions; derived from perly.y
perly.c parser code (NOT derived from perly.y)
perly.h header file for perly.c; derived from perly.y
perly.tab parser state tables; derived from perly.y
perly.y Yacc grammar for perl
Policy_sh.SH Hold site-wide preferences between Configure runs.
pp.c Push/Pop code
pp.h Push/Pop code defs
pp_ctl.c Push/Pop code for control flow
pp_hot.c Push/Pop code for heavily used opcodes
pp_pack.c Push/Pop code for pack/unpack
pp_proto.h C++ definitions for Push/Pop code
pp_sort.c Push/Pop code for sort
pp_sys.c Push/Pop code for system interaction
proto.h Prototypes
README The Instructions
README.aix Perl notes for AIX
README.amiga Perl notes for AmigaOS
README.android Perl notes for Android
README.bs2000 Perl notes for POSIX-BC BS2000
README.cn Perl for Simplified Chinese (in UTF-8)
README.cygwin Perl notes for Cygwin
README.freebsd Perl notes for FreeBSD
README.haiku Perl notes for Haiku
README.hpux Perl notes for HP-UX
README.hurd Perl notes for Hurd
README.irix Perl notes for Irix
README.jp Perl for Japanese (in EUC-JP)
README.ko Perl for Korean (in EUC-KR)
README.linux Perl notes for Linux
README.macosx Perl notes for Mac OS X
README.micro Notes about microperl
README.openbsd Perl notes for OpenBSD
README.os2 Perl notes for OS/2
README.os390 Perl notes for OS/390
README.os400 Perl notes for OS/400
README.plan9 Perl notes for Plan 9
README.qnx Perl notes for QNX
README.riscos Perl notes for RISC OS
README.solaris Perl notes for Solaris
README.synology Perl notes for Synology
README.tru64 Perl notes for Tru64
README.tw Perl for Traditional Chinese (in Big5)
README.vms Notes about installing the VMS port
README.vos Perl notes for Stratus VOS
README.win32 Perl notes for Windows
reentr.c Reentrant interfaces
reentr.h Reentrant interfaces
regcharclass.h Generated by regen/regcharclass.pl
regcomp.c Regular expression compiler
regcomp.h Private declarations for above
regcomp.sym Data for regnodes.h
regcomp_debug.c Regular expression compiler debug code
regcomp_internal.h Internal stuff for regex compiler
regcomp_invlist.c Invlist logic for regular expression engine
regcomp_study.c Optimizer for regular expression compiler
regcomp_trie.c Trie logic for regular expression compiler
regen.pl Run all scripts that (re)generate files
regen_perly.pl generate perly.{act,h,tab} from perly.y
regexec.c Regular expression evaluator
regexp.h Public declarations for the above
reginline.h Inline subs for the RE engine.
regnodes.h Description of nodes of the RE engine
run.c The interpreter loop
runtests.SH A script that generates runtests
sbox32_hash.h SBox hash code (32 Bit SBOX based hash function)
scope.c Scope entry and exit code
scope.h Scope entry and exit header
scope_types.h Types used to manage the save stack
SECURITY.md Add Security Policy for GitHub
sv.c Scalar value code
sv.h Scalar value header
sv_inline.h Perl_newSV_type and required defs
taint.c Tainting code
TestInit.pm Preamble library for tests
thread.h Threading header
time64.c 64 bit clean time.h (code)
time64.h 64 bit clean time.h (header)
time64_config.h 64 bit clean time.h (configuration)
toke.c The tokener
uconfig.h Configuration header for microperl
uconfig.sh Configuration script for microperl
uconfig64.sh Configuration script for microperl for LP64
uni_keywords.h Map unicode property names to numbers
unicode_constants.h compile-time macros for Unicode code points
universal.c The default UNIVERSAL package methods
unixish.h Defines that are assumed on Unix
utf8.c Unicode routines
utf8.h Unicode header
utfebcdic.h Unicode on EBCDIC (UTF-EBCDIC, tr16) header
util.c Utility routines
util.h Dummy header
utils.lst Lists utilities bundled with Perl
vutil.c Version object C functions
vutil.h Version object headers
vxs.inc Version object XS methods
warnings.h The warning numbers
write_buildcustomize.pl Generate lib/buildcustomize.pl
XSUB.h Include file for extension subroutines
zaphod32_hash.h Zaphod32 hash code (32 bit fast hash function)
amigaos4/amigaio.c AmigaOS4 port
amigaos4/amigaio.h AmigaOS4 port
amigaos4/amigaos.c AmigaOS4 port
amigaos4/amigaos.h AmigaOS4 port
amigaos4/config.sh AmigaOS4 config
cpan/.dir-locals.el Emacs control file
cpan/Archive-Tar/bin/ptar the ptar utility
cpan/Archive-Tar/bin/ptardiff the ptardiff utility
cpan/Archive-Tar/bin/ptargrep the ptardiff utility
cpan/Archive-Tar/lib/Archive/Tar.pm Archive::Tar
cpan/Archive-Tar/lib/Archive/Tar/Constant.pm Archive::Tar
cpan/Archive-Tar/lib/Archive/Tar/File.pm Archive::Tar
cpan/Archive-Tar/t/01_use.t Archive::Tar tests
cpan/Archive-Tar/t/02_methods.t Archive::Tar tests
cpan/Archive-Tar/t/03_file.t Archive::Tar tests
cpan/Archive-Tar/t/04_resolved_issues.t Archive::Tar tests
cpan/Archive-Tar/t/05_iter.t Archive::Tar tests
cpan/Archive-Tar/t/06_error.t Archive::Tar tests
cpan/Archive-Tar/t/08_ptargrep.t
cpan/Archive-Tar/t/09_roundtrip.t
cpan/Archive-Tar/t/90_symlink.t Archive::Tar tests
cpan/Archive-Tar/t/99_pod.t Archive::Tar tests
cpan/Archive-Tar/t/src/header/signed.tar Archive::Tar tests
cpan/Archive-Tar/t/src/linktest/linktest_missing_dir.tar Archive::Tar tests
cpan/Archive-Tar/t/src/linktest/linktest_with_dir.tar Archive::Tar tests
cpan/Archive-Tar/t/src/long/b Archive::Tar tests
cpan/Archive-Tar/t/src/long/bar.tar Archive::Tar tests
cpan/Archive-Tar/t/src/long/foo.tbz Archive::Tar tests
cpan/Archive-Tar/t/src/long/foo.tgz Archive::Tar tests
cpan/Archive-Tar/t/src/short/b Archive::Tar tests
cpan/Archive-Tar/t/src/short/bar.tar Archive::Tar tests
cpan/Archive-Tar/t/src/short/foo.tbz Archive::Tar tests
cpan/Archive-Tar/t/src/short/foo.tgz Archive::Tar tests
cpan/autodie/lib/autodie.pm Functions succeed or die with lexical scope
cpan/autodie/lib/autodie/exception.pm Exception class for autodie
cpan/autodie/lib/autodie/exception/system.pm Exception class for autodying system()
cpan/autodie/lib/autodie/hints.pm Hinting interface for autodie
cpan/autodie/lib/autodie/Scope/Guard.pm
cpan/autodie/lib/autodie/Scope/GuardStack.pm
cpan/autodie/lib/autodie/skip.pm
cpan/autodie/lib/autodie/Util.pm
cpan/autodie/lib/Fatal.pm Make errors in functions/builtins fatal
cpan/autodie/t/00-load.t autodie - basic load
cpan/autodie/t/args.t
cpan/autodie/t/autodie.t autodie - Basic functionality
cpan/autodie/t/autodie_skippy.pm
cpan/autodie/t/autodie_test_module.pm autodie - test helper
cpan/autodie/t/backcompat.t autodie - More Fatal backcompat
cpan/autodie/t/basic_exceptions.t autodie - Basic exception tests
cpan/autodie/t/binmode.t autodie - Binmode testing
cpan/autodie/t/blog_hints.t autodie - Tests fro PJF's blog
cpan/autodie/t/caller.t autodie - Caller diagnostics
cpan/autodie/t/chmod.t
cpan/autodie/t/chown.t
cpan/autodie/t/context.t autodie - Context clobbering tests
cpan/autodie/t/context_lexical.t autodie - Context clobbering lexically
cpan/autodie/t/core-trampoline-slurp.t
cpan/autodie/t/crickey.t autodie - Like an Australian
cpan/autodie/t/dbmopen.t autodie - dbm tests
cpan/autodie/t/eval_error.t
cpan/autodie/t/exception_class.t autodie - Exception class subclasses
cpan/autodie/t/exception_nonref.t
cpan/autodie/t/exceptions.t autodie - 5.10 exception tests.
cpan/autodie/t/exec.t autodie - exec tests.
cpan/autodie/t/Fatal.t autodie - Fatal backcompatibility
cpan/autodie/t/filehandles.t autodie - filehandle tests
cpan/autodie/t/fileno.t autodie - fileno tests
cpan/autodie/t/flock.t autodie - File locking tests
cpan/autodie/t/format-clobber.t autodie - Don't clobber scalars
cpan/autodie/t/hints.t autodie - Test hints interface
cpan/autodie/t/hints_insist.t autodie - Test hints insistance
cpan/autodie/t/hints_pod_examples.t autodie - Test hints POD examples
cpan/autodie/t/hints_provider_does.t autodie - Test hints/does roles
cpan/autodie/t/hints_provider_easy_does_it.t autodie - Test easy hints/does
cpan/autodie/t/hints_provider_isa.t autodie - Test hints/inheritance
cpan/autodie/t/import-into.t
cpan/autodie/t/internal.t autodie - internal interface tests
cpan/autodie/t/internal-backcompat.t autodie - Back-compatibility tests
cpan/autodie/t/kill.t
cpan/autodie/t/lethal.t autodie - lethal is the one true name
cpan/autodie/t/lib/autodie/test/au.pm autodie - Australian helper
cpan/autodie/t/lib/autodie/test/au/exception.pm autodie - Australian helper
cpan/autodie/t/lib/autodie/test/badname.pm autodie - Bad exception class
cpan/autodie/t/lib/autodie/test/missing.pm autodie - Missing exception class
cpan/autodie/t/lib/Caller_helper.pm autodie - Caller helper
cpan/autodie/t/lib/Hints_pod_examples.pm autodie - Hints/pod helper
cpan/autodie/t/lib/Hints_provider_does.pm autodie - Hints/does helper
cpan/autodie/t/lib/Hints_provider_easy_does_it.pm autodie - Hints/easy helper
cpan/autodie/t/lib/Hints_provider_isa.pm autodie - Hints/inherit helper
cpan/autodie/t/lib/Hints_test.pm autodie - Hints test helper
cpan/autodie/t/lib/lethal.pm autodie - with a better name
cpan/autodie/t/lib/my/autodie.pm autodie - blog_hints.t helper
cpan/autodie/t/lib/my/pragma.pm
cpan/autodie/t/lib/OtherTypes.pm autodie - Format clobberer helper.
cpan/autodie/t/lib/pujHa/ghach.pm autodie - Like a Klingon
cpan/autodie/t/lib/pujHa/ghach/Dotlh.pm autodie - With Klingon honour
cpan/autodie/t/lib/Some/Module.pm autodie - blog_hints.t helper
cpan/autodie/t/mkdir.t autodie - filesystem tests
cpan/autodie/t/no-default.t
cpan/autodie/t/no_carp.t
cpan/autodie/t/open.t autodie - Testing open
cpan/autodie/t/read.t
cpan/autodie/t/recv.t autodie - send/recv tests
cpan/autodie/t/repeat.t autodie - repeat autodie leak tests
cpan/autodie/t/rt-74246.t
cpan/autodie/t/scope_leak.t autodie - file scope leak tests
cpan/autodie/t/skip.t
cpan/autodie/t/string-eval-basic.t autodie - Basic string eval test
cpan/autodie/t/string-eval-leak.t autodie - String eval leak test
cpan/autodie/t/sysopen.t autodie - sysopen tests
cpan/autodie/t/touch_me
cpan/autodie/t/truncate.t autodie - File truncation tests
cpan/autodie/t/unlink.t autodie - Unlink system tests.
cpan/autodie/t/user-context.t autodie - Context changes for usersubs
cpan/autodie/t/usersub.t autodie - user subroutine tests
cpan/autodie/t/utf8_open.t
cpan/autodie/t/utime.t
cpan/autodie/t/version.t autodie - versioning tests
cpan/autodie/t/version_tag.t
cpan/AutoLoader/lib/AutoLoader.pm Autoloader base class
cpan/AutoLoader/lib/AutoSplit.pm Split up autoload functions
cpan/AutoLoader/t/01AutoLoader.t See if AutoLoader works
cpan/AutoLoader/t/02AutoSplit.t See if AutoSplit works
cpan/bignum/gentest/backend.sh
cpan/bignum/gentest/scope-nested-const.sh
cpan/bignum/gentest/scope-nested-hex-oct.sh
cpan/bignum/lib/bigfloat.pm
cpan/bignum/lib/bigint.pm bigint
cpan/bignum/lib/bignum.pm bignum
cpan/bignum/lib/bigrat.pm bigrat
cpan/bignum/lib/Math/BigFloat/Trace.pm bignum tracing
cpan/bignum/lib/Math/BigInt/Trace.pm bignum tracing
cpan/bignum/lib/Math/BigRat/Trace.pm
cpan/bignum/t/backend-gmp-bigfloat.t
cpan/bignum/t/backend-gmp-bigint.t
cpan/bignum/t/backend-gmp-bignum.t
cpan/bignum/t/backend-gmp-bigrat.t
cpan/bignum/t/backend-pari-bigfloat.t
cpan/bignum/t/backend-pari-bigint.t
cpan/bignum/t/backend-pari-bignum.t
cpan/bignum/t/backend-pari-bigrat.t
cpan/bignum/t/bigexp.t See if bignum works
cpan/bignum/t/bigfloat.t
cpan/bignum/t/bigint.t See if bigint works
cpan/bignum/t/bignum.t See if bignum works
cpan/bignum/t/bigrat.t See if bigrat works
cpan/bignum/t/const-bigfloat.t
cpan/bignum/t/const-bigint.t
cpan/bignum/t/const-bignum.t
cpan/bignum/t/const-bigrat.t
cpan/bignum/t/down-mbi-up-mbf.t
cpan/bignum/t/down-mbi-up-mbr.t
cpan/bignum/t/down-mbi-up-undef.t
cpan/bignum/t/down-undef-up-mbf.t
cpan/bignum/t/e_pi-bigfloat.t
cpan/bignum/t/e_pi-bigint.t
cpan/bignum/t/e_pi-bignum.t
cpan/bignum/t/e_pi-bigrat.t
cpan/bignum/t/import-bigfloat.t
cpan/bignum/t/import-bigint.t
cpan/bignum/t/import-bignum.t
cpan/bignum/t/import-bigrat.t
cpan/bignum/t/in_effect.t See if in_effect() works
cpan/bignum/t/infnan-bigfloat.t
cpan/bignum/t/infnan-bigint.t
cpan/bignum/t/infnan-bignum-mbf.t
cpan/bignum/t/infnan-bignum-mbr.t
cpan/bignum/t/infnan-bigrat.t
cpan/bignum/t/option_a.t See if bignum a => X works
cpan/bignum/t/option_a-bignum.t
cpan/bignum/t/option_l-bigfloat.t
cpan/bignum/t/option_l-bigint.t
cpan/bignum/t/option_l-bignum.t
cpan/bignum/t/option_l-bigrat.t
cpan/bignum/t/option_p.t See if bignum p => X works
cpan/bignum/t/option_p-bignum.t
cpan/bignum/t/overrides.t See if global overrides behave
cpan/bignum/t/ratopt_a.t See if bigrat a => X works
cpan/bignum/t/scope-bigfloat.t
cpan/bignum/t/scope-bigint.t
cpan/bignum/t/scope-bignum.t
cpan/bignum/t/scope-bigrat.t
cpan/bignum/t/scope-nested-const.t
cpan/bignum/t/scope-nested-hex-oct.t
cpan/Compress-Raw-Bzip2/Bzip2.xs
cpan/Compress-Raw-Bzip2/bzip2-src/blocksort.c
cpan/Compress-Raw-Bzip2/bzip2-src/bzip2.patch
cpan/Compress-Raw-Bzip2/bzip2-src/bzlib.c
cpan/Compress-Raw-Bzip2/bzip2-src/bzlib.h
cpan/Compress-Raw-Bzip2/bzip2-src/bzlib_private.h
cpan/Compress-Raw-Bzip2/bzip2-src/compress.c
cpan/Compress-Raw-Bzip2/bzip2-src/crctable.c
cpan/Compress-Raw-Bzip2/bzip2-src/decompress.c
cpan/Compress-Raw-Bzip2/bzip2-src/huffman.c
cpan/Compress-Raw-Bzip2/bzip2-src/LICENSE
cpan/Compress-Raw-Bzip2/bzip2-src/randtable.c
cpan/Compress-Raw-Bzip2/fallback/constants.h
cpan/Compress-Raw-Bzip2/fallback/constants.xs
cpan/Compress-Raw-Bzip2/lib/Compress/Raw/Bzip2.pm
cpan/Compress-Raw-Bzip2/Makefile.PL
cpan/Compress-Raw-Bzip2/private/MakeUtil.pm
cpan/Compress-Raw-Bzip2/t/000prereq.t
cpan/Compress-Raw-Bzip2/t/01bzip2.t
cpan/Compress-Raw-Bzip2/t/09limitoutput.t
cpan/Compress-Raw-Bzip2/t/19nonpv.t
cpan/Compress-Raw-Bzip2/t/99pod.t
cpan/Compress-Raw-Bzip2/t/compress/CompTestUtils.pm
cpan/Compress-Raw-Bzip2/typemap
cpan/Compress-Raw-Zlib/config.in Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/fallback/constants.h Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/fallback/constants.xs Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/lib/Compress/Raw/Zlib.pm Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/Makefile.PL Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/private/MakeUtil.pm Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/t/01version.t Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/t/02zlib.t Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/t/07bufsize.t Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/t/09limitoutput.t Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/t/18lvalue.t Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/t/19nonpv.t
cpan/Compress-Raw-Zlib/t/compress/CompTestUtils.pm
cpan/Compress-Raw-Zlib/typemap Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/Zlib.xs Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/zlib-src/adler32.c Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/zlib-src/compress.c Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/zlib-src/crc32.c Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/zlib-src/crc32.h Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/zlib-src/deflate.c Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/zlib-src/deflate.h Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/zlib-src/infback.c Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/zlib-src/inffast.c Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/zlib-src/inffast.h Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/zlib-src/inffixed.h Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/zlib-src/inflate.c Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/zlib-src/inflate.h Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/zlib-src/inftrees.c Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/zlib-src/inftrees.h Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/zlib-src/trees.c Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/zlib-src/trees.h Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/zlib-src/uncompr.c Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/zlib-src/zconf.h Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/zlib-src/zlib.h Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/zlib-src/zutil.c Compress::Raw::Zlib
cpan/Compress-Raw-Zlib/zlib-src/zutil.h Compress::Raw::Zlib
cpan/Config-Perl-V/t/10_base.t Config::Perl::V
cpan/Config-Perl-V/t/20_plv56.t Config::Perl::V
cpan/Config-Perl-V/t/21_plv58.t Config::Perl::V
cpan/Config-Perl-V/t/22_plv510.t Config::Perl::V
cpan/Config-Perl-V/t/23_plv512.t Config::Perl::V
cpan/Config-Perl-V/t/24_plv514.t Config::Perl::V
cpan/Config-Perl-V/t/25_plv516.t Config::Perl::V
cpan/Config-Perl-V/t/25_plv5162.t Config::Perl::V
cpan/Config-Perl-V/t/26_plv518.t Config::Perl::V
cpan/Config-Perl-V/t/26_plv5182.t Config::Perl::V
cpan/Config-Perl-V/t/27_plv5200.t Config::Perl::V
cpan/Config-Perl-V/t/27_plv5202.t Config::Perl::V
cpan/Config-Perl-V/t/28_plv5220.t Config::Perl::V
cpan/Config-Perl-V/t/28_plv52201w.t Config::Perl::V
cpan/Config-Perl-V/t/29_plv5235w.t Config::Perl::V
cpan/Config-Perl-V/t/30_plv5240.t Config::Perl::V
cpan/Config-Perl-V/t/31_plv52511.t Config::Perl::V
cpan/Config-Perl-V/t/32_plv5261rc1.t Config::Perl::V
cpan/Config-Perl-V/t/33_plv52711r.t Config::Perl::V
cpan/Config-Perl-V/t/34_plv5280.t Config::Perl::V
cpan/Config-Perl-V/t/35_plv52910g.t Config::Perl::V
cpan/Config-Perl-V/t/36_plv5300.t Config::Perl::V
cpan/Config-Perl-V/t/37_plv53111qm.t Config::Perl::V
cpan/Config-Perl-V/t/38_plv5320tld.t Config::Perl::V
cpan/Config-Perl-V/t/39_plv5340tqm.t Config::Perl::V
cpan/Config-Perl-V/t/40_plv5358dnqm.t Config::Perl::V
cpan/Config-Perl-V/t/41_plv5360dnqm.t Config::Perl::V
cpan/Config-Perl-V/t/42_plv5373tld.t Config::Perl::V
cpan/Config-Perl-V/t/43_plv53710rcs.t Test file related to Config::Perl::V
cpan/Config-Perl-V/V.pm Config::Perl::V
cpan/CPAN/lib/App/Cpan.pm helper package for CPAN.pm
cpan/CPAN/lib/CPAN.pm Interface to Comprehensive Perl Archive Network
cpan/CPAN/lib/CPAN/API/HOWTO.pod recipe book for programming with CPAN.pm
cpan/CPAN/lib/CPAN/Author.pm helper package for CPAN.pm
cpan/CPAN/lib/CPAN/Bundle.pm helper package for CPAN.pm
cpan/CPAN/lib/CPAN/CacheMgr.pm helper package for CPAN.pm
cpan/CPAN/lib/CPAN/Complete.pm helper package for CPAN.pm
cpan/CPAN/lib/CPAN/Debug.pm helper package for CPAN.pm
cpan/CPAN/lib/CPAN/DeferredCode.pm helper package for CPAN.pm
cpan/CPAN/lib/CPAN/Distribution.pm helper package for CPAN.pm
cpan/CPAN/lib/CPAN/Distroprefs.pm helper package for CPAN.pm
cpan/CPAN/lib/CPAN/Distrostatus.pm helper package for CPAN.pm
cpan/CPAN/lib/CPAN/Exception/blocked_urllist.pm helper package for CPAN.pm
cpan/CPAN/lib/CPAN/Exception/RecursiveDependency.pm helper package for CPAN.pm
cpan/CPAN/lib/CPAN/Exception/yaml_not_installed.pm helper package for CPAN.pm
cpan/CPAN/lib/CPAN/Exception/yaml_process_error.pm helper package for CPAN.pm
cpan/CPAN/lib/CPAN/FirstTime.pm Utility for creating CPAN config files
cpan/CPAN/lib/CPAN/FTP.pm helper package for CPAN.pm
cpan/CPAN/lib/CPAN/FTP/netrc.pm helper package for CPAN.pm
cpan/CPAN/lib/CPAN/HandleConfig.pm helper package for CPAN.pm
cpan/CPAN/lib/CPAN/HTTP/Client.pm helper package for CPAN.pm
cpan/CPAN/lib/CPAN/HTTP/Credentials.pm helper package for CPAN.pm
cpan/CPAN/lib/CPAN/Index.pm helper package for CPAN.pm
cpan/CPAN/lib/CPAN/InfoObj.pm helper package for CPAN.pm
cpan/CPAN/lib/CPAN/Kwalify.pm helper package for CPAN.pm
cpan/CPAN/lib/CPAN/Kwalify/distroprefs.dd helper file for validating config files
cpan/CPAN/lib/CPAN/Kwalify/distroprefs.yml helper file for validating config files
cpan/CPAN/lib/CPAN/LWP/UserAgent.pm helper package for CPAN.pm
cpan/CPAN/lib/CPAN/Mirrors.pm helper package for CPAN.pm
cpan/CPAN/lib/CPAN/Module.pm helper package for CPAN.pm
cpan/CPAN/lib/CPAN/Nox.pm Runs CPAN while avoiding compiled extensions
cpan/CPAN/lib/CPAN/Plugin.pm
cpan/CPAN/lib/CPAN/Plugin/Specfile.pm
cpan/CPAN/lib/CPAN/Prompt.pm
cpan/CPAN/lib/CPAN/Queue.pm queueing system for CPAN.pm
cpan/CPAN/lib/CPAN/Shell.pm
cpan/CPAN/lib/CPAN/Tarzip.pm helper package for CPAN.pm
cpan/CPAN/lib/CPAN/URL.pm
cpan/CPAN/lib/CPAN/Version.pm Simple math with different flavors of version strings
cpan/CPAN/PAUSE2003.pub CPAN public key
cpan/CPAN/PAUSE2005.pub CPAN public key
cpan/CPAN/PAUSE2007.pub CPAN public key
cpan/CPAN/PAUSE2009.pub CPAN public key
cpan/CPAN/PAUSE2011.pub
cpan/CPAN/PAUSE2022.pub
cpan/CPAN/scripts/cpan easily interact with CPAN from the command line
cpan/CPAN/t/01loadme.t See if CPAN the module works
cpan/CPAN/t/02nox.t See if CPAN::Nox works
cpan/CPAN/t/03pkgs.t See if CPAN::Version works
cpan/CPAN/t/10version.t See if CPAN the module works
cpan/CPAN/t/11mirroredby.t See if CPAN::Mirrored::By works
cpan/CPAN/t/32pushyhttps.t
cpan/CPAN-Meta/corpus/BadMETA.yml
cpan/CPAN-Meta/corpus/bareyaml.meta
cpan/CPAN-Meta/corpus/CL018_yaml.meta
cpan/CPAN-Meta/corpus/json.meta
cpan/CPAN-Meta/corpus/META-VR.json
cpan/CPAN-Meta/corpus/META-VR.yml
cpan/CPAN-Meta/corpus/yaml.meta
cpan/CPAN-Meta/lib/CPAN/Meta.pm
cpan/CPAN-Meta/lib/CPAN/Meta/Converter.pm
cpan/CPAN-Meta/lib/CPAN/Meta/Feature.pm
cpan/CPAN-Meta/lib/CPAN/Meta/History.pm
cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod
cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod
cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod
cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod
cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod
cpan/CPAN-Meta/lib/CPAN/Meta/Merge.pm
cpan/CPAN-Meta/lib/CPAN/Meta/Prereqs.pm
cpan/CPAN-Meta/lib/CPAN/Meta/Spec.pm
cpan/CPAN-Meta/lib/CPAN/Meta/Validator.pm
cpan/CPAN-Meta/lib/Parse/CPAN/Meta.pm
cpan/CPAN-Meta/t/converter.t
cpan/CPAN-Meta/t/converter-bad.t
cpan/CPAN-Meta/t/converter-fail.t
cpan/CPAN-Meta/t/converter-fragments.t
cpan/CPAN-Meta/t/data-fail/META-1_0.yml
cpan/CPAN-Meta/t/data-fail/META-1_1.yml
cpan/CPAN-Meta/t/data-fail/META-1_2.yml
cpan/CPAN-Meta/t/data-fail/META-1_3.yml
cpan/CPAN-Meta/t/data-fail/META-1_4.yml
cpan/CPAN-Meta/t/data-fail/META-2.json
cpan/CPAN-Meta/t/data-fixable/107650337-META.yml
cpan/CPAN-Meta/t/data-fixable/1598804075-META.yml
cpan/CPAN-Meta/t/data-fixable/1927486199-META.yml
cpan/CPAN-Meta/t/data-fixable/1985980974-META.yml
cpan/CPAN-Meta/t/data-fixable/2031017050-META.yml
cpan/CPAN-Meta/t/data-fixable/284247103-META.yml
cpan/CPAN-Meta/t/data-fixable/344981821-META.yml
cpan/CPAN-Meta/t/data-fixable/35478989-META.yml
cpan/CPAN-Meta/t/data-fixable/98042513-META.yml
cpan/CPAN-Meta/t/data-fixable/invalid-meta-spec-version.json
cpan/CPAN-Meta/t/data-fixable/invalid-meta-spec-version.yml
cpan/CPAN-Meta/t/data-fixable/META-1_2.yml
cpan/CPAN-Meta/t/data-fixable/META-1_3.yml
cpan/CPAN-Meta/t/data-fixable/META-1_4.yml
cpan/CPAN-Meta/t/data-fixable/META-2.json
cpan/CPAN-Meta/t/data-fixable/meta-spec-version-trailing-zeros.json
cpan/CPAN-Meta/t/data-fixable/meta-spec-version-trailing-zeros.yml
cpan/CPAN-Meta/t/data-fixable/restrictive-2.json
cpan/CPAN-Meta/t/data-fixable/version-ranges-2.json
cpan/CPAN-Meta/t/data-test/gpl-1_4.yml
cpan/CPAN-Meta/t/data-test/META-1_0.yml
cpan/CPAN-Meta/t/data-test/META-1_1.yml
cpan/CPAN-Meta/t/data-test/META-1_2.yml
cpan/CPAN-Meta/t/data-test/META-1_3.yml
cpan/CPAN-Meta/t/data-test/META-1_4.yml
cpan/CPAN-Meta/t/data-test/META-2.json
cpan/CPAN-Meta/t/data-test/META-2.meta
cpan/CPAN-Meta/t/data-test/preserve-release-status.yml
cpan/CPAN-Meta/t/data-test/provides-version-missing.json
cpan/CPAN-Meta/t/data-test/resources.yml
cpan/CPAN-Meta/t/data-test/restricted-2.json
cpan/CPAN-Meta/t/data-test/restrictive-1_4.yml
cpan/CPAN-Meta/t/data-test/unicode.yml
cpan/CPAN-Meta/t/data-test/version-not-normal.json
cpan/CPAN-Meta/t/data-test/version-ranges-1_4.yml
cpan/CPAN-Meta/t/data-test/version-ranges-2.json
cpan/CPAN-Meta/t/data-test/x_deprecated-META.json
cpan/CPAN-Meta/t/data-valid/1122575719-META.yml
cpan/CPAN-Meta/t/data-valid/1206545041-META.yml
cpan/CPAN-Meta/t/data-valid/1985684504-META.yml
cpan/CPAN-Meta/t/data-valid/476602558-META.yml
cpan/CPAN-Meta/t/data-valid/META-1_0.yml
cpan/CPAN-Meta/t/data-valid/META-1_1.yml
cpan/CPAN-Meta/t/data-valid/META-1_4.yml
cpan/CPAN-Meta/t/data-valid/META-2.json
cpan/CPAN-Meta/t/data-valid/scalar-meta-spec.yml
cpan/CPAN-Meta/t/data-valid/x_deprecated-META.yml
cpan/CPAN-Meta/t/lib/Parse/CPAN/Meta/Test.pm
cpan/CPAN-Meta/t/load-bad.t
cpan/CPAN-Meta/t/merge.t
cpan/CPAN-Meta/t/meta-obj.t
cpan/CPAN-Meta/t/no-index.t
cpan/CPAN-Meta/t/optional_feature-merge.t
cpan/CPAN-Meta/t/parse-cpan-meta/02_api.t
cpan/CPAN-Meta/t/parse-cpan-meta/03_functions.t
cpan/CPAN-Meta/t/parse-cpan-meta/04_export.t
cpan/CPAN-Meta/t/parse-cpan-meta/05_errors.t
cpan/CPAN-Meta/t/prereqs.t
cpan/CPAN-Meta/t/prereqs-finalize.t
cpan/CPAN-Meta/t/prereqs-merge.t
cpan/CPAN-Meta/t/README-data.txt
cpan/CPAN-Meta/t/repository.t
cpan/CPAN-Meta/t/save-load.t
cpan/CPAN-Meta/t/validator.t
cpan/CPAN-Meta-Requirements/lib/CPAN/Meta/Requirements.pm
cpan/CPAN-Meta-Requirements/t/accepts.t
cpan/CPAN-Meta-Requirements/t/bad_version_hook.t
cpan/CPAN-Meta-Requirements/t/basic.t
cpan/CPAN-Meta-Requirements/t/finalize.t
cpan/CPAN-Meta-Requirements/t/from-hash.t
cpan/CPAN-Meta-Requirements/t/merge.t
cpan/CPAN-Meta-Requirements/t/strings.t
cpan/CPAN-Meta-YAML/lib/CPAN/Meta/YAML.pm CPAN-Meta-YAML files
cpan/CPAN-Meta-YAML/t/01_api.t
cpan/CPAN-Meta-YAML/t/01_compile.t CPAN-Meta-YAML files
cpan/CPAN-Meta-YAML/t/10_read.t
cpan/CPAN-Meta-YAML/t/11_read_string.t
cpan/CPAN-Meta-YAML/t/12_write.t
cpan/CPAN-Meta-YAML/t/13_write_string.t
cpan/CPAN-Meta-YAML/t/20_subclass.t CPAN-Meta-YAML files
cpan/CPAN-Meta-YAML/t/21_yamlpm_compat.t
cpan/CPAN-Meta-YAML/t/30_yaml_spec_tml.t
cpan/CPAN-Meta-YAML/t/31_local_tml.t
cpan/CPAN-Meta-YAML/t/32_world_tml.t
cpan/CPAN-Meta-YAML/t/86_fail.t
cpan/CPAN-Meta-YAML/t/data/ascii.yml
cpan/CPAN-Meta-YAML/t/data/latin1.yml
cpan/CPAN-Meta-YAML/t/data/multibyte.yml CPAN-Meta-YAML files
cpan/CPAN-Meta-YAML/t/data/utf_16_le_bom.yml CPAN-Meta-YAML files
cpan/CPAN-Meta-YAML/t/data/utf_8_bom.yml
cpan/CPAN-Meta-YAML/t/lib/SubtestCompat.pm
cpan/CPAN-Meta-YAML/t/lib/TestBridge.pm
cpan/CPAN-Meta-YAML/t/lib/TestML/Tiny.pm
cpan/CPAN-Meta-YAML/t/lib/TestUtils.pm
cpan/CPAN-Meta-YAML/t/README.md
cpan/CPAN-Meta-YAML/t/tml
cpan/CPAN-Meta-YAML/t/tml-local/dump-error/circular.tml
cpan/CPAN-Meta-YAML/t/tml-local/load-error/document.tml
cpan/CPAN-Meta-YAML/t/tml-local/load-error/scalar.tml
cpan/CPAN-Meta-YAML/t/tml-local/load-error/tag.tml
cpan/CPAN-Meta-YAML/t/tml-local/load-warning/document.tml
cpan/CPAN-Meta-YAML/t/tml-local/perl-to-yaml/quoting.tml
cpan/CPAN-Meta-YAML/t/tml-local/yaml-roundtrip/collection.tml
cpan/CPAN-Meta-YAML/t/tml-local/yaml-roundtrip/comment.tml
cpan/CPAN-Meta-YAML/t/tml-local/yaml-roundtrip/document.tml
cpan/CPAN-Meta-YAML/t/tml-local/yaml-roundtrip/mapping.tml
cpan/CPAN-Meta-YAML/t/tml-local/yaml-roundtrip/quoting.tml
cpan/CPAN-Meta-YAML/t/tml-local/yaml-roundtrip/scalar.tml
cpan/CPAN-Meta-YAML/t/tml-local/yaml-roundtrip/sequence.tml
cpan/CPAN-Meta-YAML/t/tml-spec/basic-data.tml
cpan/CPAN-Meta-YAML/t/tml-spec/unicode.tml
cpan/CPAN-Meta-YAML/t/tml-world/Acme-Time-Baby.tml
cpan/CPAN-Meta-YAML/t/tml-world/Data-Swap.tml
cpan/CPAN-Meta-YAML/t/tml-world/Games-Nintendo-Wii-Mii.tml
cpan/CPAN-Meta-YAML/t/tml-world/HTML-WebDAO.tml
cpan/CPAN-Meta-YAML/t/tml-world/ITS-SIN-FIDS-Content-XML.tml
cpan/CPAN-Meta-YAML/t/tml-world/Plagger.tml
cpan/CPAN-Meta-YAML/t/tml-world/Spreadsheet-Read.tml
cpan/CPAN-Meta-YAML/t/tml-world/Template-Provider-Unicode-Japanese.tml
cpan/CPAN-Meta-YAML/t/tml-world/toolbar.tml
cpan/CPAN-Meta-YAML/t/tml-world/Vanilla-Perl.tml
cpan/CPAN-Meta-YAML/t/tml-world/YAML-Tiny-META.tml
cpan/CPAN-Meta-YAML/t/tml-world/yaml_org.tml
cpan/DB_File/config.in Part of Berkeley DB configuration
cpan/DB_File/DB_File.pm Berkeley DB extension Perl module
cpan/DB_File/DB_File.xs Berkeley DB extension external subroutines
cpan/DB_File/dbinfo Berkeley DB database version checker
cpan/DB_File/hints/bitrig.pl
cpan/DB_File/hints/dynixptx.pl Hint for DB_File for named architecture
cpan/DB_File/hints/minix.pl
cpan/DB_File/hints/netbsd.pl
cpan/DB_File/hints/openbsd.pl
cpan/DB_File/hints/sco.pl Hint for DB_File for named architecture
cpan/DB_File/Makefile.PL Berkeley DB extension makefile writer
cpan/DB_File/t/db-btree.t See if DB_File works
cpan/DB_File/t/db-hash.t See if DB_File works
cpan/DB_File/t/db-recno.t See if DB_File works
cpan/DB_File/t/db-threads.t See if DB_File works
cpan/DB_File/typemap Berkeley DB extension interface types
cpan/DB_File/version.c Berkeley DB extension interface version check
cpan/Digest/lib/Digest.pm
cpan/Digest/lib/Digest/base.pm
cpan/Digest/lib/Digest/file.pm
cpan/Digest/t/base.t See if Digest extensions work
cpan/Digest/t/digest.t See if Digest extensions work
cpan/Digest/t/file.t See if Digest extensions work
cpan/Digest/t/lib/Digest/Dummy.pm See if Digest extensions work
cpan/Digest/t/security.t See if Digest extensions work
cpan/Digest-MD5/hints/dec_osf.pl Hints for named architecture
cpan/Digest-MD5/hints/irix_6.pl Hints for named architecture
cpan/Digest-MD5/hints/MacOS.pl Hints for named architecture
cpan/Digest-MD5/Makefile.PL Digest::MD5 extension makefile writer
cpan/Digest-MD5/MD5.pm Digest::MD5 extension
cpan/Digest-MD5/MD5.xs Digest::MD5 extension
cpan/Digest-MD5/t/align.t See if Digest::MD5 extension works
cpan/Digest-MD5/t/badfile.t See if Digest::MD5 extension works
cpan/Digest-MD5/t/bits.t See if Digest::MD5 extension works
cpan/Digest-MD5/t/clone.t See if Digest::MD5 extension works
cpan/Digest-MD5/t/files.t See if Digest::MD5 extension works
cpan/Digest-MD5/t/md5-aaa.t See if Digest::MD5 extension works
cpan/Digest-MD5/t/threads.t See if Digest::MD5 extension works
cpan/Digest-MD5/t/utf8.t See if Digest::MD5 extension works
cpan/Digest-MD5/t/warns.t
cpan/Digest-MD5/typemap Digest::MD5 extension
cpan/Digest-SHA/lib/Digest/SHA.pm Digest::SHA extension
cpan/Digest-SHA/Makefile.PL Digest::SHA Makefile.PL
cpan/Digest-SHA/SHA.xs Digest::SHA extension
cpan/Digest-SHA/shasum shasum script
cpan/Digest-SHA/src/sdf.c Digest::SHA extension
cpan/Digest-SHA/src/sha.c Digest::SHA extension
cpan/Digest-SHA/src/sha.h Digest::SHA extension
cpan/Digest-SHA/src/sha64bit.c Digest::SHA extension
cpan/Digest-SHA/src/sha64bit.h Digest::SHA extension
cpan/Digest-SHA/t/allfcns.t See if Digest::SHA works
cpan/Digest-SHA/t/base64.t See if Digest::SHA works
cpan/Digest-SHA/t/bitbuf.t See if Digest::SHA works
cpan/Digest-SHA/t/bitorder.t
cpan/Digest-SHA/t/fips180-4.t See if Digest::SHA works
cpan/Digest-SHA/t/fips198.t See if Digest::SHA works
cpan/Digest-SHA/t/gg.t See if Digest::SHA works
cpan/Digest-SHA/t/gglong.t See if Digest::SHA works
cpan/Digest-SHA/t/hmacsha.t See if Digest::SHA works
cpan/Digest-SHA/t/inheritance.t
cpan/Digest-SHA/t/ireland.t See if Digest::SHA works
cpan/Digest-SHA/t/methods.t See if Digest::SHA works
cpan/Digest-SHA/t/nistbit.t See if Digest::SHA works
cpan/Digest-SHA/t/nistbyte.t See if Digest::SHA works
cpan/Digest-SHA/t/rfc2202.t See if Digest::SHA works
cpan/Digest-SHA/t/sha1.t See if Digest::SHA works
cpan/Digest-SHA/t/sha224.t See if Digest::SHA works
cpan/Digest-SHA/t/sha256.t See if Digest::SHA works
cpan/Digest-SHA/t/sha384.t See if Digest::SHA works
cpan/Digest-SHA/t/sha512.t See if Digest::SHA works
cpan/Digest-SHA/t/state.t See if Digest::SHA works
cpan/Digest-SHA/t/unicode.t
cpan/Digest-SHA/t/woodbury.t See if Digest::SHA works
cpan/Digest-SHA/typemap Typemap for Digest::SHA
cpan/Encode/bin/enc2xs Encode module generator
cpan/Encode/bin/encguess guess character encodings of files
cpan/Encode/bin/piconv iconv by perl
cpan/Encode/bin/ucm2table Table Generator for testing
cpan/Encode/bin/ucmlint A UCM Lint utility
cpan/Encode/bin/ucmsort A UCM sort utility
cpan/Encode/bin/unidump Unicode Dump like hexdump(1)
cpan/Encode/Byte/Byte.pm Encode extension
cpan/Encode/Byte/Makefile.PL Encode extension
cpan/Encode/CN/CN.pm Encode extension
cpan/Encode/CN/Makefile.PL Encode extension
cpan/Encode/EBCDIC/EBCDIC.pm Encode extension
cpan/Encode/EBCDIC/Makefile.PL Encode extension
cpan/Encode/encengine.c Encode extension
cpan/Encode/Encode.pm Mother of all Encode extensions
cpan/Encode/Encode.xs Encode extension
cpan/Encode/Encode/_PM.e2x Skeleton file for enc2xs
cpan/Encode/Encode/_T.e2x Skeleton file for enc2xs
cpan/Encode/Encode/Changes.e2x Skeleton file for enc2xs
cpan/Encode/Encode/ConfigLocal_PM.e2x Skeleton file for enc2xs
cpan/Encode/Encode/encode.h Encode extension header file
cpan/Encode/Encode/Makefile_PL.e2x Skeleton file for enc2xs
cpan/Encode/Encode/README.e2x Skeleton file for enc2xs
cpan/Encode/encoding.pm Perl Pragmatic Module
cpan/Encode/JP/JP.pm Encode extension
cpan/Encode/JP/Makefile.PL Encode extension
cpan/Encode/KR/KR.pm Encode extension
cpan/Encode/KR/Makefile.PL Encode extension
cpan/Encode/lib/Encode/Alias.pm Encode extension
cpan/Encode/lib/Encode/CJKConstants.pm Encode extension
cpan/Encode/lib/Encode/CN/HZ.pm Encode extension
cpan/Encode/lib/Encode/Config.pm Encode configuration module
cpan/Encode/lib/Encode/Encoder.pm OO Encoder
cpan/Encode/lib/Encode/Encoding.pm Encode extension
cpan/Encode/lib/Encode/GSM0338.pm Encode extension
cpan/Encode/lib/Encode/Guess.pm Encode Extension
cpan/Encode/lib/Encode/JP/H2Z.pm Encode extension
cpan/Encode/lib/Encode/JP/JIS7.pm Encode extension
cpan/Encode/lib/Encode/KR/2022_KR.pm Encode extension
cpan/Encode/lib/Encode/MIME/Header.pm Encode extension
cpan/Encode/lib/Encode/MIME/Header/ISO_2022_JP.pm Encode extension
cpan/Encode/lib/Encode/MIME/Name.pm Encode extension
cpan/Encode/lib/Encode/PerlIO.pod Documents for Encode & PerlIO
cpan/Encode/lib/Encode/Supported.pod Documents for supported encodings
cpan/Encode/lib/Encode/Unicode/UTF7.pm Encode extension
cpan/Encode/Makefile.PL Encode extension makefile writer
cpan/Encode/Symbol/Makefile.PL Encode extension
cpan/Encode/Symbol/Symbol.pm Encode extension
cpan/Encode/t/Aliases.t test script
cpan/Encode/t/at-cn.t test script
cpan/Encode/t/at-tw.t test script
cpan/Encode/t/big5-eten.enc test data
cpan/Encode/t/big5-eten.utf test data
cpan/Encode/t/big5-hkscs.enc test data
cpan/Encode/t/big5-hkscs.utf test data
cpan/Encode/t/CJKT.t test script
cpan/Encode/t/cow.t
cpan/Encode/t/decode.t
cpan/Encode/t/enc_data.t test script for utf8 DATA
cpan/Encode/t/enc_eucjp.t test script
cpan/Encode/t/enc_module.enc test data for t/enc_module.t
cpan/Encode/t/enc_module.t test script
cpan/Encode/t/enc_utf8.t test script
cpan/Encode/t/Encode.t test script
cpan/Encode/t/Encoder.t test script
cpan/Encode/t/encoding.t test script
cpan/Encode/t/encoding-locale.t test script
cpan/Encode/t/fallback.t test script
cpan/Encode/t/from_to.t test script
cpan/Encode/t/gb2312.enc test data
cpan/Encode/t/gb2312.utf test data
cpan/Encode/t/grow.t test script
cpan/Encode/t/gsm0338.t test script
cpan/Encode/t/guess.t test script
cpan/Encode/t/isa.t
cpan/Encode/t/jis7-fallback.t test script
cpan/Encode/t/jisx0201.enc test data
cpan/Encode/t/jisx0201.utf test data
cpan/Encode/t/jisx0208.enc test data
cpan/Encode/t/jisx0208.utf test data
cpan/Encode/t/jisx0212.enc test data
cpan/Encode/t/jisx0212.utf test data
cpan/Encode/t/jperl.t test script
cpan/Encode/t/ksc5601.enc test data
cpan/Encode/t/ksc5601.utf test data
cpan/Encode/t/magic.t test script
cpan/Encode/t/mime-header.t test script
cpan/Encode/t/mime-name.t test script
cpan/Encode/t/mime_header_iso2022jp.t test script
cpan/Encode/t/Mod_EUCJP.pm module that t/enc_module.enc uses
cpan/Encode/t/perlio.t test script
cpan/Encode/t/piconv.t Test for piconv.t
cpan/Encode/t/rt.pl test script
cpan/Encode/t/rt113164.t test script
cpan/Encode/t/rt65541.t test script
cpan/Encode/t/rt76824.t test script
cpan/Encode/t/rt85489.t test script
cpan/Encode/t/rt86327.t test script
cpan/Encode/t/taint.t
cpan/Encode/t/truncated_utf8.t
cpan/Encode/t/undef.t
cpan/Encode/t/unibench.pl benchmark script
cpan/Encode/t/Unicode.t test script
cpan/Encode/t/Unicode_trailing_nul.t
cpan/Encode/t/use-Encode-Alias.t
cpan/Encode/t/utf32warnings.t
cpan/Encode/t/utf8ref.t test script
cpan/Encode/t/utf8strict.t test script
cpan/Encode/t/utf8warnings.t
cpan/Encode/t/xml.t
cpan/Encode/TW/Makefile.PL Encode extension
cpan/Encode/TW/TW.pm Encode extension
cpan/Encode/ucm/8859-1.ucm Unicode Character Map
cpan/Encode/ucm/8859-10.ucm Unicode Character Map
cpan/Encode/ucm/8859-11.ucm Unicode Character Map
cpan/Encode/ucm/8859-13.ucm Unicode Character Map
cpan/Encode/ucm/8859-14.ucm Unicode Character Map
cpan/Encode/ucm/8859-15.ucm Unicode Character Map
cpan/Encode/ucm/8859-16.ucm Unicode Character Map
cpan/Encode/ucm/8859-2.ucm Unicode Character Map
cpan/Encode/ucm/8859-3.ucm Unicode Character Map
cpan/Encode/ucm/8859-4.ucm Unicode Character Map
cpan/Encode/ucm/8859-5.ucm Unicode Character Map
cpan/Encode/ucm/8859-6.ucm Unicode Character Map
cpan/Encode/ucm/8859-7.ucm Unicode Character Map
cpan/Encode/ucm/8859-8.ucm Unicode Character Map
cpan/Encode/ucm/8859-9.ucm Unicode Character Map
cpan/Encode/ucm/adobeStdenc.ucm Unicode Character Map
cpan/Encode/ucm/adobeSymbol.ucm Unicode Character Map
cpan/Encode/ucm/adobeZdingbat.ucm Unicode Character Map
cpan/Encode/ucm/ascii.ucm Unicode Character Map
cpan/Encode/ucm/big5-eten.ucm Unicode Character Map
cpan/Encode/ucm/big5-hkscs.ucm Unicode Character Map
cpan/Encode/ucm/cp037.ucm Unicode Character Map
cpan/Encode/ucm/cp1006.ucm Unicode Character Map
cpan/Encode/ucm/cp1026.ucm Unicode Character Map
cpan/Encode/ucm/cp1047.ucm Unicode Character Map
cpan/Encode/ucm/cp1250.ucm Unicode Character Map
cpan/Encode/ucm/cp1251.ucm Unicode Character Map
cpan/Encode/ucm/cp1252.ucm Unicode Character Map
cpan/Encode/ucm/cp1253.ucm Unicode Character Map
cpan/Encode/ucm/cp1254.ucm Unicode Character Map
cpan/Encode/ucm/cp1255.ucm Unicode Character Map
cpan/Encode/ucm/cp1256.ucm Unicode Character Map
cpan/Encode/ucm/cp1257.ucm Unicode Character Map
cpan/Encode/ucm/cp1258.ucm Unicode Character Map
cpan/Encode/ucm/cp424.ucm Unicode Character Map
cpan/Encode/ucm/cp437.ucm Unicode Character Map
cpan/Encode/ucm/cp500.ucm Unicode Character Map
cpan/Encode/ucm/cp737.ucm Unicode Character Map
cpan/Encode/ucm/cp775.ucm Unicode Character Map
cpan/Encode/ucm/cp850.ucm Unicode Character Map
cpan/Encode/ucm/cp852.ucm Unicode Character Map
cpan/Encode/ucm/cp855.ucm Unicode Character Map
cpan/Encode/ucm/cp856.ucm Unicode Character Map
cpan/Encode/ucm/cp857.ucm Unicode Character Map
cpan/Encode/ucm/cp858.ucm Unicode Character Map
cpan/Encode/ucm/cp860.ucm Unicode Character Map
cpan/Encode/ucm/cp861.ucm Unicode Character Map
cpan/Encode/ucm/cp862.ucm Unicode Character Map
cpan/Encode/ucm/cp863.ucm Unicode Character Map
cpan/Encode/ucm/cp864.ucm Unicode Character Map
cpan/Encode/ucm/cp865.ucm Unicode Character Map
cpan/Encode/ucm/cp866.ucm Unicode Character Map
cpan/Encode/ucm/cp869.ucm Unicode Character Map
cpan/Encode/ucm/cp874.ucm Unicode Character Map
cpan/Encode/ucm/cp875.ucm Unicode Character Map
cpan/Encode/ucm/cp932.ucm Unicode Character Map
cpan/Encode/ucm/cp936.ucm Unicode Character Map
cpan/Encode/ucm/cp949.ucm Unicode Character Map
cpan/Encode/ucm/cp950.ucm Unicode Character Map
cpan/Encode/ucm/ctrl.ucm Unicode Character Map
cpan/Encode/ucm/dingbats.ucm Unicode Character Map
cpan/Encode/ucm/euc-cn.ucm Unicode Character Map
cpan/Encode/ucm/euc-jp.ucm Unicode Character Map
cpan/Encode/ucm/euc-kr.ucm Unicode Character Map
cpan/Encode/ucm/gb12345.ucm Unicode Character Map
cpan/Encode/ucm/gb2312.ucm Unicode Character Map
cpan/Encode/ucm/hp-roman8.ucm Unicode Character Map
cpan/Encode/ucm/ir-165.ucm Unicode Character Map
cpan/Encode/ucm/jis0201.ucm Unicode Character Map
cpan/Encode/ucm/jis0208.ucm Unicode Character Map
cpan/Encode/ucm/jis0212.ucm Unicode Character Map
cpan/Encode/ucm/johab.ucm Unicode Character Map
cpan/Encode/ucm/koi8-f.ucm Unicode Character Map
cpan/Encode/ucm/koi8-r.ucm Unicode Character Map
cpan/Encode/ucm/koi8-u.ucm Unicode Character Map
cpan/Encode/ucm/ksc5601.ucm Unicode Character Map
cpan/Encode/ucm/macArabic.ucm Unicode Character Map
cpan/Encode/ucm/macCentEuro.ucm Unicode Character Map
cpan/Encode/ucm/macChinsimp.ucm Unicode Character Map
cpan/Encode/ucm/macChintrad.ucm Unicode Character Map
cpan/Encode/ucm/macCroatian.ucm Unicode Character Map
cpan/Encode/ucm/macCyrillic.ucm Unicode Character Map
cpan/Encode/ucm/macDingbats.ucm Unicode Character Map
cpan/Encode/ucm/macFarsi.ucm Unicode Character Map
cpan/Encode/ucm/macGreek.ucm Unicode Character Map
cpan/Encode/ucm/macHebrew.ucm Unicode Character Map
cpan/Encode/ucm/macIceland.ucm Unicode Character Map
cpan/Encode/ucm/macJapanese.ucm Unicode Character Map
cpan/Encode/ucm/macKorean.ucm Unicode Character Map
cpan/Encode/ucm/macRoman.ucm Unicode Character Map
cpan/Encode/ucm/macROMnn.ucm Unicode Character Map
cpan/Encode/ucm/macRUMnn.ucm Unicode Character Map
cpan/Encode/ucm/macSami.ucm Unicode Character Map
cpan/Encode/ucm/macSymbol.ucm Unicode Character Map
cpan/Encode/ucm/macThai.ucm Unicode Character Map
cpan/Encode/ucm/macTurkish.ucm Unicode Character Map
cpan/Encode/ucm/macUkraine.ucm Unicode Character Map
cpan/Encode/ucm/nextstep.ucm Unicode Character Map
cpan/Encode/ucm/null.ucm Unicode Character Map
cpan/Encode/ucm/posix-bc.ucm Unicode Character Map
cpan/Encode/ucm/shiftjis.ucm Unicode Character Map
cpan/Encode/ucm/symbol.ucm Unicode Character Map
cpan/Encode/ucm/viscii.ucm Unicode Character Map
cpan/Encode/Unicode/Makefile.PL Encode extension
cpan/Encode/Unicode/Unicode.pm Encode extension
cpan/Encode/Unicode/Unicode.xs Encode extension
cpan/experimental/lib/experimental.pm
cpan/experimental/lib/stable.pm
cpan/experimental/t/basic.t
cpan/ExtUtils-Constant/lib/ExtUtils/Constant.pm generate XS code to import C header constants
cpan/ExtUtils-Constant/lib/ExtUtils/Constant/Base.pm generate XS code to import C header constants
cpan/ExtUtils-Constant/lib/ExtUtils/Constant/ProxySubs.pm generate XS code for proxy constants
cpan/ExtUtils-Constant/lib/ExtUtils/Constant/Utils.pm generate XS code to import C header constants
cpan/ExtUtils-Constant/lib/ExtUtils/Constant/XS.pm generate XS code to import C header constants
cpan/ExtUtils-Constant/t/Constant.t See if ExtUtils::Constant works