-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathcpanfile.snapshot
1403 lines (1403 loc) · 37.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
Apache-LogFormat-Compiler-0.30
pathname: K/KA/KAZEBURO/Apache-LogFormat-Compiler-0.30.tar.gz
provides:
Apache::LogFormat::Compiler 0.30
requirements:
CPAN::Meta 0
CPAN::Meta::Prereqs 0
ExtUtils::CBuilder 0
Module::Build 0.38
POSIX 0
POSIX::strftime::Compiler 0.30
Time::Local 0
perl 5.008004
Class-Accessor-0.34
pathname: K/KA/KASEI/Class-Accessor-0.34.tar.gz
provides:
Class::Accessor 0.34
Class::Accessor::Fast 0.34
Class::Accessor::Faster 0.34
requirements:
ExtUtils::MakeMaker 0
base 1.01
Class-Inspector-1.28
pathname: A/AD/ADAMK/Class-Inspector-1.28.tar.gz
provides:
Class::Inspector 1.28
Class::Inspector::Functions 1.28
requirements:
ExtUtils::MakeMaker 6.59
File::Spec 0.80
Test::More 0.47
perl 5.006
Data-Dump-1.22
pathname: G/GA/GAAS/Data-Dump-1.22.tar.gz
provides:
Data::Dump 1.22
Data::Dump::FilterContext undef
Data::Dump::Filtered undef
Data::Dump::Trace 0.02
Data::Dump::Trace::Call 0.02
Data::Dump::Trace::Wrapper 0.02
requirements:
ExtUtils::MakeMaker 0
Symbol 0
Test 0
perl 5.006
Devel-Cover-1.01
pathname: P/PJ/PJCJ/Devel-Cover-1.01.tar.gz
provides:
Devel::Cover 1.01
Devel::Cover::Annotation::Git 1.01
Devel::Cover::Annotation::Random 1.01
Devel::Cover::Annotation::Svk 1.01
Devel::Cover::Branch 1.01
Devel::Cover::Condition 1.01
Devel::Cover::Condition_and_2 1.01
Devel::Cover::Condition_and_3 1.01
Devel::Cover::Condition_or_2 1.01
Devel::Cover::Condition_or_3 1.01
Devel::Cover::Condition_xor_4 1.01
Devel::Cover::Criterion 1.01
Devel::Cover::DB 1.01
Devel::Cover::DB::Criterion 1.01
Devel::Cover::DB::Digests 1.01
Devel::Cover::DB::File 1.01
Devel::Cover::DB::IO 1.01
Devel::Cover::DB::IO::JSON 1.01
Devel::Cover::DB::IO::Storable 1.01
Devel::Cover::DB::Run 1.01
Devel::Cover::DB::Structure 1.01
Devel::Cover::Html_Common 1.01
Devel::Cover::Inc 1.01
Devel::Cover::Op 1.01
Devel::Cover::Pod 1.01
Devel::Cover::Report::Compilation 1.01
Devel::Cover::Report::Html 1.01
Devel::Cover::Report::Html_basic 1.01
Devel::Cover::Report::Html_basic::Template::Provider 1.01
Devel::Cover::Report::Html_minimal 1.01
Devel::Cover::Report::Html_subtle 1.01
Devel::Cover::Report::Html_subtle::Template::Provider 1.01
Devel::Cover::Report::Sort 1.01
Devel::Cover::Report::Text 1.01
Devel::Cover::Report::Text2 1.01
Devel::Cover::Report::Vim 1.01
Devel::Cover::Report::Vim::Template::Provider 1.01
Devel::Cover::Statement 1.01
Devel::Cover::Subroutine 1.01
Devel::Cover::Test 1.01
Devel::Cover::Time 1.01
Devel::Cover::Truth_Table 1.01
Devel::Cover::Truth_Table::Row 1.01
Devel::Cover::Util 1.01
Devel::Cover::Web 1.01
requirements:
Digest::MD5 0
ExtUtils::MakeMaker 0
Storable 0
Test::More 0
Test::Warn 0
Devel-Hide-0.0009
pathname: F/FE/FERREIRA/Devel-Hide-0.0009.tar.gz
provides:
Devel::Hide 0.0009
requirements:
ExtUtils::MakeMaker 0
Test::More 0
Devel-StackTrace-1.31
pathname: D/DR/DROLSKY/Devel-StackTrace-1.31.tar.gz
provides:
Devel::StackTrace 1.31
Devel::StackTrace::Frame 1.31
requirements:
ExtUtils::MakeMaker 6.30
File::Spec 0
Scalar::Util 0
overload 0
strict 0
warnings 0
Devel-StackTrace-AsHTML-0.14
pathname: M/MI/MIYAGAWA/Devel-StackTrace-AsHTML-0.14.tar.gz
provides:
Devel::StackTrace::AsHTML 0.14
requirements:
Devel::StackTrace 0
ExtUtils::MakeMaker 6.59
Filter::Util::Call 0
Test::More 0
perl 5.008001
Encode-Locale-1.03
pathname: G/GA/GAAS/Encode-Locale-1.03.tar.gz
provides:
Encode::Locale 1.03
requirements:
Encode 2
Encode::Alias 0
ExtUtils::MakeMaker 0
Test 0
perl 5.008
Exporter-Lite-0.02
pathname: M/MS/MSCHWERN/Exporter-Lite-0.02.tar.gz
provides:
Dummy 0.5
Exporter::Lite 0.02
requirements:
ExtUtils::MakeMaker 0
Test::More 0.34
ExtUtils-Config-0.007
pathname: L/LE/LEONT/ExtUtils-Config-0.007.tar.gz
provides:
ExtUtils::Config 0.007
requirements:
Config 0
Data::Dumper 0
ExtUtils::MakeMaker 6.30
File::Find 0
File::Temp 0
Test::More 0.88
strict 0
warnings 0
ExtUtils-Helpers-0.021
pathname: L/LE/LEONT/ExtUtils-Helpers-0.021.tar.gz
provides:
ExtUtils::Helpers 0.021
ExtUtils::Helpers::Unix 0.021
ExtUtils::Helpers::VMS 0.021
ExtUtils::Helpers::Windows 0.021
requirements:
Carp 0
Config 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.010
pathname: L/LE/LEONT/ExtUtils-InstallPaths-0.010.tar.gz
provides:
ExtUtils::InstallPaths 0.010
requirements:
Carp 0
ExtUtils::Config 0.002
ExtUtils::MakeMaker 6.30
File::Spec 0
strict 0
warnings 0
ExtUtils-ParseXS-3.22
pathname: S/SM/SMUELLER/ExtUtils-ParseXS-3.22.tar.gz
provides:
ExtUtils::ParseXS 3.22
ExtUtils::ParseXS::Constants 3.22
ExtUtils::ParseXS::CountLines 3.22
ExtUtils::ParseXS::Eval 3.22
ExtUtils::ParseXS::Utilities 3.22
ExtUtils::Typemaps 3.22
ExtUtils::Typemaps::Cmd 3.22
ExtUtils::Typemaps::InputMap 3.22
ExtUtils::Typemaps::OutputMap 3.22
ExtUtils::Typemaps::Type 3.22
requirements:
Carp 0
Cwd 0
DynaLoader 0
Exporter 5.57
ExtUtils::CBuilder 0
ExtUtils::MakeMaker 6.46
File::Basename 0
File::Spec 0
Symbol 0
Test::More 0.47
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-ShareDir-1.03
pathname: A/AD/ADAMK/File-ShareDir-1.03.tar.gz
provides:
File::ShareDir 1.03
requirements:
Carp 0
Class::Inspector 1.12
ExtUtils::MakeMaker 6.42
File::Spec 0.80
Test::More 0.47
perl 5.005
File-ShareDir-Install-0.08
pathname: G/GW/GWYN/File-ShareDir-Install-0.08.tar.gz
provides:
File::ShareDir::Install 0.08
requirements:
ExtUtils::MakeMaker 6.11
File::Spec 0
IO::Dir 0
File-pushd-1.005
pathname: D/DA/DAGOLDEN/File-pushd-1.005.tar.gz
provides:
File::pushd 1.005
requirements:
Carp 0
Cwd 0
Exporter 0
ExtUtils::MakeMaker 6.30
File::Basename 0
File::Find 0
File::Path 0
File::Spec 0
File::Spec::Functions 0
File::Temp 0
List::Util 0
Test::More 0
overload 0
strict 0
warnings 0
Filesys-Notify-Simple-0.12
pathname: M/MI/MIYAGAWA/Filesys-Notify-Simple-0.12.tar.gz
provides:
Filesys::Notify::Simple 0.12
requirements:
ExtUtils::MakeMaker 6.30
FindBin-libs-1.8
pathname: L/LE/LEMBARK/FindBin-libs-1.8.tar.gz
provides:
FindBin::libs undef
requirements:
Carp 0
Cwd 0
File::Spec 0
File::Temp 0
FindBin 0
List::Util 0
Module::Build 0.4205
Symbol 0
Test::More 0
strict 0
HTML-Parser-3.69
pathname: G/GA/GAAS/HTML-Parser-3.69.tar.gz
provides:
HTML::Entities 3.69
HTML::Filter 3.57
HTML::HeadParser 3.69
HTML::LinkExtor 3.69
HTML::Parser 3.69
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
HTML-Tree-5.03
pathname: C/CJ/CJM/HTML-Tree-5.03.tar.gz
provides:
HTML::AsSubs 5.03
HTML::Element 5.03
HTML::Element::traverse 5.03
HTML::Parse 5.03
HTML::Tree 5.03
HTML::TreeBuilder 5.03
requirements:
Carp 0
Encode 0
Exporter 0
HTML::Entities 0
HTML::Parser 3.46
HTML::Tagset 3.02
Module::Build 0.2808
Scalar::Util 0
Test::Fatal 0
Test::More 0
base 0
integer 0
perl 5.008
HTTP-Body-1.19
pathname: G/GE/GETTY/HTTP-Body-1.19.tar.gz
provides:
HTTP::Body 1.19
HTTP::Body::MultiPart 1.19
HTTP::Body::OctetStream 1.19
HTTP::Body::UrlEncoded 1.19
HTTP::Body::XForms 1.19
HTTP::Body::XFormsMultipart 1.19
PAML undef
requirements:
Carp 0
Digest::MD5 0
ExtUtils::MakeMaker 6.30
File::Temp 0.14
HTTP::Headers 0
IO::File 1.14
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.06
pathname: G/GA/GAAS/HTTP-Message-6.06.tar.gz
provides:
HTTP::Config 6.00
HTTP::Headers 6.05
HTTP::Headers::Auth 6.00
HTTP::Headers::ETag 6.00
HTTP::Headers::Util 6.03
HTTP::Message 6.06
HTTP::Request 6.00
HTTP::Request::Common 6.04
HTTP::Response 6.04
HTTP::Status 6.03
requirements:
Compress::Raw::Zlib 0
Encode 2.21
Encode::Locale 1
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-Parser-XS-0.16
pathname: K/KA/KAZUHO/HTTP-Parser-XS-0.16.tar.gz
provides:
HTTP::Parser::XS 0.16
HTTP::Parser::XS::PP undef
requirements:
ExtUtils::MakeMaker 6.42
Test::More 0.96
HTTP-Server-Simple-0.44
pathname: J/JE/JESSE/HTTP-Server-Simple-0.44.tar.gz
provides:
HTTP::Server::Simple 0.44
HTTP::Server::Simple::CGI undef
HTTP::Server::Simple::CGI::Environment undef
requirements:
CGI 0
ExtUtils::MakeMaker 6.42
Socket 0
Test::More 0
HTTP-Tiny-0.043
pathname: D/DA/DAGOLDEN/HTTP-Tiny-0.043.tar.gz
provides:
HTTP::Tiny 0.043
requirements:
Carp 0
ExtUtils::MakeMaker 6.17
Fcntl 0
IO::Socket 0
MIME::Base64 0
Time::Local 0
bytes 0
strict 0
warnings 0
Hash-MultiValue-0.15
pathname: M/MI/MIYAGAWA/Hash-MultiValue-0.15.tar.gz
provides:
Hash::MultiValue 0.15
requirements:
ExtUtils::MakeMaker 6.30
IO-HTML-1.00
pathname: C/CJ/CJM/IO-HTML-1.00.tar.gz
provides:
IO::HTML 1.00
requirements:
Carp 0
Encode 2.10
Exporter 5.57
ExtUtils::MakeMaker 6.30
File::Temp 0
Scalar::Util 0
Test::More 0.88
JSON-2.57
pathname: M/MA/MAKAMAKA/JSON-2.57.tar.gz
provides:
JSON 2.57
JSON::Backend::PP 2.57
JSON::Boolean 2.57
JSON::PP 2.27202
JSON::backportPP::Boolean 2.27202
requirements:
ExtUtils::MakeMaker 0
JSON::XS 2.27
Test::More 0
JSON-XS-3.01
pathname: M/ML/MLEHMANN/JSON-XS-3.01.tar.gz
provides:
JSON::XS 3.01
requirements:
ExtUtils::MakeMaker 0
Types::Serialiser 0
common::sense 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.33
pathname: A/AD/ADAMK/List-MoreUtils-0.33.tar.gz
provides:
List::MoreUtils 0.33
requirements:
ExtUtils::CBuilder 0.27
ExtUtils::MakeMaker 6.52
Test::More 0.82
perl 5.00503
Module-Build-Tiny-0.035
pathname: L/LE/LEONT/Module-Build-Tiny-0.035.tar.gz
provides:
Module::Build::Tiny 0.035
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
Mojolicious-4.87
pathname: S/SR/SRI/Mojolicious-4.87.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 4.87
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 0.01
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
Mojolicious::Validator undef
Mojolicious::Validator::Validation undef
Test::Mojo undef
ojo undef
requirements:
ExtUtils::MakeMaker 0
perl 5.010001
Net-HTTP-6.06
pathname: G/GA/GAAS/Net-HTTP-6.06.tar.gz
provides:
Net::HTTP 6.06
Net::HTTP::Methods 6.06
Net::HTTP::NB 6.04
Net::HTTPS 6.04
requirements:
Compress::Raw::Zlib 0
ExtUtils::MakeMaker 0
IO::Compress::Gzip 0
IO::Select 0
IO::Socket::INET 0
perl 5.006002
Net-Server-2.007
pathname: R/RH/RHANDOM/Net-Server-2.007.tar.gz
provides:
Net::Server 2.007
Net::Server::Daemonize 0.06
Net::Server::Fork undef
Net::Server::HTTP undef
Net::Server::INET undef
Net::Server::INET::Handle undef
Net::Server::Log::Log::Log4perl undef
Net::Server::Log::Sys::Syslog undef
Net::Server::MultiType undef
Net::Server::Multiplex undef
Net::Server::Multiplex::MUX undef
Net::Server::PSGI undef
Net::Server::PreFork undef
Net::Server::PreForkSimple undef
Net::Server::Proto undef
Net::Server::Proto::SSL undef
Net::Server::Proto::SSLEAY undef
Net::Server::Proto::TCP undef
Net::Server::Proto::UDP undef
Net::Server::Proto::UNIX undef
Net::Server::Proto::UNIXDGRAM undef
Net::Server::SIG 0.03
Net::Server::Single undef
Net::Server::TiedHandle 2.007
requirements:
ExtUtils::MakeMaker 0
IO::Socket 0
POSIX 0
Socket 0
Net-Server-SS-PreFork-0.05
pathname: K/KA/KAZUHO/Net-Server-SS-PreFork-0.05.tar.gz
provides:
Net::Server::SS::PreFork 0.05
requirements:
ExtUtils::MakeMaker 6.42
HTTP::Server::Simple::CGI 0
LWP::Simple 0
Net::Server 0
Server::Starter 0.02
Test::TCP 0.06
POSIX-strftime-Compiler-0.31
pathname: K/KA/KAZEBURO/POSIX-strftime-Compiler-0.31.tar.gz
provides:
POSIX::strftime::Compiler 0.31
requirements:
CPAN::Meta 0
CPAN::Meta::Prereqs 0
Carp 0
Exporter 0
ExtUtils::CBuilder 0
Module::Build 0.38
POSIX 0
Time::Local 0
perl 5.008004
Path-Tiny-0.017
pathname: D/DA/DAGOLDEN/Path-Tiny-0.017.tar.gz
provides:
Path::Tiny 0.017
requirements:
Carp 0
Config 0
Cwd 0
Devel::Hide 0
Exporter 5.57
ExtUtils::MakeMaker 6.30
Fcntl 0
File::Copy 0
File::Find 0
File::Path 2.07
File::Spec 3.40
File::Spec::Functions 0
File::Spec::Unix 0
File::Temp 0.18
File::pushd 0
File::stat 0
List::Util 0
Test::Deep 0
Test::Fatal 0
Test::More 0.96
autodie::exception 2.14
constant 0
open 0
overload 0
strict 0
warnings 0
Plack-1.0030
pathname: M/MI/MIYAGAWA/Plack-1.0030.tar.gz
provides:
HTTP::Message::PSGI undef
HTTP::Server::PSGI undef
Plack 1.0030
Plack::App::CGIBin undef
Plack::App::Cascade undef
Plack::App::Directory undef
Plack::App::File undef
Plack::App::PSGIBin undef
Plack::App::URLMap undef
Plack::App::WrapCGI undef
Plack::Builder undef
Plack::Component undef
Plack::HTTPParser undef
Plack::HTTPParser::PP undef
Plack::Handler undef
Plack::Handler::Apache1 undef
Plack::Handler::Apache2 undef
Plack::Handler::Apache2::Registry undef
Plack::Handler::CGI undef
Plack::Handler::CGI::Writer undef
Plack::Handler::FCGI undef
Plack::Handler::HTTP::Server::PSGI undef
Plack::Handler::Standalone undef
Plack::LWPish undef
Plack::Loader undef
Plack::Loader::Delayed undef
Plack::Loader::Restarter undef
Plack::Loader::Shotgun undef
Plack::MIME undef
Plack::Middleware undef
Plack::Middleware::AccessLog undef
Plack::Middleware::AccessLog::Timed undef
Plack::Middleware::Auth::Basic undef
Plack::Middleware::BufferedStreaming undef
Plack::Middleware::Chunked undef
Plack::Middleware::Conditional undef
Plack::Middleware::ConditionalGET undef
Plack::Middleware::ContentLength undef
Plack::Middleware::ContentMD5 undef
Plack::Middleware::ErrorDocument undef
Plack::Middleware::HTTPExceptions undef
Plack::Middleware::Head undef
Plack::Middleware::IIS6ScriptNameFix undef
Plack::Middleware::IIS7KeepAliveFix undef
Plack::Middleware::JSONP undef
Plack::Middleware::LighttpdScriptNameFix undef
Plack::Middleware::Lint undef
Plack::Middleware::Log4perl undef
Plack::Middleware::LogDispatch undef
Plack::Middleware::NullLogger undef
Plack::Middleware::RearrangeHeaders undef
Plack::Middleware::Recursive undef
Plack::Middleware::Refresh undef
Plack::Middleware::Runtime undef
Plack::Middleware::SimpleContentFilter undef
Plack::Middleware::SimpleLogger undef
Plack::Middleware::StackTrace undef
Plack::Middleware::Static undef
Plack::Middleware::XFramework undef
Plack::Middleware::XSendfile undef
Plack::Recursive::ForwardRequest undef
Plack::Request 1.0030
Plack::Request::Upload undef
Plack::Response 1.0030
Plack::Runner undef
Plack::TempBuffer undef
Plack::Test undef
Plack::Test::MockHTTP undef
Plack::Test::Server undef
Plack::Test::Suite undef
Plack::Util undef
Plack::Util::Accessor undef
Plack::Util::IOWithPath undef
Plack::Util::Prototype undef
requirements:
Apache::LogFormat::Compiler 0.12
Devel::StackTrace 1.23
Devel::StackTrace::AsHTML 0.11
ExtUtils::MakeMaker 6.30
File::ShareDir 1.00
File::ShareDir::Install 0.03
Filesys::Notify::Simple 0
HTTP::Body 1.06
HTTP::Message 5.814
HTTP::Tiny 0.034
Hash::MultiValue 0.05
Pod::Usage 1.36
Stream::Buffered 0.02
Test::TCP 2.00
Try::Tiny 0
URI 1.59
parent 0
Proc-Wait3-0.04
pathname: C/CT/CTILMES/Proc-Wait3-0.04.tar.gz
provides:
Proc::Wait3 0.04
requirements:
ExtUtils::MakeMaker 0
Project-Libs-0.02
pathname: K/KE/KENTARO/Project-Libs-0.02.tar.gz
provides:
Project::Libs 0.02
requirements:
ExtUtils::MakeMaker 6.59
FindBin::libs 0
Test::More 0.96
perl 5.008001
Scope-Guard-0.20
pathname: C/CH/CHOCOLATE/Scope-Guard-0.20.tar.gz
provides:
Scope::Guard 0.20
requirements:
ExtUtils::MakeMaker 0
Test::More 0
perl 5.006001
Server-Starter-0.17
pathname: K/KA/KAZUHO/Server-Starter-0.17.tar.gz
provides:
Server::Starter 0.17
requirements:
ExtUtils::MakeMaker 6.42
Getopt::Long 0
List::MoreUtils 0
Proc::Wait3 0
Scope::Guard 0
Test::TCP 2.00
perl 5.008
Spiffy-0.31
pathname: I/IN/INGY/Spiffy-0.31.tar.gz
provides:
Spiffy 0.31
Spiffy::mixin undef
requirements:
ExtUtils::MakeMaker 6.59
perl 5.006001
Starman-0.4008
pathname: M/MI/MIYAGAWA/Starman-0.4008.tar.gz
provides:
HTTP::Server::PSGI::Net::Server::PreFork undef
Plack::Handler::Starman undef
Starman 0.4008
Starman::Server undef
requirements:
Data::Dump 0
HTTP::Date 0
HTTP::Parser::XS 0
HTTP::Status 0
Module::Build::Tiny 0.026
Net::Server 2.007
Plack 0.9971
Test::TCP 2.00
parent 0
perl 5.008001
Stream-Buffered-0.02
pathname: D/DO/DOY/Stream-Buffered-0.02.tar.gz
provides:
Stream::Buffered 0.02
Stream::Buffered::Auto undef
Stream::Buffered::File undef
Stream::Buffered::PerlIO undef
requirements:
ExtUtils::MakeMaker 6.36
Sub-Uplevel-0.24
pathname: D/DA/DAGOLDEN/Sub-Uplevel-0.24.tar.gz
provides:
Sub::Uplevel 0.24
requirements:
Carp 0
Exporter 0
ExtUtils::MakeMaker 6.30
File::Find 0
File::Temp 0
Test::More 0
constant 0
strict 0
warnings 0
Test-Base-0.60
pathname: I/IN/INGY/Test-Base-0.60.tar.gz
provides:
Module::Install::TestBase 0.60
Test::Base 0.60
Test::Base::Block 0.60
Test::Base::Filter undef
Test::Base::Handle 0.60
requirements:
ExtUtils::MakeMaker 6.42
Filter::Util::Call 0
Spiffy 0.30
Test::More 0.62
perl 5.006001
Test-Deep-0.110
pathname: R/RJ/RJBS/Test-Deep-0.110.tar.gz
provides:
Test::Deep 0.110
Test::Deep::All undef
Test::Deep::Any undef
Test::Deep::Array undef
Test::Deep::ArrayEach undef
Test::Deep::ArrayElementsOnly undef
Test::Deep::ArrayLength undef
Test::Deep::ArrayLengthOnly undef
Test::Deep::Blessed undef
Test::Deep::Boolean undef
Test::Deep::Cache undef
Test::Deep::Cache::Simple undef
Test::Deep::Class undef
Test::Deep::Cmp undef
Test::Deep::Code undef
Test::Deep::Hash undef
Test::Deep::HashEach undef
Test::Deep::HashElements undef
Test::Deep::HashKeys undef
Test::Deep::HashKeysOnly undef
Test::Deep::Ignore undef
Test::Deep::Isa undef
Test::Deep::ListMethods undef
Test::Deep::MM undef
Test::Deep::Methods undef
Test::Deep::NoTest undef
Test::Deep::Number undef
Test::Deep::Ref undef
Test::Deep::RefType undef
Test::Deep::Regexp undef
Test::Deep::RegexpMatches undef
Test::Deep::RegexpRef undef
Test::Deep::RegexpRefOnly undef
Test::Deep::RegexpVersion undef
Test::Deep::ScalarRef undef
Test::Deep::ScalarRefOnly undef
Test::Deep::Set undef
Test::Deep::Shallow undef
Test::Deep::Stack undef
Test::Deep::String undef
Test::Deep::SubHash undef
Test::Deep::SubHashElements undef
Test::Deep::SubHashKeys undef
Test::Deep::SubHashKeysOnly undef
Test::Deep::SuperHash undef
Test::Deep::SuperHashElements undef
Test::Deep::SuperHashKeys undef
Test::Deep::SuperHashKeysOnly undef
requirements:
ExtUtils::MakeMaker 0
List::Util 1.09
Scalar::Util 1.09