-
Notifications
You must be signed in to change notification settings - Fork 1
/
cpanfile.snapshot
3368 lines (3368 loc) · 116 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.09
pathname: H/HA/HAARG/Algorithm-C3-0.09.tar.gz
provides:
Algorithm::C3 0.09
requirements:
Carp 0.01
ExtUtils::MakeMaker 0
Test::More 0.47
AnyEvent-7.07
pathname: M/ML/MLEHMANN/AnyEvent-7.07.tar.gz
provides:
AE undef
AE::Log::COLLECT undef
AE::Log::FILTER undef
AE::Log::LOG undef
AnyEvent 7.07
AnyEvent::Base 7.07
AnyEvent::CondVar 7.07
AnyEvent::CondVar::Base 7.07
AnyEvent::DNS undef
AnyEvent::Debug undef
AnyEvent::Debug::Backtrace undef
AnyEvent::Debug::Wrap undef
AnyEvent::Debug::Wrapped undef
AnyEvent::Debug::shell undef
AnyEvent::Handle undef
AnyEvent::IO undef
AnyEvent::IO::IOAIO undef
AnyEvent::IO::Perl undef
AnyEvent::Impl::Cocoa undef
AnyEvent::Impl::EV undef
AnyEvent::Impl::Event undef
AnyEvent::Impl::EventLib undef
AnyEvent::Impl::FLTK undef
AnyEvent::Impl::Glib undef
AnyEvent::Impl::IOAsync undef
AnyEvent::Impl::Irssi undef
AnyEvent::Impl::POE undef
AnyEvent::Impl::Perl undef
AnyEvent::Impl::Qt undef
AnyEvent::Impl::Qt::Io undef
AnyEvent::Impl::Qt::Timer undef
AnyEvent::Impl::Tk undef
AnyEvent::Log undef
AnyEvent::Log::COLLECT undef
AnyEvent::Log::Ctx undef
AnyEvent::Log::FILTER undef
AnyEvent::Log::LOG undef
AnyEvent::Loop undef
AnyEvent::Socket undef
AnyEvent::Strict undef
AnyEvent::TLS undef
AnyEvent::Util undef
requirements:
ExtUtils::MakeMaker 0
AnyEvent-HTTP-2.21
pathname: M/ML/MLEHMANN/AnyEvent-HTTP-2.21.tar.gz
provides:
AnyEvent::HTTP 2.21
requirements:
AnyEvent 5.33
ExtUtils::MakeMaker 0
common::sense 3.3
AnyEvent-RabbitMQ-1.16
pathname: B/BO/BOBTFISH/AnyEvent-RabbitMQ-1.16.tar.gz
provides:
AnyEvent::RabbitMQ 1.16
AnyEvent::RabbitMQ::Channel 1.16
AnyEvent::RabbitMQ::LocalQueue 1.16
requirements:
AnyEvent 0
Devel::GlobalDestruction 0
ExtUtils::MakeMaker 6.59
File::ShareDir 0
List::MoreUtils 0
Net::AMQP 0.06
Readonly 1.03
Test::Exception 0
Test::More 0
namespace::clean 0
perl 5.006
version 0
B-Hooks-EndOfScope-0.13
pathname: E/ET/ETHER/B-Hooks-EndOfScope-0.13.tar.gz
provides:
B::Hooks::EndOfScope 0.13
B::Hooks::EndOfScope::PP 0.13
B::Hooks::EndOfScope::XS 0.13
requirements:
ExtUtils::CBuilder 0.26
ExtUtils::MakeMaker 6.30
Module::Implementation 0.05
Module::Runtime 0.012
Sub::Exporter::Progressive 0.001006
Variable::Magic 0.48
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
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.10010
pathname: R/RI/RIBASUSHI/Class-Accessor-Grouped-0.10010.tar.gz
provides:
Class::Accessor::Grouped 0.10010
requirements:
Carp 0
Class::XSAccessor 1.15
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.26
pathname: H/HA/HAARG/Class-C3-0.26.tar.gz
provides:
Class::C3 0.26
requirements:
Algorithm::C3 0.07
ExtUtils::CBuilder 0.27
Scalar::Util 0
Test::More 0.47
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-Data-Inheritable-0.08
pathname: T/TM/TMTM/Class-Data-Inheritable-0.08.tar.gz
provides:
Class::Data::Inheritable 0.08
requirements:
ExtUtils::MakeMaker 0
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-Load-0.21
pathname: E/ET/ETHER/Class-Load-0.21.tar.gz
provides:
Class::Load 0.21
Class::Load::PP 0.21
requirements:
Carp 0
Data::OptList 0
Exporter 0
ExtUtils::MakeMaker 6.30
Module::Build::Tiny 0.034
Module::Implementation 0.04
Module::Runtime 0.012
Package::Stash 0.14
Scalar::Util 0
Try::Tiny 0
base 0
perl 5.008
strict 0
warnings 0
Class-Load-XS-0.08
pathname: E/ET/ETHER/Class-Load-XS-0.08.tar.gz
provides:
Class::Load::XS 0.08
requirements:
Class::Load 0.20
ExtUtils::MakeMaker 6.30
XSLoader 0
strict 0
warnings 0
Class-Method-Modifiers-2.10
pathname: E/ET/ETHER/Class-Method-Modifiers-2.10.tar.gz
provides:
Class::Method::Modifiers 2.10
requirements:
B 0
Carp 0
Exporter 0
ExtUtils::MakeMaker 6.30
base 0
strict 0
warnings 0
Class-Singleton-1.4
pathname: A/AB/ABW/Class-Singleton-1.4.tar.gz
provides:
Class::Singleton 1.4
requirements:
ExtUtils::MakeMaker 0
Class-Unload-0.08
pathname: I/IL/ILMARI/Class-Unload-0.08.tar.gz
provides:
Class::Unload 0.08
requirements:
Class::Inspector 0
ExtUtils::MakeMaker 6.30
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.37
pathname: G/GA/GARU/Clone-0.37.tar.gz
provides:
Clone 0.37
requirements:
ExtUtils::MakeMaker 0
Test::More 0
Config-Any-0.24
pathname: B/BR/BRICAS/Config-Any-0.24.tar.gz
provides:
Config::Any 0.24
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 3.01
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.3.0
pathname: T/TU/TURNSTEP/DBD-Pg-3.3.0.tar.gz
provides:
Bundle::DBD::Pg 3.003000
DBD::Pg 3.003000
requirements:
DBI 1.614
ExtUtils::MakeMaker 6.11
Test::More 0.88
Time::HiRes 0
version 0
DBD-SQLite-1.42
pathname: I/IS/ISHIGAKI/DBD-SQLite-1.42.tar.gz
provides:
DBD::SQLite 1.42
DBD::SQLite::_WriteOnceHash 1.42
DBD::SQLite::db 1.42
DBD::SQLite::dr 1.42
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.631
pathname: T/TI/TIMB/DBI-1.631.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.42
DBD::File::DataSource::File 0.42
DBD::File::DataSource::Stream 0.42
DBD::File::Statement 0.42
DBD::File::Table 0.42
DBD::File::TableSource::FileSystem 0.42
DBD::File::db 0.42
DBD::File::dr 0.42
DBD::File::st 0.42
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.631
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.631
requirements:
ExtUtils::MakeMaker 6.48
Test::Simple 0.90
perl 5.008
DBIx-Class-0.08270
pathname: R/RI/RIBASUSHI/DBIx-Class-0.08270.tar.gz
provides:
DBIx::Class 0.08270
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.10010
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::Compare 1.22
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 1.002
Package::Stash 0.28
Path::Class 0.18
SQL::Abstract 1.77
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-IntrospectableM2M-0.001001
pathname: G/GR/GRODITI/DBIx-Class-IntrospectableM2M-0.001001.tar.gz
provides:
DBIx::Class::IntrospectableM2M 0.001001
requirements:
DBIx::Class 0
ExtUtils::MakeMaker 6.98
Test::More 0
DBIx-Class-ResultSet-HashRef-1.002
pathname: R/RB/RBO/DBIx-Class-ResultSet-HashRef-1.002.tar.gz
provides:
DBIx::Class::ResultSet::HashRef 1.002
requirements:
DBIx::Class 0
ExtUtils::MakeMaker 6.42
Test::More 0
DBIx-Class-Schema-Loader-0.07040
pathname: I/IL/ILMARI/DBIx-Class-Schema-Loader-0.07040.tar.gz
provides:
DBIx::Class::Schema::Loader 0.07040
DBIx::Class::Schema::Loader::Base 0.07040
DBIx::Class::Schema::Loader::DBI 0.07040
DBIx::Class::Schema::Loader::DBI::ADO 0.07040
DBIx::Class::Schema::Loader::DBI::ADO::MS_Jet 0.07040
DBIx::Class::Schema::Loader::DBI::ADO::Microsoft_SQL_Server 0.07040
DBIx::Class::Schema::Loader::DBI::Component::QuotedDefault 0.07040
DBIx::Class::Schema::Loader::DBI::DB2 0.07040
DBIx::Class::Schema::Loader::DBI::Firebird 0.07040
DBIx::Class::Schema::Loader::DBI::Informix 0.07040
DBIx::Class::Schema::Loader::DBI::InterBase 0.07040
DBIx::Class::Schema::Loader::DBI::MSSQL 0.07040
DBIx::Class::Schema::Loader::DBI::ODBC 0.07040
DBIx::Class::Schema::Loader::DBI::ODBC::ACCESS 0.07040
DBIx::Class::Schema::Loader::DBI::ODBC::Firebird 0.07040
DBIx::Class::Schema::Loader::DBI::ODBC::Microsoft_SQL_Server 0.07040
DBIx::Class::Schema::Loader::DBI::ODBC::SQL_Anywhere 0.07040
DBIx::Class::Schema::Loader::DBI::Oracle 0.07040
DBIx::Class::Schema::Loader::DBI::Pg 0.07040
DBIx::Class::Schema::Loader::DBI::SQLAnywhere 0.07040
DBIx::Class::Schema::Loader::DBI::SQLite 0.07040
DBIx::Class::Schema::Loader::DBI::Sybase 0.07040
DBIx::Class::Schema::Loader::DBI::Sybase::Common 0.07040
DBIx::Class::Schema::Loader::DBI::Sybase::Microsoft_SQL_Server 0.07040
DBIx::Class::Schema::Loader::DBI::Writing 0.07040
DBIx::Class::Schema::Loader::DBI::mysql 0.07040
DBIx::Class::Schema::Loader::DBObject undef
DBIx::Class::Schema::Loader::DBObject::Informix undef
DBIx::Class::Schema::Loader::DBObject::Sybase undef
DBIx::Class::Schema::Loader::Optional::Dependencies undef
DBIx::Class::Schema::Loader::RelBuilder 0.07040
DBIx::Class::Schema::Loader::RelBuilder::Compat::v0_040 0.07040
DBIx::Class::Schema::Loader::RelBuilder::Compat::v0_05 0.07040
DBIx::Class::Schema::Loader::RelBuilder::Compat::v0_06 0.07040
DBIx::Class::Schema::Loader::RelBuilder::Compat::v0_07 0.07040
DBIx::Class::Schema::Loader::Table undef
DBIx::Class::Schema::Loader::Table::Informix undef
DBIx::Class::Schema::Loader::Table::Sybase undef
requirements:
Carp::Clan 0
Class::Accessor::Grouped 0.10008
Class::C3::Componentised 1.0008
Class::Inspector 1.27
Class::Unload 0.07
DBD::SQLite 1.29
DBIx::Class 0.08127
DBIx::Class::IntrospectableM2M 0
Data::Dump 1.06
Digest::MD5 2.36
Exporter 5.63
ExtUtils::MakeMaker 6.59
File::Path 2.07
File::Temp 0.16
Hash::Merge 0.12
Lingua::EN::Inflect::Number 1.1
Lingua::EN::Inflect::Phrase 0.15
Lingua::EN::Tagger 0.23
List::MoreUtils 0.32
MRO::Compat 0.09
Scope::Guard 0.20
String::CamelCase 0.02
String::ToIdentifier::EN 0.05
Sub::Name 0
Test::Exception 0.31
Test::More 0.94
Test::Warn 0.21
Try::Tiny 0
namespace::clean 0.23
perl 5.008001
Data-Compare-1.24
pathname: D/DC/DCANTRELL/Data-Compare-1.24.tar.gz
provides:
Data::Compare 1.24
Data::Compare::Plugins::Scalar::Properties 1
requirements:
ExtUtils::MakeMaker 0
File::Find::Rule 0.1
Scalar::Util 0
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
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.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
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
DateTime-1.10
pathname: D/DR/DROLSKY/DateTime-1.10.tar.gz
provides:
DateTime 1.10
DateTime::Duration 1.10
DateTime::Helpers 1.10
DateTime::Infinite 1.10
DateTime::Infinite::Future 1.10
DateTime::Infinite::Past 1.10
DateTime::LeapSecond 1.10
inc::MyModuleBuild undef
requirements:
Carp 0
DateTime::Locale 0.41
DateTime::TimeZone 1.09
ExtUtils::CBuilder 0
Module::Build 0.3601
POSIX 0
Params::Validate 0.76
Scalar::Util 0
Try::Tiny 0
XSLoader 0
base 0
constant 0
integer 0
overload 0
perl 5.008001
strict 0
vars 0
warnings 0
warnings::register 0
DateTime-Locale-0.45
pathname: D/DR/DROLSKY/DateTime-Locale-0.45.tar.gz
provides:
DateTime::Locale 0.45
DateTime::Locale::Base undef
DateTime::Locale::Catalog undef
DateTime::Locale::aa undef
DateTime::Locale::aa_DJ undef
DateTime::Locale::aa_ER undef
DateTime::Locale::aa_ER_SAAHO undef
DateTime::Locale::aa_ET undef
DateTime::Locale::af undef
DateTime::Locale::af_NA undef
DateTime::Locale::af_ZA undef
DateTime::Locale::ak undef
DateTime::Locale::ak_GH undef
DateTime::Locale::am undef
DateTime::Locale::am_ET undef
DateTime::Locale::ar undef
DateTime::Locale::ar_AE undef
DateTime::Locale::ar_BH undef
DateTime::Locale::ar_DZ undef
DateTime::Locale::ar_EG undef
DateTime::Locale::ar_IQ undef
DateTime::Locale::ar_JO undef
DateTime::Locale::ar_KW undef
DateTime::Locale::ar_LB undef
DateTime::Locale::ar_LY undef
DateTime::Locale::ar_MA undef
DateTime::Locale::ar_OM undef
DateTime::Locale::ar_QA undef
DateTime::Locale::ar_SA undef
DateTime::Locale::ar_SD undef
DateTime::Locale::ar_SY undef
DateTime::Locale::ar_TN undef
DateTime::Locale::ar_YE undef
DateTime::Locale::as undef
DateTime::Locale::as_IN undef
DateTime::Locale::az undef
DateTime::Locale::az_AZ undef
DateTime::Locale::az_Cyrl undef
DateTime::Locale::az_Cyrl_AZ undef
DateTime::Locale::az_Latn undef
DateTime::Locale::az_Latn_AZ undef
DateTime::Locale::be undef
DateTime::Locale::be_BY undef
DateTime::Locale::bg undef
DateTime::Locale::bg_BG undef
DateTime::Locale::bn undef
DateTime::Locale::bn_BD undef
DateTime::Locale::bn_IN undef
DateTime::Locale::bo undef
DateTime::Locale::bo_CN undef
DateTime::Locale::bo_IN undef
DateTime::Locale::bs undef
DateTime::Locale::bs_BA undef
DateTime::Locale::byn undef
DateTime::Locale::byn_ER undef
DateTime::Locale::ca undef
DateTime::Locale::ca_ES undef
DateTime::Locale::cch undef
DateTime::Locale::cch_NG undef
DateTime::Locale::cop undef
DateTime::Locale::cs undef
DateTime::Locale::cs_CZ undef
DateTime::Locale::cy undef
DateTime::Locale::cy_GB undef
DateTime::Locale::da undef
DateTime::Locale::da_DK undef
DateTime::Locale::de undef
DateTime::Locale::de_AT undef
DateTime::Locale::de_BE undef
DateTime::Locale::de_CH undef
DateTime::Locale::de_DE undef
DateTime::Locale::de_LI undef
DateTime::Locale::de_LU undef
DateTime::Locale::dv undef
DateTime::Locale::dv_MV undef
DateTime::Locale::dz undef
DateTime::Locale::dz_BT undef
DateTime::Locale::ee undef
DateTime::Locale::ee_GH undef
DateTime::Locale::ee_TG undef
DateTime::Locale::el undef
DateTime::Locale::el_CY undef
DateTime::Locale::el_GR undef
DateTime::Locale::el_POLYTON undef
DateTime::Locale::en undef
DateTime::Locale::en_AS undef
DateTime::Locale::en_AU undef
DateTime::Locale::en_BE undef
DateTime::Locale::en_BW undef
DateTime::Locale::en_BZ undef
DateTime::Locale::en_CA undef
DateTime::Locale::en_Dsrt undef
DateTime::Locale::en_Dsrt_US undef
DateTime::Locale::en_GB undef
DateTime::Locale::en_GU undef
DateTime::Locale::en_HK undef
DateTime::Locale::en_IE undef
DateTime::Locale::en_IN undef
DateTime::Locale::en_JM undef
DateTime::Locale::en_MH undef
DateTime::Locale::en_MP undef
DateTime::Locale::en_MT undef
DateTime::Locale::en_NA undef
DateTime::Locale::en_NZ undef
DateTime::Locale::en_PH undef
DateTime::Locale::en_PK undef
DateTime::Locale::en_SG undef
DateTime::Locale::en_Shaw undef
DateTime::Locale::en_TT undef
DateTime::Locale::en_UM undef
DateTime::Locale::en_US undef
DateTime::Locale::en_US_POSIX undef
DateTime::Locale::en_VI undef
DateTime::Locale::en_ZA undef
DateTime::Locale::en_ZW undef
DateTime::Locale::eo undef
DateTime::Locale::es undef
DateTime::Locale::es_AR undef
DateTime::Locale::es_BO undef
DateTime::Locale::es_CL undef
DateTime::Locale::es_CO undef
DateTime::Locale::es_CR undef
DateTime::Locale::es_DO undef
DateTime::Locale::es_EC undef
DateTime::Locale::es_ES undef
DateTime::Locale::es_GT undef
DateTime::Locale::es_HN undef
DateTime::Locale::es_MX undef
DateTime::Locale::es_NI undef
DateTime::Locale::es_PA undef
DateTime::Locale::es_PE undef
DateTime::Locale::es_PR undef
DateTime::Locale::es_PY undef
DateTime::Locale::es_SV undef
DateTime::Locale::es_US undef
DateTime::Locale::es_UY undef
DateTime::Locale::es_VE undef
DateTime::Locale::et undef
DateTime::Locale::et_EE undef
DateTime::Locale::eu undef
DateTime::Locale::eu_ES undef
DateTime::Locale::fa undef
DateTime::Locale::fa_AF undef
DateTime::Locale::fa_IR undef
DateTime::Locale::fi undef
DateTime::Locale::fi_FI undef
DateTime::Locale::fil undef
DateTime::Locale::fil_PH undef
DateTime::Locale::fo undef
DateTime::Locale::fo_FO undef
DateTime::Locale::fr undef
DateTime::Locale::fr_BE undef
DateTime::Locale::fr_CA undef
DateTime::Locale::fr_CH undef
DateTime::Locale::fr_FR undef
DateTime::Locale::fr_LU undef
DateTime::Locale::fr_MC undef
DateTime::Locale::fr_SN undef
DateTime::Locale::fur undef
DateTime::Locale::fur_IT undef
DateTime::Locale::ga undef
DateTime::Locale::ga_IE undef
DateTime::Locale::gaa undef
DateTime::Locale::gaa_GH undef
DateTime::Locale::gez undef
DateTime::Locale::gez_ER undef
DateTime::Locale::gez_ET undef
DateTime::Locale::gl undef
DateTime::Locale::gl_ES undef
DateTime::Locale::gsw undef
DateTime::Locale::gsw_CH undef
DateTime::Locale::gu undef
DateTime::Locale::gu_IN undef
DateTime::Locale::gv undef
DateTime::Locale::gv_GB undef
DateTime::Locale::ha undef
DateTime::Locale::ha_Arab undef
DateTime::Locale::ha_Arab_NG undef
DateTime::Locale::ha_Arab_SD undef
DateTime::Locale::ha_GH undef
DateTime::Locale::ha_Latn undef
DateTime::Locale::ha_Latn_GH undef
DateTime::Locale::ha_Latn_NE undef
DateTime::Locale::ha_Latn_NG undef
DateTime::Locale::ha_NE undef
DateTime::Locale::ha_NG undef
DateTime::Locale::ha_SD undef
DateTime::Locale::haw undef
DateTime::Locale::haw_US undef
DateTime::Locale::he undef
DateTime::Locale::he_IL undef
DateTime::Locale::hi undef
DateTime::Locale::hi_IN undef
DateTime::Locale::hr undef
DateTime::Locale::hr_HR undef
DateTime::Locale::hu undef
DateTime::Locale::hu_HU undef
DateTime::Locale::hy undef
DateTime::Locale::hy_AM undef
DateTime::Locale::hy_AM_REVISED undef
DateTime::Locale::ia undef
DateTime::Locale::id undef
DateTime::Locale::id_ID undef
DateTime::Locale::ig undef
DateTime::Locale::ig_NG undef
DateTime::Locale::ii undef
DateTime::Locale::ii_CN undef
DateTime::Locale::is undef
DateTime::Locale::is_IS undef
DateTime::Locale::it undef
DateTime::Locale::it_CH undef
DateTime::Locale::it_IT undef
DateTime::Locale::iu undef
DateTime::Locale::ja undef
DateTime::Locale::ja_JP undef
DateTime::Locale::ka undef
DateTime::Locale::ka_GE undef
DateTime::Locale::kaj undef
DateTime::Locale::kaj_NG undef
DateTime::Locale::kam undef
DateTime::Locale::kam_KE undef
DateTime::Locale::kcg undef
DateTime::Locale::kcg_NG undef
DateTime::Locale::kfo undef
DateTime::Locale::kfo_CI undef
DateTime::Locale::kk undef
DateTime::Locale::kk_Cyrl undef
DateTime::Locale::kk_Cyrl_KZ undef
DateTime::Locale::kk_KZ undef
DateTime::Locale::kl undef
DateTime::Locale::kl_GL undef
DateTime::Locale::km undef
DateTime::Locale::km_KH undef
DateTime::Locale::kn undef
DateTime::Locale::kn_IN undef
DateTime::Locale::ko undef
DateTime::Locale::ko_KR undef
DateTime::Locale::kok undef
DateTime::Locale::kok_IN undef
DateTime::Locale::kpe undef
DateTime::Locale::kpe_GN undef
DateTime::Locale::kpe_LR undef
DateTime::Locale::ku undef
DateTime::Locale::ku_Arab undef
DateTime::Locale::ku_Arab_IQ undef
DateTime::Locale::ku_Arab_IR undef
DateTime::Locale::ku_Arab_SY undef
DateTime::Locale::ku_IQ undef
DateTime::Locale::ku_IR undef
DateTime::Locale::ku_Latn undef
DateTime::Locale::ku_Latn_TR undef
DateTime::Locale::ku_SY undef
DateTime::Locale::ku_TR undef
DateTime::Locale::kw undef
DateTime::Locale::kw_GB undef
DateTime::Locale::ky undef
DateTime::Locale::ky_KG undef
DateTime::Locale::ln undef
DateTime::Locale::ln_CD undef
DateTime::Locale::ln_CG undef
DateTime::Locale::lo undef
DateTime::Locale::lo_LA undef
DateTime::Locale::lt undef
DateTime::Locale::lt_LT undef
DateTime::Locale::lv undef
DateTime::Locale::lv_LV undef
DateTime::Locale::mk undef
DateTime::Locale::mk_MK undef
DateTime::Locale::ml undef
DateTime::Locale::ml_IN undef
DateTime::Locale::mn undef
DateTime::Locale::mn_CN undef
DateTime::Locale::mn_Cyrl undef
DateTime::Locale::mn_Cyrl_MN undef
DateTime::Locale::mn_MN undef
DateTime::Locale::mn_Mong undef
DateTime::Locale::mn_Mong_CN undef
DateTime::Locale::mo undef
DateTime::Locale::mr undef
DateTime::Locale::mr_IN undef
DateTime::Locale::ms undef
DateTime::Locale::ms_BN undef
DateTime::Locale::ms_MY undef
DateTime::Locale::mt undef
DateTime::Locale::mt_MT undef
DateTime::Locale::my undef
DateTime::Locale::my_MM undef
DateTime::Locale::nb undef
DateTime::Locale::nb_NO undef
DateTime::Locale::nds undef
DateTime::Locale::nds_DE undef
DateTime::Locale::ne undef
DateTime::Locale::ne_IN undef
DateTime::Locale::ne_NP undef
DateTime::Locale::nl undef
DateTime::Locale::nl_BE undef
DateTime::Locale::nl_NL undef