Snippets

sironekotoro migrate_modules.txt

Created by sironekotoro
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
Migrating 5.26.0 to 5.28.0
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100  295k  100  295k    0     0   379k      0 --:--:-- --:--:-- --:--:--  379k
App::cpanminus is up to date. (1.7044)
Acme::Nyaa is up to date. (0.0.10)
--> Working on Acme::SuddenlyDeath
Fetching http://www.cpan.org/authors/id/P/PA/PAPIX/Acme-SuddenlyDeath-0.09.tar.gz ... OK
Configuring Acme-SuddenlyDeath-0.09 ... OK
==> Found dependencies: Text::VisualWidth
--> Working on Text::VisualWidth
Fetching http://www.cpan.org/authors/id/N/NA/NANZOU/Text-VisualWidth-0.02.tar.gz ... OK
Configuring Text-VisualWidth-0.02 ... OK
Building and testing Text-VisualWidth-0.02 ... OK
Successfully installed Text-VisualWidth-0.02
Building and testing Acme-SuddenlyDeath-0.09 ... OK
Successfully installed Acme-SuddenlyDeath-0.09
--> Working on Acme::YAPC::Okinawa::Bus
Fetching http://www.cpan.org/authors/id/A/AN/ANATOFUZ/Acme-YAPC-Okinawa-Bus-0.02.tar.gz ... OK
==> Found dependencies: Module::Build::Tiny
--> Working on Module::Build::Tiny
Fetching http://www.cpan.org/authors/id/L/LE/LEONT/Module-Build-Tiny-0.039.tar.gz ... OK
==> Found dependencies: ExtUtils::Helpers, ExtUtils::InstallPaths, ExtUtils::Config
--> Working on ExtUtils::Helpers
Fetching http://www.cpan.org/authors/id/L/LE/LEONT/ExtUtils-Helpers-0.026.tar.gz ... OK
Configuring ExtUtils-Helpers-0.026 ... OK
Building and testing ExtUtils-Helpers-0.026 ... OK
Successfully installed ExtUtils-Helpers-0.026
--> Working on ExtUtils::InstallPaths
Fetching http://www.cpan.org/authors/id/L/LE/LEONT/ExtUtils-InstallPaths-0.012.tar.gz ... OK
Configuring ExtUtils-InstallPaths-0.012 ... OK
==> Found dependencies: ExtUtils::Config
--> Working on ExtUtils::Config
Fetching http://www.cpan.org/authors/id/L/LE/LEONT/ExtUtils-Config-0.008.tar.gz ... OK
Configuring ExtUtils-Config-0.008 ... OK
Building and testing ExtUtils-Config-0.008 ... OK
Successfully installed ExtUtils-Config-0.008
Building and testing ExtUtils-InstallPaths-0.012 ... OK
Successfully installed ExtUtils-InstallPaths-0.012
Configuring Module-Build-Tiny-0.039 ... OK
Building and testing Module-Build-Tiny-0.039 ... OK
Successfully installed Module-Build-Tiny-0.039
Configuring Acme-YAPC-Okinawa-Bus-0.02 ... OK
Building and testing Acme-YAPC-Okinawa-Bus-0.02 ... OK
Successfully installed Acme-YAPC-Okinawa-Bus-0.02
--> Working on Algorithm::Diff
Fetching http://www.cpan.org/authors/id/T/TY/TYEMQ/Algorithm-Diff-1.1903.tar.gz ... OK
Configuring Algorithm-Diff-1.1903 ... OK
Building and testing Algorithm-Diff-1.1903 ... OK
Successfully installed Algorithm-Diff-1.1903
--> Working on Aniki
Fetching http://www.cpan.org/authors/id/K/KA/KARUPA/Aniki-1.06.tar.gz ... OK
Configuring Aniki-1.06 ... OK
==> Found dependencies: SQL::QueryMaker, Data::Page::NoTotalEntries, DBIx::Handler, List::UtilsBy, Class::Inspector, Try::Tiny, Mouse, DBD::SQLite, B::Hooks::EndOfScope, DBIx::Schema::DSL, Lingua::EN::Inflect, List::MoreUtils, Test::Requires, String::CamelCase, DBI, SQL::NamedPlaceholder, namespace::autoclean, SQL::Maker::SQLType, Mouse::Util, Data::Section::Simple, SQL::Translator::Schema::Constants, Mouse::Role, SQL::Maker, Mouse::Util::TypeConstraints
--> Working on SQL::QueryMaker
Fetching http://www.cpan.org/authors/id/K/KA/KAZUHO/SQL-QueryMaker-0.03.tar.gz ... OK
Configuring SQL-QueryMaker-0.03 ... OK
==> Found dependencies: Test::Requires, Tie::IxHash, DateTime
--> Working on Test::Requires
Fetching http://www.cpan.org/authors/id/T/TO/TOKUHIROM/Test-Requires-0.10.tar.gz ... OK
Configuring Test-Requires-0.10 ... OK
Building and testing Test-Requires-0.10 ... OK
Successfully installed Test-Requires-0.10
--> Working on Tie::IxHash
Fetching http://www.cpan.org/authors/id/C/CH/CHORNY/Tie-IxHash-1.23.tar.gz ... OK
Configuring Tie-IxHash-1.23 ... OK
Building and testing Tie-IxHash-1.23 ... OK
Successfully installed Tie-IxHash-1.23
--> Working on DateTime
Fetching http://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-1.49.tar.gz ... OK
==> Found dependencies: Dist::CheckConflicts
--> Working on Dist::CheckConflicts
Fetching http://www.cpan.org/authors/id/D/DO/DOY/Dist-CheckConflicts-0.11.tar.gz ... OK
Configuring Dist-CheckConflicts-0.11 ... OK
==> Found dependencies: Module::Runtime, Test::Fatal
--> Working on Module::Runtime
Fetching http://www.cpan.org/authors/id/Z/ZE/ZEFRAM/Module-Runtime-0.016.tar.gz ... OK
Configuring Module-Runtime-0.016 ... OK
Building and testing Module-Runtime-0.016 ... OK
Successfully installed Module-Runtime-0.016
--> Working on Test::Fatal
Fetching http://www.cpan.org/authors/id/R/RJ/RJBS/Test-Fatal-0.014.tar.gz ... OK
Configuring Test-Fatal-0.014 ... OK
==> Found dependencies: Try::Tiny
--> Working on Try::Tiny
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/Try-Tiny-0.30.tar.gz ... OK
Configuring Try-Tiny-0.30 ... OK
Building and testing Try-Tiny-0.30 ... OK
Successfully installed Try-Tiny-0.30
Building and testing Test-Fatal-0.014 ... OK
Successfully installed Test-Fatal-0.014
Building and testing Dist-CheckConflicts-0.11 ... OK
Successfully installed Dist-CheckConflicts-0.11
Configuring DateTime-1.49 ... OK
==> Found dependencies: Specio, CPAN::Meta::Check, DateTime::Locale, Params::ValidationCompiler, Specio::Exporter, DateTime::TimeZone, Specio::Library::String, namespace::autoclean, Test::Warnings, Specio::Library::Numeric, Specio::Declare, Specio::Library::Builtins
--> Working on Specio
Fetching http://www.cpan.org/authors/id/D/DR/DROLSKY/Specio-0.42.tar.gz ... OK
Configuring Specio-0.42 ... OK
==> Found dependencies: Devel::StackTrace, Role::Tiny::With, Role::Tiny, Sub::Quote, Eval::Closure, MRO::Compat, Test::Needs
--> Working on Devel::StackTrace
Fetching http://www.cpan.org/authors/id/D/DR/DROLSKY/Devel-StackTrace-2.03.tar.gz ... OK
Configuring Devel-StackTrace-2.03 ... OK
Building and testing Devel-StackTrace-2.03 ... OK
Successfully installed Devel-StackTrace-2.03
--> Working on Role::Tiny::With
Fetching http://www.cpan.org/authors/id/H/HA/HAARG/Role-Tiny-2.000006.tar.gz ... OK
Configuring Role-Tiny-2.000006 ... OK
Building and testing Role-Tiny-2.000006 ... OK
Successfully installed Role-Tiny-2.000006
--> Working on Sub::Quote
Fetching http://www.cpan.org/authors/id/H/HA/HAARG/Sub-Quote-2.005001.tar.gz ... OK
Configuring Sub-Quote-2.005001 ... OK
Building and testing Sub-Quote-2.005001 ... OK
Successfully installed Sub-Quote-2.005001
--> Working on Eval::Closure
Fetching http://www.cpan.org/authors/id/D/DO/DOY/Eval-Closure-0.14.tar.gz ... OK
Configuring Eval-Closure-0.14 ... OK
Building and testing Eval-Closure-0.14 ... OK
Successfully installed Eval-Closure-0.14
--> Working on MRO::Compat
Fetching http://www.cpan.org/authors/id/H/HA/HAARG/MRO-Compat-0.13.tar.gz ... OK
Configuring MRO-Compat-0.13 ... OK
Building and testing MRO-Compat-0.13 ... OK
Successfully installed MRO-Compat-0.13
--> Working on Test::Needs
Fetching http://www.cpan.org/authors/id/H/HA/HAARG/Test-Needs-0.002005.tar.gz ... OK
Configuring Test-Needs-0.002005 ... OK
Building and testing Test-Needs-0.002005 ... OK
Successfully installed Test-Needs-0.002005
Building and testing Specio-0.42 ... OK
Successfully installed Specio-0.42
--> Working on CPAN::Meta::Check
Fetching http://www.cpan.org/authors/id/L/LE/LEONT/CPAN-Meta-Check-0.014.tar.gz ... OK
Configuring CPAN-Meta-Check-0.014 ... OK
==> Found dependencies: Test::Deep
--> Working on Test::Deep
Fetching http://www.cpan.org/authors/id/R/RJ/RJBS/Test-Deep-1.128.tar.gz ... OK
Configuring Test-Deep-1.128 ... OK
Building and testing Test-Deep-1.128 ... OK
Successfully installed Test-Deep-1.128
Building and testing CPAN-Meta-Check-0.014 ... OK
Successfully installed CPAN-Meta-Check-0.014
--> Working on DateTime::Locale
Fetching http://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-Locale-1.22.tar.gz ... OK
==> Found dependencies: File::ShareDir::Install
--> Working on File::ShareDir::Install
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/File-ShareDir-Install-0.13.tar.gz ... OK
Configuring File-ShareDir-Install-0.13 ... OK
Building and testing File-ShareDir-Install-0.13 ... OK
Successfully installed File-ShareDir-Install-0.13
Configuring DateTime-Locale-1.22 ... OK
==> Found dependencies: namespace::autoclean, IPC::System::Simple, Test::Warnings, Test::File::ShareDir::Dist, Params::ValidationCompiler, File::ShareDir
--> Working on namespace::autoclean
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/namespace-autoclean-0.28.tar.gz ... OK
Configuring namespace-autoclean-0.28 ... OK
==> Found dependencies: namespace::clean, Sub::Identify, B::Hooks::EndOfScope
--> Working on namespace::clean
Fetching http://www.cpan.org/authors/id/R/RI/RIBASUSHI/namespace-clean-0.27.tar.gz ... OK
Configuring namespace-clean-0.27 ... OK
==> Found dependencies: B::Hooks::EndOfScope, Package::Stash
--> Working on B::Hooks::EndOfScope
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/B-Hooks-EndOfScope-0.24.tar.gz ... OK
Configuring B-Hooks-EndOfScope-0.24 ... OK
==> Found dependencies: Variable::Magic, Module::Implementation, Sub::Exporter::Progressive
--> Working on Variable::Magic
Fetching http://www.cpan.org/authors/id/V/VP/VPIT/Variable-Magic-0.62.tar.gz ... OK
Configuring Variable-Magic-0.62 ... OK
Building and testing Variable-Magic-0.62 ... OK
Successfully installed Variable-Magic-0.62
--> Working on Module::Implementation
Fetching http://www.cpan.org/authors/id/D/DR/DROLSKY/Module-Implementation-0.09.tar.gz ... OK
Configuring Module-Implementation-0.09 ... OK
Building and testing Module-Implementation-0.09 ... OK
Successfully installed Module-Implementation-0.09
--> Working on Sub::Exporter::Progressive
Fetching http://www.cpan.org/authors/id/F/FR/FREW/Sub-Exporter-Progressive-0.001013.tar.gz ... OK
Configuring Sub-Exporter-Progressive-0.001013 ... OK
Building and testing Sub-Exporter-Progressive-0.001013 ... OK
Successfully installed Sub-Exporter-Progressive-0.001013
Building and testing B-Hooks-EndOfScope-0.24 ... OK
Successfully installed B-Hooks-EndOfScope-0.24
--> Working on Package::Stash
Fetching http://www.cpan.org/authors/id/D/DO/DOY/Package-Stash-0.37.tar.gz ... OK
Configuring Package-Stash-0.37 ... OK
==> Found dependencies: Package::Stash::XS
--> Working on Package::Stash::XS
Fetching http://www.cpan.org/authors/id/D/DO/DOY/Package-Stash-XS-0.28.tar.gz ... OK
Configuring Package-Stash-XS-0.28 ... OK
Building and testing Package-Stash-XS-0.28 ... OK
Successfully installed Package-Stash-XS-0.28
Building and testing Package-Stash-0.37 ... OK
Successfully installed Package-Stash-0.37
Building and testing namespace-clean-0.27 ... OK
Successfully installed namespace-clean-0.27
--> Working on Sub::Identify
Fetching http://www.cpan.org/authors/id/R/RG/RGARCIA/Sub-Identify-0.14.tar.gz ... OK
Configuring Sub-Identify-0.14 ... OK
Building and testing Sub-Identify-0.14 ... OK
Successfully installed Sub-Identify-0.14
Building and testing namespace-autoclean-0.28 ... OK
Successfully installed namespace-autoclean-0.28
--> Working on IPC::System::Simple
Fetching http://www.cpan.org/authors/id/P/PJ/PJF/IPC-System-Simple-1.25.tar.gz ... OK
Configuring IPC-System-Simple-1.25 ... OK
Building and testing IPC-System-Simple-1.25 ... OK
Successfully installed IPC-System-Simple-1.25
--> Working on Test::Warnings
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/Test-Warnings-0.026.tar.gz ... OK
Configuring Test-Warnings-0.026 ... OK
Building and testing Test-Warnings-0.026 ... OK
Successfully installed Test-Warnings-0.026
--> Working on Test::File::ShareDir::Dist
Fetching http://www.cpan.org/authors/id/K/KE/KENTNL/Test-File-ShareDir-1.001002.tar.gz ... OK
Configuring Test-File-ShareDir-1.001002 ... OK
==> Found dependencies: File::ShareDir, Class::Tiny, Scope::Guard, Path::Tiny, File::Copy::Recursive
--> Working on File::ShareDir
Fetching http://www.cpan.org/authors/id/R/RE/REHSACK/File-ShareDir-1.116.tar.gz ... OK
Configuring File-ShareDir-1.116 ... OK
==> Found dependencies: Class::Inspector
--> Working on Class::Inspector
Fetching http://www.cpan.org/authors/id/P/PL/PLICEASE/Class-Inspector-1.32.tar.gz ... OK
Configuring Class-Inspector-1.32 ... OK
Building and testing Class-Inspector-1.32 ... OK
Successfully installed Class-Inspector-1.32
Building and testing File-ShareDir-1.116 ... OK
Successfully installed File-ShareDir-1.116
--> Working on Class::Tiny
Fetching http://www.cpan.org/authors/id/D/DA/DAGOLDEN/Class-Tiny-1.006.tar.gz ... OK
Configuring Class-Tiny-1.006 ... OK
Building and testing Class-Tiny-1.006 ... OK
Successfully installed Class-Tiny-1.006
--> Working on Scope::Guard
Fetching http://www.cpan.org/authors/id/C/CH/CHOCOLATE/Scope-Guard-0.21.tar.gz ... OK
Configuring Scope-Guard-0.21 ... OK
Building and testing Scope-Guard-0.21 ... OK
Successfully installed Scope-Guard-0.21
--> Working on Path::Tiny
Fetching http://www.cpan.org/authors/id/D/DA/DAGOLDEN/Path-Tiny-0.104.tar.gz ... OK
Configuring Path-Tiny-0.104 ... OK
Building and testing Path-Tiny-0.104 ... OK
Successfully installed Path-Tiny-0.104
--> Working on File::Copy::Recursive
Fetching http://www.cpan.org/authors/id/D/DM/DMUEY/File-Copy-Recursive-0.44.tar.gz ... OK
Configuring File-Copy-Recursive-0.44 ... OK
==> Found dependencies: Test::File
--> Working on Test::File
Fetching http://www.cpan.org/authors/id/B/BD/BDFOY/Test-File-1.443.tar.gz ... OK
Configuring Test-File-1.443 ... OK
==> Found dependencies: Test::utf8
--> Working on Test::utf8
Fetching http://www.cpan.org/authors/id/M/MA/MARKF/Test-utf8-1.01.tar.gz ... OK
Configuring Test-utf8-1.01 ... OK
Building and testing Test-utf8-1.01 ... OK
Successfully installed Test-utf8-1.01
Building and testing Test-File-1.443 ... OK
Successfully installed Test-File-1.443
Building and testing File-Copy-Recursive-0.44 ... OK
Successfully installed File-Copy-Recursive-0.44
Building and testing Test-File-ShareDir-1.001002 ... OK
Successfully installed Test-File-ShareDir-1.001002
--> Working on Params::ValidationCompiler
Fetching http://www.cpan.org/authors/id/D/DR/DROLSKY/Params-ValidationCompiler-0.27.tar.gz ... OK
Configuring Params-ValidationCompiler-0.27 ... OK
==> Found dependencies: Exception::Class, Test2::V0, Test::Without::Module, Test2::Plugin::NoWarnings, Test2::Require::Module
--> Working on Exception::Class
Fetching http://www.cpan.org/authors/id/D/DR/DROLSKY/Exception-Class-1.44.tar.gz ... OK
Configuring Exception-Class-1.44 ... OK
==> Found dependencies: Class::Data::Inheritable
--> Working on Class::Data::Inheritable
Fetching http://www.cpan.org/authors/id/T/TM/TMTM/Class-Data-Inheritable-0.08.tar.gz ... OK
Configuring Class-Data-Inheritable-0.08 ... OK
Building and testing Class-Data-Inheritable-0.08 ... OK
Successfully installed Class-Data-Inheritable-0.08
Building and testing Exception-Class-1.44 ... OK
Successfully installed Exception-Class-1.44
--> Working on Test2::V0
Fetching http://www.cpan.org/authors/id/E/EX/EXODIST/Test2-Suite-0.000114.tar.gz ... OK
Configuring Test2-Suite-0.000114 ... OK
==> Found dependencies: Importer, Term::Table, Test2::API, Module::Pluggable, Sub::Info
--> Working on Importer
Fetching http://www.cpan.org/authors/id/E/EX/EXODIST/Importer-0.025.tar.gz ... OK
Configuring Importer-0.025 ... OK
Building and testing Importer-0.025 ... OK
Successfully installed Importer-0.025
--> Working on Term::Table
Fetching http://www.cpan.org/authors/id/E/EX/EXODIST/Term-Table-0.012.tar.gz ... OK
Configuring Term-Table-0.012 ... OK
Building and testing Term-Table-0.012 ... OK
Successfully installed Term-Table-0.012
--> Working on Test2::API
Fetching http://www.cpan.org/authors/id/E/EX/EXODIST/Test-Simple-1.302136.tar.gz ... OK
Configuring Test-Simple-1.302136 ... OK
Building and testing Test-Simple-1.302136 ... OK
Successfully installed Test-Simple-1.302136 (upgraded from 1.302133)
--> Working on Module::Pluggable
Fetching http://www.cpan.org/authors/id/S/SI/SIMONW/Module-Pluggable-5.2.tar.gz ... OK
Configuring Module-Pluggable-5.2 ... OK
Building and testing Module-Pluggable-5.2 ... OK
Successfully installed Module-Pluggable-5.2
--> Working on Sub::Info
Fetching http://www.cpan.org/authors/id/E/EX/EXODIST/Sub-Info-0.002.tar.gz ... OK
Configuring Sub-Info-0.002 ... OK
Building and testing Sub-Info-0.002 ... OK
Successfully installed Sub-Info-0.002
Building and testing Test2-Suite-0.000114 ... OK
Successfully installed Test2-Suite-0.000114
--> Working on Test::Without::Module
Fetching http://www.cpan.org/authors/id/C/CO/CORION/Test-Without-Module-0.20.tar.gz ... OK
Configuring Test-Without-Module-0.20 ... OK
Building and testing Test-Without-Module-0.20 ... OK
Successfully installed Test-Without-Module-0.20
--> Working on Test2::Plugin::NoWarnings
Fetching http://www.cpan.org/authors/id/D/DR/DROLSKY/Test2-Plugin-NoWarnings-0.06.tar.gz ... OK
Configuring Test2-Plugin-NoWarnings-0.06 ... OK
==> Found dependencies: IPC::Run3
--> Working on IPC::Run3
Fetching http://www.cpan.org/authors/id/R/RJ/RJBS/IPC-Run3-0.048.tar.gz ... OK
Configuring IPC-Run3-0.048 ... OK
Building and testing IPC-Run3-0.048 ... OK
Successfully installed IPC-Run3-0.048
Building and testing Test2-Plugin-NoWarnings-0.06 ... OK
Successfully installed Test2-Plugin-NoWarnings-0.06
Building and testing Params-ValidationCompiler-0.27 ... OK
Successfully installed Params-ValidationCompiler-0.27
Building and testing DateTime-Locale-1.22 ... OK
Successfully installed DateTime-Locale-1.22
--> Working on DateTime::TimeZone
Fetching http://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-TimeZone-2.19.tar.gz ... OK
Configuring DateTime-TimeZone-2.19 ... OK
==> Found dependencies: Class::Singleton
--> Working on Class::Singleton
Fetching http://www.cpan.org/authors/id/S/SH/SHAY/Class-Singleton-1.5.tar.gz ... OK
Configuring Class-Singleton-1.5 ... OK
Building and testing Class-Singleton-1.5 ... OK
Successfully installed Class-Singleton-1.5
Building and testing DateTime-TimeZone-2.19 ... OK
Successfully installed DateTime-TimeZone-2.19
Building and testing DateTime-1.49 ... OK
Successfully installed DateTime-1.49
Building and testing SQL-QueryMaker-0.03 ... OK
Successfully installed SQL-QueryMaker-0.03
--> Working on Data::Page::NoTotalEntries
Fetching http://www.cpan.org/authors/id/T/TO/TOKUHIROM/Data-Page-NoTotalEntries-0.02.tar.gz ... OK
Configuring Data-Page-NoTotalEntries-0.02 ... OK
==> Found dependencies: Class::Accessor::Lite
--> Working on Class::Accessor::Lite
Fetching http://www.cpan.org/authors/id/K/KA/KAZUHO/Class-Accessor-Lite-0.08.tar.gz ... OK
Configuring Class-Accessor-Lite-0.08 ... OK
Building and testing Class-Accessor-Lite-0.08 ... OK
Successfully installed Class-Accessor-Lite-0.08
Building and testing Data-Page-NoTotalEntries-0.02 ... OK
Successfully installed Data-Page-NoTotalEntries-0.02
--> Working on DBIx::Handler
Fetching http://www.cpan.org/authors/id/K/KA/KARUPA/DBIx-Handler-0.14.tar.gz ... OK
Configuring DBIx-Handler-0.14 ... OK
==> Found dependencies: Test::SharedFork, DBI, DBIx::TransactionManager
--> Working on Test::SharedFork
Fetching http://www.cpan.org/authors/id/E/EX/EXODIST/Test-SharedFork-0.35.tar.gz ... OK
Configuring Test-SharedFork-0.35 ... OK
Building and testing Test-SharedFork-0.35 ... OK
Successfully installed Test-SharedFork-0.35
--> Working on DBI
Fetching http://www.cpan.org/authors/id/T/TI/TIMB/DBI-1.641.tar.gz ... OK
Configuring DBI-1.641 ... OK
Building and testing DBI-1.641 ... OK
Successfully installed DBI-1.641
--> Working on DBIx::TransactionManager
Fetching http://www.cpan.org/authors/id/N/NE/NEKOKAK/DBIx-TransactionManager-1.13.tar.gz ... OK
Configuring DBIx-TransactionManager-1.13 ... OK
Building and testing DBIx-TransactionManager-1.13 ... OK
Successfully installed DBIx-TransactionManager-1.13
Building and testing DBIx-Handler-0.14 ... OK
Successfully installed DBIx-Handler-0.14
--> Working on List::UtilsBy
Fetching http://www.cpan.org/authors/id/P/PE/PEVANS/List-UtilsBy-0.11.tar.gz ... OK
Configuring List-UtilsBy-0.11 ... OK
Building and testing List-UtilsBy-0.11 ... OK
Successfully installed List-UtilsBy-0.11
--> Working on Mouse
Fetching http://www.cpan.org/authors/id/S/SK/SKAJI/Mouse-v2.5.4.tar.gz ... OK
==> Found dependencies: Devel::PPPort, Module::Build::XSUtil
--> Working on Devel::PPPort
Fetching http://www.cpan.org/authors/id/X/XS/XSAWYERX/Devel-PPPort-3.42.tar.gz ... OK
Configuring Devel-PPPort-3.42 ... OK
Building and testing Devel-PPPort-3.42 ... OK
Successfully installed Devel-PPPort-3.42 (upgraded from 3.40)
--> Working on Module::Build::XSUtil
Fetching http://www.cpan.org/authors/id/H/HI/HIDEAKIO/Module-Build-XSUtil-0.19.tar.gz ... OK
Configuring Module-Build-XSUtil-0.19 ... OK
==> Found dependencies: Devel::CheckCompiler, Capture::Tiny, File::Copy::Recursive::Reduced, Cwd::Guard
--> Working on Devel::CheckCompiler
Fetching http://www.cpan.org/authors/id/S/SY/SYOHEX/Devel-CheckCompiler-0.07.tar.gz ... OK
Configuring Devel-CheckCompiler-0.07 ... OK
Building and testing Devel-CheckCompiler-0.07 ... OK
Successfully installed Devel-CheckCompiler-0.07
--> Working on Capture::Tiny
Fetching http://www.cpan.org/authors/id/D/DA/DAGOLDEN/Capture-Tiny-0.48.tar.gz ... OK
Configuring Capture-Tiny-0.48 ... OK
Building and testing Capture-Tiny-0.48 ... OK
Successfully installed Capture-Tiny-0.48
--> Working on File::Copy::Recursive::Reduced
Fetching http://www.cpan.org/authors/id/J/JK/JKEENAN/File-Copy-Recursive-Reduced-0.006.tar.gz ... OK
Configuring File-Copy-Recursive-Reduced-0.006 ... OK
Building and testing File-Copy-Recursive-Reduced-0.006 ... OK
Successfully installed File-Copy-Recursive-Reduced-0.006
--> Working on Cwd::Guard
Fetching http://www.cpan.org/authors/id/K/KA/KAZEBURO/Cwd-Guard-0.05.tar.gz ... OK
Configuring Cwd-Guard-0.05 ... OK
Building and testing Cwd-Guard-0.05 ... OK
Successfully installed Cwd-Guard-0.05
Building and testing Module-Build-XSUtil-0.19 ... OK
Successfully installed Module-Build-XSUtil-0.19
Configuring Mouse-v2.5.4 ... OK
==> Found dependencies: Test::Exception, Test::LeakTrace, Test::Output
--> Working on Test::Exception
Fetching http://www.cpan.org/authors/id/E/EX/EXODIST/Test-Exception-0.43.tar.gz ... OK
Configuring Test-Exception-0.43 ... OK
==> Found dependencies: Sub::Uplevel
--> Working on Sub::Uplevel
Fetching http://www.cpan.org/authors/id/D/DA/DAGOLDEN/Sub-Uplevel-0.2800.tar.gz ... OK
Configuring Sub-Uplevel-0.2800 ... OK
Building and testing Sub-Uplevel-0.2800 ... OK
Successfully installed Sub-Uplevel-0.2800
Building and testing Test-Exception-0.43 ... OK
Successfully installed Test-Exception-0.43
--> Working on Test::LeakTrace
Fetching http://www.cpan.org/authors/id/L/LE/LEEJO/Test-LeakTrace-0.16.tar.gz ... OK
Configuring Test-LeakTrace-0.16 ... OK
Building and testing Test-LeakTrace-0.16 ... OK
Successfully installed Test-LeakTrace-0.16
--> Working on Test::Output
Fetching http://www.cpan.org/authors/id/B/BD/BDFOY/Test-Output-1.031.tar.gz ... OK
Configuring Test-Output-1.031 ... OK
Building and testing Test-Output-1.031 ... OK
Successfully installed Test-Output-1.031
Building and testing Mouse-v2.5.4 ... OK
Successfully installed Mouse-v2.5.4
--> Working on DBD::SQLite
Fetching http://www.cpan.org/authors/id/I/IS/ISHIGAKI/DBD-SQLite-1.58.tar.gz ... OK
Configuring DBD-SQLite-1.58 ... OK
Building and testing DBD-SQLite-1.58 ... OK
Successfully installed DBD-SQLite-1.58
--> Working on DBIx::Schema::DSL
Fetching http://www.cpan.org/authors/id/S/SO/SONGMU/DBIx-Schema-DSL-0.12.tar.gz ... OK
Configuring DBIx-Schema-DSL-0.12 ... OK
==> Found dependencies: Clone, SQL::Translator, Array::Diff, Moo
--> Working on Clone
Fetching http://www.cpan.org/authors/id/G/GA/GARU/Clone-0.39.tar.gz ... OK
Configuring Clone-0.39 ... OK
Building and testing Clone-0.39 ... OK
Successfully installed Clone-0.39
--> Working on SQL::Translator
Fetching http://www.cpan.org/authors/id/I/IL/ILMARI/SQL-Translator-0.11024.tar.gz ... OK
Configuring SQL-Translator-0.11024 ... OK
==> Found dependencies: YAML, Package::Variant, JSON, Moo, Test::Differences, XML::Writer, Parse::RecDescent, Carp::Clan
--> Working on YAML
Fetching http://www.cpan.org/authors/id/T/TI/TINITA/YAML-1.26.tar.gz ... OK
Configuring YAML-1.26 ... OK
==> Found dependencies: Test::YAML
--> Working on Test::YAML
Fetching http://www.cpan.org/authors/id/T/TI/TINITA/Test-YAML-1.07.tar.gz ... OK
Configuring Test-YAML-1.07 ... OK
==> Found dependencies: Test::Base
--> Working on Test::Base
Fetching http://www.cpan.org/authors/id/I/IN/INGY/Test-Base-0.89.tar.gz ... OK
Configuring Test-Base-0.89 ... OK
==> Found dependencies: Text::Diff, Spiffy
--> Working on Text::Diff
Fetching http://www.cpan.org/authors/id/N/NE/NEILB/Text-Diff-1.45.tar.gz ... OK
Configuring Text-Diff-1.45 ... OK
Building and testing Text-Diff-1.45 ... OK
Successfully installed Text-Diff-1.45
--> Working on Spiffy
Fetching http://www.cpan.org/authors/id/I/IN/INGY/Spiffy-0.46.tar.gz ... OK
Configuring Spiffy-0.46 ... OK
Building and testing Spiffy-0.46 ... OK
Successfully installed Spiffy-0.46
Building and testing Test-Base-0.89 ... OK
Successfully installed Test-Base-0.89
Building and testing Test-YAML-1.07 ... OK
Successfully installed Test-YAML-1.07
Building and testing YAML-1.26 ... OK
Successfully installed YAML-1.26
--> Working on Package::Variant
Fetching http://www.cpan.org/authors/id/M/MS/MSTROUT/Package-Variant-1.003002.tar.gz ... OK
Configuring Package-Variant-1.003002 ... OK
==> Found dependencies: strictures, Import::Into
--> Working on strictures
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/strictures-2.000005.tar.gz ... OK
Configuring strictures-2.000005 ... OK
==> Found dependencies: indirect, bareword::filehandles, multidimensional
--> Working on indirect
Fetching http://www.cpan.org/authors/id/V/VP/VPIT/indirect-0.38.tar.gz ... OK
Configuring indirect-0.38 ... OK
Building and testing indirect-0.38 ... OK
Successfully installed indirect-0.38
--> Working on bareword::filehandles
Fetching http://www.cpan.org/authors/id/I/IL/ILMARI/bareword-filehandles-0.006.tar.gz ... OK
==> Found dependencies: ExtUtils::Depends, B::Hooks::OP::Check
--> Working on ExtUtils::Depends
Fetching http://www.cpan.org/authors/id/X/XA/XAOC/ExtUtils-Depends-0.405.tar.gz ... OK
Configuring ExtUtils-Depends-0.405 ... OK
Building and testing ExtUtils-Depends-0.405 ... OK
Successfully installed ExtUtils-Depends-0.405
--> Working on B::Hooks::OP::Check
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/B-Hooks-OP-Check-0.22.tar.gz ... OK
Configuring B-Hooks-OP-Check-0.22 ... OK
Building and testing B-Hooks-OP-Check-0.22 ... OK
Successfully installed B-Hooks-OP-Check-0.22
Configuring bareword-filehandles-0.006 ... OK
Building and testing bareword-filehandles-0.006 ... OK
Successfully installed bareword-filehandles-0.006
--> Working on multidimensional
Fetching http://www.cpan.org/authors/id/I/IL/ILMARI/multidimensional-0.014.tar.gz ... OK
Configuring multidimensional-0.014 ... OK
Building and testing multidimensional-0.014 ... OK
Successfully installed multidimensional-0.014
Building and testing strictures-2.000005 ... OK
Successfully installed strictures-2.000005
--> Working on Import::Into
Fetching http://www.cpan.org/authors/id/H/HA/HAARG/Import-Into-1.002005.tar.gz ... OK
Configuring Import-Into-1.002005 ... OK
Building and testing Import-Into-1.002005 ... OK
Successfully installed Import-Into-1.002005
Building and testing Package-Variant-1.003002 ... OK
Successfully installed Package-Variant-1.003002
--> Working on JSON
Fetching http://www.cpan.org/authors/id/I/IS/ISHIGAKI/JSON-2.97001.tar.gz ... OK
Configuring JSON-2.97001 ... OK
Building and testing JSON-2.97001 ... OK
Successfully installed JSON-2.97001
--> Working on Moo
Fetching http://www.cpan.org/authors/id/H/HA/HAARG/Moo-2.003004.tar.gz ... OK
Configuring Moo-2.003004 ... OK
==> Found dependencies: Devel::GlobalDestruction, Class::Method::Modifiers
--> Working on Devel::GlobalDestruction
Fetching http://www.cpan.org/authors/id/H/HA/HAARG/Devel-GlobalDestruction-0.14.tar.gz ... OK
Configuring Devel-GlobalDestruction-0.14 ... OK
Building and testing Devel-GlobalDestruction-0.14 ... OK
Successfully installed Devel-GlobalDestruction-0.14
--> Working on Class::Method::Modifiers
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/Class-Method-Modifiers-2.12.tar.gz ... OK
Configuring Class-Method-Modifiers-2.12 ... OK
Building and testing Class-Method-Modifiers-2.12 ... OK
Successfully installed Class-Method-Modifiers-2.12
Building and testing Moo-2.003004 ... OK
Successfully installed Moo-2.003004
--> Working on Test::Differences
Fetching http://www.cpan.org/authors/id/D/DC/DCANTRELL/Test-Differences-0.64.tar.gz ... OK
Configuring Test-Differences-0.64 ... OK
Building and testing Test-Differences-0.64 ... OK
Successfully installed Test-Differences-0.64
--> Working on XML::Writer
Fetching http://www.cpan.org/authors/id/J/JO/JOSEPHW/XML-Writer-0.625.tar.gz ... OK
Configuring XML-Writer-0.625 ... OK
Building and testing XML-Writer-0.625 ... OK
Successfully installed XML-Writer-0.625
--> Working on Parse::RecDescent
Fetching http://www.cpan.org/authors/id/J/JT/JTBRAUN/Parse-RecDescent-1.967015.tar.gz ... OK
Configuring Parse-RecDescent-1.967015 ... OK
Building and testing Parse-RecDescent-1.967015 ... OK
Successfully installed Parse-RecDescent-1.967015
--> Working on Carp::Clan
Fetching http://www.cpan.org/authors/id/K/KE/KENTNL/Carp-Clan-6.06.tar.gz ... OK
Configuring Carp-Clan-6.06 ... OK
Building and testing Carp-Clan-6.06 ... OK
Successfully installed Carp-Clan-6.06
Building and testing SQL-Translator-0.11024 ... OK
Successfully installed SQL-Translator-0.11024
--> Working on Array::Diff
Fetching http://www.cpan.org/authors/id/T/TY/TYPESTER/Array-Diff-0.07.tar.gz ... OK
Configuring Array-Diff-0.07 ... OK
==> Found dependencies: Class::Accessor::Fast
--> Working on Class::Accessor::Fast
Fetching http://www.cpan.org/authors/id/K/KA/KASEI/Class-Accessor-0.51.tar.gz ... OK
Configuring Class-Accessor-0.51 ... OK
Building and testing Class-Accessor-0.51 ... OK
Successfully installed Class-Accessor-0.51
Building and testing Array-Diff-0.07 ... OK
Successfully installed Array-Diff-0.07
Building and testing DBIx-Schema-DSL-0.12 ... OK
Successfully installed DBIx-Schema-DSL-0.12
--> Working on Lingua::EN::Inflect
Fetching http://www.cpan.org/authors/id/D/DC/DCONWAY/Lingua-EN-Inflect-1.903.tar.gz ... OK
Configuring Lingua-EN-Inflect-1.903 ... OK
Building and testing Lingua-EN-Inflect-1.903 ... OK
Successfully installed Lingua-EN-Inflect-1.903
--> Working on List::MoreUtils
Fetching http://www.cpan.org/authors/id/R/RE/REHSACK/List-MoreUtils-0.428.tar.gz ... OK
Configuring List-MoreUtils-0.428 ... OK
==> Found dependencies: List::MoreUtils::XS, Exporter::Tiny
--> Working on List::MoreUtils::XS
Fetching http://www.cpan.org/authors/id/R/RE/REHSACK/List-MoreUtils-XS-0.428.tar.gz ... OK
Configuring List-MoreUtils-XS-0.428 ... OK
Building and testing List-MoreUtils-XS-0.428 ... OK
Successfully installed List-MoreUtils-XS-0.428
--> Working on Exporter::Tiny
Fetching http://www.cpan.org/authors/id/T/TO/TOBYINK/Exporter-Tiny-1.000000.tar.gz ... OK
Configuring Exporter-Tiny-1.000000 ... OK
Building and testing Exporter-Tiny-1.000000 ... OK
Successfully installed Exporter-Tiny-1.000000
Building and testing List-MoreUtils-0.428 ... OK
Successfully installed List-MoreUtils-0.428
--> Working on String::CamelCase
Fetching http://www.cpan.org/authors/id/H/HI/HIO/String-CamelCase-0.04.tar.gz ... OK
Configuring String-CamelCase-0.04 ... OK
Building and testing String-CamelCase-0.04 ... OK
Successfully installed String-CamelCase-0.04
--> Working on SQL::NamedPlaceholder
Fetching http://www.cpan.org/authors/id/S/SA/SATOH/SQL-NamedPlaceholder-0.10.tar.gz ... OK
Configuring SQL-NamedPlaceholder-0.10 ... OK
==> Found dependencies: Exporter::Lite
--> Working on Exporter::Lite
Fetching http://www.cpan.org/authors/id/N/NE/NEILB/Exporter-Lite-0.08.tar.gz ... OK
Configuring Exporter-Lite-0.08 ... OK
Building and testing Exporter-Lite-0.08 ... OK
Successfully installed Exporter-Lite-0.08
Building and testing SQL-NamedPlaceholder-0.10 ... OK
Successfully installed SQL-NamedPlaceholder-0.10
--> Working on SQL::Maker::SQLType
Fetching http://www.cpan.org/authors/id/T/TO/TOKUHIROM/SQL-Maker-1.21.tar.gz ... OK
Configuring SQL-Maker-1.21 ... OK
Building and testing SQL-Maker-1.21 ... OK
Successfully installed SQL-Maker-1.21
--> Working on Data::Section::Simple
Fetching http://www.cpan.org/authors/id/M/MI/MIYAGAWA/Data-Section-Simple-0.07.tar.gz ... OK
Configuring Data-Section-Simple-0.07 ... OK
Building and testing Data-Section-Simple-0.07 ... OK
Successfully installed Data-Section-Simple-0.07
Building and testing Aniki-1.06 ... OK
Successfully installed Aniki-1.06
--> Working on Any::Moose
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/Any-Moose-0.27.tar.gz ... OK
Configuring Any-Moose-0.27 ... OK
Building and testing Any-Moose-0.27 ... OK
Successfully installed Any-Moose-0.27
--> Working on AnyEvent
Fetching http://www.cpan.org/authors/id/M/ML/MLEHMANN/AnyEvent-7.14.tar.gz ... OK
==> Found dependencies: Canary::Stability
--> Working on Canary::Stability
Fetching http://www.cpan.org/authors/id/M/ML/MLEHMANN/Canary-Stability-2012.tar.gz ... OK
Configuring Canary-Stability-2012 ... OK
Building and testing Canary-Stability-2012 ... OK
Successfully installed Canary-Stability-2012
Configuring AnyEvent-7.14 ... OK
Building and testing AnyEvent-7.14 ... OK
Successfully installed AnyEvent-7.14
--> Working on AnyEvent::HTTP
Fetching http://www.cpan.org/authors/id/M/ML/MLEHMANN/AnyEvent-HTTP-2.23.tar.gz ... OK
Configuring AnyEvent-HTTP-2.23 ... OK
==> Found dependencies: common::sense
--> Working on common::sense
Fetching http://www.cpan.org/authors/id/M/ML/MLEHMANN/common-sense-3.74.tar.gz ... OK
Configuring common-sense-3.74 ... OK
Building and testing common-sense-3.74 ... OK
Successfully installed common-sense-3.74
Building and testing AnyEvent-HTTP-2.23 ... OK
Successfully installed AnyEvent-HTTP-2.23
--> Working on Apache::LogFormat::Compiler
Fetching http://www.cpan.org/authors/id/K/KA/KAZEBURO/Apache-LogFormat-Compiler-0.35.tar.gz ... OK
Configuring Apache-LogFormat-Compiler-0.35 ... OK
==> Found dependencies: HTTP::Request::Common, Test::MockTime, URI::Escape, POSIX::strftime::Compiler
--> Working on HTTP::Request::Common
Fetching http://www.cpan.org/authors/id/O/OA/OALDERS/HTTP-Message-6.18.tar.gz ... OK
Configuring HTTP-Message-6.18 ... OK
==> Found dependencies: IO::HTML, HTTP::Date, Encode::Locale, LWP::MediaTypes, URI
--> Working on IO::HTML
Fetching http://www.cpan.org/authors/id/C/CJ/CJM/IO-HTML-1.001.tar.gz ... OK
Configuring IO-HTML-1.001 ... OK
Building and testing IO-HTML-1.001 ... OK
Successfully installed IO-HTML-1.001
--> Working on HTTP::Date
Fetching http://www.cpan.org/authors/id/G/GA/GAAS/HTTP-Date-6.02.tar.gz ... OK
Configuring HTTP-Date-6.02 ... OK
Building and testing HTTP-Date-6.02 ... OK
Successfully installed HTTP-Date-6.02
--> Working on Encode::Locale
Fetching http://www.cpan.org/authors/id/G/GA/GAAS/Encode-Locale-1.05.tar.gz ... OK
Configuring Encode-Locale-1.05 ... OK
Building and testing Encode-Locale-1.05 ... OK
Successfully installed Encode-Locale-1.05
--> Working on LWP::MediaTypes
Fetching http://www.cpan.org/authors/id/G/GA/GAAS/LWP-MediaTypes-6.02.tar.gz ... OK
Configuring LWP-MediaTypes-6.02 ... OK
Building and testing LWP-MediaTypes-6.02 ... OK
Successfully installed LWP-MediaTypes-6.02
--> Working on URI
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/URI-1.74.tar.gz ... OK
Configuring URI-1.74 ... OK
Building and testing URI-1.74 ... OK
Successfully installed URI-1.74
Building and testing HTTP-Message-6.18 ... OK
Successfully installed HTTP-Message-6.18
--> Working on Test::MockTime
Fetching http://www.cpan.org/authors/id/D/DD/DDICK/Test-MockTime-0.17.tar.gz ... OK
Configuring Test-MockTime-0.17 ... OK
Building and testing Test-MockTime-0.17 ... OK
Successfully installed Test-MockTime-0.17
--> Working on POSIX::strftime::Compiler
Fetching http://www.cpan.org/authors/id/K/KA/KAZEBURO/POSIX-strftime-Compiler-0.42.tar.gz ... OK
Configuring POSIX-strftime-Compiler-0.42 ... OK
Building and testing POSIX-strftime-Compiler-0.42 ... OK
Successfully installed POSIX-strftime-Compiler-0.42
Building and testing Apache-LogFormat-Compiler-0.35 ... OK
Successfully installed Apache-LogFormat-Compiler-0.35
--> Working on App::FatPacker
Fetching http://www.cpan.org/authors/id/M/MS/MSTROUT/App-FatPacker-0.010007.tar.gz ... OK
Configuring App-FatPacker-0.010007 ... OK
Building and testing App-FatPacker-0.010007 ... OK
Successfully installed App-FatPacker-0.010007
--> Working on App::PPE
Fetching http://www.cpan.org/authors/id/K/KF/KFLY/App-PPE-0.04.tar.gz ... OK
Configuring App-PPE-0.04 ... OK
==> Found dependencies: Parse::ErrorString::Perl
--> Working on Parse::ErrorString::Perl
Fetching http://www.cpan.org/authors/id/M/MA/MANWAR/Parse-ErrorString-Perl-0.27.tar.gz ... OK
Configuring Parse-ErrorString-Perl-0.27 ... OK
==> Found dependencies: Pod::POM, Class::XSAccessor
--> Working on Pod::POM
Fetching http://www.cpan.org/authors/id/N/NE/NEILB/Pod-POM-2.01.tar.gz ... OK
Configuring Pod-POM-2.01 ... OK
==> Found dependencies: File::Slurper
--> Working on File::Slurper
Fetching http://www.cpan.org/authors/id/L/LE/LEONT/File-Slurper-0.012.tar.gz ... OK
Configuring File-Slurper-0.012 ... OK
Building and testing File-Slurper-0.012 ... OK
Successfully installed File-Slurper-0.012
Building and testing Pod-POM-2.01 ... OK
Successfully installed Pod-POM-2.01
--> Working on Class::XSAccessor
Fetching http://www.cpan.org/authors/id/S/SM/SMUELLER/Class-XSAccessor-1.19.tar.gz ... OK
Configuring Class-XSAccessor-1.19 ... OK
Building and testing Class-XSAccessor-1.19 ... OK
Successfully installed Class-XSAccessor-1.19
Building and testing Parse-ErrorString-Perl-0.27 ... OK
Successfully installed Parse-ErrorString-Perl-0.27
Building and testing App-PPE-0.04 ... OK
Successfully installed App-PPE-0.04
--> Working on App::Wallflower
Fetching http://www.cpan.org/authors/id/B/BO/BOOK/App-Wallflower-1.008.tar.gz ... OK
Configuring App-Wallflower-1.008 ... OK
==> Found dependencies: Plack::Request, Plack::Util, HTTP::Headers::Fast, Plack::App::URLMap, HTML::LinkExtor, Path::Class
--> Working on Plack::Request
Fetching http://www.cpan.org/authors/id/M/MI/MIYAGAWA/Plack-1.0047.tar.gz ... OK
Configuring Plack-1.0047 ... OK
==> Found dependencies: HTTP::Headers::Fast, Test::TCP, HTTP::Entity::Parser, Devel::StackTrace::AsHTML, Hash::MultiValue, Filesys::Notify::Simple, WWW::Form::UrlEncoded, Stream::Buffered, Cookie::Baker
--> Working on HTTP::Headers::Fast
Fetching http://www.cpan.org/authors/id/T/TO/TOKUHIROM/HTTP-Headers-Fast-0.21.tar.gz ... OK
Configuring HTTP-Headers-Fast-0.21 ... OK
Building and testing HTTP-Headers-Fast-0.21 ... OK
Successfully installed HTTP-Headers-Fast-0.21
--> Working on Test::TCP
Fetching http://www.cpan.org/authors/id/T/TO/TOKUHIROM/Test-TCP-2.19.tar.gz ... OK
Configuring Test-TCP-2.19 ... OK
Building and testing Test-TCP-2.19 ... OK
Successfully installed Test-TCP-2.19
--> Working on HTTP::Entity::Parser
Fetching http://www.cpan.org/authors/id/K/KA/KAZEBURO/HTTP-Entity-Parser-0.21.tar.gz ... OK
Configuring HTTP-Entity-Parser-0.21 ... OK
==> Found dependencies: Stream::Buffered, HTTP::MultiPartParser, Hash::MultiValue, WWW::Form::UrlEncoded, JSON::MaybeXS
--> Working on Stream::Buffered
Fetching http://www.cpan.org/authors/id/D/DO/DOY/Stream-Buffered-0.03.tar.gz ... OK
Configuring Stream-Buffered-0.03 ... OK
Building and testing Stream-Buffered-0.03 ... OK
Successfully installed Stream-Buffered-0.03
--> Working on HTTP::MultiPartParser
Fetching http://www.cpan.org/authors/id/C/CH/CHANSEN/HTTP-MultiPartParser-0.02.tar.gz ... OK
Configuring HTTP-MultiPartParser-0.02 ... OK
Building and testing HTTP-MultiPartParser-0.02 ... OK
Successfully installed HTTP-MultiPartParser-0.02
--> Working on Hash::MultiValue
Fetching http://www.cpan.org/authors/id/A/AR/ARISTOTLE/Hash-MultiValue-0.16.tar.gz ... OK
Configuring Hash-MultiValue-0.16 ... OK
Building and testing Hash-MultiValue-0.16 ... OK
Successfully installed Hash-MultiValue-0.16
--> Working on WWW::Form::UrlEncoded
Fetching http://www.cpan.org/authors/id/K/KA/KAZEBURO/WWW-Form-UrlEncoded-0.24.tar.gz ... OK
Configuring WWW-Form-UrlEncoded-0.24 ... OK
Building and testing WWW-Form-UrlEncoded-0.24 ... OK
Successfully installed WWW-Form-UrlEncoded-0.24
--> Working on JSON::MaybeXS
Fetching http://www.cpan.org/authors/id/H/HA/HAARG/JSON-MaybeXS-1.004000.tar.gz ... OK
Configuring JSON-MaybeXS-1.004000 ... OK
==> Found dependencies: Cpanel::JSON::XS
--> Working on Cpanel::JSON::XS
Fetching http://www.cpan.org/authors/id/R/RU/RURBAN/Cpanel-JSON-XS-4.04.tar.gz ... OK
Configuring Cpanel-JSON-XS-4.04 ... OK
Building and testing Cpanel-JSON-XS-4.04 ... OK
Successfully installed Cpanel-JSON-XS-4.04
Building and testing JSON-MaybeXS-1.004000 ... OK
Successfully installed JSON-MaybeXS-1.004000
Building and testing HTTP-Entity-Parser-0.21 ... OK
Successfully installed HTTP-Entity-Parser-0.21
--> Working on Devel::StackTrace::AsHTML
Fetching http://www.cpan.org/authors/id/M/MI/MIYAGAWA/Devel-StackTrace-AsHTML-0.15.tar.gz ... OK
Configuring Devel-StackTrace-AsHTML-0.15 ... OK
Building and testing Devel-StackTrace-AsHTML-0.15 ... OK
Successfully installed Devel-StackTrace-AsHTML-0.15
--> Working on Filesys::Notify::Simple
Fetching http://www.cpan.org/authors/id/M/MI/MIYAGAWA/Filesys-Notify-Simple-0.13.tar.gz ... OK
Configuring Filesys-Notify-Simple-0.13 ... OK
Building and testing Filesys-Notify-Simple-0.13 ... OK
Successfully installed Filesys-Notify-Simple-0.13
--> Working on Cookie::Baker
Fetching http://www.cpan.org/authors/id/K/KA/KAZEBURO/Cookie-Baker-0.09.tar.gz ... OK
Configuring Cookie-Baker-0.09 ... OK
==> Found dependencies: Test::Time
--> Working on Test::Time
Fetching http://www.cpan.org/authors/id/S/SA/SATOH/Test-Time-0.06.tar.gz ... OK
Configuring Test-Time-0.06 ... OK
Building and testing Test-Time-0.06 ... OK
Successfully installed Test-Time-0.06
Building and testing Cookie-Baker-0.09 ... OK
Successfully installed Cookie-Baker-0.09
Building and testing Plack-1.0047 ... OK
Successfully installed Plack-1.0047
--> Working on HTML::LinkExtor
Fetching http://www.cpan.org/authors/id/G/GA/GAAS/HTML-Parser-3.72.tar.gz ... OK
Configuring HTML-Parser-3.72 ... OK
==> Found dependencies: HTML::Tagset
--> Working on HTML::Tagset
Fetching http://www.cpan.org/authors/id/P/PE/PETDANCE/HTML-Tagset-3.20.tar.gz ... OK
Configuring HTML-Tagset-3.20 ... OK
Building and testing HTML-Tagset-3.20 ... OK
Successfully installed HTML-Tagset-3.20
Building and testing HTML-Parser-3.72 ... OK
Successfully installed HTML-Parser-3.72
--> Working on Path::Class
Fetching http://www.cpan.org/authors/id/K/KW/KWILLIAMS/Path-Class-0.37.tar.gz ... OK
Configuring Path-Class-0.37 ... OK
Building and testing Path-Class-0.37 ... OK
Successfully installed Path-Class-0.37
Building and testing App-Wallflower-1.008 ... OK
Successfully installed App-Wallflower-1.008
App::cpanminus is up to date. (1.7044)
--> Working on App::cpanminus::reporter
Fetching http://www.cpan.org/authors/id/G/GA/GARU/App-cpanminus-reporter-0.17.tar.gz ... OK
Configuring App-cpanminus-reporter-0.17 ... OK
==> Found dependencies: CPAN::Testers::Common::Client, Metabase::Resource, File::HomeDir, IO::Prompt::Tiny, Config::Tiny, Test::Reporter, LWP::Protocol::https, Test::Reporter::Transport::Metabase
--> Working on CPAN::Testers::Common::Client
Fetching http://www.cpan.org/authors/id/G/GA/GARU/CPAN-Testers-Common-Client-0.14.tar.gz ... OK
Configuring CPAN-Testers-Common-Client-0.14 ... OK
==> Found dependencies: File::HomeDir, Probe::Perl, Devel::Platform::Info
--> Working on File::HomeDir
Fetching http://www.cpan.org/authors/id/R/RE/REHSACK/File-HomeDir-1.004.tar.gz ... OK
Configuring File-HomeDir-1.004 ... OK
==> Found dependencies: File::Which, Mac::SystemDirectory
--> Working on File::Which
Fetching http://www.cpan.org/authors/id/P/PL/PLICEASE/File-Which-1.22.tar.gz ... OK
Configuring File-Which-1.22 ... OK
Building and testing File-Which-1.22 ... OK
Successfully installed File-Which-1.22
--> Working on Mac::SystemDirectory
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/Mac-SystemDirectory-0.10.tar.gz ... OK
Configuring Mac-SystemDirectory-0.10 ... OK
Building and testing Mac-SystemDirectory-0.10 ... OK
Successfully installed Mac-SystemDirectory-0.10
Building and testing File-HomeDir-1.004 ... OK
Successfully installed File-HomeDir-1.004
--> Working on Probe::Perl
Fetching http://www.cpan.org/authors/id/K/KW/KWILLIAMS/Probe-Perl-0.03.tar.gz ... OK
Configuring Probe-Perl-0.03 ... OK
Building and testing Probe-Perl-0.03 ... OK
Successfully installed Probe-Perl-0.03
--> Working on Devel::Platform::Info
Fetching http://www.cpan.org/authors/id/B/BA/BARBIE/Devel-Platform-Info-0.16.tar.gz ... OK
Configuring Devel-Platform-Info-0.16 ... OK
Building and testing Devel-Platform-Info-0.16 ... OK
Successfully installed Devel-Platform-Info-0.16
Building and testing CPAN-Testers-Common-Client-0.14 ... OK
Successfully installed CPAN-Testers-Common-Client-0.14
--> Working on Metabase::Resource
Fetching http://www.cpan.org/authors/id/D/DA/DAGOLDEN/Metabase-Fact-0.025.tar.gz ... OK
Configuring Metabase-Fact-0.025 ... OK
==> Found dependencies: IO::Prompt::Tiny, Data::GUID, CPAN::DistnameInfo
--> Working on IO::Prompt::Tiny
Fetching http://www.cpan.org/authors/id/D/DA/DAGOLDEN/IO-Prompt-Tiny-0.003.tar.gz ... OK
Configuring IO-Prompt-Tiny-0.003 ... OK
Building and testing IO-Prompt-Tiny-0.003 ... OK
Successfully installed IO-Prompt-Tiny-0.003
--> Working on Data::GUID
Fetching http://www.cpan.org/authors/id/R/RJ/RJBS/Data-GUID-0.049.tar.gz ... OK
Configuring Data-GUID-0.049 ... OK
==> Found dependencies: Data::UUID, Sub::Install, Sub::Exporter
--> Working on Data::UUID
Fetching http://www.cpan.org/authors/id/R/RJ/RJBS/Data-UUID-1.221.tar.gz ... OK
Configuring Data-UUID-1.221 ... OK
Building and testing Data-UUID-1.221 ... OK
Successfully installed Data-UUID-1.221
--> Working on Sub::Install
Fetching http://www.cpan.org/authors/id/R/RJ/RJBS/Sub-Install-0.928.tar.gz ... OK
Configuring Sub-Install-0.928 ... OK
Building and testing Sub-Install-0.928 ... OK
Successfully installed Sub-Install-0.928
--> Working on Sub::Exporter
Fetching http://www.cpan.org/authors/id/R/RJ/RJBS/Sub-Exporter-0.987.tar.gz ... OK
Configuring Sub-Exporter-0.987 ... OK
==> Found dependencies: Params::Util, Data::OptList
--> Working on Params::Util
Fetching http://www.cpan.org/authors/id/A/AD/ADAMK/Params-Util-1.07.tar.gz ... OK
Configuring Params-Util-1.07 ... OK
Building and testing Params-Util-1.07 ... OK
Successfully installed Params-Util-1.07
--> Working on Data::OptList
Fetching http://www.cpan.org/authors/id/R/RJ/RJBS/Data-OptList-0.110.tar.gz ... OK
Configuring Data-OptList-0.110 ... OK
Building and testing Data-OptList-0.110 ... OK
Successfully installed Data-OptList-0.110
Building and testing Sub-Exporter-0.987 ... OK
Successfully installed Sub-Exporter-0.987
Building and testing Data-GUID-0.049 ... OK
Successfully installed Data-GUID-0.049
--> Working on CPAN::DistnameInfo
Fetching http://www.cpan.org/authors/id/G/GB/GBARR/CPAN-DistnameInfo-0.12.tar.gz ... OK
Configuring CPAN-DistnameInfo-0.12 ... OK
Building and testing CPAN-DistnameInfo-0.12 ... OK
Successfully installed CPAN-DistnameInfo-0.12
Building and testing Metabase-Fact-0.025 ... OK
Successfully installed Metabase-Fact-0.025
--> Working on Config::Tiny
Fetching http://www.cpan.org/authors/id/R/RS/RSAVAGE/Config-Tiny-2.23.tgz ... OK
Configuring Config-Tiny-2.23 ... OK
Building and testing Config-Tiny-2.23 ... OK
Successfully installed Config-Tiny-2.23
--> Working on Test::Reporter
Fetching http://www.cpan.org/authors/id/D/DA/DAGOLDEN/Test-Reporter-1.62.tar.gz ... OK
Configuring Test-Reporter-1.62 ... OK
Building and testing Test-Reporter-1.62 ... OK
Successfully installed Test-Reporter-1.62
--> Working on LWP::Protocol::https
Fetching http://www.cpan.org/authors/id/O/OA/OALDERS/LWP-Protocol-https-6.07.tar.gz ... OK
Configuring LWP-Protocol-https-6.07 ... OK
==> Found dependencies: IO::Socket::SSL, Mozilla::CA, Net::HTTPS, LWP::UserAgent, Test::RequiresInternet
--> Working on IO::Socket::SSL
Fetching http://www.cpan.org/authors/id/S/SU/SULLR/IO-Socket-SSL-2.056.tar.gz ... OK
Configuring IO-Socket-SSL-2.056 ... OK
==> Found dependencies: Net::SSLeay, Mozilla::CA
--> Working on Net::SSLeay
Fetching http://www.cpan.org/authors/id/M/MI/MIKEM/Net-SSLeay-1.85.tar.gz ... OK
Configuring Net-SSLeay-1.85 ... OK
Building and testing Net-SSLeay-1.85 ... OK
Successfully installed Net-SSLeay-1.85
--> Working on Mozilla::CA
Fetching http://www.cpan.org/authors/id/A/AB/ABH/Mozilla-CA-20180117.tar.gz ... OK
Configuring Mozilla-CA-20180117 ... OK
Building and testing Mozilla-CA-20180117 ... OK
Successfully installed Mozilla-CA-20180117
Building and testing IO-Socket-SSL-2.056 ... OK
Successfully installed IO-Socket-SSL-2.056
--> Working on Net::HTTPS
Fetching http://www.cpan.org/authors/id/O/OA/OALDERS/Net-HTTP-6.18.tar.gz ... OK
Configuring Net-HTTP-6.18 ... OK
Building and testing Net-HTTP-6.18 ... OK
Successfully installed Net-HTTP-6.18
--> Working on LWP::UserAgent
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/libwww-perl-6.34.tar.gz ... OK
Configuring libwww-perl-6.34 ... OK
==> Found dependencies: WWW::RobotRules, File::Listing, HTTP::Daemon, HTTP::Cookies, HTTP::Negotiate, Test::RequiresInternet
--> Working on WWW::RobotRules
Fetching http://www.cpan.org/authors/id/G/GA/GAAS/WWW-RobotRules-6.02.tar.gz ... OK
Configuring WWW-RobotRules-6.02 ... OK
Building and testing WWW-RobotRules-6.02 ... OK
Successfully installed WWW-RobotRules-6.02
--> Working on File::Listing
Fetching http://www.cpan.org/authors/id/G/GA/GAAS/File-Listing-6.04.tar.gz ... OK
Configuring File-Listing-6.04 ... OK
Building and testing File-Listing-6.04 ... OK
Successfully installed File-Listing-6.04
--> Working on HTTP::Daemon
Fetching http://www.cpan.org/authors/id/G/GA/GAAS/HTTP-Daemon-6.01.tar.gz ... OK
Configuring HTTP-Daemon-6.01 ... OK
Building and testing HTTP-Daemon-6.01 ... OK
Successfully installed HTTP-Daemon-6.01
--> Working on HTTP::Cookies
Fetching http://www.cpan.org/authors/id/O/OA/OALDERS/HTTP-Cookies-6.04.tar.gz ... OK
Configuring HTTP-Cookies-6.04 ... OK
Building and testing HTTP-Cookies-6.04 ... OK
Successfully installed HTTP-Cookies-6.04
--> Working on HTTP::Negotiate
Fetching http://www.cpan.org/authors/id/G/GA/GAAS/HTTP-Negotiate-6.01.tar.gz ... OK
Configuring HTTP-Negotiate-6.01 ... OK
Building and testing HTTP-Negotiate-6.01 ... OK
Successfully installed HTTP-Negotiate-6.01
--> Working on Test::RequiresInternet
Fetching http://www.cpan.org/authors/id/M/MA/MALLEN/Test-RequiresInternet-0.05.tar.gz ... OK
Configuring Test-RequiresInternet-0.05 ... OK
Building and testing Test-RequiresInternet-0.05 ... OK
Successfully installed Test-RequiresInternet-0.05
Building and testing libwww-perl-6.34 ... OK
Successfully installed libwww-perl-6.34
Building and testing LWP-Protocol-https-6.07 ... OK
Successfully installed LWP-Protocol-https-6.07
--> Working on Test::Reporter::Transport::Metabase
Fetching http://www.cpan.org/authors/id/D/DA/DAGOLDEN/Test-Reporter-Transport-Metabase-1.999010.tar.gz ... OK
Configuring Test-Reporter-Transport-Metabase-1.999010 ... OK
==> Found dependencies: CPAN::Testers::Report, Metabase::Client::Simple
--> Working on CPAN::Testers::Report
Fetching http://www.cpan.org/authors/id/D/DA/DAGOLDEN/CPAN-Testers-Report-1.999003.tar.gz ... OK
Configuring CPAN-Testers-Report-1.999003 ... OK
Building and testing CPAN-Testers-Report-1.999003 ... OK
Successfully installed CPAN-Testers-Report-1.999003
--> Working on Metabase::Client::Simple
Fetching http://www.cpan.org/authors/id/D/DA/DAGOLDEN/Metabase-Client-Simple-0.012.tar.gz ... OK
Configuring Metabase-Client-Simple-0.012 ... OK
Building and testing Metabase-Client-Simple-0.012 ... OK
Successfully installed Metabase-Client-Simple-0.012
Building and testing Test-Reporter-Transport-Metabase-1.999010 ... OK
Successfully installed Test-Reporter-Transport-Metabase-1.999010
Building and testing App-cpanminus-reporter-0.17 ... OK
Successfully installed App-cpanminus-reporter-0.17
--> Working on App::cpm
Fetching http://www.cpan.org/authors/id/S/SK/SKAJI/App-cpm-0.974.tar.gz ... OK
Configuring App-cpm-0.974 ... OK
==> Found dependencies: Command::Runner, local::lib, Menlo::CLI::Compat, Parallel::Pipes, File::pushd, CPAN::Common::Index, HTTP::Tinyish, Module::CPANfile
--> Working on Command::Runner
Fetching http://www.cpan.org/authors/id/S/SK/SKAJI/Command-Runner-0.101.tar.gz ... OK
Configuring Command-Runner-0.101 ... OK
==> Found dependencies: String::ShellQuote, Win32::ShellQuote
--> Working on String::ShellQuote
Fetching http://www.cpan.org/authors/id/R/RO/ROSCH/String-ShellQuote-1.04.tar.gz ... OK
Configuring String-ShellQuote-1.04 ... OK
Building and testing String-ShellQuote-1.04 ... OK
Successfully installed String-ShellQuote-1.04
--> Working on Win32::ShellQuote
Fetching http://www.cpan.org/authors/id/H/HA/HAARG/Win32-ShellQuote-0.003001.tar.gz ... OK
Configuring Win32-ShellQuote-0.003001 ... OK
Building and testing Win32-ShellQuote-0.003001 ... OK
Successfully installed Win32-ShellQuote-0.003001
Building and testing Command-Runner-0.101 ... OK
Successfully installed Command-Runner-0.101
--> Working on local::lib
Fetching http://www.cpan.org/authors/id/H/HA/HAARG/local-lib-2.000024.tar.gz ... OK
Configuring local-lib-2.000024 ... OK
Building and testing local-lib-2.000024 ... OK
Successfully installed local-lib-2.000024
--> Working on Menlo::CLI::Compat
Fetching http://www.cpan.org/authors/id/M/MI/MIYAGAWA/Menlo-Legacy-1.9022.tar.gz ... OK
Configuring Menlo-Legacy-1.9022 ... OK
==> Found dependencies: Menlo
--> Working on Menlo
Fetching http://www.cpan.org/authors/id/M/MI/MIYAGAWA/Menlo-1.9019.tar.gz ... OK
Configuring Menlo-1.9019 ... OK
==> Found dependencies: Module::CPANfile, CPAN::Common::Index, File::pushd, Parse::PMFile, HTTP::Tinyish
--> Working on Module::CPANfile
Fetching http://www.cpan.org/authors/id/M/MI/MIYAGAWA/Module-CPANfile-1.1004.tar.gz ... OK
Configuring Module-CPANfile-1.1004 ... OK
==> Found dependencies: File::pushd
--> Working on File::pushd
Fetching http://www.cpan.org/authors/id/D/DA/DAGOLDEN/File-pushd-1.016.tar.gz ... OK
Configuring File-pushd-1.016 ... OK
Building and testing File-pushd-1.016 ... OK
Successfully installed File-pushd-1.016
Building and testing Module-CPANfile-1.1004 ... OK
Successfully installed Module-CPANfile-1.1004
--> Working on CPAN::Common::Index
Fetching http://www.cpan.org/authors/id/D/DA/DAGOLDEN/CPAN-Common-Index-0.010.tar.gz ... OK
Configuring CPAN-Common-Index-0.010 ... OK
==> Found dependencies: Test::FailWarnings, Tie::Handle::SkipHeader
--> Working on Test::FailWarnings
Fetching http://www.cpan.org/authors/id/D/DA/DAGOLDEN/Test-FailWarnings-0.008.tar.gz ... OK
Configuring Test-FailWarnings-0.008 ... OK
Building and testing Test-FailWarnings-0.008 ... OK
Successfully installed Test-FailWarnings-0.008
--> Working on Tie::Handle::SkipHeader
Fetching http://www.cpan.org/authors/id/D/DA/DAGOLDEN/Tie-Handle-Offset-0.004.tar.gz ... OK
Configuring Tie-Handle-Offset-0.004 ... OK
Building and testing Tie-Handle-Offset-0.004 ... OK
Successfully installed Tie-Handle-Offset-0.004
Building and testing CPAN-Common-Index-0.010 ... OK
Successfully installed CPAN-Common-Index-0.010
--> Working on Parse::PMFile
Fetching http://www.cpan.org/authors/id/I/IS/ISHIGAKI/Parse-PMFile-0.41.tar.gz ... OK
==> Found dependencies: ExtUtils::MakeMaker::CPANfile
--> Working on ExtUtils::MakeMaker::CPANfile
Fetching http://www.cpan.org/authors/id/I/IS/ISHIGAKI/ExtUtils-MakeMaker-CPANfile-0.08.tar.gz ... OK
Configuring ExtUtils-MakeMaker-CPANfile-0.08 ... OK
Building and testing ExtUtils-MakeMaker-CPANfile-0.08 ... OK
Successfully installed ExtUtils-MakeMaker-CPANfile-0.08
Configuring Parse-PMFile-0.41 ... OK
Building and testing Parse-PMFile-0.41 ... OK
Successfully installed Parse-PMFile-0.41
--> Working on HTTP::Tinyish
Fetching http://www.cpan.org/authors/id/M/MI/MIYAGAWA/HTTP-Tinyish-0.14.tar.gz ... OK
Configuring HTTP-Tinyish-0.14 ... OK
Building and testing HTTP-Tinyish-0.14 ... OK
Successfully installed HTTP-Tinyish-0.14
Building and testing Menlo-1.9019 ... OK
Successfully installed Menlo-1.9019
Building and testing Menlo-Legacy-1.9022 ... OK
Successfully installed Menlo-Legacy-1.9022
--> Working on Parallel::Pipes
Fetching http://www.cpan.org/authors/id/S/SK/SKAJI/Parallel-Pipes-0.004.tar.gz ... OK
Configuring Parallel-Pipes-0.004 ... OK
Building and testing Parallel-Pipes-0.004 ... OK
Successfully installed Parallel-Pipes-0.004
Building and testing App-cpm-0.974 ... OK
Successfully installed App-cpm-0.974
--> Working on App::revealup
Fetching http://www.cpan.org/authors/id/Y/YU/YUSUKEBE/App-revealup-0.21.tar.gz ... OK
Configuring App-revealup-0.21 ... OK
==> Found dependencies: Text::MicroTemplate, File::chdir, Test::File::Contents, MIME::Types
--> Working on Text::MicroTemplate
Fetching http://www.cpan.org/authors/id/K/KA/KAZUHO/Text-MicroTemplate-0.24.tar.gz ... OK
Configuring Text-MicroTemplate-0.24 ... OK
Building and testing Text-MicroTemplate-0.24 ... OK
Successfully installed Text-MicroTemplate-0.24
--> Working on File::chdir
Fetching http://www.cpan.org/authors/id/D/DA/DAGOLDEN/File-chdir-0.1010.tar.gz ... OK
Configuring File-chdir-0.1010 ... OK
Building and testing File-chdir-0.1010 ... OK
Successfully installed File-chdir-0.1010
--> Working on Test::File::Contents
Fetching http://www.cpan.org/authors/id/D/DW/DWHEELER/Test-File-Contents-0.23.tar.gz ... OK
Configuring Test-File-Contents-0.23 ... OK
Building and testing Test-File-Contents-0.23 ... OK
Successfully installed Test-File-Contents-0.23
--> Working on MIME::Types
Fetching http://www.cpan.org/authors/id/M/MA/MARKOV/MIME-Types-2.17.tar.gz ... OK
Configuring MIME-Types-2.17 ... OK
Building and testing MIME-Types-2.17 ... OK
Successfully installed MIME-Types-2.17
Building and testing App-revealup-0.21 ... ! Installing App::revealup failed. See /Users/hoge/.cpanm/work/1530770331.3018/build.log for details. Retry with --force to force install it.
FAIL
--> Working on AppConfig
Fetching http://www.cpan.org/authors/id/N/NE/NEILB/AppConfig-1.71.tar.gz ... OK
Configuring AppConfig-1.71 ... OK
==> Found dependencies: Test::Pod
--> Working on Test::Pod
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/Test-Pod-1.52.tar.gz ... OK
Configuring Test-Pod-1.52 ... OK
Building and testing Test-Pod-1.52 ... OK
Successfully installed Test-Pod-1.52
Building and testing AppConfig-1.71 ... OK
Successfully installed AppConfig-1.71
--> Working on Archive::Zip
Fetching http://www.cpan.org/authors/id/P/PH/PHRED/Archive-Zip-1.60.tar.gz ... OK
Configuring Archive-Zip-1.60 ... OK
==> Found dependencies: Test::MockModule
--> Working on Test::MockModule
Fetching http://www.cpan.org/authors/id/G/GF/GFRANKS/Test-MockModule-0.15.tar.gz ... OK
Configuring Test-MockModule-0.15 ... OK
==> Found dependencies: SUPER
--> Working on SUPER
Fetching http://www.cpan.org/authors/id/C/CH/CHROMATIC/SUPER-1.20141117.tar.gz ... OK
Configuring SUPER-1.20141117 ... OK
Building and testing SUPER-1.20141117 ... OK
Successfully installed SUPER-1.20141117
Building and testing Test-MockModule-0.15 ... OK
Successfully installed Test-MockModule-0.15
Building and testing Archive-Zip-1.60 ... OK
Successfully installed Archive-Zip-1.60
--> Working on Authen::SASL
Fetching http://www.cpan.org/authors/id/G/GB/GBARR/Authen-SASL-2.16.tar.gz ... OK
Configuring Authen-SASL-2.16 ... OK
==> Found dependencies: Digest::HMAC_MD5
--> Working on Digest::HMAC_MD5
Fetching http://www.cpan.org/authors/id/G/GA/GAAS/Digest-HMAC-1.03.tar.gz ... OK
Configuring Digest-HMAC-1.03 ... OK
Building and testing Digest-HMAC-1.03 ... OK
Successfully installed Digest-HMAC-1.03
Building and testing Authen-SASL-2.16 ... OK
Successfully installed Authen-SASL-2.16
--> Working on B::Keywords
Fetching http://www.cpan.org/authors/id/R/RU/RURBAN/B-Keywords-1.18.tar.gz ... OK
Configuring B-Keywords-1.18 ... OK
Building and testing B-Keywords-1.18 ... OK
Successfully installed B-Keywords-1.18
--> Working on B::Utils
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/B-Utils-0.27.tar.gz ... OK
Configuring B-Utils-0.27 ... OK
==> Found dependencies: Task::Weaken
--> Working on Task::Weaken
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/Task-Weaken-1.06.tar.gz ... OK
Configuring Task-Weaken-1.06 ... OK
Building and testing Task-Weaken-1.06 ... OK
Successfully installed Task-Weaken-1.06
Building and testing B-Utils-0.27 ... OK
Successfully installed B-Utils-0.27
--> Working on Bit::Vector
Fetching http://www.cpan.org/authors/id/S/ST/STBEY/Bit-Vector-7.4.tar.gz ... OK
Configuring Bit-Vector-7.4 ... OK
Building and testing Bit-Vector-7.4 ... OK
Successfully installed Bit-Vector-7.4
--> Working on Business::ISBN
Fetching http://www.cpan.org/authors/id/B/BD/BDFOY/Business-ISBN-3.004.tar.gz ... OK
Configuring Business-ISBN-3.004 ... OK
==> Found dependencies: Business::ISBN::Data
--> Working on Business::ISBN::Data
Fetching http://www.cpan.org/authors/id/B/BD/BDFOY/Business-ISBN-Data-20140910.003.tar.gz ... OK
Configuring Business-ISBN-Data-20140910.003 ... OK
Building and testing Business-ISBN-Data-20140910.003 ... OK
Successfully installed Business-ISBN-Data-20140910.003
Building and testing Business-ISBN-3.004 ... OK
Successfully installed Business-ISBN-3.004
--> Working on CAM::PDF
Fetching http://www.cpan.org/authors/id/C/CD/CDOLAN/CAM-PDF-1.60.tar.gz ... OK
Configuring CAM-PDF-1.60 ... OK
==> Found dependencies: Crypt::RC4, Text::PDF
--> Working on Crypt::RC4
Fetching http://www.cpan.org/authors/id/S/SI/SIFUKURT/Crypt-RC4-2.02.tar.gz ... OK
Configuring Crypt-RC4-2.02 ... OK
Building and testing Crypt-RC4-2.02 ... OK
Successfully installed Crypt-RC4-2.02
--> Working on Text::PDF
Fetching http://www.cpan.org/authors/id/B/BH/BHALLISSY/Text-PDF-0.31.tar.gz ... OK
Configuring Text-PDF-0.31 ... OK
Building and testing Text-PDF-0.31 ... OK
Successfully installed Text-PDF-0.31
Building and testing CAM-PDF-1.60 ... OK
Successfully installed CAM-PDF-1.60
--> Working on CGI
Fetching http://www.cpan.org/authors/id/L/LE/LEEJO/CGI-4.38.tar.gz ... OK
Configuring CGI-4.38 ... OK
==> Found dependencies: Test::NoWarnings, Test::Warn
--> Working on Test::NoWarnings
Fetching http://www.cpan.org/authors/id/A/AD/ADAMK/Test-NoWarnings-1.04.tar.gz ... OK
Configuring Test-NoWarnings-1.04 ... OK
Building and testing Test-NoWarnings-1.04 ... OK
Successfully installed Test-NoWarnings-1.04
--> Working on Test::Warn
Fetching http://www.cpan.org/authors/id/B/BI/BIGJ/Test-Warn-0.36.tar.gz ... OK
Configuring Test-Warn-0.36 ... OK
Building and testing Test-Warn-0.36 ... OK
Successfully installed Test-Warn-0.36
Building and testing CGI-4.38 ... OK
Successfully installed CGI-4.38
--> Working on CGI::Compile
Fetching http://www.cpan.org/authors/id/M/MI/MIYAGAWA/CGI-Compile-0.22.tar.gz ... OK
Configuring CGI-Compile-0.22 ... OK
Building and testing CGI-Compile-0.22 ... OK
Successfully installed CGI-Compile-0.22
--> Working on CGI::Emulate::PSGI
Fetching http://www.cpan.org/authors/id/T/TO/TOKUHIROM/CGI-Emulate-PSGI-0.23.tar.gz ... OK
Configuring CGI-Emulate-PSGI-0.23 ... OK
Building and testing CGI-Emulate-PSGI-0.23 ... OK
Successfully installed CGI-Emulate-PSGI-0.23
--> Working on CGI::PSGI
Fetching http://www.cpan.org/authors/id/M/MI/MIYAGAWA/CGI-PSGI-0.15.tar.gz ... OK
Configuring CGI-PSGI-0.15 ... OK
Building and testing CGI-PSGI-0.15 ... OK
Successfully installed CGI-PSGI-0.15
--> Working on CGI::Session
Fetching http://www.cpan.org/authors/id/M/MA/MARKSTOS/CGI-Session-4.48.tar.gz ... OK
Configuring CGI-Session-4.48 ... OK
Building and testing CGI-Session-4.48 ... OK
Successfully installed CGI-Session-4.48
--> Working on CPAN::Perl::Releases
Fetching http://www.cpan.org/authors/id/B/BI/BINGOS/CPAN-Perl-Releases-3.68.tar.gz ... OK
Configuring CPAN-Perl-Releases-3.68 ... OK
Building and testing CPAN-Perl-Releases-3.68 ... OK
Successfully installed CPAN-Perl-Releases-3.68
--> Working on CPAN::Perl::Releases::MetaCPAN
Fetching http://www.cpan.org/authors/id/S/SK/SKAJI/CPAN-Perl-Releases-MetaCPAN-0.006.tar.gz ... OK
Configuring CPAN-Perl-Releases-MetaCPAN-0.006 ... OK
Building and testing CPAN-Perl-Releases-MetaCPAN-0.006 ... OK
Successfully installed CPAN-Perl-Releases-MetaCPAN-0.006
--> Working on CSS::DOM
Fetching http://www.cpan.org/authors/id/S/SP/SPROUT/CSS-DOM-0.17.tar.gz ... OK
Configuring CSS-DOM-0.17 ... OK
Building and testing CSS-DOM-0.17 ... OK
Successfully installed CSS-DOM-0.17
--> Working on Calendar::Simple
Fetching http://www.cpan.org/authors/id/D/DA/DAVECROSS/Calendar-Simple-1.23.tar.gz ... OK
Configuring Calendar-Simple-1.23 ... OK
Building and testing Calendar-Simple-1.23 ... OK
Successfully installed Calendar-Simple-1.23
--> Working on Carp::Assert
Fetching http://www.cpan.org/authors/id/N/NE/NEILB/Carp-Assert-0.21.tar.gz ... OK
Configuring Carp-Assert-0.21 ... OK
Building and testing Carp-Assert-0.21 ... OK
Successfully installed Carp-Assert-0.21
--> Working on Carton
Fetching http://www.cpan.org/authors/id/M/MI/MIYAGAWA/Carton-v1.0.34.tar.gz ... OK
Configuring Carton-v1.0.34 ... OK
Building and testing Carton-v1.0.34 ... OK
Successfully installed Carton-v1.0.34
--> Working on Class::Data::Accessor
Fetching http://www.cpan.org/authors/id/C/CL/CLACO/Class-Data-Accessor-0.04004.tar.gz ... OK
Configuring Class-Data-Accessor-0.04004 ... OK
Building and testing Class-Data-Accessor-0.04004 ... OK
Successfully installed Class-Data-Accessor-0.04004
--> Working on Class::Data::ConfigHash
Fetching http://www.cpan.org/authors/id/D/DM/DMAKI/Class-Data-ConfigHash-0.00002.tar.gz ... OK
Configuring Class-Data-ConfigHash-0.00002 ... OK
Building and testing Class-Data-ConfigHash-0.00002 ... OK
Successfully installed Class-Data-ConfigHash-0.00002
--> Working on Class::Default
Fetching http://www.cpan.org/authors/id/A/AD/ADAMK/Class-Default-1.51.tar.gz ... OK
Configuring Class-Default-1.51 ... OK
Building and testing Class-Default-1.51 ... OK
Successfully installed Class-Default-1.51
--> Working on Class::ErrorHandler
Fetching http://www.cpan.org/authors/id/T/TO/TOKUHIROM/Class-ErrorHandler-0.04.tar.gz ... OK
Configuring Class-ErrorHandler-0.04 ... OK
Building and testing Class-ErrorHandler-0.04 ... OK
Successfully installed Class-ErrorHandler-0.04
--> Working on Class::Load
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/Class-Load-0.25.tar.gz ... OK
Configuring Class-Load-0.25 ... OK
Building and testing Class-Load-0.25 ... OK
Successfully installed Class-Load-0.25
--> Working on Class::Load::XS
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/Class-Load-XS-0.10.tar.gz ... OK
Configuring Class-Load-XS-0.10 ... OK
Building and testing Class-Load-XS-0.10 ... OK
Successfully installed Class-Load-XS-0.10
--> Working on Class::MethodMaker
Fetching http://www.cpan.org/authors/id/S/SC/SCHWIGON/class-methodmaker/Class-MethodMaker-2.24.tar.gz ... OK
Configuring Class-MethodMaker-2.24 ... OK
Building and testing Class-MethodMaker-2.24 ... OK
Successfully installed Class-MethodMaker-2.24
--> Working on Class::Std
Fetching http://www.cpan.org/authors/id/C/CH/CHORNY/Class-Std-0.013.tar.gz ... OK
Configuring Class-Std-0.013 ... OK
Building and testing Class-Std-0.013 ... OK
Successfully installed Class-Std-0.013
--> Working on Class::Std::Utils
Fetching http://www.cpan.org/authors/id/D/DM/DMUEY/Class-Std-Utils-v0.0.3.tar.gz ... OK
Configuring Class-Std-Utils-v0.0.3 ... OK
Building and testing Class-Std-Utils-v0.0.3 ... OK
Successfully installed Class-Std-Utils-v0.0.3
--> Working on Clone::PP
Fetching http://www.cpan.org/authors/id/N/NE/NEILB/Clone-PP-1.07.tar.gz ... OK
Configuring Clone-PP-1.07 ... OK
Building and testing Clone-PP-1.07 ... OK
Successfully installed Clone-PP-1.07
--> Working on Config::Identity
Fetching http://www.cpan.org/authors/id/D/DA/DAGOLDEN/Config-Identity-0.0019.tar.gz ... OK
Configuring Config-Identity-0.0019 ... OK
==> Found dependencies: IPC::Run
--> Working on IPC::Run
Fetching http://www.cpan.org/authors/id/T/TO/TODDR/IPC-Run-20180523.0.tar.gz ... OK
Configuring IPC-Run-20180523.0 ... OK
Building and testing IPC-Run-20180523.0 ... OK
Successfully installed IPC-Run-20180523.0
Building and testing Config-Identity-0.0019 ... OK
Successfully installed Config-Identity-0.0019
--> Working on Config::PL
Fetching http://www.cpan.org/authors/id/S/SO/SONGMU/Config-PL-0.02.tar.gz ... OK
Configuring Config-PL-0.02 ... OK
Building and testing Config-PL-0.02 ... OK
Successfully installed Config-PL-0.02
--> Working on Config::Perl::V
Fetching http://www.cpan.org/authors/id/H/HM/HMBRAND/Config-Perl-V-0.30.tgz ... OK
Configuring Config-Perl-V-0.30 ... OK
Building and testing Config-Perl-V-0.30 ... OK
Successfully installed Config-Perl-V-0.30 (upgraded from 0.29)
--> Working on Config::Pit
Fetching http://www.cpan.org/authors/id/S/SA/SATOH/Config-Pit-0.04.tar.gz ... OK
Configuring Config-Pit-0.04 ... OK
==> Found dependencies: YAML::Syck
--> Working on YAML::Syck
Fetching http://www.cpan.org/authors/id/T/TO/TODDR/YAML-Syck-1.30.tar.gz ... OK
Configuring YAML-Syck-1.30 ... OK
Building and testing YAML-Syck-1.30 ... OK
Successfully installed YAML-Syck-1.30
Building and testing Config-Pit-0.04 ... OK
Successfully installed Config-Pit-0.04
--> Working on Coro
Fetching http://www.cpan.org/authors/id/M/ML/MLEHMANN/Coro-6.514.tar.gz ... OK
Configuring Coro-6.514 ... OK
==> Found dependencies: Guard
--> Working on Guard
Fetching http://www.cpan.org/authors/id/M/ML/MLEHMANN/Guard-1.023.tar.gz ... OK
Configuring Guard-1.023 ... OK
Building and testing Guard-1.023 ... OK
Successfully installed Guard-1.023
Building and testing Coro-6.514 ... OK
Successfully installed Coro-6.514
--> Working on Corona
Fetching http://www.cpan.org/authors/id/M/MI/MIYAGAWA/Corona-0.1004.tar.gz ... OK
Configuring Corona-0.1004 ... OK
==> Found dependencies: Net::Server::Coro
--> Working on Net::Server::Coro
Fetching http://www.cpan.org/authors/id/A/AL/ALEXMV/Net-Server-Coro-1.3.tar.gz ... OK
Configuring Net-Server-Coro-1.3 ... OK
==> Found dependencies: Net::Server
--> Working on Net::Server
Fetching http://www.cpan.org/authors/id/R/RH/RHANDOM/Net-Server-2.009.tar.gz ... OK
Configuring Net-Server-2.009 ... OK
Building and testing Net-Server-2.009 ... OK
Successfully installed Net-Server-2.009
Building and testing Net-Server-Coro-1.3 ... OK
Successfully installed Net-Server-Coro-1.3
Building and testing Corona-0.1004 ... OK
Successfully installed Corona-0.1004
--> Working on Crypt::OpenSSL::RSA
Fetching http://www.cpan.org/authors/id/T/TO/TODDR/Crypt-OpenSSL-RSA-0.30.tar.gz ... OK
==> Found dependencies: Crypt::OpenSSL::Guess
--> Working on Crypt::OpenSSL::Guess
Fetching http://www.cpan.org/authors/id/A/AK/AKIYM/Crypt-OpenSSL-Guess-0.11.tar.gz ... OK
Configuring Crypt-OpenSSL-Guess-0.11 ... OK
Building and testing Crypt-OpenSSL-Guess-0.11 ... OK
Successfully installed Crypt-OpenSSL-Guess-0.11
Configuring Crypt-OpenSSL-RSA-0.30 ... OK
==> Found dependencies: Crypt::OpenSSL::Random
--> Working on Crypt::OpenSSL::Random
Fetching http://www.cpan.org/authors/id/R/RU/RURBAN/Crypt-OpenSSL-Random-0.15.tar.gz ... OK
Configuring Crypt-OpenSSL-Random-0.15 ... OK
Building and testing Crypt-OpenSSL-Random-0.15 ... OK
Successfully installed Crypt-OpenSSL-Random-0.15
Building and testing Crypt-OpenSSL-RSA-0.30 ... OK
Successfully installed Crypt-OpenSSL-RSA-0.30
--> Working on Crypt::Random::Source
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/Crypt-Random-Source-0.14.tar.gz ... OK
Configuring Crypt-Random-Source-0.14 ... OK
==> Found dependencies: Module::Find, Types::Standard
--> Working on Module::Find
Fetching http://www.cpan.org/authors/id/C/CR/CRENZ/Module-Find-0.13.tar.gz ... OK
Configuring Module-Find-0.13 ... OK
Building and testing Module-Find-0.13 ... OK
Successfully installed Module-Find-0.13
--> Working on Types::Standard
Fetching http://www.cpan.org/authors/id/T/TO/TOBYINK/Type-Tiny-1.002002.tar.gz ... OK
Configuring Type-Tiny-1.002002 ... OK
Building and testing Type-Tiny-1.002002 ... OK
Successfully installed Type-Tiny-1.002002
Building and testing Crypt-Random-Source-0.14 ... OK
Successfully installed Crypt-Random-Source-0.14
--> Working on Crypt::SSLeay
Fetching http://www.cpan.org/authors/id/N/NA/NANIS/Crypt-SSLeay-0.72.tar.gz ... OK
Configuring Crypt-SSLeay-0.72 ... OK
Building and testing Crypt-SSLeay-0.72 ... OK
Successfully installed Crypt-SSLeay-0.72
--> Working on CryptX
Fetching http://www.cpan.org/authors/id/M/MI/MIK/CryptX-0.061.tar.gz ... OK
Configuring CryptX-0.061 ... OK
Building and testing CryptX-0.061 ... OK
Successfully installed CryptX-0.061
--> Working on DBD::mysql
Fetching http://www.cpan.org/authors/id/C/CA/CAPTTOFU/DBD-mysql-4.046.tar.gz ... OK
Configuring DBD-mysql-4.046 ... OK
Building and testing DBD-mysql-4.046 ... OK
Successfully installed DBD-mysql-4.046
--> Working on DBIx::Connector
Fetching http://www.cpan.org/authors/id/D/DW/DWHEELER/DBIx-Connector-0.56.tar.gz ... OK
Configuring DBIx-Connector-0.56 ... OK
Building and testing DBIx-Connector-0.56 ... OK
Successfully installed DBIx-Connector-0.56
--> Working on DBIx::Custom
Fetching http://www.cpan.org/authors/id/K/KI/KIMOTO/DBIx-Custom-0.41.tar.gz ... OK
Configuring DBIx-Custom-0.41 ... OK
==> Found dependencies: Object::Simple
--> Working on Object::Simple
Fetching http://www.cpan.org/authors/id/K/KI/KIMOTO/Object-Simple-3.19.tar.gz ... OK
Configuring Object-Simple-3.19 ... OK
Building and testing Object-Simple-3.19 ... OK
Successfully installed Object-Simple-3.19
Building and testing DBIx-Custom-0.41 ... OK
Successfully installed DBIx-Custom-0.41
--> Working on Data::Difflet
Fetching http://www.cpan.org/authors/id/T/TO/TOKUHIROM/Data-Difflet-0.11.tar.gz ... OK
Configuring Data-Difflet-0.11 ... OK
Building and testing Data-Difflet-0.11 ... OK
Successfully installed Data-Difflet-0.11
--> Working on Data::Dump
Fetching http://www.cpan.org/authors/id/G/GA/GAAS/Data-Dump-1.23.tar.gz ... OK
Configuring Data-Dump-1.23 ... OK
Building and testing Data-Dump-1.23 ... OK
Successfully installed Data-Dump-1.23
--> Working on Data::Dump::Streamer
Fetching http://www.cpan.org/authors/id/Y/YV/YVES/Data-Dump-Streamer-2.40.tar.gz ... OK
Configuring Data-Dump-Streamer-2.40 ... OK
Building and testing Data-Dump-Streamer-2.40 ... OK
Successfully installed Data-Dump-Streamer-2.40
--> Working on Data::JavaScript::Anon
Fetching http://www.cpan.org/authors/id/A/AD/ADAMK/Data-JavaScript-Anon-1.03.tar.gz ... OK
Configuring Data-JavaScript-Anon-1.03 ... OK
Building and testing Data-JavaScript-Anon-1.03 ... OK
Successfully installed Data-JavaScript-Anon-1.03
--> Working on Data::Lock
Fetching http://www.cpan.org/authors/id/D/DA/DANKOGAI/Data-Lock-1.03.tar.gz ... OK
Configuring Data-Lock-1.03 ... OK
Building and testing Data-Lock-1.03 ... OK
Successfully installed Data-Lock-1.03
--> Working on Data::MessagePack
Fetching http://www.cpan.org/authors/id/S/SY/SYOHEX/Data-MessagePack-1.00.tar.gz ... OK
Configuring Data-MessagePack-1.00 ... OK
Building and testing Data-MessagePack-1.00 ... OK
Successfully installed Data-MessagePack-1.00
--> Working on Data::Printer
Fetching http://www.cpan.org/authors/id/G/GA/GARU/Data-Printer-0.40.tar.gz ... OK
Configuring Data-Printer-0.40 ... OK
==> Found dependencies: Sort::Naturally
--> Working on Sort::Naturally
Fetching http://www.cpan.org/authors/id/B/BI/BINGOS/Sort-Naturally-1.03.tar.gz ... OK
Configuring Sort-Naturally-1.03 ... OK
Building and testing Sort-Naturally-1.03 ... OK
Successfully installed Sort-Naturally-1.03
Building and testing Data-Printer-0.40 ... OK
Successfully installed Data-Printer-0.40
--> Working on Data::Recursive::Encode
Fetching http://www.cpan.org/authors/id/T/TO/TOKUHIROM/Data-Recursive-Encode-0.06.tar.gz ... OK
Configuring Data-Recursive-Encode-0.06 ... OK
Building and testing Data-Recursive-Encode-0.06 ... OK
Successfully installed Data-Recursive-Encode-0.06
--> Working on Data::Visitor
Fetching http://www.cpan.org/authors/id/D/DO/DOY/Data-Visitor-0.30.tar.gz ... OK
Configuring Data-Visitor-0.30 ... OK
==> Found dependencies: Tie::ToObject, Moose
--> Working on Tie::ToObject
Fetching http://www.cpan.org/authors/id/N/NU/NUFFIN/Tie-ToObject-0.03.tar.gz ... OK
Configuring Tie-ToObject-0.03 ... OK
Building and testing Tie-ToObject-0.03 ... OK
Successfully installed Tie-ToObject-0.03
--> Working on Moose
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/Moose-2.2011.tar.gz ... OK
Configuring Moose-2.2011 ... OK
==> Found dependencies: Package::DeprecationManager, Sub::Name, Test::CleanNamespaces, Devel::OverloadInfo, Module::Runtime::Conflicts
--> Working on Package::DeprecationManager
Fetching http://www.cpan.org/authors/id/D/DR/DROLSKY/Package-DeprecationManager-0.17.tar.gz ... OK
Configuring Package-DeprecationManager-0.17 ... OK
==> Found dependencies: Sub::Name
--> Working on Sub::Name
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/Sub-Name-0.21.tar.gz ... OK
Configuring Sub-Name-0.21 ... OK
Building and testing Sub-Name-0.21 ... OK
Successfully installed Sub-Name-0.21
Building and testing Package-DeprecationManager-0.17 ... OK
Successfully installed Package-DeprecationManager-0.17
--> Working on Test::CleanNamespaces
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/Test-CleanNamespaces-0.23.tar.gz ... OK
Configuring Test-CleanNamespaces-0.23 ... OK
Building and testing Test-CleanNamespaces-0.23 ... OK
Successfully installed Test-CleanNamespaces-0.23
--> Working on Devel::OverloadInfo
Fetching http://www.cpan.org/authors/id/I/IL/ILMARI/Devel-OverloadInfo-0.005.tar.gz ... OK
Configuring Devel-OverloadInfo-0.005 ... OK
Building and testing Devel-OverloadInfo-0.005 ... OK
Successfully installed Devel-OverloadInfo-0.005
--> Working on Module::Runtime::Conflicts
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/Module-Runtime-Conflicts-0.003.tar.gz ... OK
Configuring Module-Runtime-Conflicts-0.003 ... OK
Building and testing Module-Runtime-Conflicts-0.003 ... OK
Successfully installed Module-Runtime-Conflicts-0.003
Building and testing Moose-2.2011 ... OK
Successfully installed Moose-2.2011
Building and testing Data-Visitor-0.30 ... OK
Successfully installed Data-Visitor-0.30
--> Working on Date::Calc
Fetching http://www.cpan.org/authors/id/S/ST/STBEY/Date-Calc-6.4.tar.gz ... OK
Configuring Date-Calc-6.4 ... OK
Building and testing Date-Calc-6.4 ... OK
Successfully installed Date-Calc-6.4
--> Working on Date::Parse
Fetching http://www.cpan.org/authors/id/G/GB/GBARR/TimeDate-2.30.tar.gz ... OK
Configuring TimeDate-2.30 ... OK
Building and testing TimeDate-2.30 ... OK
Successfully installed TimeDate-2.30
--> Working on DateTime::Format::Mail
Fetching http://www.cpan.org/authors/id/B/BO/BOOK/DateTime-Format-Mail-0.403.tar.gz ... OK
Configuring DateTime-Format-Mail-0.403 ... OK
==> Found dependencies: Params::Validate
--> Working on Params::Validate
Fetching http://www.cpan.org/authors/id/D/DR/DROLSKY/Params-Validate-1.29.tar.gz ... OK
Configuring Params-Validate-1.29 ... OK
Building and testing Params-Validate-1.29 ... OK
Successfully installed Params-Validate-1.29
Building and testing DateTime-Format-Mail-0.403 ... OK
Successfully installed DateTime-Format-Mail-0.403
--> Working on DateTime::Format::Strptime
Fetching http://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-Format-Strptime-1.75.tar.gz ... OK
Configuring DateTime-Format-Strptime-1.75 ... OK
Building and testing DateTime-Format-Strptime-1.75 ... OK
Successfully installed DateTime-Format-Strptime-1.75
--> Working on DateTime::Format::W3CDTF
Fetching http://www.cpan.org/authors/id/G/GW/GWILLIAMS/DateTime-Format-W3CDTF-0.07.tar.gz ... OK
Configuring DateTime-Format-W3CDTF-0.06_01 ... OK
Building and testing DateTime-Format-W3CDTF-0.06_01 ... OK
Successfully installed DateTime-Format-W3CDTF-0.06_01
--> Working on Devel::Cover
Fetching http://www.cpan.org/authors/id/P/PJ/PJCJ/Devel-Cover-1.29.tar.gz ... OK
Configuring Devel-Cover-1.29 ... OK
==> Found dependencies: B::Debug
--> Working on B::Debug
Fetching http://www.cpan.org/authors/id/R/RU/RURBAN/B-Debug-1.26.tar.gz ... OK
Configuring B-Debug-1.26 ... OK
Building and testing B-Debug-1.26 ... OK
Successfully reinstalled B-Debug-1.26
Building and testing Devel-Cover-1.29 ... OK
Successfully installed Devel-Cover-1.29
--> Working on Devel::KYTProf
Fetching http://www.cpan.org/authors/id/O/ON/ONISHI/Devel-KYTProf-0.05.tar.gz ... OK
Configuring Devel-KYTProf-0.05 ... OK
==> Found dependencies: UNIVERSAL::require
--> Working on UNIVERSAL::require
Fetching http://www.cpan.org/authors/id/N/NE/NEILB/UNIVERSAL-require-0.18.tar.gz ... OK
Configuring UNIVERSAL-require-0.18 ... OK
Building and testing UNIVERSAL-require-0.18 ... OK
Successfully installed UNIVERSAL-require-0.18
Building and testing Devel-KYTProf-0.05 ... OK
Successfully installed Devel-KYTProf-0.05
--> Working on Devel::NYTProf
Fetching http://www.cpan.org/authors/id/T/TI/TIMB/Devel-NYTProf-6.06.tar.gz ... OK
Configuring Devel-NYTProf-6.06 ... OK
Building and testing Devel-NYTProf-6.06 ... ! Installing Devel::NYTProf failed. See /Users/hoge/.cpanm/work/1530770331.3018/build.log for details. Retry with --force to force install it.
FAIL
--> Working on Devel::PatchPerl
Fetching http://www.cpan.org/authors/id/B/BI/BINGOS/Devel-PatchPerl-1.52.tar.gz ... OK
Configuring Devel-PatchPerl-1.52 ... OK
Building and testing Devel-PatchPerl-1.52 ... OK
Successfully installed Devel-PatchPerl-1.52
--> Working on Devel::Profile
Fetching http://www.cpan.org/authors/id/J/JA/JAW/Devel-Profile-1.05.tar.gz ... OK
Configuring Devel-Profile-1.05 ... OK
Building and testing Devel-Profile-1.05 ... OK
Successfully installed Devel-Profile-1.05
--> Working on Devel::Size
Fetching http://www.cpan.org/authors/id/N/NW/NWCLARK/Devel-Size-0.82.tar.gz ... OK
Configuring Devel-Size-0.82 ... OK
Building and testing Devel-Size-0.82 ... ! Installing Devel::Size failed. See /Users/hoge/.cpanm/work/1530770331.3018/build.log for details. Retry with --force to force install it.
FAIL
--> Working on Devel::Symdump
Fetching http://www.cpan.org/authors/id/A/AN/ANDK/Devel-Symdump-2.18.tar.gz ... OK
Configuring Devel-Symdump-2.18 ... OK
Building and testing Devel-Symdump-2.18 ... OK
Successfully installed Devel-Symdump-2.18
--> Working on Digest::Perl::MD5
Fetching http://www.cpan.org/authors/id/D/DE/DELTA/Digest-Perl-MD5-1.9.tar.gz ... OK
Configuring Digest-Perl-MD5-1.9 ... OK
Building and testing Digest-Perl-MD5-1.9 ... OK
Successfully installed Digest-Perl-MD5-1.9
--> Working on Digest::SHA1
Fetching http://www.cpan.org/authors/id/G/GA/GAAS/Digest-SHA1-2.13.tar.gz ... OK
Configuring Digest-SHA1-2.13 ... OK
Building and testing Digest-SHA1-2.13 ... OK
Successfully installed Digest-SHA1-2.13
--> Working on Distribution::Guess::BuildSystem
Fetching http://www.cpan.org/authors/id/B/BD/BDFOY/Distribution-Guess-BuildSystem-1.002.tar.gz ... OK
Configuring Distribution-Guess-BuildSystem-1.002 ... OK
==> Found dependencies: Module::Extract::Use, Module::Extract::VERSION
--> Working on Module::Extract::Use
Fetching http://www.cpan.org/authors/id/B/BD/BDFOY/Module-Extract-Use-1.043.tar.gz ... OK
Configuring Module-Extract-Use-1.043 ... OK
==> Found dependencies: PPI
--> Working on PPI
Fetching http://www.cpan.org/authors/id/M/MI/MITHALDU/PPI-1.236.tar.gz ... OK
Configuring PPI-1.236 ... OK
==> Found dependencies: File::Remove, Test::SubCalls, Test::Object, IO::String
--> Working on File::Remove
Fetching http://www.cpan.org/authors/id/S/SH/SHLOMIF/File-Remove-1.57.tar.gz ... OK
Configuring File-Remove-1.57 ... OK
Building and testing File-Remove-1.57 ... OK
Successfully installed File-Remove-1.57
--> Working on Test::SubCalls
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/Test-SubCalls-1.10.tar.gz ... OK
Configuring Test-SubCalls-1.10 ... OK
==> Found dependencies: Hook::LexWrap
--> Working on Hook::LexWrap
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/Hook-LexWrap-0.26.tar.gz ... OK
Configuring Hook-LexWrap-0.26 ... OK
Building and testing Hook-LexWrap-0.26 ... OK
Successfully installed Hook-LexWrap-0.26
Building and testing Test-SubCalls-1.10 ... OK
Successfully installed Test-SubCalls-1.10
--> Working on Test::Object
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/Test-Object-0.08.tar.gz ... OK
Configuring Test-Object-0.08 ... OK
Building and testing Test-Object-0.08 ... OK
Successfully installed Test-Object-0.08
--> Working on IO::String
Fetching http://www.cpan.org/authors/id/G/GA/GAAS/IO-String-1.08.tar.gz ... OK
Configuring IO-String-1.08 ... OK
Building and testing IO-String-1.08 ... OK
Successfully installed IO-String-1.08
Building and testing PPI-1.236 ... OK
Successfully installed PPI-1.236
Building and testing Module-Extract-Use-1.043 ... OK
Successfully installed Module-Extract-Use-1.043
--> Working on Module::Extract::VERSION
Fetching http://www.cpan.org/authors/id/B/BD/BDFOY/Module-Extract-VERSION-1.113.tar.gz ... OK
Configuring Module-Extract-VERSION-1.113 ... OK
Building and testing Module-Extract-VERSION-1.113 ... OK
Successfully installed Module-Extract-VERSION-1.113
Building and testing Distribution-Guess-BuildSystem-1.002 ... OK
Successfully installed Distribution-Guess-BuildSystem-1.002
--> Working on Email::Abstract
Fetching http://www.cpan.org/authors/id/R/RJ/RJBS/Email-Abstract-3.008.tar.gz ... OK
Configuring Email-Abstract-3.008 ... OK
==> Found dependencies: Email::Simple
--> Working on Email::Simple
Fetching http://www.cpan.org/authors/id/R/RJ/RJBS/Email-Simple-2.216.tar.gz ... OK
Configuring Email-Simple-2.216 ... OK
==> Found dependencies: Email::Date::Format
--> Working on Email::Date::Format
Fetching http://www.cpan.org/authors/id/R/RJ/RJBS/Email-Date-Format-1.005.tar.gz ... OK
Configuring Email-Date-Format-1.005 ... OK
Building and testing Email-Date-Format-1.005 ... OK
Successfully installed Email-Date-Format-1.005
Building and testing Email-Simple-2.216 ... OK
Successfully installed Email-Simple-2.216
Building and testing Email-Abstract-3.008 ... OK
Successfully installed Email-Abstract-3.008
--> Working on Email::Address
Fetching http://www.cpan.org/authors/id/R/RJ/RJBS/Email-Address-1.909.tar.gz ... OK
Configuring Email-Address-1.909 ... OK
Building and testing Email-Address-1.909 ... OK
Successfully installed Email-Address-1.909
--> Working on Email::Address::XS
Fetching http://www.cpan.org/authors/id/P/PA/PALI/Email-Address-XS-1.04.tar.gz ... OK
Configuring Email-Address-XS-1.04 ... OK
Building and testing Email-Address-XS-1.04 ... OK
Successfully installed Email-Address-XS-1.04
--> Working on Email::MIME
Fetching http://www.cpan.org/authors/id/R/RJ/RJBS/Email-MIME-1.946.tar.gz ... OK
Configuring Email-MIME-1.946 ... OK
==> Found dependencies: Email::MessageID, Email::MIME::Encodings, Email::MIME::ContentType
--> Working on Email::MessageID
Fetching http://www.cpan.org/authors/id/R/RJ/RJBS/Email-MessageID-1.406.tar.gz ... OK
Configuring Email-MessageID-1.406 ... OK
Building and testing Email-MessageID-1.406 ... OK
Successfully installed Email-MessageID-1.406
--> Working on Email::MIME::Encodings
Fetching http://www.cpan.org/authors/id/R/RJ/RJBS/Email-MIME-Encodings-1.315.tar.gz ... OK
Configuring Email-MIME-Encodings-1.315 ... OK
Building and testing Email-MIME-Encodings-1.315 ... OK
Successfully installed Email-MIME-Encodings-1.315
--> Working on Email::MIME::ContentType
Fetching http://www.cpan.org/authors/id/R/RJ/RJBS/Email-MIME-ContentType-1.022.tar.gz ... OK
Configuring Email-MIME-ContentType-1.022 ... OK
Building and testing Email-MIME-ContentType-1.022 ... OK
Successfully installed Email-MIME-ContentType-1.022
Building and testing Email-MIME-1.946 ... OK
Successfully installed Email-MIME-1.946
--> Working on Email::Send
Fetching http://www.cpan.org/authors/id/R/RJ/RJBS/Email-Send-2.201.tar.gz ... OK
Configuring Email-Send-2.201 ... OK
==> Found dependencies: Return::Value, Mail::Internet, MIME::Entity
--> Working on Return::Value
Fetching http://www.cpan.org/authors/id/R/RJ/RJBS/Return-Value-1.666005.tar.gz ... OK
Configuring Return-Value-1.666005 ... OK
Building and testing Return-Value-1.666005 ... OK
Successfully installed Return-Value-1.666005
--> Working on Mail::Internet
Fetching http://www.cpan.org/authors/id/M/MA/MARKOV/MailTools-2.20.tar.gz ... OK
Configuring MailTools-2.20 ... OK
Building and testing MailTools-2.20 ... OK
Successfully installed MailTools-2.20
--> Working on MIME::Entity
Fetching http://www.cpan.org/authors/id/D/DS/DSKOLL/MIME-tools-5.509.tar.gz ... OK
Configuring MIME-tools-5.508 ... OK
Building and testing MIME-tools-5.508 ... OK
Successfully installed MIME-tools-5.508
Building and testing Email-Send-2.201 ... OK
Successfully installed Email-Send-2.201
--> Working on Email::Send::SMTP::Gmail
Fetching http://www.cpan.org/authors/id/P/PE/PECO/Email-Send-SMTP-Gmail-1.30.tar.gz ... OK
Configuring Email-Send-SMTP-Gmail-1.30 ... OK
==> Found dependencies: Net::SMTP_auth
--> Working on Net::SMTP_auth
Fetching http://www.cpan.org/authors/id/A/AP/APLEINER/Net-SMTP_auth-0.08.tar.gz ... OK
Configuring Net-SMTP_auth-0.08 ... OK
Building and testing Net-SMTP_auth-0.08 ... OK
Successfully installed Net-SMTP_auth-0.08
Building and testing Email-Send-SMTP-Gmail-1.30 ... OK
Successfully installed Email-Send-SMTP-Gmail-1.30
--> Working on Email::Sender
Fetching http://www.cpan.org/authors/id/R/RJ/RJBS/Email-Sender-1.300031.tar.gz ... OK
Configuring Email-Sender-1.300031 ... OK
==> Found dependencies: MooX::Types::MooseLike, Throwable::Error, MooX::Types::MooseLike::Base
--> Working on MooX::Types::MooseLike
Fetching http://www.cpan.org/authors/id/M/MA/MATEU/MooX-Types-MooseLike-0.29.tar.gz ... OK
Configuring MooX-Types-MooseLike-0.29 ... OK
Building and testing MooX-Types-MooseLike-0.29 ... OK
Successfully installed MooX-Types-MooseLike-0.29
--> Working on Throwable::Error
Fetching http://www.cpan.org/authors/id/R/RJ/RJBS/Throwable-0.200013.tar.gz ... OK
Configuring Throwable-0.200013 ... OK
Building and testing Throwable-0.200013 ... OK
Successfully installed Throwable-0.200013
Building and testing Email-Sender-1.300031 ... OK
Successfully installed Email-Sender-1.300031
--> Working on Email::Sender::Transport::SMTP::TLS
Fetching http://www.cpan.org/authors/id/F/FA/FAYLAND/Email-Sender-Transport-SMTP-TLS-0.16.tar.gz ... OK
Configuring Email-Sender-Transport-SMTP-TLS-0.16 ... OK
==> Found dependencies: Net::SMTP::TLS::ButMaintained
--> Working on Net::SMTP::TLS::ButMaintained
Fetching http://www.cpan.org/authors/id/F/FA/FAYLAND/Net-SMTP-TLS-ButMaintained-0.24.tar.gz ... OK
Configuring Net-SMTP-TLS-ButMaintained-0.24 ... OK
Building and testing Net-SMTP-TLS-ButMaintained-0.24 ... OK
Successfully installed Net-SMTP-TLS-ButMaintained-0.24
Building and testing Email-Sender-Transport-SMTP-TLS-0.16 ... OK
Successfully installed Email-Sender-Transport-SMTP-TLS-0.16
--> Working on Email::Sender::Transport::SMTPS
Fetching http://www.cpan.org/authors/id/F/FA/FAYLAND/Email-Sender-Transport-SMTPS-0.04.tar.gz ... OK
Configuring Email-Sender-Transport-SMTPS-0.04 ... OK
==> Found dependencies: Net::SMTPS
--> Working on Net::SMTPS
Fetching http://www.cpan.org/authors/id/T/TO/TOMO/src/Net-SMTPS-0.09.tar.gz ... OK
Configuring Net-SMTPS-0.09 ... OK
Building and testing Net-SMTPS-0.09 ... OK
Successfully installed Net-SMTPS-0.09
Building and testing Email-Sender-Transport-SMTPS-0.04 ... OK
Successfully installed Email-Sender-Transport-SMTPS-0.04
--> Working on Encode
Fetching http://www.cpan.org/authors/id/D/DA/DANKOGAI/Encode-2.98.tar.gz ... OK
Configuring Encode-2.98 ... OK
Building and testing Encode-2.98 ... OK
Successfully installed Encode-2.98 (upgraded from 2.97)
--> Working on Encode::UTF8Mac
Fetching http://www.cpan.org/authors/id/T/TO/TOMITA/Encode-UTF8Mac-0.04.tar.gz ... OK
Configuring Encode-UTF8Mac-0.04 ... OK
Building and testing Encode-UTF8Mac-0.04 ... OK
Successfully installed Encode-UTF8Mac-0.04
--> Working on Error
Fetching http://www.cpan.org/authors/id/S/SH/SHLOMIF/Error-0.17026.tar.gz ... OK
Configuring Error-0.17026 ... OK
Building and testing Error-0.17026 ... OK
Successfully installed Error-0.17026
--> Working on Exporter::Declare
Fetching http://www.cpan.org/authors/id/E/EX/EXODIST/Exporter-Declare-0.114.tar.gz ... OK
Configuring Exporter-Declare-0.114 ... OK
==> Found dependencies: Meta::Builder, aliased, Fennec::Lite
--> Working on Meta::Builder
Fetching http://www.cpan.org/authors/id/E/EX/EXODIST/Meta-Builder-0.003.tar.gz ... OK
Configuring Meta-Builder-0.003 ... OK
==> Found dependencies: Fennec::Lite
--> Working on Fennec::Lite
Fetching http://www.cpan.org/authors/id/E/EX/EXODIST/Fennec-Lite-0.004.tar.gz ... OK
Configuring Fennec-Lite-0.004 ... OK
Building and testing Fennec-Lite-0.004 ... OK
Successfully installed Fennec-Lite-0.004
Building and testing Meta-Builder-0.003 ... OK
Successfully installed Meta-Builder-0.003
--> Working on aliased
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/aliased-0.34.tar.gz ... OK
Configuring aliased-0.34 ... OK
Building and testing aliased-0.34 ... OK
Successfully installed aliased-0.34
Building and testing Exporter-Declare-0.114 ... OK
Successfully installed Exporter-Declare-0.114
ExtUtils::Install is up to date. (2.14)
ExtUtils::MakeMaker is up to date. (7.34)
ExtUtils::ParseXS is up to date. (3.39)
--> Working on ExtUtils::PkgConfig
Fetching http://www.cpan.org/authors/id/X/XA/XAOC/ExtUtils-PkgConfig-1.16.tar.gz ... OK
Configuring ExtUtils-PkgConfig-1.16 ... OK
Building and testing ExtUtils-PkgConfig-1.16 ... OK
Successfully installed ExtUtils-PkgConfig-1.16
--> Working on ExtUtils::XSpp
Fetching http://www.cpan.org/authors/id/S/SM/SMUELLER/ExtUtils-XSpp-0.18.tar.gz ... OK
Configuring ExtUtils-XSpp-0.18 ... OK
Building and testing ExtUtils-XSpp-0.18 ... OK
Successfully installed ExtUtils-XSpp-0.18
--> Working on FCGI
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/FCGI-0.78.tar.gz ... OK
Configuring FCGI-0.78 ... OK
Building and testing FCGI-0.78 ... OK
Successfully installed FCGI-0.78
--> Working on FCGI::Client
Fetching http://www.cpan.org/authors/id/T/TO/TOKUHIROM/FCGI-Client-0.08.tar.gz ... OK
Configuring FCGI-Client-0.08 ... OK
Building and testing FCGI-Client-0.08 ... OK
Successfully installed FCGI-Client-0.08
--> Working on FCGI::ProcManager
Fetching http://www.cpan.org/authors/id/A/AR/ARODLAND/FCGI-ProcManager-0.28.tar.gz ... OK
Configuring FCGI-ProcManager-0.28 ... OK
Building and testing FCGI-ProcManager-0.28 ... OK
Successfully installed FCGI-ProcManager-0.28
--> Working on Feed::Find
Fetching http://www.cpan.org/authors/id/B/BT/BTROTT/Feed-Find-0.07.tar.gz ... OK
Configuring Feed-Find-0.07 ... OK
Building and testing Feed-Find-0.07 ... OK
Successfully installed Feed-Find-0.07
--> Working on File::Extract
Fetching http://www.cpan.org/authors/id/D/DM/DMAKI/File-Extract-0.07000.tar.gz ... OK
Configuring File-Extract-0.07000 ... OK
==> Found dependencies: MP3::Info, RTF::HTMLConverter, Spreadsheet::ParseExcel, UNIVERSAL::isa, HTML::TreeBuilder, IO::Scalar, File::MMagic::XS
--> Working on MP3::Info
Fetching http://www.cpan.org/authors/id/J/JM/JMERELO/MP3-Info-1.26.tar.gz ... OK
Configuring MP3-Info-1.25 ... OK
Building and testing MP3-Info-1.25 ... OK
Successfully installed MP3-Info-1.25
--> Working on RTF::HTMLConverter
Fetching http://www.cpan.org/authors/id/U/US/USTIANSKY/RTF-HTMLConverter-0.05.tar.gz ... OK
Configuring RTF-HTMLConverter-0.05 ... OK
Building and testing RTF-HTMLConverter-0.05 ... OK
Successfully installed RTF-HTMLConverter-0.05
--> Working on Spreadsheet::ParseExcel
Fetching http://www.cpan.org/authors/id/D/DO/DOUGW/Spreadsheet-ParseExcel-0.65.tar.gz ... OK
Configuring Spreadsheet-ParseExcel-0.65 ... OK
==> Found dependencies: IO::Scalar, OLE::Storage_Lite
--> Working on IO::Scalar
Fetching http://www.cpan.org/authors/id/D/DS/DSKOLL/IO-stringy-2.111.tar.gz ... OK
Configuring IO-stringy-2.111 ... OK
Building and testing IO-stringy-2.111 ... OK
Successfully installed IO-stringy-2.111
--> Working on OLE::Storage_Lite
Fetching http://www.cpan.org/authors/id/J/JM/JMCNAMARA/OLE-Storage_Lite-0.19.tar.gz ... OK
Configuring OLE-Storage_Lite-0.19 ... OK
Building and testing OLE-Storage_Lite-0.19 ... OK
Successfully installed OLE-Storage_Lite-0.19
Building and testing Spreadsheet-ParseExcel-0.65 ... OK
Successfully installed Spreadsheet-ParseExcel-0.65
--> Working on UNIVERSAL::isa
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/UNIVERSAL-isa-1.20171012.tar.gz ... OK
Configuring UNIVERSAL-isa-1.20171012 ... OK
Building and testing UNIVERSAL-isa-1.20171012 ... OK
Successfully installed UNIVERSAL-isa-1.20171012
--> Working on HTML::TreeBuilder
Fetching http://www.cpan.org/authors/id/K/KE/KENTNL/HTML-Tree-5.07.tar.gz ... OK
Configuring HTML-Tree-5.07 ... OK
Building and testing HTML-Tree-5.07 ... OK
Successfully installed HTML-Tree-5.07
--> Working on File::MMagic::XS
Fetching http://www.cpan.org/authors/id/D/DM/DMAKI/File-MMagic-XS-0.09008.tar.gz ... OK
Configuring File-MMagic-XS-0.09008 ... OK
Building and testing File-MMagic-XS-0.09008 ... OK
Successfully installed File-MMagic-XS-0.09008
Building and testing File-Extract-0.07000 ... OK
Successfully installed File-Extract-0.07000
--> Working on File::ShareDir::ProjectDistDir
Fetching http://www.cpan.org/authors/id/K/KE/KENTNL/File-ShareDir-ProjectDistDir-1.000009.tar.gz ... OK
Configuring File-ShareDir-ProjectDistDir-1.000009 ... OK
==> Found dependencies: Path::FindDev, Path::IsDev
--> Working on Path::FindDev
Fetching http://www.cpan.org/authors/id/K/KE/KENTNL/Path-FindDev-v0.5.3.tar.gz ... OK
Configuring Path-FindDev-v0.5.3 ... OK
==> Found dependencies: Path::IsDev, Path::IsDev::Object
--> Working on Path::IsDev
Fetching http://www.cpan.org/authors/id/K/KE/KENTNL/Path-IsDev-1.001003.tar.gz ... OK
Configuring Path-IsDev-1.001003 ... OK
Building and testing Path-IsDev-1.001003 ... OK
Successfully installed Path-IsDev-1.001003
Building and testing Path-FindDev-v0.5.3 ... OK
Successfully installed Path-FindDev-v0.5.3
Building and testing File-ShareDir-ProjectDistDir-1.000009 ... OK
Successfully installed File-ShareDir-ProjectDistDir-1.000009
--> Working on File::Slurp
Fetching http://www.cpan.org/authors/id/U/UR/URI/File-Slurp-9999.19.tar.gz ... OK
Configuring File-Slurp-9999.19 ... OK
Building and testing File-Slurp-9999.19 ... OK
Successfully installed File-Slurp-9999.19
--> Working on File::Slurp::Tiny
Fetching http://www.cpan.org/authors/id/L/LE/LEONT/File-Slurp-Tiny-0.004.tar.gz ... OK
Configuring File-Slurp-Tiny-0.004 ... OK
Building and testing File-Slurp-Tiny-0.004 ... OK
Successfully installed File-Slurp-Tiny-0.004
--> Working on Furl
Fetching http://www.cpan.org/authors/id/T/TO/TOKUHIROM/Furl-3.13.tar.gz ... OK
Configuring Furl-3.13 ... OK
==> Found dependencies: HTTP::Parser::XS
--> Working on HTTP::Parser::XS
Fetching http://www.cpan.org/authors/id/K/KA/KAZUHO/HTTP-Parser-XS-0.17.tar.gz ... OK
Configuring HTTP-Parser-XS-0.17 ... OK
Building and testing HTTP-Parser-XS-0.17 ... OK
Successfully installed HTTP-Parser-XS-0.17
Building and testing Furl-3.13 ... OK
Successfully installed Furl-3.13
--> Working on GD
Fetching http://www.cpan.org/authors/id/R/RU/RURBAN/GD-2.68.tar.gz ... OK
Configuring GD-2.68 ... OK
==> Found dependencies: Test::Fork
--> Working on Test::Fork
Fetching http://www.cpan.org/authors/id/M/MS/MSCHWERN/Test-Fork-0.02.tar.gz ... OK
Configuring Test-Fork-0.02 ... OK
Building and testing Test-Fork-0.02 ... OK
Successfully installed Test-Fork-0.02
Building and testing GD-2.68 ... OK
Successfully installed GD-2.68
--> Working on GD::Graph
Fetching http://www.cpan.org/authors/id/R/RU/RUZ/GDGraph-1.54.tar.gz ... OK
Configuring GDGraph-1.54 ... OK
==> Found dependencies: GD::Text
--> Working on GD::Text
Fetching http://www.cpan.org/authors/id/M/MV/MVERB/GDTextUtil-0.86.tar.gz ... OK
Configuring GDTextUtil-0.86 ... OK
Building and testing GDTextUtil-0.86 ... OK
Successfully installed GDTextUtil-0.86
Building and testing GDGraph-1.54 ... OK
Successfully installed GDGraph-1.54
Getopt::Long is up to date. (2.5)
--> Working on Git
Fetching http://www.cpan.org/authors/id/M/MS/MSOUTH/Git-0.42.tar.gz ... OK
Configuring Git-0.42 ... OK
Building and testing Git-0.42 ... OK
Successfully installed Git-0.42
--> Working on Git::Repository
Fetching http://www.cpan.org/authors/id/B/BO/BOOK/Git-Repository-1.322.tar.gz ... OK
Configuring Git-Repository-1.322 ... OK
==> Found dependencies: System::Command, Test::Requires::Git, Git::Version::Compare
--> Working on System::Command
Fetching http://www.cpan.org/authors/id/B/BO/BOOK/System-Command-1.119.tar.gz ... OK
Configuring System-Command-1.119 ... OK
Building and testing System-Command-1.119 ... OK
Successfully installed System-Command-1.119
--> Working on Test::Requires::Git
Fetching http://www.cpan.org/authors/id/B/BO/BOOK/Test-Requires-Git-1.008.tar.gz ... OK
Configuring Test-Requires-Git-1.008 ... OK
==> Found dependencies: Git::Version::Compare
--> Working on Git::Version::Compare
Fetching http://www.cpan.org/authors/id/B/BO/BOOK/Git-Version-Compare-1.004.tar.gz ... OK
Configuring Git-Version-Compare-1.004 ... OK
Building and testing Git-Version-Compare-1.004 ... OK
Successfully installed Git-Version-Compare-1.004
Building and testing Test-Requires-Git-1.008 ... OK
Successfully installed Test-Requires-Git-1.008
Building and testing Git-Repository-1.322 ... OK
Successfully installed Git-Repository-1.322
--> Working on Git::Repository::FileHistory
Fetching http://www.cpan.org/authors/id/S/SO/SONGMU/Git-Repository-FileHistory-0.06.tar.gz ... OK
Configuring Git-Repository-FileHistory-0.06 ... OK
==> Found dependencies: Git::Repository::Plugin::Log
--> Working on Git::Repository::Plugin::Log
Fetching http://www.cpan.org/authors/id/B/BO/BOOK/Git-Repository-Plugin-Log-1.314.tar.gz ... OK
Configuring Git-Repository-Plugin-Log-1.314 ... OK
==> Found dependencies: Pod::Coverage::TrustPod, Test::CPAN::Meta, Test::Pod::Coverage
--> Working on Pod::Coverage::TrustPod
Fetching http://www.cpan.org/authors/id/R/RJ/RJBS/Pod-Coverage-TrustPod-0.100005.tar.gz ... OK
Configuring Pod-Coverage-TrustPod-0.100005 ... OK
==> Found dependencies: Pod::Eventual::Simple, Pod::Coverage::CountParents
--> Working on Pod::Eventual::Simple
Fetching http://www.cpan.org/authors/id/R/RJ/RJBS/Pod-Eventual-0.094001.tar.gz ... OK
Configuring Pod-Eventual-0.094001 ... OK
==> Found dependencies: Mixin::Linewise::Readers
--> Working on Mixin::Linewise::Readers
Fetching http://www.cpan.org/authors/id/R/RJ/RJBS/Mixin-Linewise-0.108.tar.gz ... OK
Configuring Mixin-Linewise-0.108 ... OK
==> Found dependencies: PerlIO::utf8_strict
--> Working on PerlIO::utf8_strict
Fetching http://www.cpan.org/authors/id/L/LE/LEONT/PerlIO-utf8_strict-0.007.tar.gz ... OK
Configuring PerlIO-utf8_strict-0.007 ... OK
Building and testing PerlIO-utf8_strict-0.007 ... OK
Successfully installed PerlIO-utf8_strict-0.007
Building and testing Mixin-Linewise-0.108 ... OK
Successfully installed Mixin-Linewise-0.108
Building and testing Pod-Eventual-0.094001 ... OK
Successfully installed Pod-Eventual-0.094001
--> Working on Pod::Coverage::CountParents
Fetching http://www.cpan.org/authors/id/R/RC/RCLAMP/Pod-Coverage-0.23.tar.gz ... OK
Configuring Pod-Coverage-0.23 ... OK
Building and testing Pod-Coverage-0.23 ... OK
Successfully installed Pod-Coverage-0.23
Building and testing Pod-Coverage-TrustPod-0.100005 ... OK
Successfully installed Pod-Coverage-TrustPod-0.100005
--> Working on Test::CPAN::Meta
Fetching http://www.cpan.org/authors/id/B/BA/BARBIE/Test-CPAN-Meta-0.25.tar.gz ... OK
Configuring Test-CPAN-Meta-0.25 ... OK
Building and testing Test-CPAN-Meta-0.25 ... OK
Successfully installed Test-CPAN-Meta-0.25
--> Working on Test::Pod::Coverage
Fetching http://www.cpan.org/authors/id/N/NE/NEILB/Test-Pod-Coverage-1.10.tar.gz ... OK
Configuring Test-Pod-Coverage-1.10 ... OK
Building and testing Test-Pod-Coverage-1.10 ... OK
Successfully installed Test-Pod-Coverage-1.10
Building and testing Git-Repository-Plugin-Log-1.314 ... OK
Successfully installed Git-Repository-Plugin-Log-1.314
Building and testing Git-Repository-FileHistory-0.06 ... OK
Successfully installed Git-Repository-FileHistory-0.06
--> Working on Graphics::ColorUtils
Fetching http://www.cpan.org/authors/id/J/JA/JANERT/Graphics-ColorUtils-0.17.tar.gz ... OK
Configuring Graphics-ColorUtils-0.17 ... OK
Building and testing Graphics-ColorUtils-0.17 ... OK
Successfully installed Graphics-ColorUtils-0.17
--> Working on HTML::DOM
Fetching http://www.cpan.org/authors/id/S/SP/SPROUT/HTML-DOM-0.058.tar.gz ... OK
Configuring HTML-DOM-0.058 ... OK
==> Found dependencies: HTML::Encoding
--> Working on HTML::Encoding
Fetching http://www.cpan.org/authors/id/B/BJ/BJOERN/HTML-Encoding-0.61.tar.gz ... OK
Configuring HTML-Encoding-0.61 ... OK
Building and testing HTML-Encoding-0.61 ... OK
Successfully installed HTML-Encoding-0.61
Building and testing HTML-DOM-0.058 ... OK
Successfully installed HTML-DOM-0.058
--> Working on HTML::Form
Fetching http://www.cpan.org/authors/id/G/GA/GAAS/HTML-Form-6.03.tar.gz ... OK
Configuring HTML-Form-6.03 ... OK
Building and testing HTML-Form-6.03 ... OK
Successfully installed HTML-Form-6.03
--> Working on HTML::Selector::XPath
Fetching http://www.cpan.org/authors/id/C/CO/CORION/HTML-Selector-XPath-0.23.tar.gz ... OK
Configuring HTML-Selector-XPath-0.23 ... OK
Building and testing HTML-Selector-XPath-0.23 ... OK
Successfully installed HTML-Selector-XPath-0.23
--> Working on HTML::TreeBuilder::XPath
Fetching http://www.cpan.org/authors/id/M/MI/MIROD/HTML-TreeBuilder-XPath-0.14.tar.gz ... OK
Configuring HTML-TreeBuilder-XPath-0.14 ... OK
==> Found dependencies: XML::XPathEngine
--> Working on XML::XPathEngine
Fetching http://www.cpan.org/authors/id/M/MI/MIROD/XML-XPathEngine-0.14.tar.gz ... OK
Configuring XML-XPathEngine-0.14 ... OK
Building and testing XML-XPathEngine-0.14 ... OK
Successfully installed XML-XPathEngine-0.14
Building and testing HTML-TreeBuilder-XPath-0.14 ... OK
Successfully installed HTML-TreeBuilder-XPath-0.14
--> Working on HTTP::Body
Fetching http://www.cpan.org/authors/id/G/GE/GETTY/HTTP-Body-1.22.tar.gz ... OK
Configuring HTTP-Body-1.22 ... OK
Building and testing HTTP-Body-1.22 ... OK
Successfully installed HTTP-Body-1.22
--> Working on HTTP::Response::Encoding
Fetching http://www.cpan.org/authors/id/D/DA/DANKOGAI/HTTP-Response-Encoding-0.06.tar.gz ... OK
Configuring HTTP-Response-Encoding-0.06 ... OK
Building and testing HTTP-Response-Encoding-0.06 ... OK
Successfully installed HTTP-Response-Encoding-0.06
--> Working on HTTP::Server::Simple
Fetching http://www.cpan.org/authors/id/B/BP/BPS/HTTP-Server-Simple-0.52.tar.gz ... OK
Configuring HTTP-Server-Simple-0.52 ... OK
Building and testing HTTP-Server-Simple-0.52 ... OK
Successfully installed HTTP-Server-Simple-0.52
--> Working on HTTP::Server::Simple::PSGI
Fetching http://www.cpan.org/authors/id/M/MI/MIYAGAWA/HTTP-Server-Simple-PSGI-0.16.tar.gz ... OK
Configuring HTTP-Server-Simple-PSGI-0.16 ... OK
Building and testing HTTP-Server-Simple-PSGI-0.16 ... OK
Successfully installed HTTP-Server-Simple-PSGI-0.16
--> Working on Hash::Util::FieldHash::Compat
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/Hash-Util-FieldHash-Compat-0.11.tar.gz ... OK
Configuring Hash-Util-FieldHash-Compat-0.11 ... OK
Building and testing Hash-Util-FieldHash-Compat-0.11 ... OK
Successfully installed Hash-Util-FieldHash-Compat-0.11
--> Working on IO::Handle::Util
Fetching http://www.cpan.org/authors/id/N/NU/NUFFIN/IO-Handle-Util-0.01.tar.gz ... OK
Configuring IO-Handle-Util-0.01 ... OK
==> Found dependencies: asa
--> Working on asa
Fetching http://www.cpan.org/authors/id/A/AD/ADAMK/asa-1.03.tar.gz ... OK
Configuring asa-1.03 ... OK
Building and testing asa-1.03 ... OK
Successfully installed asa-1.03
Building and testing IO-Handle-Util-0.01 ... OK
Successfully installed IO-Handle-Util-0.01
--> Working on IO::SessionData
Fetching http://www.cpan.org/authors/id/P/PH/PHRED/IO-SessionData-1.03.tar.gz ... OK
Configuring IO-SessionData-1.03 ... OK
Building and testing IO-SessionData-1.03 ... OK
Successfully installed IO-SessionData-1.03
IO::Socket::IP is up to date. (0.39)
--> Working on IO::Tee
Fetching http://www.cpan.org/authors/id/N/NE/NEILB/IO-Tee-0.65.tar.gz ... OK
Configuring IO-Tee-0.65 ... OK
Building and testing IO-Tee-0.65 ... OK
Successfully installed IO-Tee-0.65
--> Working on IPC::Signal
Fetching http://www.cpan.org/authors/id/R/RO/ROSCH/IPC-Signal-1.00.tar.gz ... OK
Configuring IPC-Signal-1.00 ... OK
Building and testing IPC-Signal-1.00 ... OK
Successfully installed IPC-Signal-1.00
--> Working on Imager
Fetching http://www.cpan.org/authors/id/T/TO/TONYC/Imager-1.006.tar.gz ... OK
Configuring Imager-1.006 ... OK
Building and testing Imager-1.006 ... OK
Successfully installed Imager-1.006
--> Working on JE
Fetching http://www.cpan.org/authors/id/S/SP/SPROUT/JE-0.066.tar.gz ... OK
Configuring JE-0.066 ... OK
Building and testing JE-0.066 ... OK
Successfully installed JE-0.066
--> Working on JSON::Any
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/JSON-Any-1.39.tar.gz ... OK
Configuring JSON-Any-1.39 ... OK
Building and testing JSON-Any-1.39 ... OK
Successfully installed JSON-Any-1.39
JSON::PP is up to date. (2.97001)
--> Working on JSON::XS
Fetching http://www.cpan.org/authors/id/M/ML/MLEHMANN/JSON-XS-3.04.tar.gz ... OK
Configuring JSON-XS-3.04 ... OK
==> Found dependencies: Types::Serialiser
--> Working on Types::Serialiser
Fetching http://www.cpan.org/authors/id/M/ML/MLEHMANN/Types-Serialiser-1.0.tar.gz ... OK
Configuring Types-Serialiser-1.0 ... OK
Building and testing Types-Serialiser-1.0 ... OK
Successfully installed Types-Serialiser-1.0
Building and testing JSON-XS-3.04 ... OK
Successfully installed JSON-XS-3.04
--> Working on JavaScript::Value::Escape
Fetching http://www.cpan.org/authors/id/K/KA/KAZEBURO/JavaScript-Value-Escape-0.07.tar.gz ... OK
Configuring JavaScript-Value-Escape-0.07 ... OK
Building and testing JavaScript-Value-Escape-0.07 ... OK
Successfully installed JavaScript-Value-Escape-0.07
--> Working on Jcode
Fetching http://www.cpan.org/authors/id/D/DA/DANKOGAI/Jcode-2.07.tar.gz ... OK
Configuring Jcode-2.07 ... OK
Building and testing Jcode-2.07 ... OK
Successfully installed Jcode-2.07
--> Working on Lexical::SealRequireHints
Fetching http://www.cpan.org/authors/id/Z/ZE/ZEFRAM/Lexical-SealRequireHints-0.011.tar.gz ... OK
Configuring Lexical-SealRequireHints-0.011 ... OK
Building and testing Lexical-SealRequireHints-0.011 ... OK
Successfully installed Lexical-SealRequireHints-0.011
List::Util is up to date. (1.50)
--> Working on Log::Log4perl
Fetching http://www.cpan.org/authors/id/M/MS/MSCHILLI/Log-Log4perl-1.49.tar.gz ... OK
Configuring Log-Log4perl-1.49 ... OK
Building and testing Log-Log4perl-1.49 ... OK
Successfully installed Log-Log4perl-1.49
--> Working on Log::Minimal
Fetching http://www.cpan.org/authors/id/K/KA/KAZEBURO/Log-Minimal-0.19.tar.gz ... OK
Configuring Log-Minimal-0.19 ... OK
Building and testing Log-Minimal-0.19 ... OK
Successfully installed Log-Minimal-0.19
--> Working on MCE
Fetching http://www.cpan.org/authors/id/M/MA/MARIOROY/MCE-1.836.tar.gz ... OK
Configuring MCE-1.836 ... OK
Building and testing MCE-1.836 ... OK
Successfully installed MCE-1.836
--> Working on MIME::Base32
Fetching http://www.cpan.org/authors/id/R/RE/REHSACK/MIME-Base32-1.303.tar.gz ... OK
Configuring MIME-Base32-1.303 ... OK
Building and testing MIME-Base32-1.303 ... OK
Successfully installed MIME-Base32-1.303
--> Working on Math::Random::ISAAC
Fetching http://www.cpan.org/authors/id/J/JA/JAWNSY/Math-Random-ISAAC-1.004.tar.gz ... OK
Configuring Math-Random-ISAAC-1.004 ... OK
Building and testing Math-Random-ISAAC-1.004 ... OK
Successfully installed Math-Random-ISAAC-1.004
--> Working on Math::Random::Secure
Fetching http://www.cpan.org/authors/id/F/FR/FREW/Math-Random-Secure-0.080001.tar.gz ... OK
Configuring Math-Random-Secure-0.080001 ... OK
Building and testing Math-Random-Secure-0.080001 ... OK
Successfully installed Math-Random-Secure-0.080001
--> Working on Math::Round
Fetching http://www.cpan.org/authors/id/G/GR/GROMMEL/Math-Round-0.07.tar.gz ... OK
Configuring Math-Round-0.07 ... OK
Building and testing Math-Round-0.07 ... OK
Successfully installed Math-Round-0.07
--> Working on Minilla
Fetching http://www.cpan.org/authors/id/S/SK/SKAJI/Minilla-v3.1.1.tar.gz ... OK
Configuring Minilla-v3.1.1 ... OK
==> Found dependencies: Pod::Markdown, TOML
--> Working on Pod::Markdown
Fetching http://www.cpan.org/authors/id/R/RW/RWSTAUNER/Pod-Markdown-3.005.tar.gz ... OK
Configuring Pod-Markdown-3.005 ... OK
Building and testing Pod-Markdown-3.005 ... OK
Successfully installed Pod-Markdown-3.005
--> Working on TOML
Fetching http://www.cpan.org/authors/id/K/KA/KARUPA/TOML-0.97.tar.gz ... OK
Configuring TOML-0.97 ... OK
==> Found dependencies: TOML::Parser
--> Working on TOML::Parser
Fetching http://www.cpan.org/authors/id/K/KA/KARUPA/TOML-Parser-0.91.tar.gz ... OK
Configuring TOML-Parser-0.91 ... OK
==> Found dependencies: Test::Deep::Fuzzy
--> Working on Test::Deep::Fuzzy
Fetching http://www.cpan.org/authors/id/K/KA/KARUPA/Test-Deep-Fuzzy-0.01.tar.gz ... OK
Configuring Test-Deep-Fuzzy-0.01 ... OK
Building and testing Test-Deep-Fuzzy-0.01 ... OK
Successfully installed Test-Deep-Fuzzy-0.01
Building and testing TOML-Parser-0.91 ... OK
Successfully installed TOML-Parser-0.91
Building and testing TOML-0.97 ... OK
Successfully installed TOML-0.97
Building and testing Minilla-v3.1.1 ... OK
Successfully installed Minilla-v3.1.1
--> Working on Mock::Quick
Fetching http://www.cpan.org/authors/id/E/EX/EXODIST/Mock-Quick-1.111.tar.gz ... OK
Configuring Mock-Quick-1.111 ... OK
Building and testing Mock-Quick-1.111 ... OK
Successfully installed Mock-Quick-1.111
Module::Build is up to date. (0.4224)
--> Working on Module::CoreList
Fetching http://www.cpan.org/authors/id/B/BI/BINGOS/Module-CoreList-5.20180626.tar.gz ... OK
Configuring Module-CoreList-5.20180626 ... OK
Building and testing Module-CoreList-5.20180626 ... OK
Successfully installed Module-CoreList-5.20180626 (upgraded from 5.20180622)
--> Working on Module::Functions
Fetching http://www.cpan.org/authors/id/T/TO/TOKUHIROM/Module-Functions-2.1.3.tar.gz ... OK
Configuring Module-Functions-2.1.3 ... OK
Building and testing Module-Functions-2.1.3 ... OK
Successfully installed Module-Functions-2.1.3
--> Working on Module::Install
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/Module-Install-1.19.tar.gz ... OK
==> Found dependencies: YAML::Tiny
--> Working on YAML::Tiny
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/YAML-Tiny-1.73.tar.gz ... OK
Configuring YAML-Tiny-1.73 ... OK
Building and testing YAML-Tiny-1.73 ... OK
Successfully installed YAML-Tiny-1.73
Configuring Module-Install-1.19 ... OK
==> Found dependencies: Module::ScanDeps
--> Working on Module::ScanDeps
Fetching http://www.cpan.org/authors/id/R/RS/RSCHUPP/Module-ScanDeps-1.24.tar.gz ... OK
Configuring Module-ScanDeps-1.24 ... OK
Building and testing Module-ScanDeps-1.24 ... OK
Successfully installed Module-ScanDeps-1.24
Building and testing Module-Install-1.19 ... OK
Successfully installed Module-Install-1.19
--> Working on Module::Install::AuthorTests
Fetching http://www.cpan.org/authors/id/R/RJ/RJBS/Module-Install-AuthorTests-0.002.tar.gz ... OK
Configuring Module-Install-AuthorTests-0.002 ... OK
Building and testing Module-Install-AuthorTests-0.002 ... OK
Successfully installed Module-Install-AuthorTests-0.002
--> Working on Module::Pluggable::Fast
Fetching http://www.cpan.org/authors/id/M/MR/MRAMBERG/Module-Pluggable-Fast-0.19.tar.gz ... OK
Configuring Module-Pluggable-Fast-0.19 ... OK
Building and testing Module-Pluggable-Fast-0.19 ... OK
Successfully installed Module-Pluggable-Fast-0.19
--> Working on Module::Reader
Fetching http://www.cpan.org/authors/id/H/HA/HAARG/Module-Reader-0.003003.tar.gz ... OK
Configuring Module-Reader-0.003003 ... OK
Building and testing Module-Reader-0.003003 ... OK
Successfully installed Module-Reader-0.003003
--> Working on Module::Starter
Fetching http://www.cpan.org/authors/id/D/DB/DBOOK/Module-Starter-1.75.tar.gz ... OK
Configuring Module-Starter-1.75 ... OK
Building and testing Module-Starter-1.75 ... OK
Successfully installed Module-Starter-1.75
--> Working on Module::Starter::AddModule
Fetching http://www.cpan.org/authors/id/B/BD/BDFOY/Module-Starter-AddModule-1.006.tar.gz ... OK
Configuring Module-Starter-AddModule-1.006 ... OK
==> Found dependencies: Module::Starter::Smart
--> Working on Module::Starter::Smart
Fetching http://www.cpan.org/authors/id/R/RU/RUEYCHENG/Module-Starter-Smart-0.0.9.tar.gz ... OK
Configuring Module-Starter-Smart-v0.0.9 ... OK
==> Found dependencies: Test::TempDir::Tiny
--> Working on Test::TempDir::Tiny
Fetching http://www.cpan.org/authors/id/D/DA/DAGOLDEN/Test-TempDir-Tiny-0.017.tar.gz ... OK
Configuring Test-TempDir-Tiny-0.017 ... OK
Building and testing Test-TempDir-Tiny-0.017 ... OK
Successfully installed Test-TempDir-Tiny-0.017
Building and testing Module-Starter-Smart-v0.0.9 ... OK
Successfully installed Module-Starter-Smart-v0.0.9
Building and testing Module-Starter-AddModule-1.006 ... OK
Successfully installed Module-Starter-AddModule-1.006
--> Working on Mojolicious
Fetching http://www.cpan.org/authors/id/S/SR/SRI/Mojolicious-7.87.tar.gz ... OK
Configuring Mojolicious-7.87 ... OK
Building and testing Mojolicious-7.87 ... OK
Successfully installed Mojolicious-7.87
--> Working on MooseX::AttributeHelpers
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/MooseX-AttributeHelpers-0.25.tar.gz ... OK
Configuring MooseX-AttributeHelpers-0.25 ... OK
Building and testing MooseX-AttributeHelpers-0.25 ... OK
Successfully installed MooseX-AttributeHelpers-0.25
--> Working on MooseX::Role::Parameterized
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/MooseX-Role-Parameterized-1.10.tar.gz ... OK
Configuring MooseX-Role-Parameterized-1.10 ... OK
==> Found dependencies: MooseX::Role::WithOverloading
--> Working on MooseX::Role::WithOverloading
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/MooseX-Role-WithOverloading-0.17.tar.gz ... OK
Configuring MooseX-Role-WithOverloading-0.17 ... OK
Building and testing MooseX-Role-WithOverloading-0.17 ... OK
Successfully installed MooseX-Role-WithOverloading-0.17
Building and testing MooseX-Role-Parameterized-1.10 ... OK
Successfully installed MooseX-Role-Parameterized-1.10
--> Working on MozRepl
Fetching http://www.cpan.org/authors/id/Z/ZI/ZIGOROU/MozRepl-0.06.tar.gz ... OK
Configuring MozRepl-0.06 ... OK
==> Found dependencies: Net::Telnet, Template::Provider::FromDATA, Template, Text::SimpleTable
--> Working on Net::Telnet
Fetching http://www.cpan.org/authors/id/J/JR/JROGERS/Net-Telnet-3.04.tar.gz ... OK
Configuring Net-Telnet-3.04 ... OK
Building and testing Net-Telnet-3.04 ... OK
Successfully installed Net-Telnet-3.04
--> Working on Template::Provider::FromDATA
Fetching http://www.cpan.org/authors/id/B/BR/BRICAS/Template-Provider-FromDATA-0.13.tar.gz ... OK
Configuring Template-Provider-FromDATA-0.13 ... OK
==> Found dependencies: Template
--> Working on Template
Fetching http://www.cpan.org/authors/id/A/AB/ABW/Template-Toolkit-2.27.tar.gz ... OK
Configuring Template-Toolkit-2.27 ... OK
Building and testing Template-Toolkit-2.27 ... OK
Successfully installed Template-Toolkit-2.27
Building and testing Template-Provider-FromDATA-0.13 ... OK
Successfully installed Template-Provider-FromDATA-0.13
--> Working on Text::SimpleTable
Fetching http://www.cpan.org/authors/id/M/MR/MRAMBERG/Text-SimpleTable-2.05.tar.gz ... OK
Configuring Text-SimpleTable-2.05 ... OK
Building and testing Text-SimpleTable-2.05 ... OK
Successfully installed Text-SimpleTable-2.05
Building and testing MozRepl-0.06 ... OK
Successfully installed MozRepl-0.06
--> Working on MozRepl::RemoteObject
Fetching http://www.cpan.org/authors/id/C/CO/CORION/MozRepl-RemoteObject-0.40.tar.gz ... OK
Configuring MozRepl-RemoteObject-0.40 ... OK
Building and testing MozRepl-RemoteObject-0.40 ... OK
Successfully installed MozRepl-RemoteObject-0.40
--> Working on Net::Amazon
Fetching http://www.cpan.org/authors/id/B/BO/BOUMENOT/Net-Amazon-0.62.tar.gz ... OK
Configuring Net-Amazon-0.62 ... OK
==> Found dependencies: XML::Simple
--> Working on XML::Simple
Fetching http://www.cpan.org/authors/id/G/GR/GRANTM/XML-Simple-2.25.tar.gz ... OK
Configuring XML-Simple-2.25 ... OK
==> Found dependencies: XML::NamespaceSupport, XML::SAX, XML::SAX::Expat
--> Working on XML::NamespaceSupport
Fetching http://www.cpan.org/authors/id/P/PE/PERIGRIN/XML-NamespaceSupport-1.12.tar.gz ... OK
Configuring XML-NamespaceSupport-1.12 ... OK
Building and testing XML-NamespaceSupport-1.12 ... OK
Successfully installed XML-NamespaceSupport-1.12
--> Working on XML::SAX
Fetching http://www.cpan.org/authors/id/G/GR/GRANTM/XML-SAX-1.00.tar.gz ... OK
Configuring XML-SAX-1.00 ... OK
==> Found dependencies: XML::SAX::Base
--> Working on XML::SAX::Base
Fetching http://www.cpan.org/authors/id/G/GR/GRANTM/XML-SAX-Base-1.09.tar.gz ... OK
Configuring XML-SAX-Base-1.09 ... OK
Building and testing XML-SAX-Base-1.09 ... OK
Successfully installed XML-SAX-Base-1.09
Building and testing XML-SAX-1.00 ... OK
Successfully installed XML-SAX-1.00
--> Working on XML::SAX::Expat
Fetching http://www.cpan.org/authors/id/B/BJ/BJOERN/XML-SAX-Expat-0.51.tar.gz ... OK
Configuring XML-SAX-Expat-0.51 ... OK
==> Found dependencies: XML::Parser
--> Working on XML::Parser
Fetching http://www.cpan.org/authors/id/T/TO/TODDR/XML-Parser-2.44.tar.gz ... OK
Configuring XML-Parser-2.44 ... OK
Building and testing XML-Parser-2.44 ... OK
Successfully installed XML-Parser-2.44
Building and testing XML-SAX-Expat-0.51 ... OK
Successfully installed XML-SAX-Expat-0.51
Building and testing XML-Simple-2.25 ... OK
Successfully installed XML-Simple-2.25
Building and testing Net-Amazon-0.62 ... OK
Successfully installed Net-Amazon-0.62
--> Working on Net::Azure::Authorization::SAS
Fetching http://www.cpan.org/authors/id/Y/YT/YTURTLE/Net-Azure-Authorization-SAS-0.03.tar.gz ... OK
Configuring Net-Azure-Authorization-SAS-0.03 ... OK
Building and testing Net-Azure-Authorization-SAS-0.03 ... OK
Successfully installed Net-Azure-Authorization-SAS-0.03
--> Working on Net::Azure::EventHubs
Fetching http://www.cpan.org/authors/id/Y/YT/YTURTLE/Net-Azure-EventHubs-0.07.tar.gz ... OK
Configuring Net-Azure-EventHubs-0.07 ... OK
Building and testing Net-Azure-EventHubs-0.07 ... OK
Successfully installed Net-Azure-EventHubs-0.07
--> Working on Net::DNS
Fetching http://www.cpan.org/authors/id/N/NL/NLNETLABS/Net-DNS-1.15.tar.gz ... OK
Configuring Net-DNS-1.15 ... OK
Building and testing Net-DNS-1.15 ... OK
Successfully installed Net-DNS-1.15
--> Working on Net::FastCGI
Fetching http://www.cpan.org/authors/id/C/CH/CHANSEN/Net-FastCGI-0.14.tar.gz ... OK
Configuring Net-FastCGI-0.14 ... OK
==> Found dependencies: Test::HexString
--> Working on Test::HexString
Fetching http://www.cpan.org/authors/id/P/PE/PEVANS/Test-HexString-0.03.tar.gz ... OK
Configuring Test-HexString-0.03 ... OK
Building and testing Test-HexString-0.03 ... OK
Successfully installed Test-HexString-0.03
Building and testing Net-FastCGI-0.14 ... OK
Successfully installed Net-FastCGI-0.14
--> Working on Net::Nslookup
Fetching http://www.cpan.org/authors/id/D/DA/DARREN/Net-Nslookup-2.04.tar.gz ... OK
Configuring Net-Nslookup-2.04 ... OK
Building and testing Net-Nslookup-2.04 ... ! Installing Net::Nslookup failed. See /Users/hoge/.cpanm/work/1530770331.3018/build.log for details. Retry with --force to force install it.
FAIL
--> Working on Net::OAuth
Fetching http://www.cpan.org/authors/id/K/KG/KGRENNAN/Net-OAuth-0.28.tar.gz ... OK
Configuring Net-OAuth-0.28 ... OK
Building and testing Net-OAuth-0.28 ... ! Installing Net::OAuth failed. See /Users/hoge/.cpanm/work/1530770331.3018/build.log for details. Retry with --force to force install it.
FAIL
--> Working on Net::SMTP::SSL
Fetching http://www.cpan.org/authors/id/R/RJ/RJBS/Net-SMTP-SSL-1.04.tar.gz ... OK
Configuring Net-SMTP-SSL-1.04 ... OK
Building and testing Net-SMTP-SSL-1.04 ... OK
Successfully installed Net-SMTP-SSL-1.04
--> Working on Net::SMTP::TLS
Fetching http://www.cpan.org/authors/id/A/AW/AWESTHOLM/Net-SMTP-TLS-0.12.tar.gz ... OK
Configuring Net-SMTP-TLS-0.12 ... OK
Building and testing Net-SMTP-TLS-0.12 ... OK
Successfully installed Net-SMTP-TLS-0.12
--> Working on Net::Twitter
Fetching http://www.cpan.org/authors/id/M/MM/MMIMS/Net-Twitter-4.01043.tar.gz ... OK
Configuring Net-Twitter-4.01043 ... ! Installing the dependencies failed: Module 'Net::OAuth::Message' is not installed, Module 'Net::OAuth' is not installed
! Bailing out the installation for Net-Twitter-4.01043.
OK
==> Found dependencies: Net::OAuth, Net::OAuth::Message
--> Working on Net::Twitter::Lite
Fetching http://www.cpan.org/authors/id/M/MM/MMIMS/Net-Twitter-Lite-0.12008.tar.gz ... OK
Configuring Net-Twitter-Lite-0.12008 ... OK
Building and testing Net-Twitter-Lite-0.12008 ... OK
Successfully installed Net-Twitter-Lite-0.12008
--> Working on Number::Format
Fetching http://www.cpan.org/authors/id/W/WR/WRW/Number-Format-1.75.tar.gz ... OK
Configuring Number-Format-1.75 ... OK
Building and testing Number-Format-1.75 ... OK
Successfully installed Number-Format-1.75
--> Working on OAuth::Lite
Fetching http://www.cpan.org/authors/id/L/LY/LYOKATO/OAuth-Lite-1.34.tar.gz ... OK
Configuring OAuth-Lite-1.34 ... OK
Building and testing OAuth-Lite-1.34 ... ! Installing OAuth::Lite failed. See /Users/hoge/.cpanm/work/1530770331.3018/build.log for details. Retry with --force to force install it.
FAIL
--> Working on Object::Container
Fetching http://www.cpan.org/authors/id/T/TY/TYPESTER/Object-Container-0.14.tar.gz ... OK
Configuring Object-Container-0.14 ... OK
Building and testing Object-Container-0.14 ... OK
Successfully installed Object-Container-0.14
--> Working on PPIx::Regexp
Fetching http://www.cpan.org/authors/id/W/WY/WYANT/PPIx-Regexp-0.060.tar.gz ... OK
Configuring PPIx-Regexp-0.060 ... OK
Building and testing PPIx-Regexp-0.060 ... OK
Successfully installed PPIx-Regexp-0.060
--> Working on PPIx::Utilities
Fetching http://www.cpan.org/authors/id/E/EL/ELLIOTJS/PPIx-Utilities-1.001000.tar.gz ... OK
Configuring PPIx-Utilities-1.001000 ... OK
==> Found dependencies: Readonly
--> Working on Readonly
Fetching http://www.cpan.org/authors/id/S/SA/SANKO/Readonly-2.05.tar.gz ... OK
Configuring Readonly-2.05 ... OK
Building and testing Readonly-2.05 ... OK
Successfully installed Readonly-2.05
Building and testing PPIx-Utilities-1.001000 ... OK
Successfully installed PPIx-Utilities-1.001000
--> Working on PSGI
Fetching http://www.cpan.org/authors/id/M/MI/MIYAGAWA/PSGI-1.102.tar.gz ... OK
Configuring PSGI-1.102 ... OK
Building and testing PSGI-1.102 ... OK
Successfully installed PSGI-1.102
--> Working on Parallel::ForkManager
Fetching http://www.cpan.org/authors/id/Y/YA/YANICK/Parallel-ForkManager-1.19.tar.gz ... OK
Configuring Parallel-ForkManager-1.19 ... OK
Building and testing Parallel-ForkManager-1.19 ... OK
Successfully installed Parallel-ForkManager-1.19
--> Working on Parallel::Prefork
Fetching http://www.cpan.org/authors/id/K/KA/KAZUHO/Parallel-Prefork-0.18.tar.gz ... OK
Configuring Parallel-Prefork-0.18 ... OK
==> Found dependencies: Proc::Wait3, Signal::Mask
--> Working on Proc::Wait3
Fetching http://www.cpan.org/authors/id/C/CT/CTILMES/Proc-Wait3-0.05.tar.gz ... OK
Configuring Proc-Wait3-0.05 ... OK
Building and testing Proc-Wait3-0.05 ... OK
Successfully installed Proc-Wait3-0.05
--> Working on Signal::Mask
Fetching http://www.cpan.org/authors/id/L/LE/LEONT/Signal-Mask-0.008.tar.gz ... OK
Configuring Signal-Mask-0.008 ... OK
Building and testing Signal-Mask-0.008 ... OK
Successfully installed Signal-Mask-0.008
Building and testing Parallel-Prefork-0.18 ... OK
Successfully installed Parallel-Prefork-0.18
--> Working on Path::Abstract
Fetching http://www.cpan.org/authors/id/R/RO/ROKR/Path-Abstract-0.096.tar.gz ... OK
Configuring Path-Abstract-0.096 ... OK
==> Found dependencies: Test::Most, Test::Lazy
--> Working on Test::Most
Fetching http://www.cpan.org/authors/id/O/OV/OVID/Test-Most-0.35.tar.gz ... OK
Configuring Test-Most-0.35 ... OK
Building and testing Test-Most-0.35 ... OK
Successfully installed Test-Most-0.35
--> Working on Test::Lazy
Fetching http://www.cpan.org/authors/id/R/RK/RKRIMEN/Test-Lazy-0.061.tar.gz ... OK
Configuring Test-Lazy-0.061 ... OK
Building and testing Test-Lazy-0.061 ... OK
Successfully installed Test-Lazy-0.061
Building and testing Path-Abstract-0.096 ... OK
Successfully installed Path-Abstract-0.096
! Finding Perl () on mirror http://www.cpan.org failed.
! Couldn't find module or a distribution Perl
--> Working on Perl::Build
Fetching http://www.cpan.org/authors/id/S/SK/SKAJI/Perl-Build-1.23.tar.gz ... OK
Configuring Perl-Build-1.23 ... OK
Building and testing Perl-Build-1.23 ... OK
Successfully installed Perl-Build-1.23
--> Working on Perl::Critic
Fetching http://www.cpan.org/authors/id/P/PE/PETDANCE/Perl-Critic-1.132.tar.gz ... OK
Configuring Perl-Critic-1.132 ... OK
==> Found dependencies: PPIx::QuoteLike, Perl::Tidy, String::Format, Pod::Spell
--> Working on PPIx::QuoteLike
Fetching http://www.cpan.org/authors/id/W/WY/WYANT/PPIx-QuoteLike-0.005.tar.gz ... OK
Configuring PPIx-QuoteLike-0.005 ... OK
Building and testing PPIx-QuoteLike-0.005 ... OK
Successfully installed PPIx-QuoteLike-0.005
--> Working on Perl::Tidy
Fetching http://www.cpan.org/authors/id/S/SH/SHANCOCK/Perl-Tidy-20180220.tar.gz ... OK
Configuring Perl-Tidy-20180220 ... OK
Building and testing Perl-Tidy-20180220 ... OK
Successfully installed Perl-Tidy-20180220
--> Working on String::Format
Fetching http://www.cpan.org/authors/id/S/SR/SREZIC/String-Format-1.18.tar.gz ... OK
Configuring String-Format-1.18 ... OK
Building and testing String-Format-1.18 ... OK
Successfully installed String-Format-1.18
--> Working on Pod::Spell
Fetching http://www.cpan.org/authors/id/D/DO/DOLMEN/Pod-Spell-1.20.tar.gz ... OK
Configuring Pod-Spell-1.20 ... OK
Building and testing Pod-Spell-1.20 ... OK
Successfully installed Pod-Spell-1.20
Building and testing Perl-Critic-1.132 ... OK
Successfully installed Perl-Critic-1.132
--> Working on Perl::Metrics::Lite
Fetching http://www.cpan.org/authors/id/K/KI/KITANO/Perl-Metrics-Lite-0.08.tar.gz ... OK
Configuring Perl-Metrics-Lite-0.08 ... OK
==> Found dependencies: Test::LoadAllModules, Text::ASCIITable
--> Working on Test::LoadAllModules
Fetching http://www.cpan.org/authors/id/K/KI/KITANO/Test-LoadAllModules-0.022.tar.gz ... OK
Configuring Test-LoadAllModules-0.022 ... OK
Building and testing Test-LoadAllModules-0.022 ... OK
Successfully installed Test-LoadAllModules-0.022
--> Working on Text::ASCIITable
Fetching http://www.cpan.org/authors/id/L/LU/LUNATIC/Text-ASCIITable-0.22.tar.gz ... OK
Configuring Text-ASCIITable-0.22 ... OK
Building and testing Text-ASCIITable-0.22 ... OK
Successfully installed Text-ASCIITable-0.22
Building and testing Perl-Metrics-Lite-0.08 ... ! Installing Perl::Metrics::Lite failed. See /Users/hoge/.cpanm/work/1530770331.3018/build.log for details. Retry with --force to force install it.
FAIL
--> Working on Perl::Metrics::Simple
Fetching http://www.cpan.org/authors/id/M/MA/MATISSE/Perl-Metrics-Simple-0.18.tar.gz ... OK
Configuring Perl-Metrics-Simple-0.18 ... OK
==> Found dependencies: Statistics::Basic::StdDev, Statistics::Basic::Median, Statistics::Basic::Mean
--> Working on Statistics::Basic::StdDev
Fetching http://www.cpan.org/authors/id/J/JE/JETTERO/Statistics-Basic-1.6611.tar.gz ... OK
Configuring Statistics-Basic-1.6611 ... OK
Building and testing Statistics-Basic-1.6611 ... OK
Successfully installed Statistics-Basic-1.6611
Building and testing Perl-Metrics-Simple-0.18 ... OK
Successfully installed Perl-Metrics-Simple-0.18
--> Working on Plack::App::Proxy
Fetching http://www.cpan.org/authors/id/L/LE/LEEDO/Plack-App-Proxy-0.29.tar.gz ... OK
Configuring Plack-App-Proxy-0.29 ... OK
Building and testing Plack-App-Proxy-0.29 ... OK
Successfully installed Plack-App-Proxy-0.29
--> Working on Plack::Middleware::Auth::Digest
Fetching http://www.cpan.org/authors/id/M/MI/MIYAGAWA/Plack-Middleware-Auth-Digest-0.05.tar.gz ... OK
Configuring Plack-Middleware-Auth-Digest-0.05 ... OK
Building and testing Plack-Middleware-Auth-Digest-0.05 ... OK
Successfully installed Plack-Middleware-Auth-Digest-0.05
--> Working on Plack::Middleware::ConsoleLogger
Fetching http://www.cpan.org/authors/id/M/MI/MIYAGAWA/Plack-Middleware-ConsoleLogger-0.05.tar.gz ... OK
Configuring Plack-Middleware-ConsoleLogger-0.05 ... OK
Building and testing Plack-Middleware-ConsoleLogger-0.05 ... OK
Successfully installed Plack-Middleware-ConsoleLogger-0.05
--> Working on Plack::Middleware::Debug
Fetching http://www.cpan.org/authors/id/M/MI/MIYAGAWA/Plack-Middleware-Debug-0.17.tar.gz ... OK
Configuring Plack-Middleware-Debug-0.17 ... OK
==> Found dependencies: Data::Dumper::Concise
--> Working on Data::Dumper::Concise
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/Data-Dumper-Concise-2.023.tar.gz ... OK
Configuring Data-Dumper-Concise-2.023 ... OK
Building and testing Data-Dumper-Concise-2.023 ... OK
Successfully installed Data-Dumper-Concise-2.023
Building and testing Plack-Middleware-Debug-0.17 ... OK
Successfully installed Plack-Middleware-Debug-0.17
--> Working on Plack::Middleware::Deflater
Fetching http://www.cpan.org/authors/id/K/KA/KAZEBURO/Plack-Middleware-Deflater-0.12.tar.gz ... OK
Configuring Plack-Middleware-Deflater-0.12 ... OK
Building and testing Plack-Middleware-Deflater-0.12 ... OK
Successfully installed Plack-Middleware-Deflater-0.12
--> Working on Plack::Middleware::Header
Fetching http://www.cpan.org/authors/id/C/CH/CHIBA/Plack-Middleware-Header-0.04.tar.gz ... OK
Configuring Plack-Middleware-Header-0.04 ... OK
Building and testing Plack-Middleware-Header-0.04 ... OK
Successfully installed Plack-Middleware-Header-0.04
--> Working on Plack::Middleware::ReverseProxy
Fetching http://www.cpan.org/authors/id/M/MI/MIYAGAWA/Plack-Middleware-ReverseProxy-0.15.tar.gz ... OK
Configuring Plack-Middleware-ReverseProxy-0.15 ... OK
Building and testing Plack-Middleware-ReverseProxy-0.15 ... OK
Successfully installed Plack-Middleware-ReverseProxy-0.15
--> Working on Plack::Middleware::Session
Fetching http://www.cpan.org/authors/id/M/MI/MIYAGAWA/Plack-Middleware-Session-0.30.tar.gz ... OK
Configuring Plack-Middleware-Session-0.30 ... OK
Building and testing Plack-Middleware-Session-0.30 ... OK
Successfully installed Plack-Middleware-Session-0.30
--> Working on Plack::Request::WithEncoding
Fetching http://www.cpan.org/authors/id/M/MO/MOZNION/Plack-Request-WithEncoding-0.12.tar.gz ... OK
Configuring Plack-Request-WithEncoding-0.12 ... OK
Building and testing Plack-Request-WithEncoding-0.12 ... OK
Successfully installed Plack-Request-WithEncoding-0.12
--> Working on Pod::PerldocJp
Fetching http://www.cpan.org/authors/id/I/IS/ISHIGAKI/Pod-PerldocJp-0.19.tar.gz ... OK
Configuring Pod-PerldocJp-0.19 ... OK
==> Found dependencies: Test::UseAllModules, Term::Encoding
--> Working on Test::UseAllModules
Fetching http://www.cpan.org/authors/id/I/IS/ISHIGAKI/Test-UseAllModules-0.17.tar.gz ... OK
Configuring Test-UseAllModules-0.17 ... OK
Building and testing Test-UseAllModules-0.17 ... OK
Successfully installed Test-UseAllModules-0.17
--> Working on Term::Encoding
Fetching http://www.cpan.org/authors/id/M/MI/MIYAGAWA/Term-Encoding-0.02.tar.gz ... OK
Configuring Term-Encoding-0.02 ... OK
Building and testing Term-Encoding-0.02 ... OK
Successfully installed Term-Encoding-0.02
Building and testing Pod-PerldocJp-0.19 ... OK
Successfully installed Pod-PerldocJp-0.19
--> Working on Puncheur
Fetching http://www.cpan.org/authors/id/S/SO/SONGMU/Puncheur-v0.3.0.tar.gz ... OK
Configuring Puncheur-v0.3.0 ... OK
==> Found dependencies: Router::Boom, Text::Xslate, URL::Encode, Tiffany
--> Working on Router::Boom
Fetching http://www.cpan.org/authors/id/T/TO/TOKUHIROM/Router-Boom-1.03.tar.gz ... OK
Configuring Router-Boom-1.03 ... OK
Building and testing Router-Boom-1.03 ... OK
Successfully installed Router-Boom-1.03
--> Working on Text::Xslate
Fetching http://www.cpan.org/authors/id/S/SK/SKAJI/Text-Xslate-v3.5.6.tar.gz ... OK
Configuring Text-Xslate-v3.5.6 ... OK
Building and testing Text-Xslate-v3.5.6 ... OK
Successfully installed Text-Xslate-v3.5.6
--> Working on URL::Encode
Fetching http://www.cpan.org/authors/id/C/CH/CHANSEN/URL-Encode-0.03.tar.gz ... OK
Configuring URL-Encode-0.03 ... OK
Building and testing URL-Encode-0.03 ... OK
Successfully installed URL-Encode-0.03
--> Working on Tiffany
Fetching http://www.cpan.org/authors/id/T/TO/TOKUHIROM/Tiffany-1.01.tar.gz ... OK
Configuring Tiffany-1.01 ... OK
Building and testing Tiffany-1.01 ... OK
Successfully installed Tiffany-1.01
Building and testing Puncheur-v0.3.0 ... OK
Successfully installed Puncheur-v0.3.0
--> Working on RPC::XML
Fetching http://www.cpan.org/authors/id/R/RJ/RJRAY/RPC-XML-0.80.tar.gz ... OK
Configuring RPC-XML-0.80 ... OK
Building and testing RPC-XML-0.80 ... OK
Successfully installed RPC-XML-0.80
--> Working on Regexp::Assemble
Fetching http://www.cpan.org/authors/id/R/RS/RSAVAGE/Regexp-Assemble-0.38.tgz ... OK
Configuring Regexp-Assemble-0.38 ... OK
Building and testing Regexp-Assemble-0.38 ... OK
Successfully installed Regexp-Assemble-0.38
--> Working on Regexp::Common
Fetching http://www.cpan.org/authors/id/A/AB/ABIGAIL/Regexp-Common-2017060201.tar.gz ... OK
Configuring Regexp-Common-2017060201 ... OK
Building and testing Regexp-Common-2017060201 ... OK
Successfully installed Regexp-Common-2017060201
--> Working on Riji
Fetching http://www.cpan.org/authors/id/S/SO/SONGMU/Riji-v0.9.8.tar.gz ... OK
Configuring Riji-v0.9.8 ... OK
==> Found dependencies: Text::Markdown::Discount, URI::tag, Text::Markup::Any, XML::FeedPP, Test::Mock::Guard
--> Working on Text::Markdown::Discount
Fetching http://www.cpan.org/authors/id/S/SE/SEKIMURA/Text-Markdown-Discount-0.11.tar.gz ... OK
Configuring Text-Markdown-Discount-0.11 ... OK
Building and testing Text-Markdown-Discount-0.11 ... OK
Successfully installed Text-Markdown-Discount-0.11
--> Working on URI::tag
Fetching http://www.cpan.org/authors/id/M/MI/MIYAGAWA/URI-tag-0.02.tar.gz ... OK
Configuring URI-tag-0.02 ... OK
Building and testing URI-tag-0.02 ... OK
Successfully installed URI-tag-0.02
--> Working on Text::Markup::Any
Fetching http://www.cpan.org/authors/id/S/SO/SONGMU/Text-Markup-Any-0.04.tar.gz ... OK
Configuring Text-Markup-Any-0.04 ... OK
==> Found dependencies: Text::Markdown
--> Working on Text::Markdown
Fetching http://www.cpan.org/authors/id/B/BO/BOBTFISH/Text-Markdown-1.000031.tar.gz ... OK
Configuring Text-Markdown-1.000031 ... OK
Building and testing Text-Markdown-1.000031 ... OK
Successfully installed Text-Markdown-1.000031
Building and testing Text-Markup-Any-0.04 ... OK
Successfully installed Text-Markup-Any-0.04
--> Working on XML::FeedPP
Fetching http://www.cpan.org/authors/id/M/MA/MARKOV/XML-FeedPP-0.95.tar.gz ... OK
Configuring XML-FeedPP-0.95 ... OK
==> Found dependencies: XML::TreePP
--> Working on XML::TreePP
Fetching http://www.cpan.org/authors/id/K/KA/KAWASAKI/XML-TreePP-0.43.tar.gz ... OK
Configuring XML-TreePP-0.43 ... OK
Building and testing XML-TreePP-0.43 ... OK
Successfully installed XML-TreePP-0.43
Building and testing XML-FeedPP-0.95 ... OK
Successfully installed XML-FeedPP-0.95
--> Working on Test::Mock::Guard
Fetching http://www.cpan.org/authors/id/X/XA/XAICRON/Test-Mock-Guard-0.10.tar.gz ... OK
Configuring Test-Mock-Guard-0.10 ... OK
Building and testing Test-Mock-Guard-0.10 ... OK
Successfully installed Test-Mock-Guard-0.10
Building and testing Riji-v0.9.8 ... OK
Successfully installed Riji-v0.9.8
--> Working on SOAP::Lite
Fetching http://www.cpan.org/authors/id/P/PH/PHRED/SOAP-Lite-1.27.tar.gz ... OK
Configuring SOAP-Lite-1.27 ... OK
==> Found dependencies: XML::Parser::Lite
--> Working on XML::Parser::Lite
Fetching http://www.cpan.org/authors/id/P/PH/PHRED/XML-Parser-Lite-0.721.tar.gz ... OK
Configuring XML-Parser-Lite-0.721 ... OK
Building and testing XML-Parser-Lite-0.721 ... OK
Successfully installed XML-Parser-Lite-0.721
Building and testing SOAP-Lite-1.27 ... OK
Successfully installed SOAP-Lite-1.27
--> Working on SPVM
Fetching http://www.cpan.org/authors/id/K/KI/KIMOTO/SPVM-0.0355.tar.gz ... OK
Configuring SPVM-0.0355 ... OK
Building and testing SPVM-0.0355 ... OK
Successfully installed SPVM-0.0355
--> Working on Server::Starter
Fetching http://www.cpan.org/authors/id/K/KA/KAZUHO/Server-Starter-0.34.tar.gz ... OK
Configuring Server-Starter-0.34 ... OK
Building and testing Server-Starter-0.34 ... OK
Successfully installed Server-Starter-0.34
--> Working on Shell::Command
Fetching http://www.cpan.org/authors/id/F/FL/FLORA/Shell-Command-0.06.tar.gz ... OK
Configuring Shell-Command-0.06 ... OK
Building and testing Shell-Command-0.06 ... OK
Successfully installed Shell-Command-0.06
--> Working on Smart::Comments
Fetching http://www.cpan.org/authors/id/N/NE/NEILB/Smart-Comments-1.06.tar.gz ... OK
Configuring Smart-Comments-1.06 ... OK
Building and testing Smart-Comments-1.06 ... OK
Successfully installed Smart-Comments-1.06
Socket is up to date. (2.027)
--> Working on Spreadsheet::ParseXLSX
Fetching http://www.cpan.org/authors/id/D/DO/DOY/Spreadsheet-ParseXLSX-0.27.tar.gz ... OK
Configuring Spreadsheet-ParseXLSX-0.27 ... OK
==> Found dependencies: XML::Twig
--> Working on XML::Twig
Fetching http://www.cpan.org/authors/id/M/MI/MIROD/XML-Twig-3.52.tar.gz ... OK
Configuring XML-Twig-3.52 ... OK
Building and testing XML-Twig-3.52 ... OK
Successfully installed XML-Twig-3.52
Building and testing Spreadsheet-ParseXLSX-0.27 ... OK
Successfully installed Spreadsheet-ParseXLSX-0.27
--> Working on Starlet
Fetching http://www.cpan.org/authors/id/K/KA/KAZUHO/Starlet-0.31.tar.gz ... OK
Configuring Starlet-0.31 ... OK
Building and testing Starlet-0.31 ... OK
Successfully installed Starlet-0.31
--> Working on Starman
Fetching http://www.cpan.org/authors/id/M/MI/MIYAGAWA/Starman-0.4014.tar.gz ... OK
Configuring Starman-0.4014 ... OK
Building and testing Starman-0.4014 ... OK
Successfully installed Starman-0.4014
--> Working on Statistics::Descriptive
Fetching http://www.cpan.org/authors/id/S/SH/SHLOMIF/Statistics-Descriptive-3.0613.tar.gz ... OK
Configuring Statistics-Descriptive-3.0613 ... OK
Building and testing Statistics-Descriptive-3.0613 ... OK
Successfully installed Statistics-Descriptive-3.0613
--> Working on Task::Plack
Fetching http://www.cpan.org/authors/id/M/MI/MIYAGAWA/Task-Plack-0.28.tar.gz ... OK
Configuring Task-Plack-0.28 ... OK
==> Found dependencies: Twiggy
--> Working on Twiggy
Fetching http://www.cpan.org/authors/id/M/MI/MIYAGAWA/Twiggy-0.1025.tar.gz ... OK
Configuring Twiggy-0.1025 ... OK
Building and testing Twiggy-0.1025 ... OK
Successfully installed Twiggy-0.1025
Building and testing Task-Plack-0.28 ... OK
Successfully installed Task-Plack-0.28
--> Working on Test::CheckDeps
Fetching http://www.cpan.org/authors/id/L/LE/LEONT/Test-CheckDeps-0.010.tar.gz ... OK
Configuring Test-CheckDeps-0.010 ... OK
Building and testing Test-CheckDeps-0.010 ... OK
Successfully installed Test-CheckDeps-0.010
--> Working on Test::Class
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/Test-Class-0.50.tar.gz ... OK
Configuring Test-Class-0.50 ... OK
Building and testing Test-Class-0.50 ... OK
Successfully installed Test-Class-0.50
--> Working on Test::Exception::LessClever
Fetching http://www.cpan.org/authors/id/E/ET/ETHER/Test-Exception-LessClever-0.009.tar.gz ... OK
Configuring Test-Exception-LessClever-0.009 ... OK
Building and testing Test-Exception-LessClever-0.009 ... OK
Successfully installed Test-Exception-LessClever-0.009
--> Working on Test::Fake::HTTPD
Fetching http://www.cpan.org/authors/id/M/MA/MASAKI/Test-Fake-HTTPD-0.08.tar.gz ... OK
Configuring Test-Fake-HTTPD-0.08 ... OK
Building and testing Test-Fake-HTTPD-0.08 ... OK
Successfully installed Test-Fake-HTTPD-0.08
Test::Harness is up to date. (3.42)
--> Working on Test::Manifest
Fetching http://www.cpan.org/authors/id/B/BD/BDFOY/Test-Manifest-2.021.tar.gz ... OK
Configuring Test-Manifest-2.021 ... OK
Building and testing Test-Manifest-2.021 ... OK
Successfully installed Test-Manifest-2.021
--> Working on Test::Mock::LWP::Conditional
Fetching http://www.cpan.org/authors/id/M/MA/MASAKI/Test-Mock-LWP-Conditional-0.04.tar.gz ... OK
Configuring Test-Mock-LWP-Conditional-0.04 ... OK
Building and testing Test-Mock-LWP-Conditional-0.04 ... OK
Successfully installed Test-Mock-LWP-Conditional-0.04
--> Working on Test::Mock::Net::FTP
Fetching http://www.cpan.org/authors/id/T/TS/TSUCCHI/Test-Mock-Net-FTP-0.04.tar.gz ... OK
Configuring Test-Mock-Net-FTP-0.04 ... OK
Building and testing Test-Mock-Net-FTP-0.04 ... OK
Successfully installed Test-Mock-Net-FTP-0.04
--> Working on Test::Name::FromLine
Fetching http://www.cpan.org/authors/id/S/SA/SATOH/Test-Name-FromLine-0.13.tar.gz ... OK
Configuring Test-Name-FromLine-0.13 ... OK
Building and testing Test-Name-FromLine-0.13 ... OK
Successfully installed Test-Name-FromLine-0.13
--> Working on Test::Perl::Critic
Fetching http://www.cpan.org/authors/id/P/PE/PETDANCE/Test-Perl-Critic-1.04.tar.gz ... OK
Configuring Test-Perl-Critic-1.04 ... OK
Building and testing Test-Perl-Critic-1.04 ... OK
Successfully installed Test-Perl-Critic-1.04
--> Working on Test::Perl::Metrics::Lite
Fetching http://www.cpan.org/authors/id/K/KI/KITANO/Test-Perl-Metrics-Lite-0.2.tar.gz ... OK
Configuring Test-Perl-Metrics-Lite-0.2 ... ! Installing the dependencies failed: Module 'Perl::Metrics::Lite' is not installed
! Bailing out the installation for Test-Perl-Metrics-Lite-0.2.
OK
==> Found dependencies: Perl::Metrics::Lite
--> Working on Test::Script
Fetching http://www.cpan.org/authors/id/P/PL/PLICEASE/Test-Script-1.23.tar.gz ... OK
Configuring Test-Script-1.23 ... OK
Building and testing Test-Script-1.23 ... OK
Successfully installed Test-Script-1.23
--> Working on Test::Vars
Fetching http://www.cpan.org/authors/id/D/DR/DROLSKY/Test-Vars-0.014.tar.gz ... OK
Configuring Test-Vars-0.014 ... OK
Building and testing Test-Vars-0.014 ... OK
Successfully installed Test-Vars-0.014
--> Working on Text::CSV_XS
Fetching http://www.cpan.org/authors/id/H/HM/HMBRAND/Text-CSV_XS-1.36.tgz ... OK
Configuring Text-CSV_XS-1.36 ... OK
Building and testing Text-CSV_XS-1.36 ... OK
Successfully installed Text-CSV_XS-1.36
--> Working on Text::TestBase
Fetching http://www.cpan.org/authors/id/T/TO/TOKUHIROM/Text-TestBase-0.13.tar.gz ... OK
Configuring Text-TestBase-0.13 ... OK
Building and testing Text-TestBase-0.13 ... OK
Successfully installed Text-TestBase-0.13
Time::HiRes is up to date. (1.9759)
--> Working on Tree::DAG_Node
Fetching http://www.cpan.org/authors/id/R/RS/RSAVAGE/Tree-DAG_Node-1.31.tgz ... OK
Configuring Tree-DAG_Node-1.31 ... OK
Building and testing Tree-DAG_Node-1.31 ... OK
Successfully installed Tree-DAG_Node-1.31
--> Working on URI::Fetch
Fetching http://www.cpan.org/authors/id/N/NE/NEILB/URI-Fetch-0.13.tar.gz ... OK
Configuring URI-Fetch-0.13 ... OK
Building and testing URI-Fetch-0.13 ... OK
Successfully installed URI-Fetch-0.13
--> Working on URI::PathAbstract
Fetching http://www.cpan.org/authors/id/R/RK/RKRIMEN/URI-PathAbstract-0.01.tar.gz ... OK
Configuring URI-PathAbstract-0.01 ... OK
Building and testing URI-PathAbstract-0.01 ... OK
Successfully installed URI-PathAbstract-0.01
--> Working on V
Fetching http://www.cpan.org/authors/id/A/AB/ABELTJE/V-0.13.tar.gz ... OK
Configuring V-0.13 ... OK
Building and testing V-0.13 ... OK
Successfully installed V-0.13
--> Working on Validator::Custom
Fetching http://www.cpan.org/authors/id/K/KI/KIMOTO/Validator-Custom-1.0201.tar.gz ... OK
Configuring Validator-Custom-1.0201 ... OK
Building and testing Validator-Custom-1.0201 ... OK
Successfully installed Validator-Custom-1.0201
--> Working on WWW::Google::CustomSearch
Fetching http://www.cpan.org/authors/id/M/MA/MANWAR/WWW-Google-CustomSearch-0.37.tar.gz ... OK
Configuring WWW-Google-CustomSearch-0.37 ... OK
==> Found dependencies: WWW::Google::UserAgent
--> Working on WWW::Google::UserAgent
Fetching http://www.cpan.org/authors/id/M/MA/MANWAR/WWW-Google-UserAgent-0.21.tar.gz ... OK
Configuring WWW-Google-UserAgent-0.21 ... OK
Building and testing WWW-Google-UserAgent-0.21 ... OK
Successfully installed WWW-Google-UserAgent-0.21
Building and testing WWW-Google-CustomSearch-0.37 ... OK
Successfully installed WWW-Google-CustomSearch-0.37
--> Working on WWW::Mechanize
Fetching http://www.cpan.org/authors/id/O/OA/OALDERS/WWW-Mechanize-1.88.tar.gz ... OK
Configuring WWW-Mechanize-1.88 ... OK
Building and testing WWW-Mechanize-1.88 ... OK
Successfully installed WWW-Mechanize-1.88
--> Working on WWW::Mechanize::DecodedContent
Fetching http://www.cpan.org/authors/id/M/MI/MIYAGAWA/WWW-Mechanize-DecodedContent-0.02.tar.gz ... OK
Configuring WWW-Mechanize-DecodedContent-0.01 ... OK
Building and testing WWW-Mechanize-DecodedContent-0.01 ... OK
Successfully installed WWW-Mechanize-DecodedContent-0.01
--> Working on WWW::Scripter
Fetching http://www.cpan.org/authors/id/S/SP/SPROUT/WWW-Scripter-0.032.tar.gz ... OK
Configuring WWW-Scripter-0.032 ... OK
Building and testing WWW-Scripter-0.032 ... OK
Successfully installed WWW-Scripter-0.032
--> Working on WWW::Scripter::Plugin::JavaScript
Fetching http://www.cpan.org/authors/id/S/SP/SPROUT/WWW-Scripter-Plugin-JavaScript-0.009.tar.gz ... OK
Configuring WWW-Scripter-Plugin-JavaScript-0.009 ... OK
Building and testing WWW-Scripter-Plugin-JavaScript-0.009 ... OK
Successfully installed WWW-Scripter-Plugin-JavaScript-0.009
--> Working on WWW::Tumblr
Fetching http://www.cpan.org/authors/id/D/DA/DAMOG/WWW-Tumblr-5.2.tar.gz ... OK
Configuring WWW-Tumblr-5.2 ... ! Installing the dependencies failed: Module 'Net::OAuth::Client' is not installed
! Bailing out the installation for WWW-Tumblr-5.2.
OK
==> Found dependencies: Net::OAuth::Client
--> Working on Web::Scraper
Fetching http://www.cpan.org/authors/id/M/MI/MIYAGAWA/Web-Scraper-0.38.tar.gz ... OK
Configuring Web-Scraper-0.38 ... OK
Building and testing Web-Scraper-0.38 ... OK
Successfully installed Web-Scraper-0.38
--> Working on WebService::DMM
Fetching http://www.cpan.org/authors/id/S/SY/SYOHEX/WebService-DMM-0.11.tar.gz ... OK
Configuring WebService-DMM-0.11 ... OK
==> Found dependencies: XML::LibXML
--> Working on XML::LibXML
Fetching http://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXML-2.0132.tar.gz ... OK
Configuring XML-LibXML-2.0132 ... OK
Building and testing XML-LibXML-2.0132 ... OK
Successfully installed XML-LibXML-2.0132
Building and testing WebService-DMM-0.11 ... OK
Successfully installed WebService-DMM-0.11
--> Working on WebService::Livedoor::Weather
Fetching http://www.cpan.org/authors/id/Y/YT/YTURTLE/WebService-Livedoor-Weather-0.10.tar.gz ... OK
Configuring WebService-Livedoor-Weather-0.10 ... OK
Building and testing WebService-Livedoor-Weather-0.10 ... OK
Successfully installed WebService-Livedoor-Weather-0.10
--> Working on WebService::Simple
Fetching http://www.cpan.org/authors/id/Y/YU/YUSUKEBE/WebService-Simple-0.25.tar.gz ... OK
Configuring WebService-Simple-0.25 ... OK
Building and testing WebService-Simple-0.25 ... OK
Successfully installed WebService-Simple-0.25
--> Working on WebService::Simple::AWS
Fetching http://www.cpan.org/authors/id/Y/YU/YUSUKEBE/WebService-Simple-AWS-0.02.tar.gz ... OK
Configuring WebService-Simple-AWS-0.02 ... OK
Building and testing WebService-Simple-AWS-0.02 ... OK
Successfully installed WebService-Simple-AWS-0.02
--> Working on WebService::Tumblr
Fetching http://www.cpan.org/authors/id/R/RO/ROKR/WebService-Tumblr-0.0010.tar.gz ... OK
Configuring WebService-Tumblr-0.0010 ... OK
Building and testing WebService-Tumblr-0.0010 ... OK
Successfully installed WebService-Tumblr-0.0010
! Finding XML-FeedPP () on mirror http://www.cpan.org failed.
! Couldn't find module or a distribution XML-FeedPP
--> Working on XML::Atom
Fetching http://www.cpan.org/authors/id/M/MI/MIYAGAWA/XML-Atom-0.42.tar.gz ... OK
Configuring XML-Atom-0.42 ... OK
==> Found dependencies: XML::XPath
--> Working on XML::XPath
Fetching http://www.cpan.org/authors/id/M/MA/MANWAR/XML-XPath-1.42.tar.gz ... OK
Configuring XML-XPath-1.42 ... OK
Building and testing XML-XPath-1.42 ... OK
Successfully installed XML-XPath-1.42
Building and testing XML-Atom-0.42 ... OK
Successfully installed XML-Atom-0.42
--> Working on XML::Feed
Fetching http://www.cpan.org/authors/id/D/DA/DAVECROSS/XML-Feed-0.53.tar.gz ... OK
Configuring XML-Feed-0.53 ... OK
==> Found dependencies: XML::RSS
--> Working on XML::RSS
Fetching http://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-RSS-1.60.tar.gz ... OK
Configuring XML-RSS-1.60 ... OK
Building and testing XML-RSS-1.60 ... OK
Successfully installed XML-RSS-1.60
Building and testing XML-Feed-0.53 ... OK
Successfully installed XML-Feed-0.53
! Finding XMLRPC-Lite () on mirror http://www.cpan.org failed.
! Couldn't find module or a distribution XMLRPC-Lite
--> Working on install
Fetching http://www.cpan.org/authors/id/D/DA/DAGOLDEN/install-0.01.tar.gz ... OK
Configuring install-0.01 ... OK
Building and testing install-0.01 ... OK
Successfully installed install-0.01
! Finding libwww::perl () on mirror http://www.cpan.org failed.
! Couldn't find module or a distribution libwww::perl
555 distributions installed

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.