-
Notifications
You must be signed in to change notification settings - Fork 1
/
cpanfile.snapshot
1679 lines (1679 loc) · 47.8 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
Algorithm-C3-0.10
pathname: H/HA/HAARG/Algorithm-C3-0.10.tar.gz
provides:
Algorithm::C3 0.10
requirements:
Carp 0.01
ExtUtils::MakeMaker 0
Test::More 0.47
perl 5.006
Algorithm-Diff-1.1903
pathname: T/TY/TYEMQ/Algorithm-Diff-1.1903.tar.gz
provides:
Algorithm::Diff 1.1903
Algorithm::Diff::_impl 1.1903
requirements:
ExtUtils::MakeMaker 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
B-Hooks-OP-Check-0.19
pathname: Z/ZE/ZEFRAM/B-Hooks-OP-Check-0.19.tar.gz
provides:
B::Hooks::OP::Check 0.19
B::Hooks::OP::Check::Install::Files undef
requirements:
ExtUtils::Depends 0.302
ExtUtils::MakeMaker 6.42
Test::More 0
parent 0
perl 5.008001
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-YAML-0.018
pathname: D/DA/DAGOLDEN/CPAN-Meta-YAML-0.018.tar.gz
provides:
CPAN::Meta::YAML 0.018
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.36
pathname: D/DA/DAGOLDEN/Capture-Tiny-0.36.tar.gz
provides:
Capture::Tiny 0.36
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
Carp-1.38
pathname: R/RJ/RJBS/Carp-1.38.tar.gz
provides:
Carp 1.38
Carp::Heavy 1.38
requirements:
Config 0
Exporter 0
ExtUtils::MakeMaker 0
IPC::Open3 1.0103
Test::More 0.47
overload 0
strict 0
warnings 0
Carp-Clan-6.04
pathname: S/ST/STBEY/Carp-Clan-6.04.tar.gz
provides:
Carp::Clan 6.04
requirements:
ExtUtils::MakeMaker 0
Test::Exception 0
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-Accessor-Chained-0.01
pathname: R/RC/RCLAMP/Class-Accessor-Chained-0.01.tar.gz
provides:
Class::Accessor::Chained 0.01
Class::Accessor::Chained::Fast undef
requirements:
Class::Accessor 0
Test::More 0
Class-Accessor-Grouped-0.10012
pathname: R/RI/RIBASUSHI/Class-Accessor-Grouped-0.10012.tar.gz
provides:
Class::Accessor::Grouped 0.10012
requirements:
Carp 0
Class::XSAccessor 1.19
ExtUtils::CBuilder 0.27
ExtUtils::MakeMaker 6.59
Module::Runtime 0.012
Scalar::Util 0
Sub::Name 0.05
Test::Exception 0.31
Test::More 0.88
perl 5.006
Class-C3-0.30
pathname: H/HA/HAARG/Class-C3-0.30.tar.gz
provides:
Class::C3 0.30
requirements:
Algorithm::C3 0.07
ExtUtils::MakeMaker 0
Scalar::Util 0
perl 5.006
Class-C3-Componentised-1.001000
pathname: F/FR/FREW/Class-C3-Componentised-1.001000.tar.gz
provides:
Class::C3::Componentised 1.001000
Class::C3::Componentised::ApplyHooks undef
requirements:
Carp 0
Class::C3 0.20
Class::Inspector 0
ExtUtils::MakeMaker 6.42
MRO::Compat 0
Test::Exception 0
perl 5.006002
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
Class-Method-Modifiers-2.12
pathname: E/ET/ETHER/Class-Method-Modifiers-2.12.tar.gz
provides:
Class::Method::Modifiers 2.12
requirements:
B 0
Carp 0
Exporter 0
ExtUtils::MakeMaker 0
base 0
perl 5.006
strict 0
warnings 0
Class-XSAccessor-1.19
pathname: S/SM/SMUELLER/Class-XSAccessor-1.19.tar.gz
provides:
Class::XSAccessor 1.19
Class::XSAccessor::Array 1.19
requirements:
ExtUtils::MakeMaker 0
Test::More 0
Time::HiRes 0
XSLoader 0
perl 5.008
Clone-0.38
pathname: G/GA/GARU/Clone-0.38.tar.gz
provides:
Clone 0.38
requirements:
ExtUtils::MakeMaker 0
Test::More 0
Config-Any-0.27
pathname: B/BR/BRICAS/Config-Any-0.27.tar.gz
provides:
Config::Any 0.27
Config::Any::Base undef
Config::Any::General undef
Config::Any::INI undef
Config::Any::JSON undef
Config::Any::Perl undef
Config::Any::XML undef
Config::Any::YAML undef
requirements:
ExtUtils::MakeMaker 6.59
Module::Pluggable::Object 3.6
Test::More 0
perl 5.006
Context-Preserve-0.01
pathname: J/JR/JROCKWAY/Context-Preserve-0.01.tar.gz
provides:
Context::Preserve 0.01
requirements:
Exporter 0
ExtUtils::MakeMaker 0
Test::Exception 0
Test::More 0
ok 0
DBD-Pg-3.5.3
pathname: T/TU/TURNSTEP/DBD-Pg-3.5.3.tar.gz
provides:
Bundle::DBD::Pg v3.5.3
DBD::Pg v3.5.3
requirements:
DBI 1.614
ExtUtils::MakeMaker 6.11
Test::More 0.88
Time::HiRes 0
version 0
DBD-SQLite-1.50
pathname: I/IS/ISHIGAKI/DBD-SQLite-1.50.tar.gz
provides:
DBD::SQLite 1.50
DBD::SQLite::Constants undef
DBD::SQLite::VirtualTable 1.50
DBD::SQLite::VirtualTable::Cursor 1.50
DBD::SQLite::VirtualTable::FileContent undef
DBD::SQLite::VirtualTable::FileContent::Cursor undef
DBD::SQLite::VirtualTable::PerlData undef
DBD::SQLite::VirtualTable::PerlData::Cursor undef
requirements:
DBI 1.57
ExtUtils::MakeMaker 0
File::Spec 0.82
Test::Builder 0.86
Test::More 0.47
Tie::Hash 0
perl 5.006
DBI-1.634
pathname: T/TI/TIMB/DBI-1.634.tar.gz
provides:
Bundle::DBI 12.008696
DBD::DBM 0.08
DBD::DBM::Statement 0.08
DBD::DBM::Table 0.08
DBD::DBM::db 0.08
DBD::DBM::dr 0.08
DBD::DBM::st 0.08
DBD::ExampleP 12.014311
DBD::ExampleP::db 12.014311
DBD::ExampleP::dr 12.014311
DBD::ExampleP::st 12.014311
DBD::File 0.44
DBD::File::DataSource::File 0.44
DBD::File::DataSource::Stream 0.44
DBD::File::Statement 0.44
DBD::File::Table 0.44
DBD::File::TableSource::FileSystem 0.44
DBD::File::db 0.44
DBD::File::dr 0.44
DBD::File::st 0.44
DBD::Gofer 0.015327
DBD::Gofer::Policy::Base 0.010088
DBD::Gofer::Policy::classic 0.010088
DBD::Gofer::Policy::pedantic 0.010088
DBD::Gofer::Policy::rush 0.010088
DBD::Gofer::Transport::Base 0.014121
DBD::Gofer::Transport::corostream undef
DBD::Gofer::Transport::null 0.010088
DBD::Gofer::Transport::pipeone 0.010088
DBD::Gofer::Transport::stream 0.014599
DBD::Gofer::db 0.015327
DBD::Gofer::dr 0.015327
DBD::Gofer::st 0.015327
DBD::NullP 12.014715
DBD::NullP::db 12.014715
DBD::NullP::dr 12.014715
DBD::NullP::st 12.014715
DBD::Proxy 0.2004
DBD::Proxy::RPC::PlClient 0.2004
DBD::Proxy::db 0.2004
DBD::Proxy::dr 0.2004
DBD::Proxy::st 0.2004
DBD::Sponge 12.010003
DBD::Sponge::db 12.010003
DBD::Sponge::dr 12.010003
DBD::Sponge::st 12.010003
DBDI 12.015129
DBI 1.634
DBI::Const::GetInfo::ANSI 2.008697
DBI::Const::GetInfo::ODBC 2.011374
DBI::Const::GetInfoReturn 2.008697
DBI::Const::GetInfoType 2.008697
DBI::DBD 12.015129
DBI::DBD::Metadata 2.014214
DBI::DBD::SqlEngine 0.06
DBI::DBD::SqlEngine::DataSource 0.06
DBI::DBD::SqlEngine::Statement 0.06
DBI::DBD::SqlEngine::Table 0.06
DBI::DBD::SqlEngine::TableSource 0.06
DBI::DBD::SqlEngine::TieMeta 0.06
DBI::DBD::SqlEngine::TieTables 0.06
DBI::DBD::SqlEngine::db 0.06
DBI::DBD::SqlEngine::dr 0.06
DBI::DBD::SqlEngine::st 0.06
DBI::FAQ 1.014935
DBI::Gofer::Execute 0.014283
DBI::Gofer::Request 0.012537
DBI::Gofer::Response 0.011566
DBI::Gofer::Serializer::Base 0.009950
DBI::Gofer::Serializer::DataDumper 0.009950
DBI::Gofer::Serializer::Storable 0.015586
DBI::Gofer::Transport::Base 0.012537
DBI::Gofer::Transport::pipeone 0.012537
DBI::Gofer::Transport::stream 0.012537
DBI::Profile 2.015065
DBI::ProfileData 2.010008
DBI::ProfileDumper 2.015325
DBI::ProfileDumper::Apache 2.014121
DBI::ProfileSubs 0.009396
DBI::ProxyServer 0.3005
DBI::ProxyServer::db 0.3005
DBI::ProxyServer::dr 0.3005
DBI::ProxyServer::st 0.3005
DBI::SQL::Nano 1.015544
DBI::SQL::Nano::Statement_ 1.015544
DBI::SQL::Nano::Table_ 1.015544
DBI::Util::CacheMemory 0.010315
DBI::Util::_accessor 0.009479
DBI::common 1.634
requirements:
ExtUtils::MakeMaker 6.48
Test::Simple 0.90
perl 5.008
DBIx-Class-0.082821
pathname: R/RI/RIBASUSHI/DBIx-Class-0.082821.tar.gz
provides:
DBIx::Class 0.082821
DBIx::Class::AccessorGroup undef
DBIx::Class::Admin undef
DBIx::Class::CDBICompat undef
DBIx::Class::Core undef
DBIx::Class::Cursor undef
DBIx::Class::DB undef
DBIx::Class::Exception undef
DBIx::Class::FilterColumn undef
DBIx::Class::InflateColumn undef
DBIx::Class::InflateColumn::DateTime undef
DBIx::Class::InflateColumn::File undef
DBIx::Class::Optional::Dependencies undef
DBIx::Class::Ordered undef
DBIx::Class::PK undef
DBIx::Class::PK::Auto undef
DBIx::Class::Relationship undef
DBIx::Class::Relationship::Base undef
DBIx::Class::ResultClass::HashRefInflator undef
DBIx::Class::ResultSet undef
DBIx::Class::ResultSetColumn undef
DBIx::Class::ResultSetManager undef
DBIx::Class::ResultSource undef
DBIx::Class::ResultSource::Table undef
DBIx::Class::ResultSource::View undef
DBIx::Class::ResultSourceHandle undef
DBIx::Class::ResultSourceProxy::Table undef
DBIx::Class::Row undef
DBIx::Class::SQLMaker undef
DBIx::Class::SQLMaker::LimitDialects undef
DBIx::Class::SQLMaker::OracleJoins undef
DBIx::Class::Schema undef
DBIx::Class::Schema::Versioned undef
DBIx::Class::Serialize::Storable undef
DBIx::Class::StartupCheck undef
DBIx::Class::Storage undef
DBIx::Class::Storage::DBI undef
DBIx::Class::Storage::DBI::ACCESS undef
DBIx::Class::Storage::DBI::ADO undef
DBIx::Class::Storage::DBI::ADO::MS_Jet undef
DBIx::Class::Storage::DBI::ADO::MS_Jet::Cursor undef
DBIx::Class::Storage::DBI::ADO::Microsoft_SQL_Server undef
DBIx::Class::Storage::DBI::ADO::Microsoft_SQL_Server::Cursor undef
DBIx::Class::Storage::DBI::AutoCast undef
DBIx::Class::Storage::DBI::Cursor undef
DBIx::Class::Storage::DBI::DB2 undef
DBIx::Class::Storage::DBI::Firebird undef
DBIx::Class::Storage::DBI::Firebird::Common undef
DBIx::Class::Storage::DBI::IdentityInsert undef
DBIx::Class::Storage::DBI::Informix undef
DBIx::Class::Storage::DBI::InterBase undef
DBIx::Class::Storage::DBI::MSSQL undef
DBIx::Class::Storage::DBI::NoBindVars undef
DBIx::Class::Storage::DBI::ODBC undef
DBIx::Class::Storage::DBI::ODBC::ACCESS undef
DBIx::Class::Storage::DBI::ODBC::DB2_400_SQL undef
DBIx::Class::Storage::DBI::ODBC::Firebird undef
DBIx::Class::Storage::DBI::ODBC::Microsoft_SQL_Server undef
DBIx::Class::Storage::DBI::ODBC::SQL_Anywhere undef
DBIx::Class::Storage::DBI::Oracle undef
DBIx::Class::Storage::DBI::Oracle::Generic undef
DBIx::Class::Storage::DBI::Oracle::WhereJoins undef
DBIx::Class::Storage::DBI::Pg undef
DBIx::Class::Storage::DBI::Replicated undef
DBIx::Class::Storage::DBI::Replicated::Balancer undef
DBIx::Class::Storage::DBI::Replicated::Balancer::First undef
DBIx::Class::Storage::DBI::Replicated::Balancer::Random undef
DBIx::Class::Storage::DBI::Replicated::Pool undef
DBIx::Class::Storage::DBI::Replicated::Replicant undef
DBIx::Class::Storage::DBI::Replicated::WithDSN undef
DBIx::Class::Storage::DBI::SQLAnywhere undef
DBIx::Class::Storage::DBI::SQLAnywhere::Cursor undef
DBIx::Class::Storage::DBI::SQLite undef
DBIx::Class::Storage::DBI::Sybase undef
DBIx::Class::Storage::DBI::Sybase::ASE undef
DBIx::Class::Storage::DBI::Sybase::ASE::NoBindVars undef
DBIx::Class::Storage::DBI::Sybase::FreeTDS undef
DBIx::Class::Storage::DBI::Sybase::MSSQL undef
DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server undef
DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server::NoBindVars undef
DBIx::Class::Storage::DBI::UniqueIdentifier undef
DBIx::Class::Storage::DBI::mysql undef
DBIx::Class::Storage::Statistics undef
DBIx::Class::Storage::TxnScopeGuard undef
DBIx::Class::UTF8Columns undef
SQL::Translator::Parser::DBIx::Class 1.10
SQL::Translator::Producer::DBIx::Class::File 0.1
requirements:
Class::Accessor::Grouped 0.10012
Class::C3::Componentised 1.0009
Class::Inspector 1.24
Config::Any 0.20
Context::Preserve 0.01
DBD::SQLite 1.29
DBI 1.57
Data::Dumper::Concise 2.020
Data::Page 2.00
Devel::GlobalDestruction 0.09
ExtUtils::MakeMaker 6.59
File::Temp 0.22
Hash::Merge 0.12
List::Util 1.16
MRO::Compat 0.12
Module::Find 0.07
Moo 2.000
Package::Stash 0.28
Path::Class 0.18
SQL::Abstract 1.81
Scope::Guard 0.03
Sub::Name 0.04
Test::Deep 0.101
Test::Exception 0.31
Test::More 0.94
Test::Warn 0.21
Text::Balanced 2.00
Try::Tiny 0.07
namespace::clean 0.24
perl 5.008001
DBIx-Class-Candy-0.005001
pathname: F/FR/FREW/DBIx-Class-Candy-0.005001.tar.gz
provides:
DBIx::Class::Candy 0.005001
DBIx::Class::Candy::Exports 0.005001
DBIx::Class::Candy::ResultSet 0.005001
requirements:
DBIx::Class 0.08123
ExtUtils::MakeMaker 0
Lingua::EN::Inflect 0
MRO::Compat 0.11
String::CamelCase 0
Sub::Exporter 0.982
namespace::clean 0.18
Data-Dumper-2.154
pathname: S/SM/SMUELLER/Data-Dumper-2.154.tar.gz
provides:
Data::Dumper 2.154
requirements:
ExtUtils::MakeMaker 0
Test::More 0.98
Data-Dumper-Concise-2.022
pathname: F/FR/FREW/Data-Dumper-Concise-2.022.tar.gz
provides:
Data::Dumper::Concise 2.022
Data::Dumper::Concise::Sugar undef
Devel::Dwarn undef
requirements:
ExtUtils::MakeMaker 6.59
perl 5.006
Data-OptList-0.110
pathname: R/RJ/RJBS/Data-OptList-0.110.tar.gz
provides:
Data::OptList 0.110
requirements:
ExtUtils::MakeMaker 0
List::Util 0
Params::Util 0
Sub::Install 0.921
strict 0
warnings 0
Data-Page-2.02
pathname: L/LB/LBROCARD/Data-Page-2.02.tar.gz
provides:
Data::Page 2.02
requirements:
Class::Accessor::Chained::Fast 0
Test::Exception 0
Test::More 0
Devel-GlobalDestruction-0.13
pathname: H/HA/HAARG/Devel-GlobalDestruction-0.13.tar.gz
provides:
Devel::GlobalDestruction 0.13
requirements:
Devel::GlobalDestruction::XS 0
ExtUtils::CBuilder 0.27
ExtUtils::MakeMaker 0
Sub::Exporter::Progressive 0.001011
perl 5.006
Devel-GlobalDestruction-XS-0.02
pathname: H/HA/HAARG/Devel-GlobalDestruction-XS-0.02.tar.gz
provides:
Devel::GlobalDestruction::XS 0.02
requirements:
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
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-Constant-0.23
pathname: N/NW/NWCLARK/ExtUtils-Constant-0.23.tar.gz
provides:
ExtUtils::Constant 0.23
ExtUtils::Constant::Aaargh56Hash undef
ExtUtils::Constant::Base 0.05
ExtUtils::Constant::ProxySubs 0.08
ExtUtils::Constant::Utils 0.03
ExtUtils::Constant::XS 0.03
requirements:
ExtUtils::MakeMaker 0
ExtUtils-Depends-0.405
pathname: X/XA/XAOC/ExtUtils-Depends-0.405.tar.gz
provides:
ExtUtils::Depends 0.405
requirements:
Data::Dumper 0
ExtUtils::MakeMaker 0
File::Spec 0
IO::File 0
perl 5.006
ExtUtils-MakeMaker-7.10
pathname: B/BI/BINGOS/ExtUtils-MakeMaker-7.10.tar.gz
provides:
ExtUtils::Command 7.10
ExtUtils::Command::MM 7.10
ExtUtils::Liblist 7.10
ExtUtils::Liblist::Kid 7.10
ExtUtils::MM 7.10
ExtUtils::MM_AIX 7.10
ExtUtils::MM_Any 7.10
ExtUtils::MM_BeOS 7.10
ExtUtils::MM_Cygwin 7.10
ExtUtils::MM_DOS 7.10
ExtUtils::MM_Darwin 7.10
ExtUtils::MM_MacOS 7.10
ExtUtils::MM_NW5 7.10
ExtUtils::MM_OS2 7.10
ExtUtils::MM_QNX 7.10
ExtUtils::MM_UWIN 7.10
ExtUtils::MM_Unix 7.10
ExtUtils::MM_VMS 7.10
ExtUtils::MM_VOS 7.10
ExtUtils::MM_Win32 7.10
ExtUtils::MM_Win95 7.10
ExtUtils::MY 7.10
ExtUtils::MakeMaker 7.10
ExtUtils::MakeMaker::Config 7.10
ExtUtils::MakeMaker::Locale 7.10
ExtUtils::MakeMaker::_version 7.10
ExtUtils::MakeMaker::charstar 7.10
ExtUtils::MakeMaker::version 7.10
ExtUtils::MakeMaker::version::regex 7.10
ExtUtils::MakeMaker::version::vpp 7.10
ExtUtils::Mkbootstrap 7.10
ExtUtils::Mksymlists 7.10
ExtUtils::testlib 7.10
MM 7.10
MY 7.10
requirements:
Data::Dumper 0
DirHandle 0
Encode 0
File::Basename 0
File::Spec 0.8
Pod::Man 0
perl 5.006
File-ShareDir-1.102
pathname: R/RE/REHSACK/File-ShareDir-1.102.tar.gz
provides:
File::ShareDir 1.102
requirements:
Carp 0
Class::Inspector 1.12
ExtUtils::MakeMaker 0
File::ShareDir::Install 0.03
File::Spec 0.80
perl 5.008001
warnings 0
File-ShareDir-Install-0.10
pathname: G/GW/GWYN/File-ShareDir-Install-0.10.tar.gz
provides:
File::ShareDir::Install 0.10
requirements:
ExtUtils::MakeMaker 6.11
File::Spec 0
IO::Dir 0
Hash-Merge-0.200
pathname: R/RE/REHSACK/Hash-Merge-0.200.tar.gz
provides:
Hash::Merge 0.200
requirements:
Clone 0
ExtUtils::MakeMaker 0
perl 5.008001
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
Import-Into-1.002005
pathname: H/HA/HAARG/Import-Into-1.002005.tar.gz
provides:
Import::Into 1.002005
requirements:
ExtUtils::MakeMaker 0
Module::Runtime 0
perl 5.006
strict 0
warnings 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-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
Lexical-SealRequireHints-0.010
pathname: Z/ZE/ZEFRAM/Lexical-SealRequireHints-0.010.tar.gz
provides:
Lexical::SealRequireHints 0.010
requirements:
Module::Build 0
Test::More 0.41
perl 5.006
strict 0
warnings 0
Lingua-EN-Inflect-1.899
pathname: D/DC/DCONWAY/Lingua-EN-Inflect-1.899.tar.gz
provides:
Lingua::EN::Inflect 1.899
requirements:
Test::More 0
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
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
Module-Build-0.4216
pathname: L/LE/LEONT/Module-Build-0.4216.tar.gz
provides:
Module::Build 0.4216
Module::Build::Base 0.4216
Module::Build::Compat 0.4216
Module::Build::Config 0.4216
Module::Build::Cookbook 0.4216
Module::Build::Dumper 0.4216
Module::Build::Notes 0.4216
Module::Build::PPMMaker 0.4216
Module::Build::Platform::Default 0.4216
Module::Build::Platform::MacOS 0.4216
Module::Build::Platform::Unix 0.4216
Module::Build::Platform::VMS 0.4216
Module::Build::Platform::VOS 0.4216
Module::Build::Platform::Windows 0.4216
Module::Build::Platform::aix 0.4216
Module::Build::Platform::cygwin 0.4216
Module::Build::Platform::darwin 0.4216
Module::Build::Platform::os2 0.4216
Module::Build::PodParser 0.4216
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-Find-0.13
pathname: C/CR/CRENZ/Module-Find-0.13.tar.gz
provides:
Module::Find 0.13
ModuleFindTest undef
ModuleFindTest::SubMod undef
ModuleFindTest::SubMod::SubSubMod undef
requirements:
ExtUtils::MakeMaker 0
File::Find 0
File::Spec 0
Test::More 0
perl 5.006001
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-Metadata-1.000027
pathname: E/ET/ETHER/Module-Metadata-1.000027.tar.gz
provides:
Module::Metadata 1.000027
requirements:
Carp 0
ExtUtils::MakeMaker 0
Fcntl 0
File::Find 0
File::Spec 0
perl 5.006
strict 0
version 0.87
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
Mojo-Pg-2.25
pathname: S/SR/SRI/Mojo-Pg-2.25.tar.gz
provides:
Mojo::Pg 2.25
Mojo::Pg::Database undef
Mojo::Pg::Migrations undef
Mojo::Pg::PubSub undef
Mojo::Pg::Results undef
Mojo::Pg::Transaction undef
requirements:
DBD::Pg 3.005001
ExtUtils::MakeMaker 0
Mojolicious 6.0
perl 5.010001
Mojolicious-6.57
pathname: S/SR/SRI/Mojolicious-6.57.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::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
Mojo::WebSocket undef
Mojolicious 6.57
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
Mojolicious::Validator undef
Mojolicious::Validator::Validation undef
Test::Mojo undef
ojo undef
requirements:
ExtUtils::MakeMaker 0
IO::Socket::IP 0.37
JSON::PP 2.27103
Pod::Simple 3.09
Time::Local 1.2
perl 5.010001
Moo-2.001001
pathname: H/HA/HAARG/Moo-2.001001.tar.gz
provides:
Method::Generate::Accessor undef
Method::Generate::BuildAll undef
Method::Generate::Constructor undef
Method::Generate::DemolishAll undef
Method::Inliner undef
Moo 2.001001
Moo::HandleMoose undef
Moo::HandleMoose::FakeConstructor undef
Moo::HandleMoose::FakeMetaClass undef
Moo::HandleMoose::_TypeMap undef
Moo::Object undef
Moo::Role 2.001001
Moo::_Utils undef
Moo::_mro undef
Moo::_strictures undef
Moo::sification undef
Sub::Defer 2.001001
Sub::Quote 2.001001
oo undef
requirements:
Class::Method::Modifiers 1.1
Devel::GlobalDestruction 0.11
Exporter 5.57
ExtUtils::MakeMaker 0
Module::Runtime 0.014
Role::Tiny 2
Scalar::Util 0