-
Notifications
You must be signed in to change notification settings - Fork 6
/
Debian_CPANTS.txt
1945 lines (1945 loc) · 119 KB
/
Debian_CPANTS.txt
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
debian_pkg, CPAN_dist, CPAN_vers, N_bugs, N_patches
"cpan-listchanges", "cpan-listchanges", "0.05", "0", "0"
"cpanminus", "App-cpanminus", "1.4006", "0", "0"
"dh-make-perl", "https://alioth.debian.org/frs/download.php/3502/dh-make-perl_0.72.orig.tar.gz", "0.72", "12", "0"
"eekboek", "http://www.eekboek.nl/dl/EekBoek-2.00.03.tar.gz", "2.00.03", "2", "0"
"gearman-server", "Gearman-Server", "1.11", "1", "1"
"get-flash-videos", "http://googlecode.debian.net/p/get-flash-videos/App-get_flash_videos-1.24.tar.gz", "1.24", "0", "3"
"jifty", "Jifty", "0.91117", "1", "1"
"kephra", "Kephra", "not-uploaded", "0", "0"
"libacme-bleach-perl", "Acme-Bleach", "1.12", "0", "1"
"libacme-damn-perl", "Acme-Damn", "0.04", "0", "0"
"libacme-eyedrops-perl", "Acme-EyeDrops", "1.55", "0", "0"
"libacme-poe-knee-perl", "Acme-POE-Knee", "1.10", "0", "1"
"libalgorithm-c3-perl", "Algorithm-C3", "0.08", "0", "0"
"libalgorithm-diff-perl", "Algorithm-Diff", "1.19.02", "0", "2"
"libalgorithm-diff-xs-perl", "Algorithm-Diff-XS", "0.04", "0", "0"
"libalgorithm-merge-perl", "Algorithm-Merge", "0.08", "0", "1"
"libalgorithm-munkres-perl", "Algorithm-Munkres", "0.08", "0", "0"
"libalgorithm-permute-perl", "Algorithm-Permute", "0.12", "0", "0"
"libalias-perl", "Alias", "2.32", "0", "0"
"libaliased-perl", "aliased", "0.30", "0", "0"
"libalien-wxwidgets-perl", "Alien-wxWidgets", "0.51", "0", "1"
"libalzabo-perl", "Alzabo", "0.92", "0", "0"
"libamazon-sqs-simple-perl", "Amazon-SQS-Simple", "1.06", "0", "0"
"libany-moose-perl", "Any-Moose", "0.14", "0", "1"
"libanydata-perl", "AnyData", "0.10", "0", "3"
"libanyevent-dbi-perl", "AnyEvent-DBI", "2.1", "0", "1"
"libanyevent-http-perl", "AnyEvent-HTTP", "2.11", "0", "0"
"libanyevent-irc-perl", "AnyEvent-IRC", "0.96", "0", "1"
"libanyevent-perl", "AnyEvent", "5.340", "0", "0"
"libanyevent-redis-perl", "AnyEvent-Redis", "0.23", "0", "0"
"libapache-asp-perl", "Apache-ASP", "2.61", "1", "2"
"libapache-authenhook-perl", "Apache-AuthenHook", "2.00-04", "0", "0"
"libapache-authznetldap-perl", "Apache-AuthzNetLDAP", "0.07", "0", "2"
"libapache-configfile-perl", "Apache-ConfigFile", "1.18", "0", "4"
"libapache-db-perl", "Apache-DB", "0.14", "0", "1"
"libapache-dbi-perl", "Apache-DBI", "1.10", "0", "3"
"libapache-dbilogger-perl", "Apache-DBILogger", "0.93", "0", "1"
"libapache-htgroup-perl", "Apache-Htgroup", "1.23", "1", "0"
"libapache-session-perl", "Apache-Session", "1.89", "0", "1"
"libapache-session-wrapper-perl", "Apache-Session-Wrapper", "0.34", "0", "0"
"libapache-sessionx-perl", "Apache-SessionX", "2.01", "2", "2"
"libapache2-authcassimple-perl", "Apache2-AuthCASSimple", "0.10", "1", "0"
"libapache2-authcookie-perl", "Apache-AuthCookie", "3.18", "0", "1"
"libapache2-authenntlm-perl", "Apache2-AuthenNTLM", "0.02", "0", "0"
"libapache2-mod-perl2", "http://perl.apache.org/dist/mod_perl-2.0.5.tar.gz", "2.0.5", "11", "11"
"libapache2-reload-perl", "Apache-Reload", "0.11", "1", "1"
"libapp-cli-perl", "App-CLI", "0.313", "0", "2"
"libapp-cmd-perl", "App-Cmd", "0.311", "0", "0"
"libapp-control-perl", "App-Control", "1.02", "0", "0"
"libapp-daemon-perl", "App-Daemon", "0.11", "0", "0"
"libapp-nopaste-perl", "App-Nopaste", "0.28", "0", "0"
"libapp-options-perl", "App-Options", "1.12", "0", "0"
"libapp-rad-perl", "App-Rad", "1.04", "0", "0"
"libapp-repl-perl", "App-REPL", "0.012", "0", "0"
"libarch-perl", "Arch", "0.5.2", "0", "0"
"libarchive-any-perl", "Archive-Any", "0.0932", "0", "0"
"libarchive-ar-perl", "Archive-Ar", "1.14", "0", "0"
"libarchive-zip-perl", "Archive-Zip", "1.30", "2", "3"
"libarray-compare-perl", "Array-Compare", "2.01", "0", "0"
"libarray-diff-perl", "Array-Diff", "0.07", "0", "0"
"libarray-printcols-perl", "Array-PrintCols", "2.1", "0", "0"
"libarray-unique-perl", "Array-Unique", "0.08", "0", "0"
"libasa-perl", "asa", "0.02", "0", "0"
"libaspect-perl", "Aspect", "0.96", "0", "0"
"libastro-fits-cfitsio-perl", "Astro-FITS-CFITSIO", "1.05", "2", "0"
"libastro-fits-header-perl", "Astro-FITS-Header", "3.03", "0", "1"
"libasync-interrupt-perl", "Async-Interrupt", "1.05", "0", "0"
"libasync-mergepoint-perl", "Async-MergePoint", "0.03", "0", "0"
"libaudio-cd-perl", "http://www.vanhemert.co.uk/disc-cover.html/files/Audio-CD-0.05.tar.gz", "0.05", "0", "1"
"libaudio-ecasound-perl", "Audio-Ecasound", "1.01", "1", "1"
"libaudio-file-perl", "Audio-File", "0.11", "1", "1"
"libaudio-flac-decoder-perl", "Audio-FLAC-Decoder", "0.3", "1", "2"
"libaudio-flac-header-perl", "Audio-FLAC-Header", "2.4", "0", "0"
"libaudio-moosic-perl", "Audio-Moosic", "0.10", "1", "0"
"libaudio-mpd-common-perl", "Audio-MPD-Common", "1.110550", "0", "0"
"libaudio-mpd-perl", "Audio-MPD", "1.110560", "0", "0"
"libaudio-musepack-perl", "Audio-Musepack", "1.0.1", "0", "0"
"libaudio-rpld-perl", "Audio-RPLD", "0.003", "0", "1"
"libaudio-scan-perl", "Audio-Scan", "0.87", "0", "0"
"libaudio-wav-perl", "Audio-Wav", "0.12", "0", "1"
"libaudio-wma-perl", "Audio-WMA", "1.3", "0", "0"
"libauth-yubikey-decrypter-perl", "Auth-Yubikey_Decrypter", "0.07", "0", "0"
"libauth-yubikey-webclient-perl", "Auth-Yubikey_WebClient", "2.00", "0", "0"
"libauthen-bitcard-perl", "Authen-Bitcard", "0.89", "0", "1"
"libauthen-captcha-perl", "Authen-Captcha", "1.023", "0", "2"
"libauthen-cas-client-perl", "Authen-CAS-Client", "0.05", "0", "0"
"libauthen-dechpwd-perl", "Authen-DecHpwd", "2.005", "0", "0"
"libauthen-krb5-admin-perl", "Authen-Krb5-Admin", "0.11", "0", "2"
"libauthen-krb5-perl", "Krb5", "1.9", "0", "3"
"libauthen-krb5-simple-perl", "Authen-Krb5-Simple", "0.42", "0", "0"
"libauthen-ntlm-perl", "NTLM", "1.08", "0", "1"
"libauthen-pam-perl", "Authen-PAM", "0.16", "0", "0"
"libauthen-passphrase-perl", "Authen-Passphrase", "0.007", "0", "0"
"libauthen-radius-perl", "RadiusPerl", "0.20", "0", "3"
"libauthen-sasl-cyrus-perl", "Authen-SASL-Cyrus", "0.13-server", "0", "7"
"libauthen-sasl-perl", "Authen-SASL", "2.1500", "0", "1"
"libauthen-simple-cdbi-perl", "Authen-Simple-CDBI", "0.2", "0", "0"
"libauthen-simple-dbi-perl", "Authen-Simple-DBI", "0.2", "0", "0"
"libauthen-simple-dbm-perl", "Authen-Simple-DBM", "0.2", "0", "0"
"libauthen-simple-http-perl", "Authen-Simple-HTTP", "0.2", "0", "0"
"libauthen-simple-kerberos-perl", "Authen-Simple-Kerberos", "0.1", "0", "0"
"libauthen-simple-ldap-perl", "Authen-Simple-LDAP", "0.2", "0", "0"
"libauthen-simple-net-perl", "Authen-Simple-Net", "0.2", "0", "0"
"libauthen-simple-pam-perl", "Authen-Simple-PAM", "0.2", "0", "0"
"libauthen-simple-passwd-perl", "Authen-Simple-Passwd", "0.6", "0", "0"
"libauthen-simple-perl", "Authen-Simple", "0.4", "0", "0"
"libauthen-simple-radius-perl", "Authen-Simple-RADIUS", "0.1", "0", "0"
"libauthen-simple-smb-perl", "Authen-Simple-SMB", "0.1", "0", "0"
"libauthen-smb-perl", "Authen-Smb", "0.91", "0", "1"
"libauthen-tacacsplus-perl", "Authen-TacacsPlus", "0.20", "0", "0"
"libautobox-core-perl", "autobox-Core", "1.2", "0", "0"
"libautobox-list-util-perl", "autobox-List-Util", "20090629", "0", "0"
"libautobox-perl", "autobox", "2.72", "0", "1"
"libautodie-perl", "autodie", "2.10", "0", "0"
"libautovivification-perl", "autovivification", "0.09", "0", "0"
"libb-hooks-endofscope-perl", "B-Hooks-EndOfScope", "0.08", "0", "0"
"libb-hooks-op-annotation-perl", "B-Hooks-OP-Annotation", "0.44", "0", "0"
"libb-hooks-op-check-perl", "B-Hooks-OP-Check", "0.18", "0", "0"
"libb-hooks-op-ppaddr-perl", "B-Hooks-OP-PPAddr", "0.03", "0", "0"
"libb-hooks-parser-perl", "B-Hooks-Parser", "0.09", "0", "0"
"libb-keywords-perl", "B-Keywords", "1.09", "0", "0"
"libb-perlreq-perl", "rpm-build-perl", "0.74", "0", "1"
"libb-utils-perl", "B-Utils", "0.13", "0", "0"
"libbarcode-code128-perl", "Barcode-Code128", "2.01", "0", "1"
"libbenchmark-progressbar-perl", "Benchmark-ProgressBar", "0.00001", "0", "0"
"libbenchmark-timer-perl", "Benchmark-Timer", "0.7102", "0", "0"
"libbiblio-citation-parser-perl", "Biblio-Citation-Parser", "1.10", "0", "1"
"libbiblio-endnotestyle-perl", "Biblio-EndnoteStyle", "0.05", "0", "0"
"libbio-asn1-entrezgene-perl", "unknown", "1.091", "0", "0"
"libbio-primerdesigner-perl", "Bio-PrimerDesigner", "0.07", "0", "0"
"libbio-scf-perl", "Bio-SCF", "1.03", "1", "0"
"libbit-vector-minimal-perl", "Bit-Vector-Minimal", "1.3", "0", "0"
"libbit-vector-perl", "Bit-Vector", "7.1", "1", "0"
"libboolean-perl", "boolean", "0.26", "0", "0"
"libboulder-perl", "Boulder", "1.30", "0", "2"
"libbrowser-open-perl", "Browser-Open", "0.03", "0", "0"
"libbsd-resource-perl", "BSD-Resource", "1.2904", "0", "0"
"libbusiness-isbn-data-perl", "Business-ISBN-Data", "20081208", "0", "1"
"libbusiness-isbn-perl", "Business-ISBN", "2.05", "0", "0"
"libbusiness-issn-perl", "Business-ISSN", "0.91", "0", "0"
"libbusiness-onlinepayment-ippay-perl", "Business-OnlinePayment-IPPay", "0.06", "0", "1"
"libbusiness-onlinepayment-openecho-perl", "Business-OnlinePayment-OpenECHO", "0.03", "0", "0"
"libbusiness-onlinepayment-payflowpro-perl", "Business-OnlinePayment-PayflowPro", "1.01", "0", "0"
"libbusiness-onlinepayment-paymentech-perl", "Business-OnlinePayment-PaymenTech", "2.04", "0", "0"
"libbusiness-onlinepayment-perl", "Business-OnlinePayment", "3.01", "0", "1"
"libbusiness-paypal-api-perl", "Business-PayPal-API", "0.69", "0", "0"
"libbusiness-tax-vat-validation-perl", "Business-Tax-VAT-Validation", "0.20", "0", "0"
"libc-scan-perl", "C-Scan", "not-uploaded", "0", "0"
"libcache-cache-perl", "Cache-Cache", "1.06", "0", "0"
"libcache-fastmmap-perl", "Cache-FastMmap", "1.36", "0", "0"
"libcache-historical-perl", "Cache-Historical", "0.05", "0", "0"
"libcache-memcached-managed-perl", "Cache-Memcached-Managed", "0.20", "0", "1"
"libcache-memcached-perl", "Cache-Memcached", "1.29", "0", "1"
"libcache-mmap-perl", "Cache-Mmap", "0.11", "0", "0"
"libcache-simple-timedexpiry-perl", "Cache-Simple-TimedExpiry", "0.27", "0", "1"
"libcairo-perl", "http://qa.debian.org/watch/sf.php/gtk2-perl/Cairo-1.070.tar.gz", "1.070", "0", "1"
"libcalendar-simple-perl", "Calendar-Simple", "1.21", "0", "0"
"libcaptcha-recaptcha-perl", "Captcha-reCAPTCHA", "0.94", "0", "0"
"libcapture-tiny-perl", "Capture-Tiny", "0.10", "0", "0"
"libcarp-always-perl", "Carp-Always", "0.09", "0", "0"
"libcarp-assert-more-perl", "Carp-Assert-More", "1.12", "0", "0"
"libcarp-assert-perl", "Carp-Assert", "0.20", "0", "0"
"libcarp-clan-perl", "Carp-Clan", "6.04", "0", "0"
"libcarp-clan-share-perl", "Carp-Clan-Share", "0.013", "0", "0"
"libcarp-datum-perl", "Carp-Datum", "0.1.3", "0", "1"
"libcatalyst-action-rest-perl", "Catalyst-Action-REST", "0.90", "0", "0"
"libcatalyst-controller-actionrole-perl", "Catalyst-Controller-ActionRole", "not-uploaded", "0", "0"
"libcatalyst-devel-perl", "Catalyst-Devel", "1.31", "0", "0"
"libcatalyst-engine-apache-perl", "Catalyst-Engine-Apache", "1.16", "0", "0"
"libcatalyst-engine-psgi-perl", "Catalyst-Engine-PSGI", "0.12", "0", "1"
"libcatalyst-manual-perl", "Catalyst-Manual", "5.8007", "0", "0"
"libcatalyst-model-cdbi-perl", "Catalyst-Model-CDBI", "0.12", "0", "0"
"libcatalyst-perl", "Catalyst-Runtime", "5.80032", "0", "0"
"libcatalyst-plugin-server-perl", "Catalyst-Plugin-Server", "not-uploaded", "0", "1"
"libcatalyst-plugin-session-store-memcached-perl", "Catalyst-Plugin-Session-Store-Memcached", "not-uploaded", "0", "0"
"libcatalyst-view-tt-perl", "Catalyst-View-TT", "0.36", "0", "0"
"libcatalystx-leakchecker-perl", "CatalystX-LeakChecker", "0.06", "0", "0"
"libcddb-file-perl", "CDDB-File", "1.05", "0", "0"
"libcddb-get-perl", "CDDB_get", "2.27", "1", "0"
"libcddb-perl", "CDDB", "1.220", "0", "1"
"libcdk-perl", "ftp://invisible-island.net/cdk/cdk-perl-20031210.tgz", "4.9.10", "0", "3"
"libcgi-ajax-perl", "CGI-Ajax", "0.707", "0", "0"
"libcgi-application-perl", "CGI-Application", "4.31", "0", "0"
"libcgi-application-plugin-ajaxupload-perl", "CGI-Application-Plugin-AJAXUpload", "0.0.3", "0", "0"
"libcgi-application-plugin-anytemplate-perl", "CGI-Application-Plugin-AnyTemplate", "0.18", "0", "1"
"libcgi-application-plugin-authentication-perl", "CGI-Application-Plugin-Authentication", "0.20", "0", "0"
"libcgi-application-plugin-authorization-perl", "CGI-Application-Plugin-Authorization", "0.07", "0", "1"
"libcgi-application-plugin-tt-perl", "CGI-Application-Plugin-TT", "1.05", "0", "1"
"libcgi-application-server-perl", "CGI-Application-Server", "0.062", "0", "0"
"libcgi-cookie-splitter-perl", "CGI-Cookie-Splitter", "0.02", "1", "0"
"libcgi-formalware-perl", "CGI-Formalware", "1.13", "0", "0"
"libcgi-formbuilder-source-yaml-perl", "CGI-FormBuilder-Source-YAML", "1.0.8", "0", "0"
"libcgi-minimal-perl", "CGI-Minimal", "not-uploaded", "0", "1"
"libcgi-pm-perl", "CGI", "3.53", "0", "2"
"libcgi-session-driver-memcached-perl", "CGI-Session-Driver-memcached", "0.04", "0", "0"
"libcgi-session-expiresessions-perl", "CGI-Session-ExpireSessions", "1.12", "0", "0"
"libcgi-session-perl", "CGI-Session", "4.43", "1", "1"
"libcgi-session-serialize-yaml-perl", "CGI-Session-Serialize-yaml", "4.26", "0", "0"
"libcgi-simple-perl", "CGI-Simple", "1.113", "0", "2"
"libcgi-ssi-perl", "CGI-SSI", "0.92", "0", "1"
"libcgi-untaint-date-perl", "CGI-Untaint-date", "1.00", "0", "0"
"libcgi-untaint-email-perl", "CGI-Untaint-email", "0.03", "0", "0"
"libcgi-untaint-perl", "CGI-Untaint", "1.26", "0", "0"
"libcgi-uploader-perl", "CGI-Uploader", "2.17", "0", "1"
"libcgi-validop-perl", "CGI-ValidOp", "0.56", "0", "0"
"libcgi-xml-perl", "CGI-XML", "0.1", "0", "1"
"libcgi-xmlapplication-perl", "CGI-XMLApplication", "1.1.3", "0", "0"
"libcgi-xmlform-perl", "CGI-XMLForm", "0.10", "0", "1"
"libchart-clicker-perl", "Chart-Clicker", "2.67", "0", "0"
"libchart-gnuplot-perl", "Chart-Gnuplot", "0.15", "0", "0"
"libchart-perl", "Chart", "2.4.1", "2", "2"
"libcheck-isa-perl", "Check-ISA", "0.04", "0", "0"
"libchemistry-elements-perl", "Chemistry-Elements", "1.07", "0", "1"
"libchi-perl", "CHI", "0.47", "0", "2"
"libchild-perl", "Child", "0.009", "0", "0"
"libclass-accessor-children-perl", "Class-Accessor-Children", "0.02", "0", "0"
"libclass-accessor-classy-perl", "Class-Accessor-Classy", "0.9.1", "0", "0"
"libclass-accessor-grouped-perl", "Class-Accessor-Grouped", "0.10002", "1", "0"
"libclass-accessor-lvalue-perl", "Class-Accessor-Lvalue", "0.11", "0", "0"
"libclass-accessor-named-perl", "Class-Accessor-Named", "0.008", "0", "0"
"libclass-accessor-perl", "Class-Accessor", "0.34", "0", "0"
"libclass-adapter-perl", "Class-Adapter", "1.07", "0", "0"
"libclass-autouse-perl", "Class-Autouse", "2.00", "0", "1"
"libclass-base-perl", "Class-Base", "0.03", "0", "0"
"libclass-c3-adopt-next-perl", "Class-C3-Adopt-NEXT", "0.12", "0", "0"
"libclass-c3-componentised-perl", "Class-C3-Componentised", "1.0009", "0", "2"
"libclass-c3-perl", "Class-C3", "0.23", "0", "1"
"libclass-c3-xs-perl", "Class-C3-XS", "0.13", "0", "0"
"libclass-container-perl", "Class-Container", "0.12", "0", "0"
"libclass-data-accessor-perl", "Class-Data-Accessor", "0.04004", "0", "0"
"libclass-data-inheritable-perl", "Class-Data-Inheritable", "0.08", "0", "0"
"libclass-date-perl", "Class-Date", "1.1.10", "0", "0"
"libclass-dbi-abstractsearch-perl", "Class-DBI-AbstractSearch", "0.07", "0", "1"
"libclass-dbi-asform-perl", "Class-DBI-AsForm", "2.42", "0", "2"
"libclass-dbi-fromcgi-perl", "Class-DBI-FromCGI", "1.00", "0", "0"
"libclass-dbi-fromform-perl", "Class-DBI-FromForm", "0.04", "1", "0"
"libclass-dbi-lite-perl", "Class-DBI-Lite", "1.019", "0", "0"
"libclass-dbi-loader-perl", "Class-DBI-Loader", "0.34", "0", "0"
"libclass-dbi-loader-relationship-perl", "Class-DBI-Loader-Relationship", "1.2", "0", "1"
"libclass-dbi-mysql-perl", "Class-DBI-mysql", "1.00", "0", "1"
"libclass-dbi-pager-perl", "Class-DBI-Pager", "0.08", "0", "0"
"libclass-dbi-perl", "Class-DBI", "3.0.17", "2", "0"
"libclass-dbi-pg-perl", "Class-DBI-Pg", "0.09", "0", "1"
"libclass-dbi-plugin-abstractcount-perl", "Class-DBI-Plugin-AbstractCount", "0.08", "0", "0"
"libclass-dbi-plugin-pager-perl", "Class-DBI-Plugin-Pager", "0.561", "0", "1"
"libclass-dbi-plugin-perl", "Class-DBI-Plugin", "0.03", "0", "0"
"libclass-dbi-plugin-retrieveall-perl", "Class-DBI-Plugin-RetrieveAll", "1.04", "0", "0"
"libclass-dbi-plugin-type-perl", "Class-DBI-Plugin-Type", "0.02", "0", "0"
"libclass-dbi-sqlite-perl", "Class-DBI-SQLite", "0.11", "0", "0"
"libclass-dbi-sweet-perl", "Class-DBI-Sweet", "0.10", "0", "1"
"libclass-default-perl", "Class-Default", "1.51", "0", "0"
"libclass-factory-perl", "Class-Factory", "1.06", "0", "0"
"libclass-factory-util-perl", "Class-Factory-Util", "1.7", "0", "0"
"libclass-field-perl", "Class-Field", "0.15", "0", "0"
"libclass-gomor-perl", "Class-Gomor", "1.02", "0", "1"
"libclass-handle-perl", "Class-Handle", "1.07", "0", "0"
"libclass-inner-perl", "Class-Inner", "0.200001", "0", "0"
"libclass-insideout-perl", "Class-InsideOut", "1.10", "0", "1"
"libclass-inspector-perl", "Class-Inspector", "1.25", "0", "1"
"libclass-isa-perl", "Class-ISA", "0.36", "0", "0"
"libclass-load-perl", "Class-Load", "0.06", "0", "0"
"libclass-loader-perl", "Class-Loader", "2.03", "0", "0"
"libclass-makemethods-perl", "Class-MakeMethods", "1.01", "0", "1"
"libclass-meta-perl", "Class-Meta", "0.63", "0", "1"
"libclass-method-modifiers-perl", "Class-Method-Modifiers", "1.06", "0", "0"
"libclass-methodmaker-perl", "Class-MethodMaker", "2.15", "1", "1"
"libclass-mixinfactory-perl", "Class-MixinFactory", "0.92", "0", "0"
"libclass-mop-perl", "Class-MOP", "1.12", "0", "0"
"libclass-multimethods-perl", "Class-Multimethods", "1.70", "0", "1"
"libclass-objecttemplate-perl", "Class-ObjectTemplate", "0.7", "1", "0"
"libclass-ooorno-perl", "Class-OOorNO", "0.011", "0", "0"
"libclass-perl", "CLASS", "1.00", "0", "0"
"libclass-prototyped-perl", "Class-Prototyped", "1.11", "0", "3"
"libclass-returnvalue-perl", "Class-ReturnValue", "0.55", "0", "0"
"libclass-singleton-perl", "Class-Singleton", "1.4", "0", "0"
"libclass-spiffy-perl", "Class-Spiffy", "0.15", "1", "0"
"libclass-std-fast-perl", "Class-Std-Fast", "0.0.8", "0", "0"
"libclass-std-perl", "Class-Std", "0.0.9", "0", "0"
"libclass-std-utils-perl", "Class-Std-Utils", "0.0.3", "0", "0"
"libclass-throwable-perl", "Class-Throwable", "0.10", "0", "0"
"libclass-unload-perl", "Class-Unload", "0.07", "0", "0"
"libclass-whitehole-perl", "Class-WhiteHole", "0.04", "0", "0"
"libclass-xsaccessor-perl", "Class-XSAccessor", "1.11", "0", "0"
"libclone-fast-perl", "Clone-Fast", "0.93", "0", "2"
"libclone-perl", "Clone", "0.31", "1", "0"
"libclone-pp-perl", "Clone-PP", "1.02", "0", "0"
"libclutter-perl", "Clutter", "1.002", "1", "1"
"libcoat-perl", "Coat", "0.334", "1", "1"
"libcoat-persistent-perl", "Coat-Persistent", "0.223", "0", "2"
"libcolor-calc-perl", "Color-Calc", "1.071", "0", "0"
"libcolor-library-perl", "Color-Library", "0.02", "0", "0"
"libcolor-palette-perl", "Color-Palette", "0.091400", "0", "0"
"libcommon-sense-perl", "common-sense", "3.4", "0", "0"
"libcompress-bzip2-perl", "Compress-Bzip2", "2.09", "0", "2"
"libcompress-raw-bzip2-perl", "Compress-Raw-Bzip2", "2.035", "0", "0"
"libcompress-raw-zlib-perl", "Compress-Raw-Zlib", "2.035", "0", "1"
"libconfig-any-perl", "Config-Any", "0.20", "0", "0"
"libconfig-apacheformat-perl", "Config-ApacheFormat", "1.2", "0", "1"
"libconfig-augeas-perl", "Config-Augeas", "0.701", "0", "0"
"libconfig-auto-perl", "Config-Auto", "0.34", "0", "0"
"libconfig-autoconf-perl", "Config-AutoConf", "0.16", "0", "0"
"libconfig-file-perl", "Config-File", "1.50", "0", "0"
"libconfig-gitlike-perl", "Config-GitLike", "1.05", "0", "1"
"libconfig-grammar-perl", "Config-Grammar", "1.10", "0", "0"
"libconfig-ini-perl", "Config-INI", "0.016", "0", "0"
"libconfig-inihash-perl", "Config-IniHash", "3.01.01", "0", "0"
"libconfig-jfdi-perl", "Config-JFDI", "0.065", "0", "0"
"libconfig-json-perl", "Config-JSON", "1.5100", "0", "0"
"libconfig-merge-perl", "Config-Merge", "1.01", "0", "0"
"libconfig-model-approx-perl", "Config-Model-Approx", "1.003", "0", "0"
"libconfig-model-backend-augeas-perl", "Config-Model-Backend-Augeas", "0.109", "0", "0"
"libconfig-model-cursesui-perl", "Config-Model-CursesUI", "1.104", "0", "0"
"libconfig-model-itself-perl", "Config-Model-Itself", "1.224", "0", "1"
"libconfig-model-openssh-perl", "Config-Model-OpenSsh", "1.217", "0", "1"
"libconfig-model-perl", "Config-Model", "1.244", "1", "1"
"libconfig-model-tkui-perl", "Config-Model-TkUI", "1.324", "0", "0"
"libconfig-mvp-perl", "Config-MVP", "2.200001", "0", "1"
"libconfig-mvp-reader-ini-perl", "Config-MVP-Reader-INI", "2.101461", "0", "0"
"libconfig-pit-perl", "Config-Pit", "0.04", "0", "0"
"libconfig-scoped-perl", "Config-Scoped", "0.12", "0", "0"
"libconfig-std-perl", "Config-Std", "0.9", "0", "0"
"libconfig-yaml-perl", "Config-YAML", "1.42", "0", "1"
"libconfigreader-perl", "ConfigReader", "0.5", "0", "2"
"libconfigreader-simple-perl", "ConfigReader-Simple", "1.28", "0", "0"
"libcontext-preserve-perl", "Context-Preserve", "0.01", "0", "0"
"libcontextual-return-perl", "Contextual-Return", "0.003001", "0", "0"
"libconvert-ascii-armour-perl", "Convert-ASCII-Armour", "1.4", "0", "0"
"libconvert-asn1-perl", "Convert-ASN1", "0.22", "1", "0"
"libconvert-binary-c-perl", "Convert-Binary-C", "0.76", "0", "1"
"libconvert-binhex-perl", "Convert-BinHex", "1.119", "1", "1"
"libconvert-color-perl", "Convert-Color", "0.07", "0", "0"
"libconvert-nls-date-format-perl", "Convert-NLS_DATE_FORMAT", "0.02", "0", "0"
"libconvert-pem-perl", "Convert-PEM", "0.08", "1", "0"
"libcoro-perl", "Coro", "5.372", "0", "2"
"libcoy-perl", "Coy", "0.06", "0", "1"
"libcpan-changes-perl", "CPAN-Changes", "0.17", "0", "0"
"libcpan-checksums-perl", "CPAN-Checksums", "2.03", "0", "0"
"libcpan-distnameinfo-perl", "CPAN-DistnameInfo", "0.12", "0", "0"
"libcpan-inject-perl", "CPAN-Inject", "1.13", "0", "0"
"libcpan-meta-perl", "CPAN-Meta", "2.110930", "0", "0"
"libcpan-meta-yaml-perl", "CPAN-Meta-YAML", "0.003", "0", "0"
"libcpan-mini-perl", "CPAN-Mini", "1.111003", "0", "0"
"libcpan-uploader-perl", "CPAN-Uploader", "0.103000", "0", "0"
"libcpandb-perl", "CPANDB", "0.14", "0", "0"
"libcps-perl", "CPS", "0.11", "0", "0"
"libcrypt-blowfish-perl", "Crypt-Blowfish", "2.12", "0", "1"
"libcrypt-cbc-perl", "Crypt-CBC", "2.30", "1", "0"
"libcrypt-des-perl", "Crypt-DES", "2.05", "0", "0"
"libcrypt-dh-gmp-perl", "Crypt-DH-GMP", "0.00009", "0", "1"
"libcrypt-generatepassword-perl", "Crypt-GeneratePassword", "0.03", "0", "0"
"libcrypt-mysql-perl", "Crypt-MySQL", "0.04", "0", "0"
"libcrypt-openssl-bignum-perl", "Crypt-OpenSSL-Bignum", "0.04", "1", "0"
"libcrypt-openssl-dsa-perl", "Crypt-OpenSSL-DSA", "0.13", "0", "3"
"libcrypt-openssl-random-perl", "Crypt-OpenSSL-Random", "0.04", "0", "2"
"libcrypt-openssl-rsa-perl", "Crypt-OpenSSL-RSA", "0.25", "0", "1"
"libcrypt-openssl-x509-perl", "Crypt-OpenSSL-X509", "1.8.2", "0", "0"
"libcrypt-rijndael-perl", "Crypt-Rijndael", "1.08", "0", "1"
"libcrypt-saltedhash-perl", "Crypt-SaltedHash", "0.06", "0", "0"
"libcrypt-simple-perl", "Crypt-Simple", "0.06", "0", "0"
"libcrypt-twofish-perl", "Crypt-Twofish", "2.12", "0", "0"
"libcss-dom-perl", "CSS-DOM", "0.14", "0", "0"
"libcss-minifier-perl", "CSS-Minifier", "0.01", "0", "0"
"libcss-minifier-xs-perl", "CSS-Minifier-XS", "0.07", "0", "0"
"libcss-packer-perl", "CSS-Packer", "1.000001", "0", "0"
"libcss-squish-perl", "CSS-Squish", "0.09", "0", "0"
"libcss-tiny-perl", "CSS-Tiny", "1.19", "0", "0"
"libcurses-perl", "Curses", "1.28", "0", "2"
"libcurses-ui-perl", "Curses-UI", "0.9607", "2", "2"
"libcurses-ui-poe-perl", "Curses-UI-POE", "not-uploaded", "0", "0"
"libcurses-widgets-perl", "CursesWidgets", "1.997", "0", "2"
"libcvs-perl", "Cvs", "0.07", "0", "1"
"libdancer-perl", "Dancer", "1.3040", "0", "1"
"libdancer-plugin-database-perl", "Dancer-Plugin-Database", "1.23", "0", "1"
"libdanga-socket-perl", "Danga-Socket", "1.61", "0", "0"
"libdata-alias-perl", "Data-Alias", "1.14", "0", "0"
"libdata-amf-perl", "Data-AMF", "0.09", "0", "0"
"libdata-dump-perl", "Data-Dump", "1.19", "0", "0"
"libdata-dump-streamer-perl", "Data-Dump-Streamer", "2.31", "0", "1"
"libdata-dumper-concise-perl", "Data-Dumper-Concise", "2.020", "0", "0"
"libdata-dumper-simple-perl", "Data-Dumper-Simple", "0.11", "0", "0"
"libdata-entropy-perl", "Data-Entropy", "0.007", "0", "0"
"libdata-float-perl", "Data-Float", "0.011", "0", "0"
"libdata-flow-perl", "Data-Flow", "1.02", "0", "0"
"libdata-format-html-perl", "Data-Format-HTML", "0.5", "0", "1"
"libdata-formvalidator-constraints-datetime-perl", "Data-FormValidator-Constraints-DateTime", "1.11", "0", "1"
"libdata-formvalidator-perl", "Data-FormValidator", "4.66", "0", "0"
"libdata-hexdumper-perl", "Data-Hexdumper", "2.01", "0", "0"
"libdata-ical-perl", "Data-ICal", "0.16", "1", "0"
"libdata-integer-perl", "Data-Integer", "0.004", "0", "0"
"libdata-javascript-perl", "Data-JavaScript", "1.13", "0", "0"
"libdata-miscellany-perl", "Data-Miscellany", "1.100850", "0", "0"
"libdata-optlist-perl", "Data-OptList", "0.107", "0", "1"
"libdata-pageset-perl", "Data-Pageset", "1.05", "0", "1"
"libdata-parsebinary-perl", "Data-ParseBinary", "not-uploaded", "0", "2"
"libdata-password-perl", "Data-Password", "1.07", "0", "1"
"libdata-peek-perl", "Data-Peek", "0.32", "0", "0"
"libdata-phrasebook-loader-yaml-perl", "Data-Phrasebook-Loader-YAML", "0.09", "0", "1"
"libdata-phrasebook-perl", "Data-Phrasebook", "0.31", "0", "1"
"libdata-random-perl", "Data-Random", "0.05", "0", "4"
"libdata-report-perl", "Data-Report", "0.10", "0", "0"
"libdata-section-perl", "Data-Section", "0.101621", "0", "0"
"libdata-serializer-perl", "Data-Serializer", "0.57", "0", "0"
"libdata-show-perl", "Data-Show", "0.001002", "0", "0"
"libdata-showtable-perl", "Data-ShowTable", "3.3", "0", "2"
"libdata-sorting-perl", "Data-Sorting", "0.9", "0", "2"
"libdata-stag-perl", "Data-Stag", "0.11", "1", "4"
"libdata-stream-bulk-perl", "Data-Stream-Bulk", "0.08", "0", "0"
"libdata-structure-util-perl", "Data-Structure-Util", "0.15", "0", "0"
"libdata-transformer-perl", "Data-Transformer", "0.04", "0", "0"
"libdata-treedumper-perl", "Data-TreeDumper", "0.37", "0", "3"
"libdata-treedumper-renderer-dhtml-perl", "Data-TreeDumper-Renderer-DHTML", "0.09", "0", "2"
"libdata-types-perl", "Data-Types", "0.08", "0", "0"
"libdata-uuid-libuuid-perl", "Data-UUID-LibUUID", "0.05", "0", "0"
"libdata-validate-email-perl", "Data-Validate-Email", "0.04", "1", "1"
"libdata-validate-ip-perl", "Data-Validate-IP", "0.14", "0", "0"
"libdata-visitor-perl", "Data-Visitor", "0.27", "0", "0"
"libdata-walk-perl", "Data-Walk", "1.00", "1", "1"
"libdate-calc-perl", "Date-Calc", "6.0", "0", "1"
"libdate-calc-xs-perl", "Date-Calc-XS", "not-uploaded", "0", "0"
"libdate-convert-perl", "DateConvert", "0.16", "0", "0"
"libdate-hijri-perl", "Date_Hijri", "0.02", "0", "0"
"libdate-ical-perl", "Date-ICal", "1.72", "0", "0"
"libdate-leapyear-perl", "Date-Leapyear", "1.72", "0", "0"
"libdate-manip-perl", "Date-Manip", "6.23", "5", "1"
"libdate-pcalc-perl", "Date-Pcalc", "6.1", "0", "1"
"libdate-simple-perl", "Date-Simple", "3.03.03", "1", "1"
"libdatetime-astro-sunrise-perl", "DateTime-Astro-Sunrise", "0.01.01", "1", "4"
"libdatetime-event-ical-perl", "DateTime-Event-ICal", "0.10", "0", "1"
"libdatetime-event-recurrence-perl", "DateTime-Event-Recurrence", "0.16", "0", "0"
"libdatetime-event-sunrise-perl", "DateTime-Event-Sunrise", "0.0501", "0", "0"
"libdatetime-format-builder-perl", "DateTime-Format-Builder", "0.8000", "0", "0"
"libdatetime-format-dateparse-perl", "DateTime-Format-DateParse", "0.05", "0", "0"
"libdatetime-format-db2-perl", "DateTime-Format-DB2", "0.05", "0", "0"
"libdatetime-format-dbi-perl", "DateTime-Format-DBI", "0.040", "0", "0"
"libdatetime-format-flexible-perl", "DateTime-Format-Flexible", "0.19", "0", "0"
"libdatetime-format-http-perl", "DateTime-Format-HTTP", "0.40", "0", "0"
"libdatetime-format-ical-perl", "DateTime-Format-ICal", "0.09", "0", "0"
"libdatetime-format-iso8601-perl", "DateTime-Format-ISO8601", "0.06", "0", "0"
"libdatetime-format-mail-perl", "DateTime-Format-Mail", "0.3001", "0", "0"
"libdatetime-format-mysql-perl", "DateTime-Format-MySQL", "0.04", "0", "0"
"libdatetime-format-natural-perl", "DateTime-Format-Natural", "0.95", "0", "1"
"libdatetime-format-oracle-perl", "DateTime-Format-Oracle", "0.05", "0", "0"
"libdatetime-format-pg-perl", "DateTime-Format-Pg", "0.16005", "0", "0"
"libdatetime-format-sqlite-perl", "DateTime-Format-SQLite", "0.11", "0", "0"
"libdatetime-format-strptime-perl", "DateTime-Format-Strptime", "1.5000", "0", "0"
"libdatetime-format-w3cdtf-perl", "DateTime-Format-W3CDTF", "0.06", "0", "0"
"libdatetime-locale-perl", "DateTime-Locale", "0.45", "0", "0"
"libdatetime-perl", "DateTime", "0.7000", "0", "0"
"libdatetime-set-perl", "DateTime-Set", "0.30", "0", "0"
"libdatetime-timezone-perl", "DateTime-TimeZone", "1.34", "1", "0"
"libdatetimex-easy-perl", "DateTimeX-Easy", "0.089", "0", "0"
"libdb-file-lock-perl", "DB_File-Lock", "0.05", "0", "1"
"libdbd-csv-perl", "DBD-CSV", "0.3100", "0", "1"
"libdbd-excel-perl", "DBD-Excel", "0.06", "0", "2"
"libdbd-mock-perl", "DBD-Mock", "1.39", "0", "0"
"libdbd-mysql-perl", "DBD-mysql", "4.019", "2", "2"
"libdbd-odbc-perl", "DBD-ODBC", "1.29", "0", "1"
"libdbd-oracle-perl", "DBD-Oracle", "1.28", "0", "1"
"libdbd-pg-perl", "DBD-Pg", "2.18.1", "0", "2"
"libdbd-sqlite2-perl", "DBD-SQLite2", "0.33", "0", "1"
"libdbd-sqlite3-perl", "DBD-SQLite", "1.31", "1", "2"
"libdbd-xbase-perl", "DBD-XBase", "0.241", "0", "4"
"libdbi-perl", "DBI", "1.616", "5", "3"
"libdbicx-testdatabase-perl", "DBICx-TestDatabase", "0.04", "0", "0"
"libdbix-abstract-perl", "DBIx-Abstract", "1.006", "0", "3"
"libdbix-class-candy-perl", "DBIx-Class-Candy", "0.002000", "0", "0"
"libdbix-class-cursor-cached-perl", "DBIx-Class-Cursor-Cached", "1.001001", "0", "0"
"libdbix-class-datetime-epoch-perl", "DBIx-Class-DateTime-Epoch", "0.07", "0", "0"
"libdbix-class-deploymenthandler-perl", "DBIx-Class-DeploymentHandler", "not-uploaded", "0", "0"
"libdbix-class-dynamicdefault-perl", "DBIx-Class-DynamicDefault", "0.03", "0", "0"
"libdbix-class-encodedcolumn-perl", "DBIx-Class-EncodedColumn", "0.00011", "0", "2"
"libdbix-class-fixtures-perl", "DBIx-Class-Fixtures", "not-uploaded", "0", "0"
"libdbix-class-helpers-perl", "DBIx-Class-Helpers", "not-uploaded", "0", "0"
"libdbix-class-inflatecolumn-ip-perl", "DBIx-Class-InflateColumn-IP", "0.02001", "0", "0"
"libdbix-class-introspectablem2m-perl", "DBIx-Class-IntrospectableM2M", "0.001001", "0", "0"
"libdbix-class-perl", "DBIx-Class", "0.08127", "0", "2"
"libdbix-class-resultset-recursiveupdate-perl", "DBIx-Class-ResultSet-RecursiveUpdate", "not-uploaded", "0", "0"
"libdbix-class-schema-loader-perl", "DBIx-Class-Schema-Loader", "0.07010", "0", "0"
"libdbix-class-timestamp-perl", "DBIx-Class-TimeStamp", "0.12", "0", "0"
"libdbix-contextualfetch-perl", "DBIx-ContextualFetch", "1.03", "0", "0"
"libdbix-oo-perl", "DBIx-OO", "0.0.9", "0", "1"
"libdbix-password-perl", "DBIx-Password", "1.9", "0", "2"
"libdbix-recordset-perl", "DBIx-Recordset", "0.26", "0", "6"
"libdbix-safe-perl", "DBIx-Safe", "1.2.5", "0", "0"
"libdbix-searchbuilder-perl", "DBIx-SearchBuilder", "1.59", "1", "1"
"libdbix-sequence-perl", "DBIx-Sequence", "1.5", "1", "0"
"libdbix-simple-perl", "DBIx-Simple", "1.32", "0", "0"
"libdbix-xml-rdb-perl", "DBIx-XML_RDB", "0.05", "0", "0"
"libdbix-xmlmessage-perl", "DBIx-XMLMessage", "0.05", "0", "0"
"libdbm-deep-perl", "DBM-Deep", "2.0002", "0", "1"
"libdebug-client-perl", "Debug-Client", "0.11", "0", "1"
"libdebug-trace-perl", "Debug-Trace", "0.04", "0", "0"
"libdevel-argnames-perl", "Devel-ArgNames", "0.03", "0", "0"
"libdevel-backtrace-perl", "Devel-Backtrace", "0.12", "0", "0"
"libdevel-bt-perl", "Devel-bt", "0.05", "1", "0"
"libdevel-caller-ignorenamespaces-perl", "Devel-Caller-IgnoreNamespaces", "1.0", "0", "0"
"libdevel-caller-perl", "Devel-Caller", "2.05", "0", "1"
"libdevel-calltrace-perl", "Devel-CallTrace", "1.2", "0", "0"
"libdevel-checklib-perl", "Devel-CheckLib", "0.93", "0", "0"
"libdevel-cover-perl", "Devel-Cover", "0.77", "0", "4"
"libdevel-cycle-perl", "Devel-Cycle", "1.11", "0", "0"
"libdevel-declare-perl", "Devel-Declare", "0.006004", "0", "0"
"libdevel-dprof-perl", "Devel-DProf", "20110228.00", "0", "0"
"libdevel-dumpvar-perl", "Devel-Dumpvar", "0.04", "1", "0"
"libdevel-ebug-perl", "Devel-ebug", "0.49", "0", "2"
"libdevel-findref-perl", "Devel-FindRef", "1.422", "0", "0"
"libdevel-gdb-perl", "Devel-GDB", "2.02", "0", "1"
"libdevel-globaldestruction-perl", "Devel-GlobalDestruction", "0.03", "0", "0"
"libdevel-leak-perl", "Devel-Leak", "0.03", "0", "0"
"libdevel-lexalias-perl", "Devel-LexAlias", "0.04", "1", "0"
"libdevel-nytprof-perl", "Devel-NYTProf", "4.06", "0", "2"
"libdevel-partialdump-perl", "Devel-PartialDump", "0.15", "0", "0"
"libdevel-patchperl-perl", "Devel-PatchPerl", "0.36", "0", "0"
"libdevel-profile-perl", "Devel-Profile", "1.05", "0", "0"
"libdevel-ptkdb-perl", "Devel-ptkdb", "1.1091", "0", "1"
"libdevel-refactor-perl", "Devel-Refactor", "0.05", "0", "0"
"libdevel-refcount-perl", "Devel-Refcount", "0.09", "0", "0"
"libdevel-repl-perl", "Devel-REPL", "1.003012", "0", "2"
"libdevel-simpletrace-perl", "Devel-SimpleTrace", "0.08", "0", "0"
"libdevel-size-perl", "Devel-Size", "0.77", "0", "1"
"libdevel-stacktrace-ashtml-perl", "Devel-StackTrace-AsHTML", "0.11", "0", "0"
"libdevel-stacktrace-perl", "Devel-StackTrace", "1.2700", "0", "0"
"libdevel-trace-perl", "Devel-Trace", "not-uploaded", "0", "1"
"libdevice-cdio-perl", "Device-Cdio", "0.2.4", "1", "7"
"libdevice-serialport-perl", "Device-SerialPort", "1.04", "0", "0"
"libdevice-usb-perl", "Device-USB", "0.35", "0", "3"
"libdigest-bubblebabble-perl", "Digest-BubbleBabble", "0.02", "0", "0"
"libdigest-crc-perl", "Digest-CRC", "0.16", "0", "0"
"libdigest-hmac-perl", "Digest-HMAC", "1.02", "0", "0"
"libdigest-jhash-perl", "Digest-JHash", "0.06", "0", "0"
"libdigest-md2-perl", "Digest-MD2", "2.03", "0", "0"
"libdigest-md4-perl", "Digest-MD4", "1.5.dfsg", "0", "1"
"libdigest-md5-file-perl", "Digest-MD5-File", "0.07", "0", "0"
"libdigest-md6-perl", "Digest-MD6", "not-uploaded", "0", "0"
"libdigest-perl", "Digest", "1.16", "0", "0"
"libdigest-sha-perl", "Digest-SHA", "5.62", "0", "0"
"libdigest-sha1-perl", "Digest-SHA1", "2.13", "2", "0"
"libdir-purge-perl", "Dir-Purge", "1.02", "0", "0"
"libdir-self-perl", "Dir-Self", "0.10", "0", "0"
"libdirectory-scratch-perl", "Directory-Scratch", "0.14", "0", "0"
"libdist-zilla-perl", "Dist-Zilla", "4.200006", "0", "0"
"libdist-zilla-plugin-changelogfromgit-perl", "Dist-Zilla-Plugin-ChangelogFromGit", "0.002", "0", "0"
"libdist-zilla-plugin-git-perl", "Dist-Zilla-Plugin-Git", "1.110500", "0", "0"
"libdist-zilla-plugin-podspellingtests-perl", "Dist-Zilla-Plugin-PodSpellingTests", "1.103491", "0", "0"
"libdist-zilla-plugin-podweaver-perl", "Dist-Zilla-Plugin-PodWeaver", "3.101641", "0", "0"
"libdist-zilla-plugin-prepender-perl", "Dist-Zilla-Plugin-Prepender", "1.103470", "0", "0"
"libdist-zilla-plugin-run-perl", "Dist-Zilla-Plugin-Run", "0.005", "0", "2"
"libdist-zilla-plugins-cjm-perl", "Dist-Zilla-Plugins-CJM", "3.05", "0", "0"
"libdpkg-log-perl", "DPKG-Log", "1.20", "0", "1"
"libdublincore-record-perl", "DublinCore-Record", "0.03", "0", "0"
"libelixirfm-perl", "http://qa.debian.org/watch/sf.php/elixir-fm/ElixirFM-1.1.976-Perl.tar.gz", "1.1.976", "0", "0"
"libemail-abstract-perl", "Email-Abstract", "3.004", "0", "0"
"libemail-address-perl", "Email-Address", "1.892", "1", "1"
"libemail-date-format-perl", "Email-Date-Format", "1.002", "0", "0"
"libemail-date-perl", "Email-Date", "1.103", "0", "0"
"libemail-filter-perl", "Email-Filter", "1.032", "0", "0"
"libemail-folder-perl", "Email-Folder", "0.855", "0", "0"
"libemail-localdelivery-perl", "Email-LocalDelivery", "0.217", "0", "1"
"libemail-messageid-perl", "Email-MessageID", "1.402", "0", "0"
"libemail-mime-contenttype-perl", "Email-MIME-ContentType", "1.014", "0", "0"
"libemail-mime-createhtml-perl", "Email-MIME-CreateHTML", "1.030", "0", "0"
"libemail-mime-encodings-perl", "Email-MIME-Encodings", "1.313", "0", "0"
"libemail-mime-perl", "Email-MIME", "1.907", "0", "0"
"libemail-outlook-message-perl", "Email-Outlook-Message", "0.910", "0", "0"
"libemail-received-perl", "Email-Received", "1.00", "0", "0"
"libemail-send-io-perl", "Email-Send-IO", "2.200", "1", "0"
"libemail-send-perl", "Email-Send", "2.198", "0", "2"
"libemail-sender-perl", "Email-Sender", "0.110001", "0", "0"
"libemail-sender-transport-smtp-tls-perl", "Email-Sender-Transport-SMTP-TLS", "0.07", "0", "0"
"libemail-simple-perl", "Email-Simple", "2.100", "1", "0"
"libemail-thread-perl", "Email-Thread", "0.711", "0", "0"
"libemail-valid-loose-perl", "Email-Valid-Loose", "0.05", "0", "0"
"libemail-valid-perl", "Email-Valid", "0.184", "0", "1"
"libembperl-perl", "Embperl", "2.3.0", "1", "10"
"libencode-arabic-perl", "http://qa.debian.org/watch/sf.php/encode-arabic/Encode-Arabic-1.9.tar.gz", "1.9", "0", "1"
"libencode-detect-perl", "Encode-Detect", "1.01", "0", "0"
"libencode-hanextra-perl", "Encode-HanExtra", "0.23", "0", "1"
"libencode-imaputf7-perl", "Encode-IMAPUTF7", "1.05", "0", "0"
"libencode-jis2k-perl", "Encode-JIS2K", "0.02", "0", "0"
"libencode-locale-perl", "Encode-Locale", "1.02", "0", "1"
"libencode-perl", "Encode", "2.42", "0", "1"
"libend-perl", "End", "2009040201", "0", "0"
"libenv-path-perl", "Env-Path", "0.18", "0", "0"
"libenv-ps1-perl", "Env-PS1", "0.06", "0", "0"
"libenv-sanctify-perl", "Env-Sanctify", "1.02", "0", "0"
"libev-perl", "EV", "not-uploaded", "0", "1"
"libeval-closure-perl", "Eval-Closure", "0.05", "0", "0"
"libevent-perl", "Event", "1.15", "0", "1"
"libevent-rpc-perl", "Event-RPC", "1.01", "0", "2"
"libexception-class-dbi-perl", "Exception-Class-DBI", "1.00", "0", "0"
"libexception-class-perl", "Exception-Class", "1.31", "0", "0"
"libexception-class-trycatch-perl", "Exception-Class-TryCatch", "1.12", "0", "0"
"libexception-handler-perl", "Exception-Handler", "1.004", "0", "0"
"libexpect-simple-perl", "Expect-Simple", "0.04", "2", "0"
"libexporter-lite-perl", "Exporter-Lite", "0.02", "0", "0"
"libexporter-renaming-perl", "Exporter-Renaming", "1.19", "0", "0"
"libexporter-tidy-perl", "Exporter-Tidy", "0.07", "0", "0"
"libextutils-cbuilder-perl", "ExtUtils-CBuilder", "0.280202", "0", "1"
"libextutils-cchecker-perl", "ExtUtils-CChecker", "0.07", "0", "0"
"libextutils-command-perl", "ExtUtils-Command", "1.17", "0", "0"
"libextutils-depends-perl", "ExtUtils-Depends", "0.304", "0", "0"
"libextutils-f77-perl", "ExtUtils-F77", "1.17", "0", "0"
"libextutils-install-perl", "ExtUtils-Install", "1.54", "2", "0"
"libextutils-libbuilder-perl", "ExtUtils-LibBuilder", "0.04", "0", "0"
"libextutils-parsexs-perl", "ExtUtils-ParseXS", "2.220600", "0", "0"
"libextutils-pkgconfig-perl", "ExtUtils-PkgConfig", "1.12", "0", "0"
"libextutils-xsbuilder-perl", "ExtUtils-XSBuilder", "0.28", "0", "2"
"libextutils-xspp-perl", "ExtUtils-XSpp", "0.1601", "0", "0"
"libfax-hylafax-client-perl", "Fax-Hylafax-Client", "1.02", "0", "0"
"libfcgi-perl", "FCGI", "0.71", "1", "1"
"libfcgi-procmanager-perl", "FCGI-ProcManager", "0.19", "0", "0"
"libfeed-find-perl", "Feed-Find", "0.07", "0", "1"
"libfile-basedir-perl", "File-BaseDir", "0.03", "0", "1"
"libfile-bom-perl", "File-BOM", "0.14", "0", "0"
"libfile-changenotify-perl", "File-ChangeNotify", "0.20", "0", "0"
"libfile-chmod-perl", "File-chmod", "0.32", "0", "0"
"libfile-copy-link-perl", "File-Copy-Link", "0.112", "0", "0"
"libfile-copy-recursive-perl", "File-Copy-Recursive", "0.38", "1", "0"
"libfile-counterfile-perl", "File-CounterFile", "1.04", "0", "0"
"libfile-countlines-perl", "File-CountLines", "0.0.3", "0", "0"
"libfile-desktopentry-perl", "File-DesktopEntry", "0.04", "1", "1"
"libfile-dircompare-perl", "File-DirCompare", "0.6", "0", "0"
"libfile-find-object-perl", "File-Find-Object", "0.2.1", "0", "0"
"libfile-find-object-rule-perl", "File-Find-Object-Rule", "0.0300", "0", "0"
"libfile-find-rule-perl", "File-Find-Rule", "0.32", "1", "1"
"libfile-find-rule-perl-perl", "File-Find-Rule-Perl", "1.10", "0", "1"
"libfile-find-rule-vcs-perl", "File-Find-Rule-VCS", "1.08", "0", "0"
"libfile-finder-perl", "File-Finder", "0.53", "0", "0"
"libfile-flock-perl", "File-Flock", "2008.01", "0", "0"
"libfile-fnmatch-perl", "File-FnMatch", "0.02", "0", "0"
"libfile-fu-perl", "File-Fu", "0.0.7", "0", "2"
"libfile-homedir-perl", "File-HomeDir", "0.97", "0", "0"
"libfile-libmagic-perl", "File-LibMagic", "0.96", "0", "1"
"libfile-listing-perl", "File-Listing", "6.01", "0", "0"
"libfile-localizenewlines-perl", "File-LocalizeNewlines", "1.11", "0", "0"
"libfile-mimeinfo-perl", "File-MimeInfo", "0.15", "4", "0"
"libfile-mmagic-xs-perl", "File-MMagic-XS", "0.09006", "0", "0"
"libfile-modified-perl", "File-Modified", "0.07", "0", "0"
"libfile-next-perl", "File-Next", "1.06", "1", "0"
"libfile-path-expand-perl", "File-Path-Expand", "1.02", "0", "0"
"libfile-path-perl", "File-Path", "2.08", "1", "0"
"libfile-pid-perl", "File-Pid", "1.01", "0", "1"
"libfile-policy-perl", "File-Policy", "1.005", "0", "0"
"libfile-pushd-perl", "File-pushd", "1.00", "0", "0"
"libfile-queue-perl", "File-Queue", "1.01a", "0", "0"
"libfile-read-perl", "File-Read", "0.0801", "0", "0"
"libfile-readbackwards-perl", "File-ReadBackwards", "1.04", "0", "0"
"libfile-remove-perl", "File-Remove", "1.48", "0", "0"
"libfile-scan-perl", "File-Scan", "1.43", "0", "2"
"libfile-sharedir-install-perl", "File-ShareDir-Install", "0.03", "0", "0"
"libfile-sharedir-par-perl", "File-ShareDir-PAR", "0.06", "0", "1"
"libfile-slurp-unicode-perl", "File-Slurp-Unicode", "0.7.1", "0", "0"
"libfile-spec-perl", "PathTools", "3.3300", "0", "0"
"libfile-sync-perl", "File-Sync", "0.09", "0", "0"
"libfile-temp-perl", "File-Temp", "0.22", "1", "0"
"libfile-touch-perl", "File-Touch", "0.08", "0", "0"
"libfile-type-webimages-perl", "File-Type-WebImages", "1.01", "0", "0"
"libfile-userconfig-perl", "File-UserConfig", "0.06", "0", "0"
"libfile-util-perl", "File-Util", "3.27", "0", "0"
"libfile-which-perl", "File-Which", "1.08", "0", "1"
"libfile-wildcard-perl", "File-Wildcard", "0.11", "0", "0"
"libfilehandle-fmode-perl", "FileHandle-Fmode", "0.11", "0", "0"
"libfilehandle-unget-perl", "FileHandle-Unget", "0.1623", "0", "1"
"libfilesys-df-perl", "Filesys-Df", "0.92", "1", "0"
"libfilesys-notify-simple-perl", "Filesys-Notify-Simple", "0.07", "0", "0"
"libfilesys-smbclient-perl", "Filesys-SmbClient", "3.1", "1", "1"
"libfilter-crypto-perl", "Filter-Crypto", "not-uploaded", "0", "0"
"libfilter-eof-perl", "Filter-EOF", "0.04", "0", "0"
"libfilter-template-perl", "Filter-Template", "1.040", "0", "0"
"libfinance-bank-ie-permanenttsb-perl", "Finance-Bank-IE-PermanentTSB", "0.4", "0", "0"
"libfinance-streamer-perl", "unknown", "1.10", "0", "0"
"libfind-lib-perl", "Find-Lib", "1.01", "0", "0"
"libflickr-api-perl", "Flickr-API", "1.01", "0", "1"
"libflickr-upload-perl", "Flickr-Upload", "1.32", "0", "2"
"libfont-afm-perl", "Font-AFM", "1.20", "0", "0"
"libfont-freetype-perl", "Font-FreeType", "0.03", "1", "2"
"libfont-ttf-perl", "Font-TTF", "0.48", "0", "2"
"libforest-perl", "Forest", "0.09", "0", "1"
"libforks-perl", "forks", "0.34", "1", "1"
"libformat-human-bytes-perl", "Format-Human-Bytes", "0.05", "0", "0"
"libformvalidator-simple-perl", "FormValidator-Simple", "0.28", "0", "0"
"libfortune-perl", "Fortune", "0.2", "0", "0"
"libfreezethaw-perl", "FreezeThaw", "0.5001", "0", "1"
"libfrontier-rpc-perl", "Frontier-RPC", "0.07b4", "3", "2"
"libgd-barcode-perl", "GD-Barcode", "1.15", "0", "0"
"libgd-securityimage-perl", "GD-SecurityImage", "1.68", "0", "0"
"libgd-svg-perl", "GD-SVG", "0.33", "0", "0"
"libgearman-client-async-perl", "Gearman-Client-Async", "0.94", "2", "0"
"libgearman-client-perl", "Gearman", "1.11", "1", "2"
"libgeo-coder-googlev3-perl", "Geo-Coder-Googlev3", "not-uploaded", "0", "0"
"libgeo-google-mapobject-perl", "Geo-Google-MapObject", "0.06", "0", "0"
"libgeo-ipfree-perl", "Geo-IPfree", "1.110450", "0", "0"
"libgeo-metar-perl", "Geo-METAR", "1.15", "0", "4"
"libgeo-osm-tiles-perl", "Geo-OSM-Tiles", "0.04", "0", "0"
"libgeography-countries-perl", "Geography-Countries", "2009041301", "0", "0"
"libgeometry-primitive-perl", "Geometry-Primitive", "0.22", "0", "0"
"libgetopt-argvfile-perl", "Getopt-ArgvFile", "1.11", "0", "0"
"libgetopt-declare-perl", "Getopt-Declare", "1.14", "0", "0"
"libgetopt-euclid-perl", "Getopt-Euclid", "0.2.2", "1", "0"
"libgetopt-long-descriptive-perl", "Getopt-Long-Descriptive", "0.090", "0", "0"
"libgetopt-lucid-perl", "Getopt-Lucid", "0.19", "0", "0"
"libgetopt-tabular-perl", "Getopt-Tabular", "0.3", "0", "1"
"libgetopt-usaginator-perl", "Getopt-Usaginator", "0.0012", "0", "0"
"libgit-wrapper-perl", "Git-Wrapper", "0.014", "0", "0"
"libgitalist-perl", "Gitalist", "not-uploaded", "0", "0"
"libglib-perl", "http://qa.debian.org/watch/sf.php/gtk2-perl/Glib-1.223.tar.gz", "1.223", "0", "5"
"libgnome2-canvas-perl", "http://qa.debian.org/watch/sf.php/gtk2-perl/Gnome2-Canvas-1.002.tar.gz", "1.002", "0", "2"
"libgnome2-gconf-perl", "http://qa.debian.org/watch/sf.php/gtk2-perl/Gnome2-GConf-1.044.tar.gz", "1.044", "0", "1"
"libgnome2-perl", "http://qa.debian.org/watch/sf.php/gtk2-perl/Gnome2-1.042.tar.gz", "1.042", "1", "0"
"libgnome2-vfs-perl", "http://qa.debian.org/watch/sf.php/gtk2-perl/Gnome2-VFS-1.081.tar.gz", "1.081", "0", "1"
"libgnome2-wnck-perl", "http://qa.debian.org/watch/sf.php/gtk2-perl/Gnome2-Wnck-0.16.tar.gz", "0.16", "0", "1"
"libgnupg-interface-perl", "GnuPG-Interface", "0.44", "5", "0"
"libgnupg-perl", "GnuPG", "0.17", "0", "0"
"libgoo-canvas-perl", "Goo-Canvas", "0.06", "0", "1"
"libgps-point-perl", "GPS-Point", "0.17", "0", "1"
"libgraph-easy-as-svg-perl", "Graph-Easy-As_svg", "0.23", "0", "0"
"libgraph-easy-perl", "Graph-Easy", "0.70", "1", "0"
"libgraph-readwrite-perl", "Graph-ReadWrite", "2.00", "0", "0"
"libgraph-writer-graphviz-perl", "Graph-Writer-GraphViz", "0.10", "0", "1"
"libgraphics-color-perl", "Graphics-Color", "0.27", "0", "0"
"libgraphics-colornames-www-perl", "Graphics-ColorNames-WWW", "1.12", "0", "0"
"libgraphics-gnuplotif-perl", "Graphics-GnuplotIF", "1.6", "0", "0"
"libgraphics-libplot-perl", "Graphics-Libplot", "2.2.2", "0", "1"
"libgraphics-primitive-driver-cairo-perl", "Graphics-Primitive-Driver-Cairo", "0.43", "0", "1"
"libgraphics-primitive-perl", "Graphics-Primitive", "0.53", "0", "1"
"libgravatar-url-perl", "Gravatar-URL", "1.04", "0", "0"
"libgssapi-perl", "GSSAPI", "0.28", "0", "0"
"libgstreamer-interfaces-perl", "GStreamer-Interfaces", "0.06", "0", "0"
"libgstreamer-perl", "http://qa.debian.org/watch/sf.php/gtk2-perl/GStreamer-0.15.tar.gz", "0.15", "0", "6"
"libgtk2-ex-entry-pango-perl", "Gtk2-Ex-Entry-Pango", "0.09", "0", "0"
"libgtk2-ex-podviewer-perl", "Gtk2-Ex-PodViewer", "0.18", "0", "0"
"libgtk2-ex-printdialog-perl", "Gtk2-Ex-PrintDialog", "0.03", "0", "1"
"libgtk2-ex-simple-list-perl", "Gtk2-Ex-Simple-List", "0.50", "1", "0"
"libgtk2-ex-volumebutton-perl", "Gtk2-Ex-VolumeButton", "0.07", "0", "0"
"libgtk2-gladexml-perl", "http://qa.debian.org/watch/sf.php/gtk2-perl/Gtk2-GladeXML-1.007.tar.gz", "1.007", "0", "0"
"libgtk2-gladexml-simple-perl", "Gtk2-GladeXML-Simple", "0.32", "0", "0"
"libgtk2-imageview-perl", "Gtk2-ImageView", "0.05", "0", "0"
"libgtk2-mozembed-perl", "Gtk2-MozEmbed", "0.08", "1", "3"
"libgtk2-notify-perl", "Gtk2-Notify", "0.05", "0", "1"
"libgtk2-perl", "http://qa.debian.org/watch/sf.php/gtk2-perl/Gtk2-1.223.tar.gz", "1.223", "0", "3"
"libgtk2-sourceview2-perl", "Gtk2-SourceView2", "0.10", "0", "0"
"libgtk2-spell-perl", "http://qa.debian.org/watch/sf.php/gtk2-perl/Gtk2-Spell-1.03.tar.gz", "1.03", "0", "1"
"libgtk2-trayicon-perl", "http://qa.debian.org/watch/sf.php/gtk2-perl/Gtk2-TrayIcon-0.06.tar.gz", "0.06", "0", "0"
"libgtk2-traymanager-perl", "Gtk2-TrayManager", "0.05", "0", "0"
"libgtk2-unique-perl", "Gtk2-Unique", "0.05", "0", "1"
"libgtk2-webkit-perl", "Gtk2-WebKit", "not-uploaded", "0", "0"
"libguard-perl", "Guard", "1.02", "0", "0"
"libhash-asobject-perl", "Hash-AsObject", "0.13", "0", "0"
"libhash-case-perl", "Hash-Case", "1.006", "0", "0"
"libhash-fieldhash-perl", "Hash-FieldHash", "0.10", "0", "0"
"libhash-flatten-perl", "Hash-Flatten", "1.19", "0", "0"
"libhash-merge-simple-perl", "Hash-Merge-Simple", "0.051", "0", "0"
"libhash-moreutils-perl", "Hash-MoreUtils", "0.02", "0", "0"
"libhash-multivalue-perl", "Hash-MultiValue", "0.08", "0", "0"
"libhash-withdefaults-perl", "Hash-WithDefaults", "0.04", "0", "0"
"libhook-lexwrap-perl", "Hook-LexWrap", "0.24", "0", "1"
"libhook-wrapsub-perl", "Hook-WrapSub", "0.03", "0", "0"
"libhtml-autopagerize-perl", "HTML-AutoPagerize", "0.01", "0", "0"
"libhtml-calendarmonthsimple-perl", "HTML-CalendarMonthSimple", "1.25", "0", "0"
"libhtml-clean-perl", "HTML-Clean", "0.8", "0", "5"
"libhtml-copy-perl", "HTML-Copy", "1.30", "0", "0"
"libhtml-display-perl", "HTML-Display", "0.39", "0", "0"
"libhtml-encoding-perl", "HTML-Encoding", "0.61", "0", "0"
"libhtml-fillinform-perl", "HTML-FillInForm", "2.00", "0", "0"
"libhtml-form-perl", "HTML-Form", "6.00", "0", "0"
"libhtml-format-perl", "HTML-Format", "2.05", "1", "0"
"libhtml-formattext-withlinks-perl", "HTML-FormatText-WithLinks", "0.14", "0", "0"
"libhtml-formfu-model-dbic-perl", "HTML-FormFu-Model-DBIC", "0.09000", "0", "2"
"libhtml-formfu-perl", "HTML-FormFu", "0.09003", "0", "4"
"libhtml-formhandler-model-dbic-perl", "HTML-FormHandler-Model-DBIC", "not-uploaded", "0", "0"
"libhtml-formhandler-perl", "HTML-FormHandler", "not-uploaded", "0", "0"
"libhtml-highlight-perl", "HTML-Highlight", "0.20", "0", "1"
"libhtml-html5-parser-perl", "HTML-HTML5-Parser", "0.103", "0", "0"
"libhtml-lint-perl", "HTML-Lint", "2.06", "2", "0"
"libhtml-mason-perl", "HTML-Mason", "1.44", "6", "2"
"libhtml-packer-perl", "HTML-Packer", "1.000", "0", "0"
"libhtml-parser-perl", "HTML-Parser", "3.68", "0", "2"
"libhtml-prototype-perl", "HTML-Prototype", "1.48", "0", "4"
"libhtml-rewriteattributes-perl", "HTML-RewriteAttributes", "0.04", "0", "0"
"libhtml-scrubber-perl", "HTML-Scrubber", "0.09", "2", "0"
"libhtml-selector-xpath-perl", "HTML-Selector-XPath", "0.07", "0", "0"
"libhtml-simpleparse-perl", "HTML-SimpleParse", "0.12", "0", "0"
"libhtml-stream-perl", "HTML-Stream", "1.60", "0", "0"
"libhtml-strip-perl", "HTML-Strip", "1.06", "0", "1"
"libhtml-stripscripts-parser-perl", "HTML-StripScripts-Parser", "1.03", "0", "0"
"libhtml-stripscripts-perl", "HTML-StripScripts", "1.05", "0", "0"
"libhtml-tableextract-perl", "HTML-TableExtract", "2.10", "0", "1"
"libhtml-tagcloud-perl", "HTML-TagCloud", "0.36", "0", "0"
"libhtml-tagfilter-perl", "HTML-TagFilter", "1.03", "0", "0"
"libhtml-tagset-perl", "HTML-Tagset", "3.20", "1", "1"
"libhtml-template-compiled-perl", "HTML-Template-Compiled", "0.95", "0", "1"
"libhtml-template-dumper-perl", "HTML-Template-Dumper", "0.1", "0", "2"
"libhtml-template-expr-perl", "HTML-Template-Expr", "0.07", "0", "1"
"libhtml-template-perl", "HTML-Template", "2.9", "0", "3"
"libhtml-template-pluggable-perl", "HTML-Template-Pluggable", "0.17", "0", "1"
"libhtml-template-pro-perl", "HTML-Template-Pro", "0.9503", "0", "0"
"libhtml-tidy-perl", "HTML-Tidy", "1.50", "0", "2"
"libhtml-tiny-perl", "HTML-Tiny", "1.05", "0", "1"
"libhtml-toc-perl", "HTML-Toc", "1.12", "0", "0"
"libhtml-tree-perl", "HTML-Tree", "4.2", "0", "1"
"libhtml-treebuilder-xpath-perl", "HTML-TreeBuilder-XPath", "0.12", "0", "0"
"libhtml-widget-perl", "HTML-Widget", "1.11", "0", "4"
"libhtml-widgets-navmenu-perl", "HTML-Widgets-NavMenu", "1.0600", "0", "1"
"libhtml-wikiconverter-dokuwiki-perl", "HTML-WikiConverter-DokuWiki", "0.53", "0", "0"
"libhtml-wikiconverter-kwiki-perl", "HTML-WikiConverter-Kwiki", "0.51", "0", "0"
"libhtml-wikiconverter-markdown-perl", "HTML-WikiConverter-Markdown", "0.02", "2", "0"
"libhtml-wikiconverter-mediawiki-perl", "HTML-WikiConverter-MediaWiki", "0.59", "0", "0"
"libhtml-wikiconverter-moinmoin-perl", "HTML-WikiConverter-MoinMoin", "0.53", "1", "0"
"libhtml-wikiconverter-oddmuse-perl", "HTML-WikiConverter-Oddmuse", "0.52", "0", "0"
"libhtml-wikiconverter-perl", "HTML-WikiConverter", "0.68", "2", "2"
"libhtml-wikiconverter-phpwiki-perl", "HTML-WikiConverter-PhpWiki", "0.51", "0", "0"
"libhtml-wikiconverter-pmwiki-perl", "HTML-WikiConverter-PmWiki", "0.51", "0", "0"
"libhtml-wikiconverter-snipsnap-perl", "HTML-WikiConverter-SnipSnap", "0.50", "0", "0"
"libhtml-wikiconverter-tikiwiki-perl", "HTML-WikiConverter-TikiWiki", "0.50", "0", "0"
"libhtml-wikiconverter-usemod-perl", "HTML-WikiConverter-UseMod", "0.50", "0", "0"
"libhtml-wikiconverter-wakkawiki-perl", "HTML-WikiConverter-WakkaWiki", "0.50", "0", "0"
"libhtml-wikiconverter-wikkawiki-perl", "HTML-WikiConverter-WikkaWiki", "0.50", "0", "0"
"libhttp-async-perl", "HTTP-Async", "0.09", "0", "1"
"libhttp-body-perl", "HTTP-Body", "1.11", "0", "0"
"libhttp-browserdetect-perl", "HTTP-BrowserDetect", "1.24", "0", "0"
"libhttp-cookies-perl", "HTTP-Cookies", "6.00", "1", "0"
"libhttp-daemon-perl", "HTTP-Daemon", "6.00", "1", "0"
"libhttp-date-perl", "HTTP-Date", "6.00", "0", "0"
"libhttp-exception-perl", "HTTP-Exception", "0.03001", "0", "0"
"libhttp-lite-perl", "HTTP-Lite", "2.3", "0", "0"
"libhttp-message-perl", "HTTP-Message", "6.01", "2", "0"
"libhttp-negotiate-perl", "HTTP-Negotiate", "6.00", "0", "0"
"libhttp-oai-perl", "HTTP-OAI", "3.24", "0", "0"
"libhttp-parser-perl", "HTTP-Parser", "0.06", "0", "0"
"libhttp-parser-xs-perl", "HTTP-Parser-XS", "0.12", "0", "0"
"libhttp-proxy-perl", "HTTP-Proxy", "0.24", "1", "3"
"libhttp-recorder-perl", "HTTP-Recorder", "0.05", "0", "0"
"libhttp-request-ascgi-perl", "HTTP-Request-AsCGI", "1.2", "0", "0"
"libhttp-request-params-perl", "HTTP-Request-Params", "1.01", "0", "0"
"libhttp-response-encoding-perl", "HTTP-Response-Encoding", "0.05", "0", "0"
"libhttp-server-simple-mason-perl", "HTTP-Server-Simple-Mason", "0.14", "0", "1"
"libhttp-server-simple-perl", "HTTP-Server-Simple", "0.44", "1", "1"
"libhttp-server-simple-psgi-perl", "HTTP-Server-Simple-PSGI", "0.14", "0", "0"
"libhttp-server-simple-recorder-perl", "HTTP-Server-Simple-Recorder", "0.03", "0", "0"
"libhttp-server-simple-static-perl", "HTTP-Server-Simple-Static", "0.07", "0", "0"
"libhttp-tiny-perl", "HTTP-Tiny", "0.012", "0", "1"
"libi18n-acceptlanguage-perl", "I18N-AcceptLanguage", "1.04", "0", "0"
"libi18n-charset-perl", "I18N-Charset", "1.396", "0", "1"
"libical-parser-perl", "iCal-Parser", "1.16", "0", "0"
"libima-dbi-contextual-perl", "Ima-DBI-Contextual", "0.006", "0", "0"
"libima-dbi-perl", "Ima-DBI", "0.35", "0", "1"
"libimage-exif-perl", "Image-EXIF", "1.00.3", "1", "3"
"libimage-librsvg-perl", "Image-LibRSVG", "0.07", "0", "1"
"libimage-math-constrain-perl", "Image-Math-Constrain", "1.02", "0", "0"
"libimage-seek-perl", "Image-Seek", "0.02", "0", "0"
"libimage-size-perl", "Image-Size", "3.230", "0", "2"
"libimager-perl", "Imager", "0.82", "0", "1"
"libimap-admin-perl", "IMAP-Admin", "1.6.6", "0", "1"
"libindirect-perl", "indirect", "0.23", "0", "0"
"libinline-perl", "Inline", "0.47", "1", "2"
"libio-aio-perl", "IO-AIO", "3.80", "1", "1"
"libio-all-lwp-perl", "IO-All-LWP", "0.14", "0", "0"
"libio-all-perl", "IO-All", "0.41", "0", "1"
"libio-async-loop-epoll-perl", "IO-Async-Loop-Epoll", "0.11", "0", "0"
"libio-async-loop-glib-perl", "IO-Async-Loop-Glib", "0.19", "0", "0"
"libio-async-perl", "IO-Async", "0.40", "0", "0"
"libio-bufferedselect-perl", "IO-BufferedSelect", "1.0", "0", "0"
"libio-capture-perl", "IO-Capture", "0.05", "1", "1"
"libio-captureoutput-perl", "IO-CaptureOutput", "1.1102", "0", "0"
"libio-compress-perl", "IO-Compress", "2.035", "6", "0"
"libio-epoll-perl", "IO-Epoll", "0.02", "1", "1"
"libio-handle-util-perl", "IO-Handle-Util", "0.01", "0", "1"
"libio-interactive-perl", "IO-Interactive", "0.0.6", "0", "0"
"libio-interface-perl", "IO-Interface", "1.05", "0", "0"
"libio-multiplex-perl", "IO-Multiplex", "1.13", "0", "0"
"libio-prompt-perl", "IO-Prompt", "0.997001", "0", "2"
"libio-socket-ip-perl", "IO-Socket-IP", "0.07", "0", "1"
"libio-socket-multicast-perl", "IO-Socket-Multicast", "1.12", "1", "1"
"libio-socket-multicast6-perl", "IO-Socket-Multicast6", "0.03", "0", "1"
"libio-socket-socks-perl", "IO-Socket-Socks", "0.4", "0", "0"
"libio-socket-ssl-perl", "IO-Socket-SSL", "1.43", "1", "0"
"libio-string-perl", "IO-String", "1.08", "0", "0"
"libio-tee-perl", "IO-Tee", "0.64", "0", "0"
"libio-tiecombine-perl", "IO-TieCombine", "1.000", "0", "0"
"libipc-pubsub-perl", "IPC-PubSub", "0.29", "0", "0"
"libipc-run-perl", "IPC-Run", "0.89", "2", "1"
"libipc-run3-perl", "IPC-Run3", "0.044", "0", "1"
"libipc-shareable-perl", "IPC-Shareable", "0.60", "0", "2"
"libipc-sharedcache-perl", "IPC-SharedCache", "1.3", "0", "1"
"libipc-sharelite-perl", "IPC-ShareLite", "0.17", "1", "0"
"libipc-system-simple-perl", "IPC-System-Simple", "1.21", "0", "0"
"libiptables-chainmgr-perl", "http://www.cipherdyne.com/modules/IPTables-ChainMgr-0.9.tar.gz", "0.9", "0", "0"
"libiptables-parse-perl", "http://www.cipherdyne.com/modules/IPTables-Parse-0.7.tar.gz", "0.7", "0", "0"
"libjavascript-beautifier-perl", "JavaScript-Beautifier", "0.17", "0", "1"
"libjavascript-minifier-xs-perl", "JavaScript-Minifier-XS", "0.09", "0", "0"
"libjavascript-packer-perl", "JavaScript-Packer", "1.002001", "0", "0"
"libjavascript-perl", "JavaScript", "1.16", "0", "4"
"libje-perl", "JE", "0.055", "0", "0"
"libjifty-dbi-perl", "Jifty-DBI", "0.68", "0", "0"
"libjifty-plugin-authentication-bitcard-perl", "unknown", "0.053", "0", "0"
"libjifty-plugin-authentication-cas-perl", "Jifty-Plugin-Authentication-CAS", "1.00", "0", "0"
"libjifty-plugin-authentication-facebook-perl", "Jifty-Plugin-Authentication-Facebook", "0.90000", "0", "0"
"libjifty-plugin-authentication-ldap-perl", "Jifty-Plugin-Authentication-Ldap", "1.01", "0", "0"
"libjifty-plugin-authzldap-perl", "Jifty-Plugin-AuthzLDAP", "0.90000", "0", "0"
"libjifty-plugin-chart-perl", "Jifty-Plugin-Chart", "1.01", "1", "0"
"libjifty-plugin-comment-perl", "Jifty-Plugin-Comment", "1.00", "0", "0"
"libjifty-plugin-googlemap-perl", "Jifty-Plugin-GoogleMap", "1.00", "0", "0"
"libjifty-plugin-oauth-perl", "Jifty-Plugin-OAuth", "0.04", "0", "0"
"libjifty-plugin-openid-perl", "Jifty-Plugin-OpenID", "1.02", "0", "1"
"libjifty-plugin-sitenews-perl", "Jifty-Plugin-SiteNews", "0.90000", "0", "0"
"libjifty-plugin-userpic-perl", "Jifty-Plugin-Userpic", "0.90000", "0", "0"
"libjifty-plugin-wikitoolbar-perl", "Jifty-Plugin-WikiToolbar", "1.00", "0", "0"
"libjira-client-perl", "JIRA-Client", "0.28", "0", "0"
"libjson-any-perl", "JSON-Any", "1.22", "0", "0"
"libjson-perl", "JSON", "2.51", "2", "0"
"libjson-pp-perl", "JSON-PP", "2.27104", "0", "0"
"libjson-rpc-perl", "JSON-RPC", "0.96", "0", "0"
"libjson-xs-perl", "JSON-XS", "2.300", "1", "1"
"libkinosearch-perl", "KinoSearch", "0.313", "2", "1"
"libkinosearch1-perl", "KinoSearch1", "1.00", "1", "1"
"libkiokudb-perl", "KiokuDB", "not-uploaded", "0", "1"
"libkwiki-cache-perl", "Kwiki-Cache", "0.11", "0", "0"
"libkwiki-perl", "Kwiki", "0.39", "1", "1"
"liblatex-decode-perl", "LaTeX-Decode", "0.03", "0", "1"
"liblatex-driver-perl", "LaTeX-Driver", "0.08", "0", "6"
"liblatex-encode-perl", "LaTeX-Encode", "0.03", "1", "1"
"liblatex-table-perl", "LaTeX-Table", "1.0.6", "0", "0"
"liblayout-manager-perl", "Layout-Manager", "0.34", "0", "0"
"liblchown-perl", "Lchown", "1.01", "0", "0"
"liblexical-persistence-perl", "Lexical-Persistence", "0.98", "1", "0"
"liblingua-en-inflect-number-perl", "Lingua-EN-Inflect-Number", "1.1", "0", "0"
"liblingua-en-inflect-perl", "Lingua-EN-Inflect", "1.893", "0", "1"
"liblingua-en-inflect-phrase-perl", "Lingua-EN-Inflect-Phrase", "0.04", "0", "0"
"liblingua-en-nameparse-perl", "Lingua-EN-NameParse", "1.30", "0", "2"
"liblingua-en-numbers-ordinate-perl", "Lingua-EN-Numbers-Ordinate", "1.02", "0", "0"
"liblingua-en-tagger-perl", "Lingua-EN-Tagger", "0.16", "0", "3"
"liblingua-es-numeros-perl", "Lingua-ES-Numeros", "0.08", "0", "0"
"liblingua-ispell-perl", "Lingua-Ispell", "0.07", "0", "1"
"liblingua-preferred-perl", "Lingua-Preferred", "0.2.4", "0", "0"
"liblinux-distribution-packages-perl", "Linux-Distribution-Packages", "0.05", "0", "0"
"liblinux-distribution-perl", "Linux-Distribution", "0.20", "0", "0"
"liblinux-dvb-perl", "Linux-DVB", "1.01", "0", "0"
"liblinux-lvm-perl", "Linux-LVM", "0.14", "1", "2"
"liblinux-usermod-perl", "Linux-usermod", "0.69", "0", "0"
"liblist-allutils-perl", "List-AllUtils", "0.02", "0", "0"
"liblist-compare-perl", "List-Compare", "0.37", "0", "0"
"liblist-maker-perl", "List-Maker", "0.0.5", "0", "0"
"liblist-moreutils-perl", "List-MoreUtils", "0.25~02", "4", "0"
"liblist-utilsby-perl", "List-UtilsBy", "0.07", "0", "0"
"liblivejournal-perl", "http://forbidden.dough.net/~archon/lj/LiveJournal-1.3.tar.gz", "1.3", "0", "4"
"libload-perl", "load", "0.19", "0", "0"
"liblocal-lib-perl", "local-lib", "1.008004", "1", "0"
"liblocale-currency-format-perl", "Locale-Currency-Format", "1.28", "0", "1"
"liblocale-gettext-perl", "gettext", "1.05", "1", "2"
"liblocale-hebrew-perl", "Locale-Hebrew", "1.04", "0", "0"
"liblocale-maketext-fuzzy-perl", "Locale-Maketext-Fuzzy", "0.10", "0", "0"
"liblocale-maketext-gettext-perl", "Locale-Maketext-Gettext", "1.28", "0", "0"
"liblocale-maketext-lexicon-perl", "Locale-Maketext-Lexicon", "0.82", "0", "0"
"liblocale-maketext-simple-perl", "Locale-Maketext-Simple", "0.21", "0", "0"
"liblocale-msgfmt-perl", "Locale-Msgfmt", "0.14", "0", "0"
"liblocale-subcountry-perl", "Locale-SubCountry", "1.47", "0", "0"
"liblocale-us-perl", "Locale-US", "1.2", "0", "0"
"liblocales-perl", "Locales", "0.16", "0", "1"
"liblockfile-simple-perl", "LockFile-Simple", "0.207", "2", "2"
"liblog-agent-logger-perl", "Log-Agent-Logger", "0.1.1", "0", "0"
"liblog-agent-perl", "Log-Agent", "0.307", "0", "1"
"liblog-agent-rotate-perl", "Log-Agent-Rotate", "0.104", "0", "0"
"liblog-any-adapter-dispatch-perl", "Log-Any-Adapter-Dispatch", "0.06", "0", "1"
"liblog-any-adapter-perl", "Log-Any-Adapter", "0.03", "0", "1"
"liblog-contextual-perl", "Log-Contextual", "0.00304", "0", "0"
"liblog-dispatch-array-perl", "Log-Dispatch-Array", "1.001", "0", "0"
"liblog-dispatch-perl", "Log-Dispatch", "2.29", "0", "0"
"liblog-dispatchouli-perl", "Log-Dispatchouli", "2.005", "0", "0"
"liblog-handler-perl", "Log-Handler", "0.71", "0", "0"
"liblog-loglite-perl", "Log-LogLite", "0.82", "0", "1"
"liblog-trace-perl", "Log-Trace", "1.070", "1", "0"
"liblog-tracemessages-perl", "Log-TraceMessages", "1.4", "0", "0"
"liblogger-syslog-perl", "Logger-Syslog", "1.1", "1", "0"
"liblwp-authen-wsse-perl", "LWP-Authen-Wsse", "0.05", "0", "0"
"liblwp-mediatypes-perl", "LWP-MediaTypes", "6.01", "0", "0"
"liblwp-online-perl", "LWP-Online", "1.07", "1", "0"
"liblwp-protocol-http-socketunix-perl", "LWP-Protocol-http-SocketUnix", "0.02", "0", "0"
"liblwp-protocol-https-perl", "LWP-Protocol-https", "not-uploaded", "0", "2"
"liblwp-protocol-socks-perl", "LWP-Protocol-socks", "1.3", "0", "0"
"liblwp-useragent-determined-perl", "LWP-UserAgent-Determined", "1.05", "0", "1"
"libmail-box-perl", "Mail-Box", "2.098", "2", "2"
"libmail-bulkmail-perl", "Mail-Bulkmail", "3.12", "0", "0"
"libmail-cclient-perl", "Mail-Cclient", "1.12", "2", "1"
"libmail-deliverystatus-bounceparser-perl", "Mail-DeliveryStatus-BounceParser", "1.527", "0", "0"
"libmail-gnupg-perl", "Mail-GnuPG", "0.16", "0", "1"
"libmail-imapclient-perl", "Mail-IMAPClient", "3.28", "0", "0"
"libmail-imaptalk-perl", "Mail-IMAPTalk", "1.03", "0", "0"
"libmail-listdetector-perl", "Mail-ListDetector", "1.03", "0", "0"
"libmail-mbox-messageparser-perl", "Mail-Mbox-MessageParser", "1.5002", "0", "3"
"libmail-mboxparser-perl", "Mail-MboxParser", "0.55", "3", "1"
"libmail-rfc822-address-perl", "Mail-RFC822-Address", "0.3", "1", "0"
"libmail-sendeasy-perl", "Mail-SendEasy", "1.2", "1", "2"
"libmail-sendmail-perl", "Mail-Sendmail", "0.79.16", "1", "2"
"libmail-srs-perl", "Mail-SRS", "0.31", "0", "0"
"libmail-thread-perl", "Mail-Thread", "2.55", "0", "0"
"libmail-verp-perl", "Mail-Verp", "0.06", "0", "0"
"libmakefile-dom-perl", "Makefile-DOM", "0.004", "0", "1"
"libmakefile-parser-perl", "Makefile-Parser", "0.211", "0", "1"
"libmarc-charset-perl", "MARC-Charset", "1.31", "1", "0"