-
Notifications
You must be signed in to change notification settings - Fork 2
/
cpanfile.snapshot
2138 lines (2138 loc) · 66.5 KB
/
cpanfile.snapshot
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
# carton snapshot format: version 1.0
DISTRIBUTIONS
Any-URI-Escape-0.01
pathname: P/PH/PHRED/Any-URI-Escape-0.01.tar.gz
provides:
Any::URI::Escape 0.01
requirements:
ExtUtils::MakeMaker 0
URI::Escape 0
B-Hooks-EndOfScope-0.15
pathname: E/ET/ETHER/B-Hooks-EndOfScope-0.15.tar.gz
provides:
B::Hooks::EndOfScope 0.15
B::Hooks::EndOfScope::PP 0.15
B::Hooks::EndOfScope::XS 0.15
requirements:
ExtUtils::CBuilder 0.26
ExtUtils::MakeMaker 0
Module::Implementation 0.05
Sub::Exporter::Progressive 0.001006
Variable::Magic 0.48
perl 5.008001
strict 0
warnings 0
CPAN-Meta-2.150005
pathname: D/DA/DAGOLDEN/CPAN-Meta-2.150005.tar.gz
provides:
CPAN::Meta 2.150005
CPAN::Meta::Converter 2.150005
CPAN::Meta::Feature 2.150005
CPAN::Meta::History 2.150005
CPAN::Meta::Merge 2.150005
CPAN::Meta::Prereqs 2.150005
CPAN::Meta::Spec 2.150005
CPAN::Meta::Validator 2.150005
requirements:
CPAN::Meta::Requirements 2.121
CPAN::Meta::YAML 0.008
Carp 0
ExtUtils::MakeMaker 6.17
JSON::PP 2.27200
Parse::CPAN::Meta 1.4414
Scalar::Util 0
perl 5.008
strict 0
version 0.88
warnings 0
CPAN-Meta-Requirements-2.133
pathname: D/DA/DAGOLDEN/CPAN-Meta-Requirements-2.133.tar.gz
provides:
CPAN::Meta::Requirements 2.133
requirements:
B 0
Carp 0
ExtUtils::MakeMaker 6.17
perl 5.006
strict 0
version 0.88
warnings 0
CPAN-Meta-YAML-0.016
pathname: D/DA/DAGOLDEN/CPAN-Meta-YAML-0.016.tar.gz
provides:
CPAN::Meta::YAML 0.016
requirements:
B 0
Carp 0
Exporter 0
ExtUtils::MakeMaker 6.17
Fcntl 0
Scalar::Util 0
perl 5.008001
strict 0
warnings 0
Capture-Tiny-0.30
pathname: D/DA/DAGOLDEN/Capture-Tiny-0.30.tar.gz
provides:
Capture::Tiny 0.30
requirements:
Carp 0
Exporter 0
ExtUtils::MakeMaker 6.17
File::Spec 0
File::Temp 0
IO::Handle 0
Scalar::Util 0
perl 5.006
strict 0
warnings 0
Class-Accessor-Lite-0.08
pathname: K/KA/KAZUHO/Class-Accessor-Lite-0.08.tar.gz
provides:
Class::Accessor::Lite 0.08
requirements:
ExtUtils::MakeMaker 6.36
Class-ErrorHandler-0.04
pathname: T/TO/TOKUHIROM/Class-ErrorHandler-0.04.tar.gz
provides:
Class::ErrorHandler 0.04
requirements:
ExtUtils::MakeMaker 0
perl 5.008_001
Class-Load-0.23
pathname: E/ET/ETHER/Class-Load-0.23.tar.gz
provides:
Class::Load 0.23
Class::Load::PP 0.23
requirements:
Carp 0
Data::OptList 0
Exporter 0
ExtUtils::MakeMaker 0
Module::Implementation 0.04
Module::Runtime 0.012
Package::Stash 0.14
Scalar::Util 0
Try::Tiny 0
base 0
perl 5.006
strict 0
warnings 0
Class-Load-XS-0.09
pathname: E/ET/ETHER/Class-Load-XS-0.09.tar.gz
provides:
Class::Load::XS 0.09
requirements:
Class::Load 0.20
ExtUtils::MakeMaker 0
XSLoader 0
perl 5.006
strict 0
warnings 0
Class-Method-Modifiers-2.11
pathname: E/ET/ETHER/Class-Method-Modifiers-2.11.tar.gz
provides:
Class::Method::Modifiers 2.11
requirements:
B 0
Carp 0
Exporter 0
ExtUtils::MakeMaker 0
base 0
strict 0
warnings 0
Class-XPath-1.4
pathname: S/SA/SAMTREGAR/Class-XPath-1.4.tar.gz
provides:
Class::XPath 1.4
requirements:
Carp 0
ExtUtils::MakeMaker 0
Test::More 0.47
Cpanel-JSON-XS-3.0115
pathname: R/RU/RURBAN/Cpanel-JSON-XS-3.0115.tar.gz
provides:
Cpanel::JSON::XS 3.0115
requirements:
ExtUtils::MakeMaker 0
Pod::Text 2.08
Pod::Usage 1.33
Data-OptList-0.109
pathname: R/RJ/RJBS/Data-OptList-0.109.tar.gz
provides:
Data::OptList 0.109
requirements:
ExtUtils::MakeMaker 6.30
List::Util 0
Params::Util 0
Sub::Install 0.921
strict 0
warnings 0
Devel-GlobalDestruction-0.13
pathname: H/HA/HAARG/Devel-GlobalDestruction-0.13.tar.gz
provides:
Devel::GlobalDestruction 0.13
requirements:
ExtUtils::CBuilder 0.27
ExtUtils::MakeMaker 0
Sub::Exporter::Progressive 0.001011
perl 5.006
Devel-OverloadInfo-0.004
pathname: I/IL/ILMARI/Devel-OverloadInfo-0.004.tar.gz
provides:
Devel::OverloadInfo 0.004
requirements:
Exporter 5.57
ExtUtils::MakeMaker 0
MRO::Compat 0
Package::Stash 0.14
Scalar::Util 0
Sub::Identify 0
overload 0
perl 5.006
strict 0
warnings 0
Devel-StackTrace-2.00
pathname: D/DR/DROLSKY/Devel-StackTrace-2.00.tar.gz
provides:
Devel::StackTrace 2.00
Devel::StackTrace::Frame 2.00
requirements:
ExtUtils::MakeMaker 0
File::Spec 0
Scalar::Util 0
overload 0
perl 5.006
strict 0
warnings 0
Dist-CheckConflicts-0.11
pathname: D/DO/DOY/Dist-CheckConflicts-0.11.tar.gz
provides:
Dist::CheckConflicts 0.11
requirements:
Carp 0
Exporter 0
ExtUtils::MakeMaker 6.30
Module::Runtime 0.009
base 0
strict 0
warnings 0
Email-Date-Format-1.005
pathname: R/RJ/RJBS/Email-Date-Format-1.005.tar.gz
provides:
Email::Date::Format 1.005
requirements:
Exporter 5.57
ExtUtils::MakeMaker 0
Time::Local 0
strict 0
warnings 0
Encode-Locale-1.05
pathname: G/GA/GAAS/Encode-Locale-1.05.tar.gz
provides:
Encode::Locale 1.05
requirements:
Encode 2
Encode::Alias 0
ExtUtils::MakeMaker 0
perl 5.008
Eval-Closure-0.13
pathname: D/DO/DOY/Eval-Closure-0.13.tar.gz
provides:
Eval::Closure 0.13
requirements:
Carp 0
Exporter 0
ExtUtils::MakeMaker 0
Scalar::Util 0
Try::Tiny 0
constant 0
overload 0
strict 0
warnings 0
Exporter-5.72
pathname: T/TO/TODDR/Exporter-5.72.tar.gz
provides:
Exporter 5.72
Exporter::Heavy 5.70
requirements:
Carp 1.05
ExtUtils::MakeMaker 0
Exporter-Tiny-0.042
pathname: T/TO/TOBYINK/Exporter-Tiny-0.042.tar.gz
provides:
Exporter::Shiny 0.042
Exporter::Tiny 0.042
requirements:
ExtUtils::MakeMaker 6.17
perl 5.006001
ExtUtils-Config-0.008
pathname: L/LE/LEONT/ExtUtils-Config-0.008.tar.gz
provides:
ExtUtils::Config 0.008
requirements:
Data::Dumper 0
ExtUtils::MakeMaker 6.30
strict 0
warnings 0
ExtUtils-Helpers-0.022
pathname: L/LE/LEONT/ExtUtils-Helpers-0.022.tar.gz
provides:
ExtUtils::Helpers 0.022
ExtUtils::Helpers::Unix 0.022
ExtUtils::Helpers::VMS 0.022
ExtUtils::Helpers::Windows 0.022
requirements:
Carp 0
Exporter 5.57
ExtUtils::MakeMaker 6.30
File::Basename 0
File::Copy 0
File::Spec::Functions 0
Module::Load 0
Text::ParseWords 3.24
strict 0
warnings 0
ExtUtils-InstallPaths-0.011
pathname: L/LE/LEONT/ExtUtils-InstallPaths-0.011.tar.gz
provides:
ExtUtils::InstallPaths 0.011
requirements:
Carp 0
ExtUtils::Config 0.002
ExtUtils::MakeMaker 0
File::Spec 0
perl 5.006
strict 0
warnings 0
ExtUtils-MakeMaker-7.04
pathname: B/BI/BINGOS/ExtUtils-MakeMaker-7.04.tar.gz
provides:
ExtUtils::Command::MM 7.04
ExtUtils::Liblist 7.04
ExtUtils::Liblist::Kid 7.04
ExtUtils::MM 7.04
ExtUtils::MM_AIX 7.04
ExtUtils::MM_Any 7.04
ExtUtils::MM_BeOS 7.04
ExtUtils::MM_Cygwin 7.04
ExtUtils::MM_DOS 7.04
ExtUtils::MM_Darwin 7.04
ExtUtils::MM_MacOS 7.04
ExtUtils::MM_NW5 7.04
ExtUtils::MM_OS2 7.04
ExtUtils::MM_QNX 7.04
ExtUtils::MM_UWIN 7.04
ExtUtils::MM_Unix 7.04
ExtUtils::MM_VMS 7.04
ExtUtils::MM_VOS 7.04
ExtUtils::MM_Win32 7.04
ExtUtils::MM_Win95 7.04
ExtUtils::MY 7.04
ExtUtils::MakeMaker 7.04
ExtUtils::MakeMaker::Config 7.04
ExtUtils::MakeMaker::Locale 7.04
ExtUtils::MakeMaker::_version 7.04
ExtUtils::MakeMaker::charstar 7.04
ExtUtils::MakeMaker::version 7.04
ExtUtils::MakeMaker::version::regex 7.04
ExtUtils::MakeMaker::version::vpp 7.04
ExtUtils::Mkbootstrap 7.04
ExtUtils::Mksymlists 7.04
ExtUtils::testlib 7.04
MM 7.04
MY 7.04
requirements:
Data::Dumper 0
DirHandle 0
Encode 0
File::Basename 0
File::Spec 0.8
Pod::Man 0
perl 5.006
File-Listing-6.04
pathname: G/GA/GAAS/File-Listing-6.04.tar.gz
provides:
File::Listing 6.04
File::Listing::apache 6.04
File::Listing::dosftp 6.04
File::Listing::netware 6.04
File::Listing::unix 6.04
File::Listing::vms 6.04
requirements:
ExtUtils::MakeMaker 0
HTTP::Date 6
perl 5.006002
File-Rsync-0.46
pathname: L/LE/LEAKIN/File-Rsync-0.46.tar.gz
provides:
File::Rsync 0.46
requirements:
ExtUtils::MakeMaker 0
File::Path 0
IPC::Run3 0
Scalar::Util 0
Test::More 0
HTML-Parser-3.71
pathname: G/GA/GAAS/HTML-Parser-3.71.tar.gz
provides:
HTML::Entities 3.69
HTML::Filter 3.57
HTML::HeadParser 3.71
HTML::LinkExtor 3.69
HTML::Parser 3.71
HTML::PullParser 3.57
HTML::TokeParser 3.69
requirements:
ExtUtils::MakeMaker 0
HTML::Tagset 3
XSLoader 0
perl 5.008
HTML-Tagset-3.20
pathname: P/PE/PETDANCE/HTML-Tagset-3.20.tar.gz
provides:
HTML::Tagset 3.20
requirements:
ExtUtils::MakeMaker 0
HTTP-Cookies-6.01
pathname: G/GA/GAAS/HTTP-Cookies-6.01.tar.gz
provides:
HTTP::Cookies 6.01
HTTP::Cookies::Microsoft 6.00
HTTP::Cookies::Netscape 6.00
requirements:
ExtUtils::MakeMaker 0
HTTP::Date 6
HTTP::Headers::Util 6
Time::Local 0
perl 5.008001
HTTP-Daemon-6.01
pathname: G/GA/GAAS/HTTP-Daemon-6.01.tar.gz
provides:
HTTP::Daemon 6.01
HTTP::Daemon::ClientConn 6.01
requirements:
ExtUtils::MakeMaker 0
HTTP::Date 6
HTTP::Request 6
HTTP::Response 6
HTTP::Status 6
IO::Socket 0
LWP::MediaTypes 6
Sys::Hostname 0
perl 5.008001
HTTP-Date-6.02
pathname: G/GA/GAAS/HTTP-Date-6.02.tar.gz
provides:
HTTP::Date 6.02
requirements:
ExtUtils::MakeMaker 0
Time::Local 0
perl 5.006002
HTTP-Message-6.10
pathname: E/ET/ETHER/HTTP-Message-6.10.tar.gz
provides:
HTTP::Config 6.10
HTTP::Headers 6.10
HTTP::Headers::Auth 6.10
HTTP::Headers::ETag 6.10
HTTP::Headers::Util 6.10
HTTP::Message 6.10
HTTP::Request 6.10
HTTP::Request::Common 6.10
HTTP::Response 6.10
HTTP::Status 6.10
requirements:
Compress::Raw::Zlib 0
Encode 2.21
Encode::Locale 1
Exporter 5.57
ExtUtils::MakeMaker 0
HTTP::Date 6
IO::Compress::Bzip2 2.021
IO::Compress::Deflate 0
IO::Compress::Gzip 0
IO::HTML 0
IO::Uncompress::Bunzip2 2.021
IO::Uncompress::Gunzip 0
IO::Uncompress::Inflate 0
IO::Uncompress::RawInflate 0
LWP::MediaTypes 6
MIME::Base64 2.1
MIME::QuotedPrint 0
URI 1.10
perl 5.008001
HTTP-Negotiate-6.01
pathname: G/GA/GAAS/HTTP-Negotiate-6.01.tar.gz
provides:
HTTP::Negotiate 6.01
requirements:
ExtUtils::MakeMaker 0
HTTP::Headers 6
perl 5.008001
HTTP-Tiny-0.056
pathname: D/DA/DAGOLDEN/HTTP-Tiny-0.056.tar.gz
provides:
HTTP::Tiny 0.056
requirements:
Carp 0
ExtUtils::MakeMaker 6.17
Fcntl 0
IO::Socket 0
MIME::Base64 0
Time::Local 0
bytes 0
perl 5.006
strict 0
warnings 0
Hijk-0.24
pathname: A/AV/AVAR/Hijk-0.24.tar.gz
provides:
Hijk 0.24
requirements:
CPAN::Meta 0
ExtUtils::MakeMaker 6.36
Time::HiRes 0
IO-HTML-1.001
pathname: C/CJ/CJM/IO-HTML-1.001.tar.gz
provides:
IO::HTML 1.001
requirements:
Carp 0
Encode 2.10
Exporter 5.57
ExtUtils::MakeMaker 6.30
IO-Pipely-0.005
pathname: R/RC/RCAPUTO/IO-Pipely-0.005.tar.gz
provides:
IO::Pipely 0.005
requirements:
Exporter 5.68
ExtUtils::MakeMaker 6.30
Fcntl 1.06
IO::Socket 1.31
Symbol 1.06
base 2.18
strict 0
warnings 0
IO-Socket-IP-0.37
pathname: P/PE/PEVANS/IO-Socket-IP-0.37.tar.gz
provides:
IO::Socket::IP 0.37
requirements:
IO::Socket 0
Socket 1.97
Test::More 0.88
IO-Socket-SSL-2.016
pathname: S/SU/SULLR/IO-Socket-SSL-2.016.tar.gz
provides:
IO::Socket::SSL 2.016
IO::Socket::SSL::Intercept 2.014
IO::Socket::SSL::OCSP_Cache 2.016
IO::Socket::SSL::OCSP_Resolver 2.016
IO::Socket::SSL::PublicSuffix undef
IO::Socket::SSL::SSL_Context 2.016
IO::Socket::SSL::SSL_HANDLE 2.016
IO::Socket::SSL::Session_Cache 2.016
IO::Socket::SSL::Utils 2.014
requirements:
ExtUtils::MakeMaker 0
Mozilla::CA 0
Net::SSLeay 1.46
Scalar::Util 0
IPC-Run3-0.048
pathname: R/RJ/RJBS/IPC-Run3-0.048.tar.gz
provides:
IPC::Run3 0.048
requirements:
ExtUtils::MakeMaker 0
Test::More 0.31
Time::HiRes 0
JSON-2.90
pathname: M/MA/MAKAMAKA/JSON-2.90.tar.gz
provides:
JSON 2.90
JSON::Backend::PP 2.90
JSON::Boolean 2.90
requirements:
ExtUtils::MakeMaker 0
Test::More 0
JSON-MaybeXS-1.003005
pathname: E/ET/ETHER/JSON-MaybeXS-1.003005.tar.gz
provides:
JSON::MaybeXS 1.003005
requirements:
Carp 0
Cpanel::JSON::XS 2.3310
ExtUtils::CBuilder 0.27
ExtUtils::MakeMaker 0
File::Spec 0
File::Temp 0
JSON::PP 2.27202
Scalar::Util 0
perl 5.006
JSON-PP-2.27300
pathname: M/MA/MAKAMAKA/JSON-PP-2.27300.tar.gz
provides:
JSON::PP 2.27300
JSON::PP::Boolean 2.27300
JSON::PP::IncrParser 2.27300
requirements:
ExtUtils::MakeMaker 0
Test::More 0
LWP-MediaTypes-6.02
pathname: G/GA/GAAS/LWP-MediaTypes-6.02.tar.gz
provides:
LWP::MediaTypes 6.02
requirements:
ExtUtils::MakeMaker 0
perl 5.006002
List-MoreUtils-0.413
pathname: R/RE/REHSACK/List-MoreUtils-0.413.tar.gz
provides:
List::MoreUtils 0.413
List::MoreUtils::PP 0.413
List::MoreUtils::XS 0.413
requirements:
Carp 0
Exporter::Tiny 0.038
ExtUtils::MakeMaker 0
File::Basename 0
File::Copy 0
File::Path 0
File::Spec 0
IPC::Cmd 0
XSLoader 0
base 0
Log-Any-1.032
pathname: D/DA/DAGOLDEN/Log-Any-1.032.tar.gz
provides:
Log::Any 1.032
Log::Any::Adapter 1.032
Log::Any::Adapter::Base 1.032
Log::Any::Adapter::File 1.032
Log::Any::Adapter::Null 1.032
Log::Any::Adapter::Stderr 1.032
Log::Any::Adapter::Stdout 1.032
Log::Any::Adapter::Test 1.032
Log::Any::Adapter::Util 1.032
Log::Any::Manager 1.032
Log::Any::Proxy 1.032
Log::Any::Proxy::Test 1.032
Log::Any::Test 1.032
requirements:
B 0
Carp 0
Data::Dumper 0
Exporter 0
ExtUtils::MakeMaker 6.17
Fcntl 0
IO::File 0
Test::Builder 0
base 0
constant 0
perl 5.008001
strict 0
warnings 0
MIME-Charset-1.012
pathname: N/NE/NEZUMI/MIME-Charset-1.012.tar.gz
provides:
MIME::Charset 1.012
requirements:
CPAN 0
Encode 1.98
ExtUtils::MakeMaker 6.42
Test::More 0
perl 5.005
MIME-EncWords-1.014.3
pathname: N/NE/NEZUMI/MIME-EncWords-1.014.3.tar.gz
provides:
Encode::MIME::EncWords 0.03
MIME::EncWords 1.014003
requirements:
Encode 1.98
ExtUtils::MakeMaker 0
MIME::Base64 2.13
MIME::Charset v1.10.1
Test::More 0
MIME-Lite-3.030
pathname: R/RJ/RJBS/MIME-Lite-3.030.tar.gz
provides:
MIME::Lite 3.030
MIME::Lite::IO_Handle 3.030
MIME::Lite::IO_Scalar 3.030
MIME::Lite::IO_ScalarArray 3.030
MIME::Lite::SMTP 3.030
MailTool undef
requirements:
Email::Date::Format 1.000
ExtUtils::MakeMaker 0
File::Basename 0
File::Spec 0
MIME::Types 1.28
Mail::Address 1.62
MIME-Types-2.13
pathname: M/MA/MARKOV/MIME-Types-2.13.tar.gz
provides:
MIME::Type 2.13
MIME::Types 2.13
MojoX::MIME::Types 2.13
requirements:
ExtUtils::MakeMaker 0
File::Basename 0
File::Spec 0
List::Util 0
Test::More 0.47
MRO-Compat-0.12
pathname: B/BO/BOBTFISH/MRO-Compat-0.12.tar.gz
provides:
MRO::Compat 0.12
requirements:
ExtUtils::MakeMaker 6.59
Test::More 0.47
perl 5.006
MailTools-2.18
pathname: M/MA/MARKOV/MailTools-2.18.tar.gz
provides:
Mail undef
Mail::Address 2.18
Mail::Cap 2.18
Mail::Field 2.18
Mail::Field::AddrList 2.18
Mail::Field::Date 2.18
Mail::Field::Generic 2.18
Mail::Filter 2.18
Mail::Header 2.18
Mail::Internet 2.18
Mail::Mailer 2.18
Mail::Mailer::qmail 2.18
Mail::Mailer::rfc822 2.18
Mail::Mailer::sendmail 2.18
Mail::Mailer::smtp 2.18
Mail::Mailer::smtp::pipe 2.18
Mail::Mailer::smtps 2.18
Mail::Mailer::smtps::pipe 2.18
Mail::Mailer::testfile 2.18
Mail::Mailer::testfile::pipe 2.18
Mail::Send 2.18
Mail::Util 2.18
requirements:
Date::Format 0
Date::Parse 0
ExtUtils::MakeMaker 0
IO::Handle 0
Net::Domain 1.05
Net::SMTP 1.03
Test::More 0
Module-Build-0.4218
pathname: L/LE/LEONT/Module-Build-0.4218.tar.gz
provides:
Module::Build 0.4218
Module::Build::Base 0.4218
Module::Build::Compat 0.4218
Module::Build::Config 0.4218
Module::Build::Cookbook 0.4218
Module::Build::Dumper 0.4218
Module::Build::Notes 0.4218
Module::Build::PPMMaker 0.4218
Module::Build::Platform::Default 0.4218
Module::Build::Platform::MacOS 0.4218
Module::Build::Platform::Unix 0.4218
Module::Build::Platform::VMS 0.4218
Module::Build::Platform::VOS 0.4218
Module::Build::Platform::Windows 0.4218
Module::Build::Platform::aix 0.4218
Module::Build::Platform::cygwin 0.4218
Module::Build::Platform::darwin 0.4218
Module::Build::Platform::os2 0.4218
Module::Build::PodParser 0.4218
requirements:
CPAN::Meta 2.142060
CPAN::Meta::YAML 0.003
Cwd 0
Data::Dumper 0
ExtUtils::CBuilder 0.27
ExtUtils::Install 0
ExtUtils::Manifest 0
ExtUtils::Mkbootstrap 0
ExtUtils::ParseXS 2.21
File::Basename 0
File::Compare 0
File::Copy 0
File::Find 0
File::Path 0
File::Spec 0.82
File::Temp 0.15
Getopt::Long 0
Module::Metadata 1.000002
Parse::CPAN::Meta 1.4401
Perl::OSType 1
Pod::Man 2.17
TAP::Harness 3.29
Test::More 0.49
Text::Abbrev 0
Text::ParseWords 0
perl 5.006001
version 0.87
Module-Build-Pluggable-0.10
pathname: T/TO/TOKUHIROM/Module-Build-Pluggable-0.10.tar.gz
provides:
Module::Build::Pluggable 0.10
Module::Build::Pluggable::Base undef
Module::Build::Pluggable::GithubMeta undef
Module::Build::Pluggable::Repository 0.10
Module::Build::Pluggable::Util undef
Test::Module::Build::Pluggable undef
requirements:
CPAN::Meta 0
CPAN::Meta::Prereqs 0
Class::Accessor::Lite 0
Class::Method::Modifiers 0
Data::OptList 0
File::Basename 0
File::Path 0
File::Temp 0
Module::Build 0.38
Module::Load 0
Test::SharedFork 0
parent 0
perl 5.008001
Module-Build-Pluggable-CPANfile-0.05
pathname: K/KA/KAZEBURO/Module-Build-Pluggable-CPANfile-0.05.tar.gz
provides:
Module::Build::Pluggable::CPANfile 0.05
requirements:
CPAN::Meta 0
CPAN::Meta::Prereqs 0
ExtUtils::CBuilder 0
List::Util 1.14
Module::Build 0.38
Module::Build::Pluggable 0.05
Module::CPANfile 0.9010
parent 0
perl 5.008005
version 0.99
Module-Build-Tiny-0.039
pathname: L/LE/LEONT/Module-Build-Tiny-0.039.tar.gz
provides:
Module::Build::Tiny 0.039
requirements:
CPAN::Meta 0
DynaLoader 0
Exporter 5.57
ExtUtils::CBuilder 0
ExtUtils::Config 0.003
ExtUtils::Helpers 0.020
ExtUtils::Install 0
ExtUtils::InstallPaths 0.002
ExtUtils::ParseXS 0
File::Basename 0
File::Find 0
File::Path 0
File::Spec::Functions 0
Getopt::Long 2.36
JSON::PP 2
Pod::Man 0
TAP::Harness::Env 0
perl 5.006
strict 0
warnings 0
Module-CPANfile-1.1000
pathname: M/MI/MIYAGAWA/Module-CPANfile-1.1000.tar.gz
provides:
Module::CPANfile 1.1000
Module::CPANfile::Environment undef
Module::CPANfile::Prereq undef
Module::CPANfile::Prereqs undef
Module::CPANfile::Requirement undef
requirements:
CPAN::Meta 2.12091
CPAN::Meta::Prereqs 2.12091
ExtUtils::MakeMaker 0
parent 0
Module-Implementation-0.09
pathname: D/DR/DROLSKY/Module-Implementation-0.09.tar.gz
provides:
Module::Implementation 0.09
requirements:
Carp 0
ExtUtils::MakeMaker 0
Module::Runtime 0.012
Try::Tiny 0
strict 0
warnings 0
Module-Runtime-0.014
pathname: Z/ZE/ZEFRAM/Module-Runtime-0.014.tar.gz
provides:
Module::Runtime 0.014
requirements:
Module::Build 0
Test::More 0
perl 5.006
strict 0
warnings 0
Module-Runtime-Conflicts-0.002
pathname: E/ET/ETHER/Module-Runtime-Conflicts-0.002.tar.gz
provides:
Module::Runtime::Conflicts 0.002
requirements:
Dist::CheckConflicts 0
Module::Build::Tiny 0.039
Module::Runtime 0
perl 5.006
strict 0
warnings 0
Mojo-IOLoop-ForkCall-0.17
pathname: J/JB/JBERGER/Mojo-IOLoop-ForkCall-0.17.tar.gz
provides:
Mojo::IOLoop::ForkCall 0.17
Mojolicious::Plugin::ForkCall undef
requirements:
IO::Pipely 0
Module::Build 0.38
Mojolicious 5.08
Perl::OSType 0
Mojolicious-6.15
pathname: S/SR/SRI/Mojolicious-6.15.tar.gz
provides:
Mojo undef
Mojo::Asset undef
Mojo::Asset::File undef
Mojo::Asset::Memory undef
Mojo::Base undef
Mojo::ByteStream undef
Mojo::Cache undef
Mojo::Collection undef
Mojo::Content undef
Mojo::Content::MultiPart undef
Mojo::Content::Single undef
Mojo::Cookie undef
Mojo::Cookie::Request undef
Mojo::Cookie::Response undef
Mojo::DOM undef
Mojo::DOM::CSS undef
Mojo::DOM::HTML undef
Mojo::Date undef
Mojo::EventEmitter undef
Mojo::Exception undef
Mojo::Headers undef
Mojo::HelloWorld undef
Mojo::Home undef
Mojo::IOLoop undef
Mojo::IOLoop::Client undef
Mojo::IOLoop::Delay undef
Mojo::IOLoop::Server undef
Mojo::IOLoop::Stream undef
Mojo::JSON undef
Mojo::JSON::Pointer undef
Mojo::JSON::_Bool undef
Mojo::Loader undef
Mojo::Log undef
Mojo::Message undef
Mojo::Message::Request undef
Mojo::Message::Response undef
Mojo::Parameters undef
Mojo::Path undef
Mojo::Reactor undef
Mojo::Reactor::EV undef
Mojo::Reactor::Poll undef
Mojo::Server undef
Mojo::Server::CGI undef
Mojo::Server::Daemon undef
Mojo::Server::Hypnotoad undef
Mojo::Server::Morbo undef
Mojo::Server::PSGI undef
Mojo::Server::PSGI::_IO undef
Mojo::Server::Prefork undef
Mojo::Template undef
Mojo::Transaction undef
Mojo::Transaction::HTTP undef
Mojo::Transaction::WebSocket undef
Mojo::URL undef
Mojo::Upload undef
Mojo::UserAgent undef
Mojo::UserAgent::CookieJar undef
Mojo::UserAgent::Proxy undef
Mojo::UserAgent::Server undef
Mojo::UserAgent::Transactor undef
Mojo::Util undef
Mojolicious 6.15
Mojolicious::Command undef
Mojolicious::Command::cgi undef
Mojolicious::Command::cpanify undef
Mojolicious::Command::daemon undef
Mojolicious::Command::eval undef
Mojolicious::Command::generate undef
Mojolicious::Command::generate::app undef
Mojolicious::Command::generate::lite_app undef
Mojolicious::Command::generate::makefile undef
Mojolicious::Command::generate::plugin undef
Mojolicious::Command::get undef
Mojolicious::Command::inflate undef
Mojolicious::Command::prefork undef
Mojolicious::Command::psgi undef
Mojolicious::Command::routes undef
Mojolicious::Command::test undef
Mojolicious::Command::version undef
Mojolicious::Commands undef
Mojolicious::Controller undef
Mojolicious::Lite undef
Mojolicious::Plugin undef
Mojolicious::Plugin::Charset undef
Mojolicious::Plugin::Config undef
Mojolicious::Plugin::Config::Sandbox undef
Mojolicious::Plugin::DefaultHelpers undef
Mojolicious::Plugin::EPLRenderer undef
Mojolicious::Plugin::EPRenderer undef
Mojolicious::Plugin::HeaderCondition undef
Mojolicious::Plugin::JSONConfig undef
Mojolicious::Plugin::Mount undef
Mojolicious::Plugin::PODRenderer undef
Mojolicious::Plugin::TagHelpers undef
Mojolicious::Plugins undef
Mojolicious::Renderer undef
Mojolicious::Routes undef
Mojolicious::Routes::Match undef
Mojolicious::Routes::Pattern undef
Mojolicious::Routes::Route undef
Mojolicious::Sessions undef
Mojolicious::Static undef
Mojolicious::Types undef