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
|
DC-Build-Header: pinto 0.97+dfsg-2 / 2014-07-19 05:47:24 +0000
DC-Task: source:pinto version:0.97+dfsg-2 architecture:all chroot:unstable esttime:1088 logfile:/tmp/pinto_0.97+dfsg-2_unstable.log modes:
DC-Sbuild-call: su user -c 'sbuild -n -A -s --force-orig-source --apt-update -d unstable -v pinto_0.97+dfsg-2'
sbuild (Debian sbuild) 0.63.2 (18 Aug 2012) on ip-172-31-15-114.us-west-2.compute.internal
╔══════════════════════════════════════════════════════════════════════════════╗
║ pinto 0.97+dfsg-2 (amd64) 19 Jul 2014 05:47 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Package: pinto
Version: 0.97+dfsg-2
Source Version: 0.97+dfsg-2
Distribution: unstable
Machine Architecture: amd64
Host Architecture: amd64
Build Architecture: amd64
I: NOTICE: Log filtering will replace 'build/pinto-9rEuUe/pinto-0.97+dfsg' with '«PKGBUILDDIR»'
I: NOTICE: Log filtering will replace 'build/pinto-9rEuUe' with '«BUILDDIR»'
I: NOTICE: Log filtering will replace 'var/lib/schroot/mount/unstable-amd64-sbuild-bae70a4c-760e-4317-9e9b-2bf314f6d271' with '«CHROOT»'
┌──────────────────────────────────────────────────────────────────────────────┐
│ Update chroot │
└──────────────────────────────────────────────────────────────────────────────┘
Get:1 http://localhost:9999 unstable InRelease [206 kB]
Ign http://localhost:9999 unstable/main Sources/DiffIndex
Ign http://localhost:9999 unstable/main amd64 Packages/DiffIndex
Get:2 http://localhost:9999 unstable/main Translation-en/DiffIndex [7876 B]
Get:3 http://localhost:9999 unstable/main 2014-07-18-2054.40.pdiff [735 B]
Get:4 http://localhost:9999 unstable/main 2014-07-18-2054.40.pdiff [735 B]
Get:5 http://localhost:9999 unstable/main Sources [9535 kB]
Get:6 http://localhost:9999 unstable/main amd64 Packages [9116 kB]
Fetched 18.9 MB in 3s (4804 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
┌──────────────────────────────────────────────────────────────────────────────┐
│ Fetch source files │
└──────────────────────────────────────────────────────────────────────────────┘
Check APT
─────────
Checking available source versions...
Download source files with APT
──────────────────────────────
Reading package lists...
Building dependency tree...
Reading state information...
NOTICE: 'pinto' packaging is maintained in the 'Git' version control system at:
git://anonscm.debian.org/pkg-perl/packages/pinto.git
Need to get 189 kB of source archives.
Get:1 http://localhost:9999/debian/ unstable/main pinto 0.97+dfsg-2 (dsc) [3379 B]
Get:2 http://localhost:9999/debian/ unstable/main pinto 0.97+dfsg-2 (tar) [174 kB]
Get:3 http://localhost:9999/debian/ unstable/main pinto 0.97+dfsg-2 (diff) [11.0 kB]
Fetched 189 kB in 1s (154 kB/s)
Download complete and in download only mode
Check arch
──────────
Merged Build-Depends: build-essential, fakeroot
Filtered Build-Depends: build-essential, fakeroot
dpkg-deb: building package `sbuild-build-depends-core-dummy' in `/«BUILDDIR»/resolver-iO55JQ/apt_archive/sbuild-build-depends-core-dummy.deb'.
OK
Reading package lists...
┌──────────────────────────────────────────────────────────────────────────────┐
│ Install core build dependencies (apt-based resolver) │
└──────────────────────────────────────────────────────────────────────────────┘
Installing build dependencies
Reading package lists...
Building dependency tree...
Reading state information...
The following NEW packages will be installed:
sbuild-build-depends-core-dummy
debconf: delaying package configuration, since apt-utils is not installed
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/816 B of archives.
After this operation, 0 B of additional disk space will be used.
Selecting previously unselected package sbuild-build-depends-core-dummy.
(Reading database ... 14230 files and directories currently installed.)
Preparing to unpack .../sbuild-build-depends-core-dummy.deb ...
Unpacking sbuild-build-depends-core-dummy (0.invalid.0) ...
Setting up sbuild-build-depends-core-dummy (0.invalid.0) ...
Merged Build-Depends: base-files, base-passwd, bash, bsdutils, coreutils, dash, debianutils, diffutils, dpkg, e2fsprogs, findutils, grep, gzip, hostname, libc-bin, login, mount, ncurses-base, ncurses-bin, perl-base, sed, sysvinit, sysvinit-utils, tar, util-linux, libc6-dev | libc-dev, gcc (>= 4:4.4.3), g++ (>= 4:4.4.3), make, dpkg-dev (>= 1.13.5), debhelper (>= 8), libmodule-build-perl (>= 0.400500) | perl (>= 5.19.1), cpanminus (>= 1.6916), libapache-htpasswd-perl, libapp-cmd-perl, libarchive-extract-perl, libauthen-simple-passwd-perl, libcapture-tiny-perl, libclass-load-perl, libcpan-checksums-perl, libcpan-distnameinfo-perl, libcwd-guard-perl, libdatetime-perl, libdatetime-timezone-perl, libdbd-sqlite3-perl (>= 1.33), libdbix-class-perl (>= 0.08200), libdevel-stacktrace-perl, libdist-metadata-perl (>= 0.924), libfile-homedir-perl, libfile-nfslock-perl, libfile-which-perl, libhttp-body-perl, libhttp-date-perl, libhttp-message-perl, libio-interactive-perl, libio-prompt-perl, libio-string-perl, libjson-perl, liblist-moreutils-perl, libmodule-build-cleaninstall-perl, libmodule-corelist-perl (>= 3.03) | perl (>= 5.18.2), libmodule-faker-perl, libmoose-perl, libmoosex-aliases-perl, libmoosex-classattribute-perl, libmoosex-configuration-perl, libmoosex-markasmethods-perl, libmoosex-nonmoose-perl, libmoosex-setonce-perl, libmoosex-strictconstructor-perl, libmoosex-types-perl, libpackage-locator-perl, libpath-class-perl, libplack-perl (>= 1.0028), libproc-fork-perl, libproc-terminator-perl, libreadonly-perl, librouter-simple-perl, libstring-format-perl, libterm-editoredit-perl, libtest-exception-perl, libtest-file-perl, libtest-lwp-useragent-perl, libtest-tcp-perl, libtest-warn-perl, libthrowable-perl (>= 0.200005), libtry-tiny-perl, liburi-perl, libuuid-tiny-perl, libwww-perl, starman (>= 0.3014)
Filtered Build-Depends: base-files, base-passwd, bash, bsdutils, coreutils, dash, debianutils, diffutils, dpkg, e2fsprogs, findutils, grep, gzip, hostname, libc-bin, login, mount, ncurses-base, ncurses-bin, perl-base, sed, sysvinit, sysvinit-utils, tar, util-linux, libc6-dev, gcc (>= 4:4.4.3), g++ (>= 4:4.4.3), make, dpkg-dev (>= 1.13.5), debhelper (>= 8), libmodule-build-perl (>= 0.400500), cpanminus (>= 1.6916), libapache-htpasswd-perl, libapp-cmd-perl, libarchive-extract-perl, libauthen-simple-passwd-perl, libcapture-tiny-perl, libclass-load-perl, libcpan-checksums-perl, libcpan-distnameinfo-perl, libcwd-guard-perl, libdatetime-perl, libdatetime-timezone-perl, libdbd-sqlite3-perl (>= 1.33), libdbix-class-perl (>= 0.08200), libdevel-stacktrace-perl, libdist-metadata-perl (>= 0.924), libfile-homedir-perl, libfile-nfslock-perl, libfile-which-perl, libhttp-body-perl, libhttp-date-perl, libhttp-message-perl, libio-interactive-perl, libio-prompt-perl, libio-string-perl, libjson-perl, liblist-moreutils-perl, libmodule-build-cleaninstall-perl, libmodule-corelist-perl (>= 3.03), libmodule-faker-perl, libmoose-perl, libmoosex-aliases-perl, libmoosex-classattribute-perl, libmoosex-configuration-perl, libmoosex-markasmethods-perl, libmoosex-nonmoose-perl, libmoosex-setonce-perl, libmoosex-strictconstructor-perl, libmoosex-types-perl, libpackage-locator-perl, libpath-class-perl, libplack-perl (>= 1.0028), libproc-fork-perl, libproc-terminator-perl, libreadonly-perl, librouter-simple-perl, libstring-format-perl, libterm-editoredit-perl, libtest-exception-perl, libtest-file-perl, libtest-lwp-useragent-perl, libtest-tcp-perl, libtest-warn-perl, libthrowable-perl (>= 0.200005), libtry-tiny-perl, liburi-perl, libuuid-tiny-perl, libwww-perl, starman (>= 0.3014)
dpkg-deb: building package `sbuild-build-depends-pinto-dummy' in `/«BUILDDIR»/resolver-wiSwEZ/apt_archive/sbuild-build-depends-pinto-dummy.deb'.
OK
Reading package lists...
┌──────────────────────────────────────────────────────────────────────────────┐
│ Install pinto build dependencies (apt-based resolver) │
└──────────────────────────────────────────────────────────────────────────────┘
Installing build dependencies
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
bsdmainutils ca-certificates cpanminus curl debhelper file gettext
gettext-base groff-base intltool-debian libalgorithm-c3-perl libaliased-perl
libany-moose-perl libapache-htpasswd-perl libapache-logformat-compiler-perl
libapp-cmd-perl libarchive-any-create-perl libarchive-zip-perl
libasprintf0c2 libauthen-simple-passwd-perl libauthen-simple-perl
libb-hooks-endofscope-perl libcapture-tiny-perl libcarp-clan-perl
libclass-accessor-chained-perl libclass-accessor-grouped-perl
libclass-accessor-lite-perl libclass-accessor-perl
libclass-c3-componentised-perl libclass-c3-perl
libclass-data-inheritable-perl libclass-inspector-perl libclass-load-perl
libclass-load-xs-perl libclass-method-modifiers-perl libclass-singleton-perl
libclone-perl libcompress-bzip2-perl libconfig-any-perl libconfig-ini-perl
libcontext-preserve-perl libcpan-checksums-perl libcpan-distnameinfo-perl
libcpan-meta-check-perl libcpan-meta-perl libcpan-meta-requirements-perl
libcpan-meta-yaml-perl libcroco3 libcrypt-passwdmd5-perl libcurl3
libcwd-guard-perl libdata-compare-perl libdata-dump-perl
libdata-dumper-concise-perl libdata-optlist-perl libdata-page-perl
libdatetime-locale-perl libdatetime-perl libdatetime-timezone-perl
libdbd-sqlite3-perl libdbi-perl libdbix-class-perl
libdevel-globaldestruction-perl libdevel-stacktrace-ashtml-perl
libdevel-stacktrace-perl libdist-metadata-perl libencode-locale-perl
libeval-closure-perl libexception-class-perl libexporter-tidy-perl libffi6
libfile-find-rule-perl libfile-homedir-perl libfile-listing-perl
libfile-next-perl libfile-nfslock-perl libfile-pushd-perl
libfile-sharedir-perl libfile-spec-native-perl libfile-which-perl
libfilesys-notify-simple-perl libgcrypt11 libgcrypt20
libgetopt-long-descriptive-perl libglib2.0-0 libgnutls-deb0-28 libgnutls26
libgpg-error0 libgssapi-krb5-2 libhash-merge-perl libhash-multivalue-perl
libhogweed2 libhtml-parser-perl libhtml-tagset-perl libhtml-tree-perl
libhttp-body-perl libhttp-cookies-perl libhttp-date-perl
libhttp-message-perl libhttp-negotiate-perl libhttp-parser-xs-perl
libhttp-tiny-perl libidn11 libimport-into-perl libio-html-perl
libio-interactive-perl libio-multiplex-perl libio-prompt-perl
libio-socket-inet6-perl libio-socket-ssl-perl libio-string-perl
libio-stringy-perl libio-tiecombine-perl libjson-perl libjson-pp-perl
libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 libldap-2.4-2
liblist-allutils-perl liblist-moreutils-perl liblocal-lib-perl
liblwp-mediatypes-perl liblwp-protocol-https-perl libmagic1
libmixin-linewise-perl libmodule-build-cleaninstall-perl
libmodule-build-perl libmodule-corelist-perl libmodule-cpanfile-perl
libmodule-faker-perl libmodule-find-perl libmodule-implementation-perl
libmodule-metadata-perl libmodule-refresh-perl libmodule-runtime-perl
libmoo-perl libmoose-perl libmoosex-aliases-perl
libmoosex-classattribute-perl libmoosex-configuration-perl
libmoosex-markasmethods-perl libmoosex-nonmoose-perl libmoosex-setonce-perl
libmoosex-strictconstructor-perl libmoosex-types-path-class-perl
libmoosex-types-perl libmoosex-types-uri-perl libmro-compat-perl
libnamespace-autoclean-perl libnamespace-clean-perl libnet-cidr-perl
libnet-http-perl libnet-server-perl libnet-ssleay-perl libnettle4
libnumber-compare-perl libp11-kit0 libpackage-deprecationmanager-perl
libpackage-locator-perl libpackage-stash-perl libpackage-stash-xs-perl
libparams-classify-perl libparams-util-perl libparams-validate-perl
libparse-cpan-meta-perl libpath-class-perl libperlio-utf8-strict-perl
libpipeline1 libplack-perl libposix-strftime-compiler-perl libproc-fork-perl
libproc-terminator-perl libreadonly-perl librole-tiny-perl
librouter-simple-perl librtmp1 libsafe-isa-perl libsasl2-2
libsasl2-modules-db libscope-guard-perl libsocket6-perl libsql-abstract-perl
libsqlite3-0 libssh2-1 libssl1.0.0 libstream-buffered-perl
libstrictures-perl libstring-format-perl libstring-rewriteprefix-perl
libstring-shellquote-perl libsub-exporter-perl
libsub-exporter-progressive-perl libsub-identify-perl libsub-install-perl
libsub-name-perl libsub-uplevel-perl libtask-weaken-perl libtasn1-6
libterm-editoredit-perl libterm-readkey-perl libtest-exception-perl
libtest-file-perl libtest-lwp-useragent-perl libtest-sharedfork-perl
libtest-tcp-perl libtest-use-ok-perl libtest-warn-perl
libtext-autoformat-perl libtext-clip-perl libtext-glob-perl
libtext-reform-perl libtext-template-perl libthrowable-perl libtry-tiny-perl
libunistring0 libuniversal-require-perl liburi-fromhash-perl liburi-perl
libuuid-tiny-perl libvariable-magic-perl libversion-perl libwant-perl
libwww-perl libwww-robotrules-perl libxml2 libyaml-perl man-db netbase
openssl po-debconf starman
Suggested packages:
wamerican wordlist whois vacation dh-make gettext-doc groff
libauthen-simple-cdbi-perl libauthen-simple-dbi-perl
libauthen-simple-dbm-perl libauthen-simple-net-perl
libauthen-simple-radius-perl libscalar-properties-perl libmldbm-perl
libnet-daemon-perl libsql-statement-perl libjson-any-perl
libmath-base36-perl libmoosex-types-json-perl libtext-csv-perl rng-tools
gnutls-bin krb5-doc krb5-user libcrypt-ssleay-perl liblog-log4perl-perl
libscalar-number-perl libauthen-ntlm-perl libyaml-shell-perl less
www-browser libmail-box-perl
Recommended packages:
autopoint libasprintf-dev libgettextpo-dev libclass-xsaccessor-perl
libclass-c3-xs-perl libconfig-general-perl libconfig-tiny-perl
libxml-simple-perl libdevel-argnames-perl libsql-translator-perl
libdevel-lexalias-perl libglib2.0-data shared-mime-info libhtml-format-perl
libhttp-cookiejar-perl libio-socket-ip-perl libjson-xs-perl krb5-locales
libmodule-signature-perl libpod-readme-perl libsoftware-license-perl
libdevel-partialdump-perl libmoosex-getopt-perl libcgi-compile-perl
libcgi-emulate-psgi-perl libfcgi-perl libfcgi-procmanager-perl
libio-handle-util-perl libsasl2-modules libbareword-filehandles-perl
libindirect-perl libmultidimensional-perl libhtml-form-perl
libhttp-daemon-perl libmailtools-perl xml-core libyaml-libyaml-perl
libyaml-syck-perl ifupdown libmail-sendmail-perl libserver-starter-perl
The following NEW packages will be installed:
bsdmainutils ca-certificates cpanminus curl debhelper file gettext
gettext-base groff-base intltool-debian libalgorithm-c3-perl libaliased-perl
libany-moose-perl libapache-htpasswd-perl libapache-logformat-compiler-perl
libapp-cmd-perl libarchive-any-create-perl libarchive-zip-perl
libasprintf0c2 libauthen-simple-passwd-perl libauthen-simple-perl
libb-hooks-endofscope-perl libcapture-tiny-perl libcarp-clan-perl
libclass-accessor-chained-perl libclass-accessor-grouped-perl
libclass-accessor-lite-perl libclass-accessor-perl
libclass-c3-componentised-perl libclass-c3-perl
libclass-data-inheritable-perl libclass-inspector-perl libclass-load-perl
libclass-load-xs-perl libclass-method-modifiers-perl libclass-singleton-perl
libclone-perl libcompress-bzip2-perl libconfig-any-perl libconfig-ini-perl
libcontext-preserve-perl libcpan-checksums-perl libcpan-distnameinfo-perl
libcpan-meta-check-perl libcpan-meta-perl libcpan-meta-requirements-perl
libcpan-meta-yaml-perl libcroco3 libcrypt-passwdmd5-perl libcurl3
libcwd-guard-perl libdata-compare-perl libdata-dump-perl
libdata-dumper-concise-perl libdata-optlist-perl libdata-page-perl
libdatetime-locale-perl libdatetime-perl libdatetime-timezone-perl
libdbd-sqlite3-perl libdbi-perl libdbix-class-perl
libdevel-globaldestruction-perl libdevel-stacktrace-ashtml-perl
libdevel-stacktrace-perl libdist-metadata-perl libencode-locale-perl
libeval-closure-perl libexception-class-perl libexporter-tidy-perl libffi6
libfile-find-rule-perl libfile-homedir-perl libfile-listing-perl
libfile-next-perl libfile-nfslock-perl libfile-pushd-perl
libfile-sharedir-perl libfile-spec-native-perl libfile-which-perl
libfilesys-notify-simple-perl libgcrypt11 libgcrypt20
libgetopt-long-descriptive-perl libglib2.0-0 libgnutls-deb0-28 libgnutls26
libgpg-error0 libgssapi-krb5-2 libhash-merge-perl libhash-multivalue-perl
libhogweed2 libhtml-parser-perl libhtml-tagset-perl libhtml-tree-perl
libhttp-body-perl libhttp-cookies-perl libhttp-date-perl
libhttp-message-perl libhttp-negotiate-perl libhttp-parser-xs-perl
libhttp-tiny-perl libidn11 libimport-into-perl libio-html-perl
libio-interactive-perl libio-multiplex-perl libio-prompt-perl
libio-socket-inet6-perl libio-socket-ssl-perl libio-string-perl
libio-stringy-perl libio-tiecombine-perl libjson-perl libjson-pp-perl
libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 libldap-2.4-2
liblist-allutils-perl liblist-moreutils-perl liblocal-lib-perl
liblwp-mediatypes-perl liblwp-protocol-https-perl libmagic1
libmixin-linewise-perl libmodule-build-cleaninstall-perl
libmodule-build-perl libmodule-corelist-perl libmodule-cpanfile-perl
libmodule-faker-perl libmodule-find-perl libmodule-implementation-perl
libmodule-metadata-perl libmodule-refresh-perl libmodule-runtime-perl
libmoo-perl libmoose-perl libmoosex-aliases-perl
libmoosex-classattribute-perl libmoosex-configuration-perl
libmoosex-markasmethods-perl libmoosex-nonmoose-perl libmoosex-setonce-perl
libmoosex-strictconstructor-perl libmoosex-types-path-class-perl
libmoosex-types-perl libmoosex-types-uri-perl libmro-compat-perl
libnamespace-autoclean-perl libnamespace-clean-perl libnet-cidr-perl
libnet-http-perl libnet-server-perl libnet-ssleay-perl libnettle4
libnumber-compare-perl libp11-kit0 libpackage-deprecationmanager-perl
libpackage-locator-perl libpackage-stash-perl libpackage-stash-xs-perl
libparams-classify-perl libparams-util-perl libparams-validate-perl
libparse-cpan-meta-perl libpath-class-perl libperlio-utf8-strict-perl
libpipeline1 libplack-perl libposix-strftime-compiler-perl libproc-fork-perl
libproc-terminator-perl libreadonly-perl librole-tiny-perl
librouter-simple-perl librtmp1 libsafe-isa-perl libsasl2-2
libsasl2-modules-db libscope-guard-perl libsocket6-perl libsql-abstract-perl
libsqlite3-0 libssh2-1 libssl1.0.0 libstream-buffered-perl
libstrictures-perl libstring-format-perl libstring-rewriteprefix-perl
libstring-shellquote-perl libsub-exporter-perl
libsub-exporter-progressive-perl libsub-identify-perl libsub-install-perl
libsub-name-perl libsub-uplevel-perl libtask-weaken-perl libtasn1-6
libterm-editoredit-perl libterm-readkey-perl libtest-exception-perl
libtest-file-perl libtest-lwp-useragent-perl libtest-sharedfork-perl
libtest-tcp-perl libtest-use-ok-perl libtest-warn-perl
libtext-autoformat-perl libtext-clip-perl libtext-glob-perl
libtext-reform-perl libtext-template-perl libthrowable-perl libtry-tiny-perl
libunistring0 libuniversal-require-perl liburi-fromhash-perl liburi-perl
libuuid-tiny-perl libvariable-magic-perl libversion-perl libwant-perl
libwww-perl libwww-robotrules-perl libxml2 libyaml-perl man-db netbase
openssl po-debconf sbuild-build-depends-pinto-dummy starman
0 upgraded, 234 newly installed, 0 to remove and 0 not upgraded.
Need to get 26.3 MB/26.3 MB of archives.
After this operation, 84.8 MB of additional disk space will be used.
Get:1 http://localhost:9999/debian/ unstable/main libpipeline1 amd64 1.3.0-1 [25.8 kB]
Get:2 http://localhost:9999/debian/ unstable/main libssl1.0.0 amd64 1.0.1h-3 [1011 kB]
Get:3 http://localhost:9999/debian/ unstable/main groff-base amd64 1.22.2-6 [1088 kB]
Get:4 http://localhost:9999/debian/ unstable/main bsdmainutils amd64 9.0.5 [211 kB]
Get:5 http://localhost:9999/debian/ unstable/main man-db amd64 2.6.7.1-1 [990 kB]
Get:6 http://localhost:9999/debian/ unstable/main libasprintf0c2 amd64 0.18.3.2-4 [29.6 kB]
Get:7 http://localhost:9999/debian/ unstable/main libgpg-error0 amd64 1.13-0.1 [58.4 kB]
Get:8 http://localhost:9999/debian/ unstable/main libgcrypt11 amd64 1.5.3-4 [250 kB]
Get:9 http://localhost:9999/debian/ unstable/main libgcrypt20 amd64 1.6.1-2 [381 kB]
Get:10 http://localhost:9999/debian/ unstable/main libnettle4 amd64 2.7.1-2+b1 [172 kB]
Get:11 http://localhost:9999/debian/ unstable/main libhogweed2 amd64 2.7.1-2+b1 [125 kB]
Get:12 http://localhost:9999/debian/ unstable/main libffi6 amd64 3.1-2 [19.8 kB]
Get:13 http://localhost:9999/debian/ unstable/main libp11-kit0 amd64 0.20.2-5 [81.1 kB]
Get:14 http://localhost:9999/debian/ unstable/main libtasn1-6 amd64 4.0-2 [47.9 kB]
Get:15 http://localhost:9999/debian/ unstable/main libgnutls-deb0-28 amd64 3.2.15-3 [676 kB]
Get:16 http://localhost:9999/debian/ unstable/main libgnutls26 amd64 2.12.23-17 [531 kB]
Get:17 http://localhost:9999/debian/ unstable/main libkeyutils1 amd64 1.5.9-4 [11.6 kB]
Get:18 http://localhost:9999/debian/ unstable/main libkrb5support0 amd64 1.12.1+dfsg-4 [57.0 kB]
Get:19 http://localhost:9999/debian/ unstable/main libk5crypto3 amd64 1.12.1+dfsg-4 [111 kB]
Get:20 http://localhost:9999/debian/ unstable/main libkrb5-3 amd64 1.12.1+dfsg-4 [298 kB]
Get:21 http://localhost:9999/debian/ unstable/main libgssapi-krb5-2 amd64 1.12.1+dfsg-4 [147 kB]
Get:22 http://localhost:9999/debian/ unstable/main libidn11 amd64 1.28-2 [158 kB]
Get:23 http://localhost:9999/debian/ unstable/main libsasl2-modules-db amd64 2.1.26.dfsg1-11 [66.8 kB]
Get:24 http://localhost:9999/debian/ unstable/main libsasl2-2 amd64 2.1.26.dfsg1-11 [104 kB]
Get:25 http://localhost:9999/debian/ unstable/main libldap-2.4-2 amd64 2.4.39-1 [212 kB]
Get:26 http://localhost:9999/debian/ unstable/main libmagic1 amd64 1:5.19-1 [237 kB]
Get:27 http://localhost:9999/debian/ unstable/main libsqlite3-0 amd64 3.8.5-2 [420 kB]
Get:28 http://localhost:9999/debian/ unstable/main libxml2 amd64 2.9.1+dfsg1-4 [797 kB]
Get:29 http://localhost:9999/debian/ unstable/main libglib2.0-0 amd64 2.40.0-3 [2405 kB]
Get:30 http://localhost:9999/debian/ unstable/main libcroco3 amd64 0.6.8-2 [133 kB]
Get:31 http://localhost:9999/debian/ unstable/main librtmp1 amd64 2.4+20131018.git79459a2-3 [59.2 kB]
Get:32 http://localhost:9999/debian/ unstable/main libssh2-1 amd64 1.4.3-3 [125 kB]
Get:33 http://localhost:9999/debian/ unstable/main libcurl3 amd64 7.37.1-1 [254 kB]
Get:34 http://localhost:9999/debian/ unstable/main libparams-util-perl amd64 1.07-1+b1 [25.3 kB]
Get:35 http://localhost:9999/debian/ unstable/main libsub-install-perl all 0.928-1 [11.4 kB]
Get:36 http://localhost:9999/debian/ unstable/main libdata-optlist-perl all 0.109-1 [10.6 kB]
Get:37 http://localhost:9999/debian/ unstable/main libparams-classify-perl amd64 0.013-4+b1 [24.1 kB]
Get:38 http://localhost:9999/debian/ unstable/main libmodule-runtime-perl all 0.014-1 [17.9 kB]
Get:39 http://localhost:9999/debian/ unstable/main libtry-tiny-perl all 0.22-1 [19.6 kB]
Get:40 http://localhost:9999/debian/ unstable/main libmodule-implementation-perl all 0.07-1 [12.3 kB]
Get:41 http://localhost:9999/debian/ unstable/main libpackage-stash-perl all 0.36-1 [22.4 kB]
Get:42 http://localhost:9999/debian/ unstable/main libclass-load-perl all 0.21-1 [13.3 kB]
Get:43 http://localhost:9999/debian/ unstable/main libclass-load-xs-perl amd64 0.08-1 [14.7 kB]
Get:44 http://localhost:9999/debian/ unstable/main libsub-exporter-progressive-perl all 0.001011-1 [7748 B]
Get:45 http://localhost:9999/debian/ unstable/main libdevel-globaldestruction-perl all 0.12-1 [8448 B]
Get:46 http://localhost:9999/debian/ unstable/main libdevel-stacktrace-perl all 1.3400-1 [23.9 kB]
Get:47 http://localhost:9999/debian/ unstable/main libsub-exporter-perl all 0.986-1 [49.9 kB]
Get:48 http://localhost:9999/debian/ unstable/main libeval-closure-perl all 0.11-1 [11.6 kB]
Get:49 http://localhost:9999/debian/ unstable/main liblist-moreutils-perl amd64 0.33-2 [43.5 kB]
Get:50 http://localhost:9999/debian/ unstable/main libalgorithm-c3-perl all 0.09-1 [11.9 kB]
Get:51 http://localhost:9999/debian/ unstable/main libclass-c3-perl all 0.26-1 [22.9 kB]
Get:52 http://localhost:9999/debian/ unstable/main libmro-compat-perl all 0.12-1 [13.2 kB]
Get:53 http://localhost:9999/debian/ unstable/main libpackage-deprecationmanager-perl all 0.13-1 [13.9 kB]
Get:54 http://localhost:9999/debian/ unstable/main libpackage-stash-xs-perl amd64 0.28-2 [18.1 kB]
Get:55 http://localhost:9999/debian/ unstable/main libsub-name-perl amd64 0.07-1 [10.1 kB]
Get:56 http://localhost:9999/debian/ unstable/main libtask-weaken-perl all 1.04-1 [7990 B]
Get:57 http://localhost:9999/debian/ unstable/main libmoose-perl amd64 2.1210-1 [884 kB]
Get:58 http://localhost:9999/debian/ unstable/main libvariable-magic-perl amd64 0.53-1 [41.2 kB]
Get:59 http://localhost:9999/debian/ unstable/main libb-hooks-endofscope-perl all 0.13-1 [15.4 kB]
Get:60 http://localhost:9999/debian/ unstable/main libsub-identify-perl amd64 0.04-2 [9398 B]
Get:61 http://localhost:9999/debian/ unstable/main libnamespace-clean-perl all 0.25-1 [15.4 kB]
Get:62 http://localhost:9999/debian/ unstable/main libnamespace-autoclean-perl all 0.19-1 [13.2 kB]
Get:63 http://localhost:9999/debian/ unstable/main libmoosex-strictconstructor-perl all 0.19-1 [16.4 kB]
Get:64 http://localhost:9999/debian/ unstable/main libunistring0 amd64 0.9.3-5 [434 kB]
Get:65 http://localhost:9999/debian/ unstable/main netbase all 5.2 [18.9 kB]
Get:66 http://localhost:9999/debian/ unstable/main file amd64 1:5.19-1 [58.0 kB]
Get:67 http://localhost:9999/debian/ unstable/main gettext-base amd64 0.18.3.2-4 [116 kB]
Get:68 http://localhost:9999/debian/ unstable/main openssl amd64 1.0.1h-3 [668 kB]
Get:69 http://localhost:9999/debian/ unstable/main ca-certificates all 20140325 [193 kB]
Get:70 http://localhost:9999/debian/ unstable/main curl amd64 7.37.1-1 [195 kB]
Get:71 http://localhost:9999/debian/ unstable/main libhttp-tiny-perl all 0.043-2 [33.8 kB]
Get:72 http://localhost:9999/debian/ unstable/main libaliased-perl all 0.31-1 [12.1 kB]
Get:73 http://localhost:9999/debian/ unstable/main libcpan-distnameinfo-perl all 0.12-1 [9472 B]
Get:74 http://localhost:9999/debian/ unstable/main libcpan-meta-yaml-perl all 0.012-1 [14.2 kB]
Get:75 http://localhost:9999/debian/ unstable/main libjson-pp-perl all 2.27203-1 [51.3 kB]
Get:76 http://localhost:9999/debian/ unstable/main libparse-cpan-meta-perl all 1.4414-1 [14.3 kB]
Get:77 http://localhost:9999/debian/ unstable/main libcpan-meta-requirements-perl all 2.125-1 [12.5 kB]
Get:78 http://localhost:9999/debian/ unstable/main libcpan-meta-perl all 2.141520-1 [79.9 kB]
Get:79 http://localhost:9999/debian/ unstable/main libcpan-meta-check-perl all 0.009-1 [11.0 kB]
Get:80 http://localhost:9999/debian/ unstable/main libfile-pushd-perl all 1.009-1 [13.6 kB]
Get:81 http://localhost:9999/debian/ unstable/main libversion-perl amd64 1:0.9908-1 [82.6 kB]
Get:82 http://localhost:9999/debian/ unstable/main libmodule-metadata-perl all 1.000024-1 [21.6 kB]
Get:83 http://localhost:9999/debian/ unstable/main libmodule-build-perl all 0.420500-1 [270 kB]
Get:84 http://localhost:9999/debian/ unstable/main liblocal-lib-perl all 2.000012-1 [54.2 kB]
Get:85 http://localhost:9999/debian/ unstable/main libmodule-cpanfile-perl all 1.0002-1 [27.4 kB]
Get:86 http://localhost:9999/debian/ unstable/main libstring-shellquote-perl all 1.03-1 [14.0 kB]
Get:87 http://localhost:9999/debian/ unstable/main cpanminus all 1.7004-2 [208 kB]
Get:88 http://localhost:9999/debian/ unstable/main gettext amd64 0.18.3.2-4 [1208 kB]
Get:89 http://localhost:9999/debian/ unstable/main intltool-debian all 0.35.0+20060710.1 [30.8 kB]
Get:90 http://localhost:9999/debian/ unstable/main po-debconf all 1.0.16+nmu3 [220 kB]
Get:91 http://localhost:9999/debian/ unstable/main debhelper all 9.20140613 [692 kB]
Get:92 http://localhost:9999/debian/ unstable/main libany-moose-perl all 0.24-1 [11.7 kB]
Get:93 http://localhost:9999/debian/ unstable/main libcrypt-passwdmd5-perl all 1.3-10 [10.5 kB]
Get:94 http://localhost:9999/debian/ unstable/main libapache-htpasswd-perl all 1.8-1.1 [16.3 kB]
Get:95 http://localhost:9999/debian/ unstable/main libposix-strftime-compiler-perl all 0.31-1 [11.0 kB]
Get:96 http://localhost:9999/debian/ unstable/main libapache-logformat-compiler-perl all 0.30-1 [11.0 kB]
Get:97 http://localhost:9999/debian/ unstable/main libcapture-tiny-perl all 0.24-2 [23.9 kB]
Get:98 http://localhost:9999/debian/ unstable/main libio-stringy-perl all 2.110-5 [98.3 kB]
Get:99 http://localhost:9999/debian/ unstable/main libparams-validate-perl amd64 1.13-1 [64.4 kB]
Get:100 http://localhost:9999/debian/ unstable/main libgetopt-long-descriptive-perl all 0.097-1 [26.9 kB]
Get:101 http://localhost:9999/debian/ unstable/main libio-tiecombine-perl all 1.003-1 [12.4 kB]
Get:102 http://localhost:9999/debian/ unstable/main libstring-rewriteprefix-perl all 0.007-1 [6794 B]
Get:103 http://localhost:9999/debian/ unstable/main libapp-cmd-perl all 0.323-1 [67.5 kB]
Get:104 http://localhost:9999/debian/ unstable/main libarchive-zip-perl all 1.37-2 [96.0 kB]
Get:105 http://localhost:9999/debian/ unstable/main libclass-data-inheritable-perl all 0.08-2 [9296 B]
Get:106 http://localhost:9999/debian/ unstable/main libexception-class-perl all 1.38-1 [30.2 kB]
Get:107 http://localhost:9999/debian/ unstable/main libuniversal-require-perl all 0.17-1 [9672 B]
Get:108 http://localhost:9999/debian/ unstable/main libarchive-any-create-perl all 0.3-1 [6814 B]
Get:109 http://localhost:9999/debian/ unstable/main libclass-accessor-perl all 0.34-1 [25.9 kB]
Get:110 http://localhost:9999/debian/ unstable/main libauthen-simple-perl all 0.5-1 [21.6 kB]
Get:111 http://localhost:9999/debian/ unstable/main libauthen-simple-passwd-perl all 0.6-3 [7920 B]
Get:112 http://localhost:9999/debian/ unstable/main libcarp-clan-perl all 6.04-1 [15.8 kB]
Get:113 http://localhost:9999/debian/ unstable/main libclass-accessor-chained-perl all 0.01.1~debian-2.1 [8008 B]
Get:114 http://localhost:9999/debian/ unstable/main libclass-accessor-grouped-perl all 0.10010-1 [25.3 kB]
Get:115 http://localhost:9999/debian/ unstable/main libclass-accessor-lite-perl all 0.06-1 [8418 B]
Get:116 http://localhost:9999/debian/ unstable/main libclass-inspector-perl all 1.28-1 [20.8 kB]
Get:117 http://localhost:9999/debian/ unstable/main libclass-c3-componentised-perl all 1.001000-1 [14.1 kB]
Get:118 http://localhost:9999/debian/ unstable/main libclass-method-modifiers-perl all 2.10-1 [17.8 kB]
Get:119 http://localhost:9999/debian/ unstable/main libclass-singleton-perl all 1.4-1 [13.6 kB]
Get:120 http://localhost:9999/debian/ unstable/main libclone-perl amd64 0.37-1 [13.8 kB]
Get:121 http://localhost:9999/debian/ unstable/main libcompress-bzip2-perl amd64 2.16-1+b1 [53.0 kB]
Get:122 http://localhost:9999/debian/ unstable/main libconfig-any-perl all 0.24-1 [36.3 kB]
Get:123 http://localhost:9999/debian/ unstable/main libperlio-utf8-strict-perl amd64 0.004-1 [11.2 kB]
Get:124 http://localhost:9999/debian/ unstable/main libmixin-linewise-perl all 0.106-1 [14.4 kB]
Get:125 http://localhost:9999/debian/ unstable/main libconfig-ini-perl all 1:0.024-1 [24.6 kB]
Get:126 http://localhost:9999/debian/ unstable/main libcontext-preserve-perl all 0.01-1 [7224 B]
Get:127 http://localhost:9999/debian/ unstable/main libnumber-compare-perl all 0.03-1 [7642 B]
Get:128 http://localhost:9999/debian/ unstable/main libtext-glob-perl all 0.09-1 [8610 B]
Get:129 http://localhost:9999/debian/ unstable/main libfile-find-rule-perl all 0.33-1 [32.1 kB]
Get:130 http://localhost:9999/debian/ unstable/main libdata-compare-perl all 1.23-0.1 [21.5 kB]
Get:131 http://localhost:9999/debian/ unstable/main libcpan-checksums-perl all 2.09-1 [10.8 kB]
Get:132 http://localhost:9999/debian/ unstable/main libcwd-guard-perl all 0.4-1 [5514 B]
Get:133 http://localhost:9999/debian/ unstable/main libdata-dump-perl all 1.22-1 [31.0 kB]
Get:134 http://localhost:9999/debian/ unstable/main libdata-dumper-concise-perl all 2.022-1 [16.4 kB]
Get:135 http://localhost:9999/debian/ unstable/main libdata-page-perl all 2.02-1 [12.3 kB]
Get:136 http://localhost:9999/debian/ unstable/main libdatetime-locale-perl all 1:0.45-2 [2272 kB]
Get:137 http://localhost:9999/debian/ unstable/main liblist-allutils-perl all 0.03-1 [14.9 kB]
Get:138 http://localhost:9999/debian/ unstable/main libdatetime-timezone-perl all 1:1.71-1+2014e [274 kB]
Get:139 http://localhost:9999/debian/ unstable/main libdatetime-perl amd64 2:1.10-1 [105 kB]
Get:140 http://localhost:9999/debian/ unstable/main libdbi-perl amd64 1.631-3 [815 kB]
Get:141 http://localhost:9999/debian/ unstable/main libdbd-sqlite3-perl amd64 1.42-2 [112 kB]
Get:142 http://localhost:9999/debian/ unstable/main libmodule-find-perl all 0.12-1 [9952 B]
Get:143 http://localhost:9999/debian/ unstable/main libimport-into-perl all 1.002004-1 [11.5 kB]
Get:144 http://localhost:9999/debian/ unstable/main librole-tiny-perl all 1.003003-1 [19.8 kB]
Get:145 http://localhost:9999/debian/ unstable/main libstrictures-perl all 1.005004-1 [13.5 kB]
Get:146 http://localhost:9999/debian/ unstable/main libmoo-perl all 1.005000-1 [62.0 kB]
Get:147 http://localhost:9999/debian/ unstable/main libpath-class-perl all 0.33-1 [42.6 kB]
Get:148 http://localhost:9999/debian/ unstable/main libscope-guard-perl all 0.20-1 [8176 B]
Get:149 http://localhost:9999/debian/ unstable/main libhash-merge-perl all 0.200-1 [14.7 kB]
Get:150 http://localhost:9999/debian/ unstable/main libsql-abstract-perl all 1.78-1 [74.5 kB]
Get:151 http://localhost:9999/debian/ unstable/main libdbix-class-perl all 0.08270-2 [781 kB]
Get:152 http://localhost:9999/debian/ unstable/main libdevel-stacktrace-ashtml-perl all 0.14-1 [12.6 kB]
Get:153 http://localhost:9999/debian/ unstable/main libfile-spec-native-perl all 1.003-1 [7974 B]
Get:154 http://localhost:9999/debian/ unstable/main libdist-metadata-perl all 0.925-1 [39.9 kB]
Get:155 http://localhost:9999/debian/ unstable/main libencode-locale-perl all 1.03-1 [13.6 kB]
Get:156 http://localhost:9999/debian/ unstable/main libexporter-tidy-perl all 0.07-2 [9588 B]
Get:157 http://localhost:9999/debian/ unstable/main libfile-which-perl all 1.09-1 [13.1 kB]
Get:158 http://localhost:9999/debian/ unstable/main libfile-homedir-perl all 1.00-1 [48.9 kB]
Get:159 http://localhost:9999/debian/ unstable/main libhttp-date-perl all 6.02-1 [10.7 kB]
Get:160 http://localhost:9999/debian/ unstable/main libfile-listing-perl all 6.04-1 [10.3 kB]
Get:161 http://localhost:9999/debian/ unstable/main libfile-next-perl all 1.12-1 [19.3 kB]
Get:162 http://localhost:9999/debian/ unstable/main libfile-nfslock-perl all 1.21-1 [21.4 kB]
Get:163 http://localhost:9999/debian/ unstable/main libfile-sharedir-perl all 1.102-1 [12.4 kB]
Get:164 http://localhost:9999/debian/ unstable/main libfilesys-notify-simple-perl all 0.12-1 [9362 B]
Get:165 http://localhost:9999/debian/ unstable/main libhash-multivalue-perl all 0.15-1 [14.4 kB]
Get:166 http://localhost:9999/debian/ unstable/main liburi-perl all 1.62-1 [95.2 kB]
Get:167 http://localhost:9999/debian/ unstable/main libhtml-tagset-perl all 3.20-2 [13.5 kB]
Get:168 http://localhost:9999/debian/ unstable/main libhtml-parser-perl amd64 3.71-1+b1 [117 kB]
Get:169 http://localhost:9999/debian/ unstable/main libhtml-tree-perl all 5.03-1 [210 kB]
Get:170 http://localhost:9999/debian/ unstable/main libio-html-perl all 1.001-1 [17.6 kB]
Get:171 http://localhost:9999/debian/ unstable/main liblwp-mediatypes-perl all 6.02-1 [22.1 kB]
Get:172 http://localhost:9999/debian/ unstable/main libhttp-message-perl all 6.06-1 [80.1 kB]
Get:173 http://localhost:9999/debian/ unstable/main libhttp-cookies-perl all 6.00-2 [23.5 kB]
Get:174 http://localhost:9999/debian/ unstable/main libhttp-negotiate-perl all 6.00-2 [13.6 kB]
Get:175 http://localhost:9999/debian/ unstable/main libnet-ssleay-perl amd64 1.65-1 [275 kB]
Get:176 http://localhost:9999/debian/ unstable/main libio-socket-ssl-perl all 1.992-1 [159 kB]
Get:177 http://localhost:9999/debian/ unstable/main libnet-http-perl all 6.06-1 [24.9 kB]
Get:178 http://localhost:9999/debian/ unstable/main liblwp-protocol-https-perl all 6.06-2 [9582 B]
Get:179 http://localhost:9999/debian/ unstable/main libwww-robotrules-perl all 6.01-1 [14.3 kB]
Get:180 http://localhost:9999/debian/ unstable/main libwww-perl all 6.07-1 [194 kB]
Get:181 http://localhost:9999/debian/ unstable/main libyaml-perl all 0.95-1 [70.9 kB]
Get:182 http://localhost:9999/debian/ unstable/main libhttp-body-perl all 1.19-1 [25.4 kB]
Get:183 http://localhost:9999/debian/ unstable/main libhttp-parser-xs-perl amd64 0.16-1+b1 [18.2 kB]
Get:184 http://localhost:9999/debian/ unstable/main libio-interactive-perl all 0.0.6-1 [10.6 kB]
Get:185 http://localhost:9999/debian/ unstable/main libio-multiplex-perl all 1.13-1 [24.0 kB]
Get:186 http://localhost:9999/debian/ unstable/main libterm-readkey-perl amd64 2.32-1 [27.6 kB]
Get:187 http://localhost:9999/debian/ unstable/main libwant-perl amd64 0.23-1 [27.1 kB]
Get:188 http://localhost:9999/debian/ unstable/main libio-prompt-perl all 0.997002-1 [24.9 kB]
Get:189 http://localhost:9999/debian/ unstable/main libsocket6-perl amd64 0.25-1 [28.1 kB]
Get:190 http://localhost:9999/debian/ unstable/main libio-socket-inet6-perl all 2.72-1 [16.6 kB]
Get:191 http://localhost:9999/debian/ unstable/main libio-string-perl all 1.08-3 [12.3 kB]
Get:192 http://localhost:9999/debian/ unstable/main libjson-perl all 2.61-1 [84.7 kB]
Get:193 http://localhost:9999/debian/ unstable/main libmodule-build-cleaninstall-perl all 0.5-2 [6236 B]
Get:194 http://localhost:9999/debian/ unstable/main libmodule-corelist-perl all 5.021001-1 [64.8 kB]
Get:195 http://localhost:9999/debian/ unstable/main libtext-template-perl all 1.46-1 [53.1 kB]
Get:196 http://localhost:9999/debian/ unstable/main libmodule-faker-perl all 0.16-1 [23.6 kB]
Get:197 http://localhost:9999/debian/ unstable/main libmodule-refresh-perl all 0.17-1 [9776 B]
Get:198 http://localhost:9999/debian/ unstable/main libmoosex-aliases-perl all 0.11-1 [15.1 kB]
Get:199 http://localhost:9999/debian/ unstable/main libmoosex-classattribute-perl all 0.27-1 [37.5 kB]
Get:200 http://localhost:9999/debian/ unstable/main libmoosex-types-perl all 0.44-1 [50.6 kB]
Get:201 http://localhost:9999/debian/ unstable/main libmoosex-types-path-class-perl all 0.05-2 [7398 B]
Get:202 http://localhost:9999/debian/ unstable/main libtext-reform-perl all 1.20-1 [39.9 kB]
Get:203 http://localhost:9999/debian/ unstable/main libtext-autoformat-perl all 1.669004-1 [33.1 kB]
Get:204 http://localhost:9999/debian/ unstable/main libmoosex-configuration-perl all 0.2-1 [14.7 kB]
Get:205 http://localhost:9999/debian/ unstable/main libmoosex-markasmethods-perl all 0.15-1 [11.5 kB]
Get:206 http://localhost:9999/debian/ unstable/main libmoosex-nonmoose-perl all 0.26-1 [22.2 kB]
Get:207 http://localhost:9999/debian/ unstable/main libmoosex-setonce-perl all 0.200002-1 [6842 B]
Get:208 http://localhost:9999/debian/ unstable/main libtest-use-ok-perl all 0.11-1 [9668 B]
Get:209 http://localhost:9999/debian/ unstable/main liburi-fromhash-perl all 0.04-1 [11.9 kB]
Get:210 http://localhost:9999/debian/ unstable/main libmoosex-types-uri-perl all 0.07-1 [8622 B]
Get:211 http://localhost:9999/debian/ unstable/main libnet-cidr-perl all 0.17-1 [15.9 kB]
Get:212 http://localhost:9999/debian/ unstable/main libnet-server-perl all 2.008-1 [193 kB]
Get:213 http://localhost:9999/debian/ unstable/main libpackage-locator-perl all 0.10-1 [17.7 kB]
Get:214 http://localhost:9999/debian/ unstable/main libstream-buffered-perl all 0.03-1 [6048 B]
Get:215 http://localhost:9999/debian/ unstable/main libtest-sharedfork-perl all 0.28-1 [9704 B]
Get:216 http://localhost:9999/debian/ unstable/main libtest-tcp-perl all 2.06-1 [19.9 kB]
Get:217 http://localhost:9999/debian/ unstable/main libplack-perl all 1.0030-1 [354 kB]
Get:218 http://localhost:9999/debian/ unstable/main libproc-fork-perl all 0.802-1 [12.5 kB]
Get:219 http://localhost:9999/debian/ unstable/main libproc-terminator-perl all 0.5-1 [11.0 kB]
Get:220 http://localhost:9999/debian/ unstable/main libreadonly-perl all 2.000-1 [20.8 kB]
Get:221 http://localhost:9999/debian/ unstable/main librouter-simple-perl all 0.15-1 [22.8 kB]
Get:222 http://localhost:9999/debian/ unstable/main libsafe-isa-perl all 1.000004-1 [7256 B]
Get:223 http://localhost:9999/debian/ unstable/main libstring-format-perl all 1.17-1 [9680 B]
Get:224 http://localhost:9999/debian/ unstable/main libsub-uplevel-perl all 0.2400-1 [16.3 kB]
Get:225 http://localhost:9999/debian/ unstable/main libtext-clip-perl all 0.14-1 [7300 B]
Get:226 http://localhost:9999/debian/ unstable/main libterm-editoredit-perl all 0.16-1 [8816 B]
Get:227 http://localhost:9999/debian/ unstable/main libtest-exception-perl all 0.32-1 [18.3 kB]
Get:228 http://localhost:9999/debian/ unstable/main libtest-file-perl all 1.36-1 [18.6 kB]
Get:229 http://localhost:9999/debian/ unstable/main libtest-lwp-useragent-perl all 0.023-1 [24.2 kB]
Get:230 http://localhost:9999/debian/ unstable/main libtest-warn-perl all 0.30-1 [15.4 kB]
Get:231 http://localhost:9999/debian/ unstable/main libthrowable-perl all 0.200011-1 [14.9 kB]
Get:232 http://localhost:9999/debian/ unstable/main libuuid-tiny-perl all 1.0400-1 [18.4 kB]
Get:233 http://localhost:9999/debian/ unstable/main starman all 0.4009-1 [27.8 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 26.3 MB in 24s (1079 kB/s)
Selecting previously unselected package libpipeline1:amd64.
(Reading database ... 14230 files and directories currently installed.)
Preparing to unpack .../libpipeline1_1.3.0-1_amd64.deb ...
Unpacking libpipeline1:amd64 (1.3.0-1) ...
Selecting previously unselected package libssl1.0.0:amd64.
Preparing to unpack .../libssl1.0.0_1.0.1h-3_amd64.deb ...
Unpacking libssl1.0.0:amd64 (1.0.1h-3) ...
Selecting previously unselected package groff-base.
Preparing to unpack .../groff-base_1.22.2-6_amd64.deb ...
Unpacking groff-base (1.22.2-6) ...
Selecting previously unselected package bsdmainutils.
Preparing to unpack .../bsdmainutils_9.0.5_amd64.deb ...
Unpacking bsdmainutils (9.0.5) ...
Selecting previously unselected package man-db.
Preparing to unpack .../man-db_2.6.7.1-1_amd64.deb ...
Unpacking man-db (2.6.7.1-1) ...
Selecting previously unselected package libasprintf0c2:amd64.
Preparing to unpack .../libasprintf0c2_0.18.3.2-4_amd64.deb ...
Unpacking libasprintf0c2:amd64 (0.18.3.2-4) ...
Selecting previously unselected package libgpg-error0:amd64.
Preparing to unpack .../libgpg-error0_1.13-0.1_amd64.deb ...
Unpacking libgpg-error0:amd64 (1.13-0.1) ...
Selecting previously unselected package libgcrypt11:amd64.
Preparing to unpack .../libgcrypt11_1.5.3-4_amd64.deb ...
Unpacking libgcrypt11:amd64 (1.5.3-4) ...
Selecting previously unselected package libgcrypt20:amd64.
Preparing to unpack .../libgcrypt20_1.6.1-2_amd64.deb ...
Unpacking libgcrypt20:amd64 (1.6.1-2) ...
Selecting previously unselected package libnettle4:amd64.
Preparing to unpack .../libnettle4_2.7.1-2+b1_amd64.deb ...
Unpacking libnettle4:amd64 (2.7.1-2+b1) ...
Selecting previously unselected package libhogweed2:amd64.
Preparing to unpack .../libhogweed2_2.7.1-2+b1_amd64.deb ...
Unpacking libhogweed2:amd64 (2.7.1-2+b1) ...
Selecting previously unselected package libffi6:amd64.
Preparing to unpack .../libffi6_3.1-2_amd64.deb ...
Unpacking libffi6:amd64 (3.1-2) ...
Selecting previously unselected package libp11-kit0:amd64.
Preparing to unpack .../libp11-kit0_0.20.2-5_amd64.deb ...
Unpacking libp11-kit0:amd64 (0.20.2-5) ...
Selecting previously unselected package libtasn1-6:amd64.
Preparing to unpack .../libtasn1-6_4.0-2_amd64.deb ...
Unpacking libtasn1-6:amd64 (4.0-2) ...
Selecting previously unselected package libgnutls-deb0-28:amd64.
Preparing to unpack .../libgnutls-deb0-28_3.2.15-3_amd64.deb ...
Unpacking libgnutls-deb0-28:amd64 (3.2.15-3) ...
Selecting previously unselected package libgnutls26:amd64.
Preparing to unpack .../libgnutls26_2.12.23-17_amd64.deb ...
Unpacking libgnutls26:amd64 (2.12.23-17) ...
Selecting previously unselected package libkeyutils1:amd64.
Preparing to unpack .../libkeyutils1_1.5.9-4_amd64.deb ...
Unpacking libkeyutils1:amd64 (1.5.9-4) ...
Selecting previously unselected package libkrb5support0:amd64.
Preparing to unpack .../libkrb5support0_1.12.1+dfsg-4_amd64.deb ...
Unpacking libkrb5support0:amd64 (1.12.1+dfsg-4) ...
Selecting previously unselected package libk5crypto3:amd64.
Preparing to unpack .../libk5crypto3_1.12.1+dfsg-4_amd64.deb ...
Unpacking libk5crypto3:amd64 (1.12.1+dfsg-4) ...
Selecting previously unselected package libkrb5-3:amd64.
Preparing to unpack .../libkrb5-3_1.12.1+dfsg-4_amd64.deb ...
Unpacking libkrb5-3:amd64 (1.12.1+dfsg-4) ...
Selecting previously unselected package libgssapi-krb5-2:amd64.
Preparing to unpack .../libgssapi-krb5-2_1.12.1+dfsg-4_amd64.deb ...
Unpacking libgssapi-krb5-2:amd64 (1.12.1+dfsg-4) ...
Selecting previously unselected package libidn11:amd64.
Preparing to unpack .../libidn11_1.28-2_amd64.deb ...
Unpacking libidn11:amd64 (1.28-2) ...
Selecting previously unselected package libsasl2-modules-db:amd64.
Preparing to unpack .../libsasl2-modules-db_2.1.26.dfsg1-11_amd64.deb ...
Unpacking libsasl2-modules-db:amd64 (2.1.26.dfsg1-11) ...
Selecting previously unselected package libsasl2-2:amd64.
Preparing to unpack .../libsasl2-2_2.1.26.dfsg1-11_amd64.deb ...
Unpacking libsasl2-2:amd64 (2.1.26.dfsg1-11) ...
Selecting previously unselected package libldap-2.4-2:amd64.
Preparing to unpack .../libldap-2.4-2_2.4.39-1_amd64.deb ...
Unpacking libldap-2.4-2:amd64 (2.4.39-1) ...
Selecting previously unselected package libmagic1:amd64.
Preparing to unpack .../libmagic1_1%3a5.19-1_amd64.deb ...
Unpacking libmagic1:amd64 (1:5.19-1) ...
Selecting previously unselected package libsqlite3-0:amd64.
Preparing to unpack .../libsqlite3-0_3.8.5-2_amd64.deb ...
Unpacking libsqlite3-0:amd64 (3.8.5-2) ...
Selecting previously unselected package libxml2:amd64.
Preparing to unpack .../libxml2_2.9.1+dfsg1-4_amd64.deb ...
Unpacking libxml2:amd64 (2.9.1+dfsg1-4) ...
Selecting previously unselected package libglib2.0-0:amd64.
Preparing to unpack .../libglib2.0-0_2.40.0-3_amd64.deb ...
Unpacking libglib2.0-0:amd64 (2.40.0-3) ...
Selecting previously unselected package libcroco3:amd64.
Preparing to unpack .../libcroco3_0.6.8-2_amd64.deb ...
Unpacking libcroco3:amd64 (0.6.8-2) ...
Selecting previously unselected package librtmp1:amd64.
Preparing to unpack .../librtmp1_2.4+20131018.git79459a2-3_amd64.deb ...
Unpacking librtmp1:amd64 (2.4+20131018.git79459a2-3) ...
Selecting previously unselected package libssh2-1:amd64.
Preparing to unpack .../libssh2-1_1.4.3-3_amd64.deb ...
Unpacking libssh2-1:amd64 (1.4.3-3) ...
Selecting previously unselected package libcurl3:amd64.
Preparing to unpack .../libcurl3_7.37.1-1_amd64.deb ...
Unpacking libcurl3:amd64 (7.37.1-1) ...
Selecting previously unselected package libparams-util-perl.
Preparing to unpack .../libparams-util-perl_1.07-1+b1_amd64.deb ...
Unpacking libparams-util-perl (1.07-1+b1) ...
Selecting previously unselected package libsub-install-perl.
Preparing to unpack .../libsub-install-perl_0.928-1_all.deb ...
Unpacking libsub-install-perl (0.928-1) ...
Selecting previously unselected package libdata-optlist-perl.
Preparing to unpack .../libdata-optlist-perl_0.109-1_all.deb ...
Unpacking libdata-optlist-perl (0.109-1) ...
Selecting previously unselected package libparams-classify-perl.
Preparing to unpack .../libparams-classify-perl_0.013-4+b1_amd64.deb ...
Unpacking libparams-classify-perl (0.013-4+b1) ...
Selecting previously unselected package libmodule-runtime-perl.
Preparing to unpack .../libmodule-runtime-perl_0.014-1_all.deb ...
Unpacking libmodule-runtime-perl (0.014-1) ...
Selecting previously unselected package libtry-tiny-perl.
Preparing to unpack .../libtry-tiny-perl_0.22-1_all.deb ...
Unpacking libtry-tiny-perl (0.22-1) ...
Selecting previously unselected package libmodule-implementation-perl.
Preparing to unpack .../libmodule-implementation-perl_0.07-1_all.deb ...
Unpacking libmodule-implementation-perl (0.07-1) ...
Selecting previously unselected package libpackage-stash-perl.
Preparing to unpack .../libpackage-stash-perl_0.36-1_all.deb ...
Unpacking libpackage-stash-perl (0.36-1) ...
Selecting previously unselected package libclass-load-perl.
Preparing to unpack .../libclass-load-perl_0.21-1_all.deb ...
Unpacking libclass-load-perl (0.21-1) ...
Selecting previously unselected package libclass-load-xs-perl.
Preparing to unpack .../libclass-load-xs-perl_0.08-1_amd64.deb ...
Unpacking libclass-load-xs-perl (0.08-1) ...
Selecting previously unselected package libsub-exporter-progressive-perl.
Preparing to unpack .../libsub-exporter-progressive-perl_0.001011-1_all.deb ...
Unpacking libsub-exporter-progressive-perl (0.001011-1) ...
Selecting previously unselected package libdevel-globaldestruction-perl.
Preparing to unpack .../libdevel-globaldestruction-perl_0.12-1_all.deb ...
Unpacking libdevel-globaldestruction-perl (0.12-1) ...
Selecting previously unselected package libdevel-stacktrace-perl.
Preparing to unpack .../libdevel-stacktrace-perl_1.3400-1_all.deb ...
Unpacking libdevel-stacktrace-perl (1.3400-1) ...
Selecting previously unselected package libsub-exporter-perl.
Preparing to unpack .../libsub-exporter-perl_0.986-1_all.deb ...
Unpacking libsub-exporter-perl (0.986-1) ...
Selecting previously unselected package libeval-closure-perl.
Preparing to unpack .../libeval-closure-perl_0.11-1_all.deb ...
Unpacking libeval-closure-perl (0.11-1) ...
Selecting previously unselected package liblist-moreutils-perl.
Preparing to unpack .../liblist-moreutils-perl_0.33-2_amd64.deb ...
Unpacking liblist-moreutils-perl (0.33-2) ...
Selecting previously unselected package libalgorithm-c3-perl.
Preparing to unpack .../libalgorithm-c3-perl_0.09-1_all.deb ...
Unpacking libalgorithm-c3-perl (0.09-1) ...
Selecting previously unselected package libclass-c3-perl.
Preparing to unpack .../libclass-c3-perl_0.26-1_all.deb ...
Unpacking libclass-c3-perl (0.26-1) ...
Selecting previously unselected package libmro-compat-perl.
Preparing to unpack .../libmro-compat-perl_0.12-1_all.deb ...
Unpacking libmro-compat-perl (0.12-1) ...
Selecting previously unselected package libpackage-deprecationmanager-perl.
Preparing to unpack .../libpackage-deprecationmanager-perl_0.13-1_all.deb ...
Unpacking libpackage-deprecationmanager-perl (0.13-1) ...
Selecting previously unselected package libpackage-stash-xs-perl.
Preparing to unpack .../libpackage-stash-xs-perl_0.28-2_amd64.deb ...
Unpacking libpackage-stash-xs-perl (0.28-2) ...
Selecting previously unselected package libsub-name-perl.
Preparing to unpack .../libsub-name-perl_0.07-1_amd64.deb ...
Unpacking libsub-name-perl (0.07-1) ...
Selecting previously unselected package libtask-weaken-perl.
Preparing to unpack .../libtask-weaken-perl_1.04-1_all.deb ...
Unpacking libtask-weaken-perl (1.04-1) ...
Selecting previously unselected package libmoose-perl.
Preparing to unpack .../libmoose-perl_2.1210-1_amd64.deb ...
Unpacking libmoose-perl (2.1210-1) ...
Selecting previously unselected package libvariable-magic-perl.
Preparing to unpack .../libvariable-magic-perl_0.53-1_amd64.deb ...
Unpacking libvariable-magic-perl (0.53-1) ...
Selecting previously unselected package libb-hooks-endofscope-perl.
Preparing to unpack .../libb-hooks-endofscope-perl_0.13-1_all.deb ...
Unpacking libb-hooks-endofscope-perl (0.13-1) ...
Selecting previously unselected package libsub-identify-perl.
Preparing to unpack .../libsub-identify-perl_0.04-2_amd64.deb ...
Unpacking libsub-identify-perl (0.04-2) ...
Selecting previously unselected package libnamespace-clean-perl.
Preparing to unpack .../libnamespace-clean-perl_0.25-1_all.deb ...
Unpacking libnamespace-clean-perl (0.25-1) ...
Selecting previously unselected package libnamespace-autoclean-perl.
Preparing to unpack .../libnamespace-autoclean-perl_0.19-1_all.deb ...
Unpacking libnamespace-autoclean-perl (0.19-1) ...
Selecting previously unselected package libmoosex-strictconstructor-perl.
Preparing to unpack .../libmoosex-strictconstructor-perl_0.19-1_all.deb ...
Unpacking libmoosex-strictconstructor-perl (0.19-1) ...
Selecting previously unselected package libunistring0:amd64.
Preparing to unpack .../libunistring0_0.9.3-5_amd64.deb ...
Unpacking libunistring0:amd64 (0.9.3-5) ...
Selecting previously unselected package netbase.
Preparing to unpack .../archives/netbase_5.2_all.deb ...
Unpacking netbase (5.2) ...
Selecting previously unselected package file.
Preparing to unpack .../file_1%3a5.19-1_amd64.deb ...
Unpacking file (1:5.19-1) ...
Selecting previously unselected package gettext-base.
Preparing to unpack .../gettext-base_0.18.3.2-4_amd64.deb ...
Unpacking gettext-base (0.18.3.2-4) ...
Selecting previously unselected package openssl.
Preparing to unpack .../openssl_1.0.1h-3_amd64.deb ...
Unpacking openssl (1.0.1h-3) ...
Selecting previously unselected package ca-certificates.
Preparing to unpack .../ca-certificates_20140325_all.deb ...
Unpacking ca-certificates (20140325) ...
Selecting previously unselected package curl.
Preparing to unpack .../curl_7.37.1-1_amd64.deb ...
Unpacking curl (7.37.1-1) ...
Selecting previously unselected package libhttp-tiny-perl.
Preparing to unpack .../libhttp-tiny-perl_0.043-2_all.deb ...
Unpacking libhttp-tiny-perl (0.043-2) ...
Selecting previously unselected package libaliased-perl.
Preparing to unpack .../libaliased-perl_0.31-1_all.deb ...
Unpacking libaliased-perl (0.31-1) ...
Selecting previously unselected package libcpan-distnameinfo-perl.
Preparing to unpack .../libcpan-distnameinfo-perl_0.12-1_all.deb ...
Unpacking libcpan-distnameinfo-perl (0.12-1) ...
Selecting previously unselected package libcpan-meta-yaml-perl.
Preparing to unpack .../libcpan-meta-yaml-perl_0.012-1_all.deb ...
Unpacking libcpan-meta-yaml-perl (0.012-1) ...
Selecting previously unselected package libjson-pp-perl.
Preparing to unpack .../libjson-pp-perl_2.27203-1_all.deb ...
Adding 'diversion of /usr/bin/json_pp to /usr/bin/json_pp.bundled by libjson-pp-perl'
Adding 'diversion of /usr/share/man/man1/json_pp.1.gz to /usr/share/man/man1/json_pp.1.bundled.gz by libjson-pp-perl'
Unpacking libjson-pp-perl (2.27203-1) ...
Selecting previously unselected package libparse-cpan-meta-perl.
Preparing to unpack .../libparse-cpan-meta-perl_1.4414-1_all.deb ...
Unpacking libparse-cpan-meta-perl (1.4414-1) ...
Selecting previously unselected package libcpan-meta-requirements-perl.
Preparing to unpack .../libcpan-meta-requirements-perl_2.125-1_all.deb ...
Unpacking libcpan-meta-requirements-perl (2.125-1) ...
Selecting previously unselected package libcpan-meta-perl.
Preparing to unpack .../libcpan-meta-perl_2.141520-1_all.deb ...
Unpacking libcpan-meta-perl (2.141520-1) ...
Selecting previously unselected package libcpan-meta-check-perl.
Preparing to unpack .../libcpan-meta-check-perl_0.009-1_all.deb ...
Unpacking libcpan-meta-check-perl (0.009-1) ...
Selecting previously unselected package libfile-pushd-perl.
Preparing to unpack .../libfile-pushd-perl_1.009-1_all.deb ...
Unpacking libfile-pushd-perl (1.009-1) ...
Selecting previously unselected package libversion-perl.
Preparing to unpack .../libversion-perl_1%3a0.9908-1_amd64.deb ...
Unpacking libversion-perl (1:0.9908-1) ...
Selecting previously unselected package libmodule-metadata-perl.
Preparing to unpack .../libmodule-metadata-perl_1.000024-1_all.deb ...
Unpacking libmodule-metadata-perl (1.000024-1) ...
Selecting previously unselected package libmodule-build-perl.
Preparing to unpack .../libmodule-build-perl_0.420500-1_all.deb ...
Adding 'diversion of /usr/bin/config_data to /usr/bin/config_data.diverted by libmodule-build-perl'
Adding 'diversion of /usr/share/man/man1/config_data.1.gz to /usr/share/man/man1/config_data.diverted.1.gz by libmodule-build-perl'
Unpacking libmodule-build-perl (0.420500-1) ...
Selecting previously unselected package liblocal-lib-perl.
Preparing to unpack .../liblocal-lib-perl_2.000012-1_all.deb ...
Unpacking liblocal-lib-perl (2.000012-1) ...
Selecting previously unselected package libmodule-cpanfile-perl.
Preparing to unpack .../libmodule-cpanfile-perl_1.0002-1_all.deb ...
Unpacking libmodule-cpanfile-perl (1.0002-1) ...
Selecting previously unselected package libstring-shellquote-perl.
Preparing to unpack .../libstring-shellquote-perl_1.03-1_all.deb ...
Unpacking libstring-shellquote-perl (1.03-1) ...
Selecting previously unselected package cpanminus.
Preparing to unpack .../cpanminus_1.7004-2_all.deb ...
Unpacking cpanminus (1.7004-2) ...
Selecting previously unselected package gettext.
Preparing to unpack .../gettext_0.18.3.2-4_amd64.deb ...
Unpacking gettext (0.18.3.2-4) ...
Selecting previously unselected package intltool-debian.
Preparing to unpack .../intltool-debian_0.35.0+20060710.1_all.deb ...
Unpacking intltool-debian (0.35.0+20060710.1) ...
Selecting previously unselected package po-debconf.
Preparing to unpack .../po-debconf_1.0.16+nmu3_all.deb ...
Unpacking po-debconf (1.0.16+nmu3) ...
Selecting previously unselected package debhelper.
Preparing to unpack .../debhelper_9.20140613_all.deb ...
Unpacking debhelper (9.20140613) ...
Selecting previously unselected package libany-moose-perl.
Preparing to unpack .../libany-moose-perl_0.24-1_all.deb ...
Unpacking libany-moose-perl (0.24-1) ...
Selecting previously unselected package libcrypt-passwdmd5-perl.
Preparing to unpack .../libcrypt-passwdmd5-perl_1.3-10_all.deb ...
Unpacking libcrypt-passwdmd5-perl (1.3-10) ...
Selecting previously unselected package libapache-htpasswd-perl.
Preparing to unpack .../libapache-htpasswd-perl_1.8-1.1_all.deb ...
Unpacking libapache-htpasswd-perl (1.8-1.1) ...
Selecting previously unselected package libposix-strftime-compiler-perl.
Preparing to unpack .../libposix-strftime-compiler-perl_0.31-1_all.deb ...
Unpacking libposix-strftime-compiler-perl (0.31-1) ...
Selecting previously unselected package libapache-logformat-compiler-perl.
Preparing to unpack .../libapache-logformat-compiler-perl_0.30-1_all.deb ...
Unpacking libapache-logformat-compiler-perl (0.30-1) ...
Selecting previously unselected package libcapture-tiny-perl.
Preparing to unpack .../libcapture-tiny-perl_0.24-2_all.deb ...
Unpacking libcapture-tiny-perl (0.24-2) ...
Selecting previously unselected package libio-stringy-perl.
Preparing to unpack .../libio-stringy-perl_2.110-5_all.deb ...
Unpacking libio-stringy-perl (2.110-5) ...
Selecting previously unselected package libparams-validate-perl.
Preparing to unpack .../libparams-validate-perl_1.13-1_amd64.deb ...
Unpacking libparams-validate-perl (1.13-1) ...
Selecting previously unselected package libgetopt-long-descriptive-perl.
Preparing to unpack .../libgetopt-long-descriptive-perl_0.097-1_all.deb ...
Unpacking libgetopt-long-descriptive-perl (0.097-1) ...
Selecting previously unselected package libio-tiecombine-perl.
Preparing to unpack .../libio-tiecombine-perl_1.003-1_all.deb ...
Unpacking libio-tiecombine-perl (1.003-1) ...
Selecting previously unselected package libstring-rewriteprefix-perl.
Preparing to unpack .../libstring-rewriteprefix-perl_0.007-1_all.deb ...
Unpacking libstring-rewriteprefix-perl (0.007-1) ...
Selecting previously unselected package libapp-cmd-perl.
Preparing to unpack .../libapp-cmd-perl_0.323-1_all.deb ...
Unpacking libapp-cmd-perl (0.323-1) ...
Selecting previously unselected package libarchive-zip-perl.
Preparing to unpack .../libarchive-zip-perl_1.37-2_all.deb ...
Unpacking libarchive-zip-perl (1.37-2) ...
Selecting previously unselected package libclass-data-inheritable-perl.
Preparing to unpack .../libclass-data-inheritable-perl_0.08-2_all.deb ...
Unpacking libclass-data-inheritable-perl (0.08-2) ...
Selecting previously unselected package libexception-class-perl.
Preparing to unpack .../libexception-class-perl_1.38-1_all.deb ...
Unpacking libexception-class-perl (1.38-1) ...
Selecting previously unselected package libuniversal-require-perl.
Preparing to unpack .../libuniversal-require-perl_0.17-1_all.deb ...
Unpacking libuniversal-require-perl (0.17-1) ...
Selecting previously unselected package libarchive-any-create-perl.
Preparing to unpack .../libarchive-any-create-perl_0.3-1_all.deb ...
Unpacking libarchive-any-create-perl (0.3-1) ...
Selecting previously unselected package libclass-accessor-perl.
Preparing to unpack .../libclass-accessor-perl_0.34-1_all.deb ...
Unpacking libclass-accessor-perl (0.34-1) ...
Selecting previously unselected package libauthen-simple-perl.
Preparing to unpack .../libauthen-simple-perl_0.5-1_all.deb ...
Unpacking libauthen-simple-perl (0.5-1) ...
Selecting previously unselected package libauthen-simple-passwd-perl.
Preparing to unpack .../libauthen-simple-passwd-perl_0.6-3_all.deb ...
Unpacking libauthen-simple-passwd-perl (0.6-3) ...
Selecting previously unselected package libcarp-clan-perl.
Preparing to unpack .../libcarp-clan-perl_6.04-1_all.deb ...
Unpacking libcarp-clan-perl (6.04-1) ...
Selecting previously unselected package libclass-accessor-chained-perl.
Preparing to unpack .../libclass-accessor-chained-perl_0.01.1~debian-2.1_all.deb ...
Unpacking libclass-accessor-chained-perl (0.01.1~debian-2.1) ...
Selecting previously unselected package libclass-accessor-grouped-perl.
Preparing to unpack .../libclass-accessor-grouped-perl_0.10010-1_all.deb ...
Unpacking libclass-accessor-grouped-perl (0.10010-1) ...
Selecting previously unselected package libclass-accessor-lite-perl.
Preparing to unpack .../libclass-accessor-lite-perl_0.06-1_all.deb ...
Unpacking libclass-accessor-lite-perl (0.06-1) ...
Selecting previously unselected package libclass-inspector-perl.
Preparing to unpack .../libclass-inspector-perl_1.28-1_all.deb ...
Unpacking libclass-inspector-perl (1.28-1) ...
Selecting previously unselected package libclass-c3-componentised-perl.
Preparing to unpack .../libclass-c3-componentised-perl_1.001000-1_all.deb ...
Unpacking libclass-c3-componentised-perl (1.001000-1) ...
Selecting previously unselected package libclass-method-modifiers-perl.
Preparing to unpack .../libclass-method-modifiers-perl_2.10-1_all.deb ...
Unpacking libclass-method-modifiers-perl (2.10-1) ...
Selecting previously unselected package libclass-singleton-perl.
Preparing to unpack .../libclass-singleton-perl_1.4-1_all.deb ...
Unpacking libclass-singleton-perl (1.4-1) ...
Selecting previously unselected package libclone-perl.
Preparing to unpack .../libclone-perl_0.37-1_amd64.deb ...
Unpacking libclone-perl (0.37-1) ...
Selecting previously unselected package libcompress-bzip2-perl.
Preparing to unpack .../libcompress-bzip2-perl_2.16-1+b1_amd64.deb ...
Unpacking libcompress-bzip2-perl (2.16-1+b1) ...
Selecting previously unselected package libconfig-any-perl.
Preparing to unpack .../libconfig-any-perl_0.24-1_all.deb ...
Unpacking libconfig-any-perl (0.24-1) ...
Selecting previously unselected package libperlio-utf8-strict-perl.
Preparing to unpack .../libperlio-utf8-strict-perl_0.004-1_amd64.deb ...
Unpacking libperlio-utf8-strict-perl (0.004-1) ...
Selecting previously unselected package libmixin-linewise-perl.
Preparing to unpack .../libmixin-linewise-perl_0.106-1_all.deb ...
Unpacking libmixin-linewise-perl (0.106-1) ...
Selecting previously unselected package libconfig-ini-perl.
Preparing to unpack .../libconfig-ini-perl_1%3a0.024-1_all.deb ...
Unpacking libconfig-ini-perl (1:0.024-1) ...
Selecting previously unselected package libcontext-preserve-perl.
Preparing to unpack .../libcontext-preserve-perl_0.01-1_all.deb ...
Unpacking libcontext-preserve-perl (0.01-1) ...
Selecting previously unselected package libnumber-compare-perl.
Preparing to unpack .../libnumber-compare-perl_0.03-1_all.deb ...
Unpacking libnumber-compare-perl (0.03-1) ...
Selecting previously unselected package libtext-glob-perl.
Preparing to unpack .../libtext-glob-perl_0.09-1_all.deb ...
Unpacking libtext-glob-perl (0.09-1) ...
Selecting previously unselected package libfile-find-rule-perl.
Preparing to unpack .../libfile-find-rule-perl_0.33-1_all.deb ...
Unpacking libfile-find-rule-perl (0.33-1) ...
Selecting previously unselected package libdata-compare-perl.
Preparing to unpack .../libdata-compare-perl_1.23-0.1_all.deb ...
Unpacking libdata-compare-perl (1.23-0.1) ...
Selecting previously unselected package libcpan-checksums-perl.
Preparing to unpack .../libcpan-checksums-perl_2.09-1_all.deb ...
Unpacking libcpan-checksums-perl (2.09-1) ...
Selecting previously unselected package libcwd-guard-perl.
Preparing to unpack .../libcwd-guard-perl_0.4-1_all.deb ...
Unpacking libcwd-guard-perl (0.4-1) ...
Selecting previously unselected package libdata-dump-perl.
Preparing to unpack .../libdata-dump-perl_1.22-1_all.deb ...
Unpacking libdata-dump-perl (1.22-1) ...
Selecting previously unselected package libdata-dumper-concise-perl.
Preparing to unpack .../libdata-dumper-concise-perl_2.022-1_all.deb ...
Unpacking libdata-dumper-concise-perl (2.022-1) ...
Selecting previously unselected package libdata-page-perl.
Preparing to unpack .../libdata-page-perl_2.02-1_all.deb ...
Unpacking libdata-page-perl (2.02-1) ...
Selecting previously unselected package libdatetime-locale-perl.
Preparing to unpack .../libdatetime-locale-perl_1%3a0.45-2_all.deb ...
Unpacking libdatetime-locale-perl (1:0.45-2) ...
Selecting previously unselected package liblist-allutils-perl.
Preparing to unpack .../liblist-allutils-perl_0.03-1_all.deb ...
Unpacking liblist-allutils-perl (0.03-1) ...
Selecting previously unselected package libdatetime-timezone-perl.
Preparing to unpack .../libdatetime-timezone-perl_1%3a1.71-1+2014e_all.deb ...
Unpacking libdatetime-timezone-perl (1:1.71-1+2014e) ...
Selecting previously unselected package libdatetime-perl.
Preparing to unpack .../libdatetime-perl_2%3a1.10-1_amd64.deb ...
Unpacking libdatetime-perl (2:1.10-1) ...
Selecting previously unselected package libdbi-perl.
Preparing to unpack .../libdbi-perl_1.631-3_amd64.deb ...
Unpacking libdbi-perl (1.631-3) ...
Selecting previously unselected package libdbd-sqlite3-perl.
Preparing to unpack .../libdbd-sqlite3-perl_1.42-2_amd64.deb ...
Unpacking libdbd-sqlite3-perl (1.42-2) ...
Selecting previously unselected package libmodule-find-perl.
Preparing to unpack .../libmodule-find-perl_0.12-1_all.deb ...
Unpacking libmodule-find-perl (0.12-1) ...
Selecting previously unselected package libimport-into-perl.
Preparing to unpack .../libimport-into-perl_1.002004-1_all.deb ...
Unpacking libimport-into-perl (1.002004-1) ...
Selecting previously unselected package librole-tiny-perl.
Preparing to unpack .../librole-tiny-perl_1.003003-1_all.deb ...
Unpacking librole-tiny-perl (1.003003-1) ...
Selecting previously unselected package libstrictures-perl.
Preparing to unpack .../libstrictures-perl_1.005004-1_all.deb ...
Unpacking libstrictures-perl (1.005004-1) ...
Selecting previously unselected package libmoo-perl.
Preparing to unpack .../libmoo-perl_1.005000-1_all.deb ...
Unpacking libmoo-perl (1.005000-1) ...
Selecting previously unselected package libpath-class-perl.
Preparing to unpack .../libpath-class-perl_0.33-1_all.deb ...
Unpacking libpath-class-perl (0.33-1) ...
Selecting previously unselected package libscope-guard-perl.
Preparing to unpack .../libscope-guard-perl_0.20-1_all.deb ...
Unpacking libscope-guard-perl (0.20-1) ...
Selecting previously unselected package libhash-merge-perl.
Preparing to unpack .../libhash-merge-perl_0.200-1_all.deb ...
Unpacking libhash-merge-perl (0.200-1) ...
Selecting previously unselected package libsql-abstract-perl.
Preparing to unpack .../libsql-abstract-perl_1.78-1_all.deb ...
Unpacking libsql-abstract-perl (1.78-1) ...
Selecting previously unselected package libdbix-class-perl.
Preparing to unpack .../libdbix-class-perl_0.08270-2_all.deb ...
Unpacking libdbix-class-perl (0.08270-2) ...
Selecting previously unselected package libdevel-stacktrace-ashtml-perl.
Preparing to unpack .../libdevel-stacktrace-ashtml-perl_0.14-1_all.deb ...
Unpacking libdevel-stacktrace-ashtml-perl (0.14-1) ...
Selecting previously unselected package libfile-spec-native-perl.
Preparing to unpack .../libfile-spec-native-perl_1.003-1_all.deb ...
Unpacking libfile-spec-native-perl (1.003-1) ...
Selecting previously unselected package libdist-metadata-perl.
Preparing to unpack .../libdist-metadata-perl_0.925-1_all.deb ...
Unpacking libdist-metadata-perl (0.925-1) ...
Selecting previously unselected package libencode-locale-perl.
Preparing to unpack .../libencode-locale-perl_1.03-1_all.deb ...
Unpacking libencode-locale-perl (1.03-1) ...
Selecting previously unselected package libexporter-tidy-perl.
Preparing to unpack .../libexporter-tidy-perl_0.07-2_all.deb ...
Unpacking libexporter-tidy-perl (0.07-2) ...
Selecting previously unselected package libfile-which-perl.
Preparing to unpack .../libfile-which-perl_1.09-1_all.deb ...
Unpacking libfile-which-perl (1.09-1) ...
Selecting previously unselected package libfile-homedir-perl.
Preparing to unpack .../libfile-homedir-perl_1.00-1_all.deb ...
Unpacking libfile-homedir-perl (1.00-1) ...
Selecting previously unselected package libhttp-date-perl.
Preparing to unpack .../libhttp-date-perl_6.02-1_all.deb ...
Unpacking libhttp-date-perl (6.02-1) ...
Selecting previously unselected package libfile-listing-perl.
Preparing to unpack .../libfile-listing-perl_6.04-1_all.deb ...
Unpacking libfile-listing-perl (6.04-1) ...
Selecting previously unselected package libfile-next-perl.
Preparing to unpack .../libfile-next-perl_1.12-1_all.deb ...
Unpacking libfile-next-perl (1.12-1) ...
Selecting previously unselected package libfile-nfslock-perl.
Preparing to unpack .../libfile-nfslock-perl_1.21-1_all.deb ...
Unpacking libfile-nfslock-perl (1.21-1) ...
Selecting previously unselected package libfile-sharedir-perl.
Preparing to unpack .../libfile-sharedir-perl_1.102-1_all.deb ...
Unpacking libfile-sharedir-perl (1.102-1) ...
Selecting previously unselected package libfilesys-notify-simple-perl.
Preparing to unpack .../libfilesys-notify-simple-perl_0.12-1_all.deb ...
Unpacking libfilesys-notify-simple-perl (0.12-1) ...
Selecting previously unselected package libhash-multivalue-perl.
Preparing to unpack .../libhash-multivalue-perl_0.15-1_all.deb ...
Unpacking libhash-multivalue-perl (0.15-1) ...
Selecting previously unselected package liburi-perl.
Preparing to unpack .../liburi-perl_1.62-1_all.deb ...
Unpacking liburi-perl (1.62-1) ...
Selecting previously unselected package libhtml-tagset-perl.
Preparing to unpack .../libhtml-tagset-perl_3.20-2_all.deb ...
Unpacking libhtml-tagset-perl (3.20-2) ...
Selecting previously unselected package libhtml-parser-perl.
Preparing to unpack .../libhtml-parser-perl_3.71-1+b1_amd64.deb ...
Unpacking libhtml-parser-perl (3.71-1+b1) ...
Selecting previously unselected package libhtml-tree-perl.
Preparing to unpack .../libhtml-tree-perl_5.03-1_all.deb ...
Unpacking libhtml-tree-perl (5.03-1) ...
Selecting previously unselected package libio-html-perl.
Preparing to unpack .../libio-html-perl_1.001-1_all.deb ...
Unpacking libio-html-perl (1.001-1) ...
Selecting previously unselected package liblwp-mediatypes-perl.
Preparing to unpack .../liblwp-mediatypes-perl_6.02-1_all.deb ...
Unpacking liblwp-mediatypes-perl (6.02-1) ...
Selecting previously unselected package libhttp-message-perl.
Preparing to unpack .../libhttp-message-perl_6.06-1_all.deb ...
Unpacking libhttp-message-perl (6.06-1) ...
Selecting previously unselected package libhttp-cookies-perl.
Preparing to unpack .../libhttp-cookies-perl_6.00-2_all.deb ...
Unpacking libhttp-cookies-perl (6.00-2) ...
Selecting previously unselected package libhttp-negotiate-perl.
Preparing to unpack .../libhttp-negotiate-perl_6.00-2_all.deb ...
Unpacking libhttp-negotiate-perl (6.00-2) ...
Selecting previously unselected package libnet-ssleay-perl.
Preparing to unpack .../libnet-ssleay-perl_1.65-1_amd64.deb ...
Unpacking libnet-ssleay-perl (1.65-1) ...
Selecting previously unselected package libio-socket-ssl-perl.
Preparing to unpack .../libio-socket-ssl-perl_1.992-1_all.deb ...
Unpacking libio-socket-ssl-perl (1.992-1) ...
Selecting previously unselected package libnet-http-perl.
Preparing to unpack .../libnet-http-perl_6.06-1_all.deb ...
Unpacking libnet-http-perl (6.06-1) ...
Selecting previously unselected package liblwp-protocol-https-perl.
Preparing to unpack .../liblwp-protocol-https-perl_6.06-2_all.deb ...
Unpacking liblwp-protocol-https-perl (6.06-2) ...
Selecting previously unselected package libwww-robotrules-perl.
Preparing to unpack .../libwww-robotrules-perl_6.01-1_all.deb ...
Unpacking libwww-robotrules-perl (6.01-1) ...
Selecting previously unselected package libwww-perl.
Preparing to unpack .../libwww-perl_6.07-1_all.deb ...
Unpacking libwww-perl (6.07-1) ...
Selecting previously unselected package libyaml-perl.
Preparing to unpack .../libyaml-perl_0.95-1_all.deb ...
Unpacking libyaml-perl (0.95-1) ...
Selecting previously unselected package libhttp-body-perl.
Preparing to unpack .../libhttp-body-perl_1.19-1_all.deb ...
Unpacking libhttp-body-perl (1.19-1) ...
Selecting previously unselected package libhttp-parser-xs-perl.
Preparing to unpack .../libhttp-parser-xs-perl_0.16-1+b1_amd64.deb ...
Unpacking libhttp-parser-xs-perl (0.16-1+b1) ...
Selecting previously unselected package libio-interactive-perl.
Preparing to unpack .../libio-interactive-perl_0.0.6-1_all.deb ...
Unpacking libio-interactive-perl (0.0.6-1) ...
Selecting previously unselected package libio-multiplex-perl.
Preparing to unpack .../libio-multiplex-perl_1.13-1_all.deb ...
Unpacking libio-multiplex-perl (1.13-1) ...
Selecting previously unselected package libterm-readkey-perl.
Preparing to unpack .../libterm-readkey-perl_2.32-1_amd64.deb ...
Unpacking libterm-readkey-perl (2.32-1) ...
Selecting previously unselected package libwant-perl.
Preparing to unpack .../libwant-perl_0.23-1_amd64.deb ...
Unpacking libwant-perl (0.23-1) ...
Selecting previously unselected package libio-prompt-perl.
Preparing to unpack .../libio-prompt-perl_0.997002-1_all.deb ...
Unpacking libio-prompt-perl (0.997002-1) ...
Selecting previously unselected package libsocket6-perl.
Preparing to unpack .../libsocket6-perl_0.25-1_amd64.deb ...
Unpacking libsocket6-perl (0.25-1) ...
Selecting previously unselected package libio-socket-inet6-perl.
Preparing to unpack .../libio-socket-inet6-perl_2.72-1_all.deb ...
Unpacking libio-socket-inet6-perl (2.72-1) ...
Selecting previously unselected package libio-string-perl.
Preparing to unpack .../libio-string-perl_1.08-3_all.deb ...
Unpacking libio-string-perl (1.08-3) ...
Selecting previously unselected package libjson-perl.
Preparing to unpack .../libjson-perl_2.61-1_all.deb ...
Unpacking libjson-perl (2.61-1) ...
Selecting previously unselected package libmodule-build-cleaninstall-perl.
Preparing to unpack .../libmodule-build-cleaninstall-perl_0.5-2_all.deb ...
Unpacking libmodule-build-cleaninstall-perl (0.5-2) ...
Selecting previously unselected package libmodule-corelist-perl.
Preparing to unpack .../libmodule-corelist-perl_5.021001-1_all.deb ...
Adding 'diversion of /usr/bin/corelist to /usr/bin/corelist.bundled by libmodule-corelist-perl'
Adding 'diversion of /usr/share/man/man1/corelist.1.gz to /usr/share/man/man1/corelist.bundled.1.gz by libmodule-corelist-perl'
Unpacking libmodule-corelist-perl (5.021001-1) ...
Selecting previously unselected package libtext-template-perl.
Preparing to unpack .../libtext-template-perl_1.46-1_all.deb ...
Unpacking libtext-template-perl (1.46-1) ...
Selecting previously unselected package libmodule-faker-perl.
Preparing to unpack .../libmodule-faker-perl_0.16-1_all.deb ...
Unpacking libmodule-faker-perl (0.16-1) ...
Selecting previously unselected package libmodule-refresh-perl.
Preparing to unpack .../libmodule-refresh-perl_0.17-1_all.deb ...
Unpacking libmodule-refresh-perl (0.17-1) ...
Selecting previously unselected package libmoosex-aliases-perl.
Preparing to unpack .../libmoosex-aliases-perl_0.11-1_all.deb ...
Unpacking libmoosex-aliases-perl (0.11-1) ...
Selecting previously unselected package libmoosex-classattribute-perl.
Preparing to unpack .../libmoosex-classattribute-perl_0.27-1_all.deb ...
Unpacking libmoosex-classattribute-perl (0.27-1) ...
Selecting previously unselected package libmoosex-types-perl.
Preparing to unpack .../libmoosex-types-perl_0.44-1_all.deb ...
Unpacking libmoosex-types-perl (0.44-1) ...
Selecting previously unselected package libmoosex-types-path-class-perl.
Preparing to unpack .../libmoosex-types-path-class-perl_0.05-2_all.deb ...
Unpacking libmoosex-types-path-class-perl (0.05-2) ...
Selecting previously unselected package libtext-reform-perl.
Preparing to unpack .../libtext-reform-perl_1.20-1_all.deb ...
Unpacking libtext-reform-perl (1.20-1) ...
Selecting previously unselected package libtext-autoformat-perl.
Preparing to unpack .../libtext-autoformat-perl_1.669004-1_all.deb ...
Unpacking libtext-autoformat-perl (1.669004-1) ...
Selecting previously unselected package libmoosex-configuration-perl.
Preparing to unpack .../libmoosex-configuration-perl_0.2-1_all.deb ...
Unpacking libmoosex-configuration-perl (0.2-1) ...
Selecting previously unselected package libmoosex-markasmethods-perl.
Preparing to unpack .../libmoosex-markasmethods-perl_0.15-1_all.deb ...
Unpacking libmoosex-markasmethods-perl (0.15-1) ...
Selecting previously unselected package libmoosex-nonmoose-perl.
Preparing to unpack .../libmoosex-nonmoose-perl_0.26-1_all.deb ...
Unpacking libmoosex-nonmoose-perl (0.26-1) ...
Selecting previously unselected package libmoosex-setonce-perl.
Preparing to unpack .../libmoosex-setonce-perl_0.200002-1_all.deb ...
Unpacking libmoosex-setonce-perl (0.200002-1) ...
Selecting previously unselected package libtest-use-ok-perl.
Preparing to unpack .../libtest-use-ok-perl_0.11-1_all.deb ...
Unpacking libtest-use-ok-perl (0.11-1) ...
Selecting previously unselected package liburi-fromhash-perl.
Preparing to unpack .../liburi-fromhash-perl_0.04-1_all.deb ...
Unpacking liburi-fromhash-perl (0.04-1) ...
Selecting previously unselected package libmoosex-types-uri-perl.
Preparing to unpack .../libmoosex-types-uri-perl_0.07-1_all.deb ...
Unpacking libmoosex-types-uri-perl (0.07-1) ...
Selecting previously unselected package libnet-cidr-perl.
Preparing to unpack .../libnet-cidr-perl_0.17-1_all.deb ...
Unpacking libnet-cidr-perl (0.17-1) ...
Selecting previously unselected package libnet-server-perl.
Preparing to unpack .../libnet-server-perl_2.008-1_all.deb ...
Unpacking libnet-server-perl (2.008-1) ...
Selecting previously unselected package libpackage-locator-perl.
Preparing to unpack .../libpackage-locator-perl_0.10-1_all.deb ...
Unpacking libpackage-locator-perl (0.10-1) ...
Selecting previously unselected package libstream-buffered-perl.
Preparing to unpack .../libstream-buffered-perl_0.03-1_all.deb ...
Unpacking libstream-buffered-perl (0.03-1) ...
Selecting previously unselected package libtest-sharedfork-perl.
Preparing to unpack .../libtest-sharedfork-perl_0.28-1_all.deb ...
Unpacking libtest-sharedfork-perl (0.28-1) ...
Selecting previously unselected package libtest-tcp-perl.
Preparing to unpack .../libtest-tcp-perl_2.06-1_all.deb ...
Unpacking libtest-tcp-perl (2.06-1) ...
Selecting previously unselected package libplack-perl.
Preparing to unpack .../libplack-perl_1.0030-1_all.deb ...
Unpacking libplack-perl (1.0030-1) ...
Selecting previously unselected package libproc-fork-perl.
Preparing to unpack .../libproc-fork-perl_0.802-1_all.deb ...
Unpacking libproc-fork-perl (0.802-1) ...
Selecting previously unselected package libproc-terminator-perl.
Preparing to unpack .../libproc-terminator-perl_0.5-1_all.deb ...
Unpacking libproc-terminator-perl (0.5-1) ...
Selecting previously unselected package libreadonly-perl.
Preparing to unpack .../libreadonly-perl_2.000-1_all.deb ...
Unpacking libreadonly-perl (2.000-1) ...
Selecting previously unselected package librouter-simple-perl.
Preparing to unpack .../librouter-simple-perl_0.15-1_all.deb ...
Unpacking librouter-simple-perl (0.15-1) ...
Selecting previously unselected package libsafe-isa-perl.
Preparing to unpack .../libsafe-isa-perl_1.000004-1_all.deb ...
Unpacking libsafe-isa-perl (1.000004-1) ...
Selecting previously unselected package libstring-format-perl.
Preparing to unpack .../libstring-format-perl_1.17-1_all.deb ...
Unpacking libstring-format-perl (1.17-1) ...
Selecting previously unselected package libsub-uplevel-perl.
Preparing to unpack .../libsub-uplevel-perl_0.2400-1_all.deb ...
Unpacking libsub-uplevel-perl (0.2400-1) ...
Selecting previously unselected package libtext-clip-perl.
Preparing to unpack .../libtext-clip-perl_0.14-1_all.deb ...
Unpacking libtext-clip-perl (0.14-1) ...
Selecting previously unselected package libterm-editoredit-perl.
Preparing to unpack .../libterm-editoredit-perl_0.16-1_all.deb ...
Unpacking libterm-editoredit-perl (0.16-1) ...
Selecting previously unselected package libtest-exception-perl.
Preparing to unpack .../libtest-exception-perl_0.32-1_all.deb ...
Unpacking libtest-exception-perl (0.32-1) ...
Selecting previously unselected package libtest-file-perl.
Preparing to unpack .../libtest-file-perl_1.36-1_all.deb ...
Unpacking libtest-file-perl (1.36-1) ...
Selecting previously unselected package libtest-lwp-useragent-perl.
Preparing to unpack .../libtest-lwp-useragent-perl_0.023-1_all.deb ...
Unpacking libtest-lwp-useragent-perl (0.023-1) ...
Selecting previously unselected package libtest-warn-perl.
Preparing to unpack .../libtest-warn-perl_0.30-1_all.deb ...
Unpacking libtest-warn-perl (0.30-1) ...
Selecting previously unselected package libthrowable-perl.
Preparing to unpack .../libthrowable-perl_0.200011-1_all.deb ...
Unpacking libthrowable-perl (0.200011-1) ...
Selecting previously unselected package libuuid-tiny-perl.
Preparing to unpack .../libuuid-tiny-perl_1.0400-1_all.deb ...
Unpacking libuuid-tiny-perl (1.0400-1) ...
Selecting previously unselected package starman.
Preparing to unpack .../starman_0.4009-1_all.deb ...
Unpacking starman (0.4009-1) ...
Selecting previously unselected package sbuild-build-depends-pinto-dummy.
Preparing to unpack .../sbuild-build-depends-pinto-dummy.deb ...
Unpacking sbuild-build-depends-pinto-dummy (0.invalid.0) ...
Setting up libpipeline1:amd64 (1.3.0-1) ...
Setting up libssl1.0.0:amd64 (1.0.1h-3) ...
Setting up groff-base (1.22.2-6) ...
Setting up bsdmainutils (9.0.5) ...
update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode
update-alternatives: using /usr/bin/bsd-from to provide /usr/bin/from (from) in auto mode
Setting up man-db (2.6.7.1-1) ...
Not building database; man-db/auto-update is not 'true'.
Setting up libasprintf0c2:amd64 (0.18.3.2-4) ...
Setting up libgpg-error0:amd64 (1.13-0.1) ...
Setting up libgcrypt11:amd64 (1.5.3-4) ...
Setting up libgcrypt20:amd64 (1.6.1-2) ...
Setting up libnettle4:amd64 (2.7.1-2+b1) ...
Setting up libhogweed2:amd64 (2.7.1-2+b1) ...
Setting up libffi6:amd64 (3.1-2) ...
Setting up libp11-kit0:amd64 (0.20.2-5) ...
Setting up libtasn1-6:amd64 (4.0-2) ...
Setting up libgnutls-deb0-28:amd64 (3.2.15-3) ...
Setting up libgnutls26:amd64 (2.12.23-17) ...
Setting up libkeyutils1:amd64 (1.5.9-4) ...
Setting up libkrb5support0:amd64 (1.12.1+dfsg-4) ...
Setting up libk5crypto3:amd64 (1.12.1+dfsg-4) ...
Setting up libkrb5-3:amd64 (1.12.1+dfsg-4) ...
Setting up libgssapi-krb5-2:amd64 (1.12.1+dfsg-4) ...
Setting up libidn11:amd64 (1.28-2) ...
Setting up libsasl2-modules-db:amd64 (2.1.26.dfsg1-11) ...
Setting up libsasl2-2:amd64 (2.1.26.dfsg1-11) ...
Setting up libldap-2.4-2:amd64 (2.4.39-1) ...
Setting up libmagic1:amd64 (1:5.19-1) ...
Setting up libsqlite3-0:amd64 (3.8.5-2) ...
Setting up libxml2:amd64 (2.9.1+dfsg1-4) ...
Setting up libglib2.0-0:amd64 (2.40.0-3) ...
No schema files found: doing nothing.
Setting up libcroco3:amd64 (0.6.8-2) ...
Setting up librtmp1:amd64 (2.4+20131018.git79459a2-3) ...
Setting up libssh2-1:amd64 (1.4.3-3) ...
Setting up libcurl3:amd64 (7.37.1-1) ...
Setting up libparams-util-perl (1.07-1+b1) ...
Setting up libsub-install-perl (0.928-1) ...
Setting up libdata-optlist-perl (0.109-1) ...
Setting up libparams-classify-perl (0.013-4+b1) ...
Setting up libmodule-runtime-perl (0.014-1) ...
Setting up libtry-tiny-perl (0.22-1) ...
Setting up libmodule-implementation-perl (0.07-1) ...
Setting up libpackage-stash-perl (0.36-1) ...
Setting up libclass-load-perl (0.21-1) ...
Setting up libclass-load-xs-perl (0.08-1) ...
Setting up libsub-exporter-progressive-perl (0.001011-1) ...
Setting up libdevel-globaldestruction-perl (0.12-1) ...
Setting up libdevel-stacktrace-perl (1.3400-1) ...
Setting up libsub-exporter-perl (0.986-1) ...
Setting up libeval-closure-perl (0.11-1) ...
Setting up liblist-moreutils-perl (0.33-2) ...
Setting up libalgorithm-c3-perl (0.09-1) ...
Setting up libclass-c3-perl (0.26-1) ...
Setting up libmro-compat-perl (0.12-1) ...
Setting up libpackage-deprecationmanager-perl (0.13-1) ...
Setting up libpackage-stash-xs-perl (0.28-2) ...
Setting up libsub-name-perl (0.07-1) ...
Setting up libtask-weaken-perl (1.04-1) ...
Setting up libmoose-perl (2.1210-1) ...
Setting up libvariable-magic-perl (0.53-1) ...
Setting up libb-hooks-endofscope-perl (0.13-1) ...
Setting up libsub-identify-perl (0.04-2) ...
Setting up libnamespace-clean-perl (0.25-1) ...
Setting up libnamespace-autoclean-perl (0.19-1) ...
Setting up libmoosex-strictconstructor-perl (0.19-1) ...
Setting up libunistring0:amd64 (0.9.3-5) ...
Setting up netbase (5.2) ...
Setting up file (1:5.19-1) ...
Setting up gettext-base (0.18.3.2-4) ...
Setting up openssl (1.0.1h-3) ...
Setting up ca-certificates (20140325) ...
Setting up curl (7.37.1-1) ...
Setting up libhttp-tiny-perl (0.043-2) ...
Setting up libaliased-perl (0.31-1) ...
Setting up libcpan-distnameinfo-perl (0.12-1) ...
Setting up libcpan-meta-yaml-perl (0.012-1) ...
Setting up libjson-pp-perl (2.27203-1) ...
Setting up libparse-cpan-meta-perl (1.4414-1) ...
Setting up libcpan-meta-requirements-perl (2.125-1) ...
Setting up libcpan-meta-perl (2.141520-1) ...
Setting up libcpan-meta-check-perl (0.009-1) ...
Setting up libfile-pushd-perl (1.009-1) ...
Setting up libversion-perl (1:0.9908-1) ...
Setting up libmodule-metadata-perl (1.000024-1) ...
Setting up libmodule-build-perl (0.420500-1) ...
Setting up liblocal-lib-perl (2.000012-1) ...
Setting up libmodule-cpanfile-perl (1.0002-1) ...
Setting up libstring-shellquote-perl (1.03-1) ...
Setting up cpanminus (1.7004-2) ...
Setting up gettext (0.18.3.2-4) ...
Setting up intltool-debian (0.35.0+20060710.1) ...
Setting up po-debconf (1.0.16+nmu3) ...
Setting up debhelper (9.20140613) ...
Setting up libany-moose-perl (0.24-1) ...
Setting up libcrypt-passwdmd5-perl (1.3-10) ...
Setting up libapache-htpasswd-perl (1.8-1.1) ...
Setting up libposix-strftime-compiler-perl (0.31-1) ...
Setting up libapache-logformat-compiler-perl (0.30-1) ...
Setting up libcapture-tiny-perl (0.24-2) ...
Setting up libio-stringy-perl (2.110-5) ...
Setting up libparams-validate-perl (1.13-1) ...
Setting up libgetopt-long-descriptive-perl (0.097-1) ...
Setting up libio-tiecombine-perl (1.003-1) ...
Setting up libstring-rewriteprefix-perl (0.007-1) ...
Setting up libapp-cmd-perl (0.323-1) ...
Setting up libarchive-zip-perl (1.37-2) ...
Setting up libclass-data-inheritable-perl (0.08-2) ...
Setting up libexception-class-perl (1.38-1) ...
Setting up libuniversal-require-perl (0.17-1) ...
Setting up libarchive-any-create-perl (0.3-1) ...
Setting up libclass-accessor-perl (0.34-1) ...
Setting up libauthen-simple-perl (0.5-1) ...
Setting up libauthen-simple-passwd-perl (0.6-3) ...
Setting up libcarp-clan-perl (6.04-1) ...
Setting up libclass-accessor-chained-perl (0.01.1~debian-2.1) ...
Setting up libclass-accessor-grouped-perl (0.10010-1) ...
Setting up libclass-accessor-lite-perl (0.06-1) ...
Setting up libclass-inspector-perl (1.28-1) ...
Setting up libclass-c3-componentised-perl (1.001000-1) ...
Setting up libclass-method-modifiers-perl (2.10-1) ...
Setting up libclass-singleton-perl (1.4-1) ...
Setting up libclone-perl (0.37-1) ...
Setting up libcompress-bzip2-perl (2.16-1+b1) ...
Setting up libconfig-any-perl (0.24-1) ...
Setting up libperlio-utf8-strict-perl (0.004-1) ...
Setting up libmixin-linewise-perl (0.106-1) ...
Setting up libconfig-ini-perl (1:0.024-1) ...
Setting up libcontext-preserve-perl (0.01-1) ...
Setting up libnumber-compare-perl (0.03-1) ...
Setting up libtext-glob-perl (0.09-1) ...
Setting up libfile-find-rule-perl (0.33-1) ...
Setting up libdata-compare-perl (1.23-0.1) ...
Setting up libcpan-checksums-perl (2.09-1) ...
Setting up libcwd-guard-perl (0.4-1) ...
Setting up libdata-dump-perl (1.22-1) ...
Setting up libdata-dumper-concise-perl (2.022-1) ...
Setting up libdata-page-perl (2.02-1) ...
Setting up libdatetime-locale-perl (1:0.45-2) ...
Setting up liblist-allutils-perl (0.03-1) ...
Setting up libdatetime-timezone-perl (1:1.71-1+2014e) ...
Setting up libdatetime-perl (2:1.10-1) ...
Setting up libdbi-perl (1.631-3) ...
Setting up libdbd-sqlite3-perl (1.42-2) ...
Setting up libmodule-find-perl (0.12-1) ...
Setting up libimport-into-perl (1.002004-1) ...
Setting up librole-tiny-perl (1.003003-1) ...
Setting up libstrictures-perl (1.005004-1) ...
Setting up libmoo-perl (1.005000-1) ...
Setting up libpath-class-perl (0.33-1) ...
Setting up libscope-guard-perl (0.20-1) ...
Setting up libhash-merge-perl (0.200-1) ...
Setting up libsql-abstract-perl (1.78-1) ...
Setting up libdbix-class-perl (0.08270-2) ...
Setting up libdevel-stacktrace-ashtml-perl (0.14-1) ...
Setting up libfile-spec-native-perl (1.003-1) ...
Setting up libdist-metadata-perl (0.925-1) ...
Setting up libencode-locale-perl (1.03-1) ...
Setting up libexporter-tidy-perl (0.07-2) ...
Setting up libfile-which-perl (1.09-1) ...
Setting up libfile-homedir-perl (1.00-1) ...
Setting up libhttp-date-perl (6.02-1) ...
Setting up libfile-listing-perl (6.04-1) ...
Setting up libfile-next-perl (1.12-1) ...
Setting up libfile-nfslock-perl (1.21-1) ...
Setting up libfile-sharedir-perl (1.102-1) ...
Setting up libfilesys-notify-simple-perl (0.12-1) ...
Setting up libhash-multivalue-perl (0.15-1) ...
Setting up liburi-perl (1.62-1) ...
Setting up libhtml-tagset-perl (3.20-2) ...
Setting up libhtml-parser-perl (3.71-1+b1) ...
Setting up libhtml-tree-perl (5.03-1) ...
Setting up libio-html-perl (1.001-1) ...
Setting up liblwp-mediatypes-perl (6.02-1) ...
Setting up libhttp-message-perl (6.06-1) ...
Setting up libhttp-cookies-perl (6.00-2) ...
Setting up libhttp-negotiate-perl (6.00-2) ...
Setting up libnet-ssleay-perl (1.65-1) ...
Setting up libio-socket-ssl-perl (1.992-1) ...
Setting up libnet-http-perl (6.06-1) ...
Setting up libwww-robotrules-perl (6.01-1) ...
Setting up libyaml-perl (0.95-1) ...
Setting up libhttp-parser-xs-perl (0.16-1+b1) ...
Setting up libio-interactive-perl (0.0.6-1) ...
Setting up libio-multiplex-perl (1.13-1) ...
Setting up libterm-readkey-perl (2.32-1) ...
Setting up libwant-perl (0.23-1) ...
Setting up libio-prompt-perl (0.997002-1) ...
Setting up libsocket6-perl (0.25-1) ...
Setting up libio-socket-inet6-perl (2.72-1) ...
Setting up libio-string-perl (1.08-3) ...
Setting up libjson-perl (2.61-1) ...
Setting up libmodule-build-cleaninstall-perl (0.5-2) ...
Setting up libmodule-corelist-perl (5.021001-1) ...
Setting up libtext-template-perl (1.46-1) ...
Setting up libmodule-faker-perl (0.16-1) ...
Setting up libmodule-refresh-perl (0.17-1) ...
Setting up libmoosex-aliases-perl (0.11-1) ...
Setting up libmoosex-classattribute-perl (0.27-1) ...
Setting up libmoosex-types-perl (0.44-1) ...
Setting up libmoosex-types-path-class-perl (0.05-2) ...
Setting up libtext-reform-perl (1.20-1) ...
Setting up libtext-autoformat-perl (1.669004-1) ...
Setting up libmoosex-configuration-perl (0.2-1) ...
Setting up libmoosex-markasmethods-perl (0.15-1) ...
Setting up libmoosex-nonmoose-perl (0.26-1) ...
Setting up libmoosex-setonce-perl (0.200002-1) ...
Setting up libtest-use-ok-perl (0.11-1) ...
Setting up liburi-fromhash-perl (0.04-1) ...
Setting up libmoosex-types-uri-perl (0.07-1) ...
Setting up libnet-cidr-perl (0.17-1) ...
Setting up libnet-server-perl (2.008-1) ...
Setting up libstream-buffered-perl (0.03-1) ...
Setting up libtest-sharedfork-perl (0.28-1) ...
Setting up libtest-tcp-perl (2.06-1) ...
Setting up libproc-fork-perl (0.802-1) ...
Setting up libproc-terminator-perl (0.5-1) ...
Setting up libreadonly-perl (2.000-1) ...
Setting up librouter-simple-perl (0.15-1) ...
Setting up libsafe-isa-perl (1.000004-1) ...
Setting up libstring-format-perl (1.17-1) ...
Setting up libsub-uplevel-perl (0.2400-1) ...
Setting up libtext-clip-perl (0.14-1) ...
Setting up libterm-editoredit-perl (0.16-1) ...
Setting up libtest-exception-perl (0.32-1) ...
Setting up libtest-file-perl (1.36-1) ...
Setting up libtest-warn-perl (0.30-1) ...
Setting up libthrowable-perl (0.200011-1) ...
Setting up libuuid-tiny-perl (1.0400-1) ...
Setting up liblwp-protocol-https-perl (6.06-2) ...
Setting up libwww-perl (6.07-1) ...
Setting up libhttp-body-perl (1.19-1) ...
Setting up libpackage-locator-perl (0.10-1) ...
Setting up libplack-perl (1.0030-1) ...
Setting up libtest-lwp-useragent-perl (0.023-1) ...
Setting up starman (0.4009-1) ...
Setting up sbuild-build-depends-pinto-dummy (0.invalid.0) ...
Processing triggers for libc-bin (2.19-7) ...
Processing triggers for ca-certificates (20140325) ...
Updating certificates in /etc/ssl/certs... 168 added, 0 removed; done.
Running hooks in /etc/ca-certificates/update.d....done.
┌──────────────────────────────────────────────────────────────────────────────┐
│ Build environment │
└──────────────────────────────────────────────────────────────────────────────┘
Kernel: Linux 2.6.32-5-xen-amd64 amd64 (x86_64)
Toolchain package versions: binutils_2.24.51.20140709-1 dpkg-dev_1.17.10 g++-4.6_4.6.4-7 g++-4.9_4.9.1-1 gcc-4.6_4.6.4-7 gcc-4.7_4.7.4-1 gcc-4.9_4.9.1-1 libc6-dev_2.19-7 libstdc++-4.9-dev_4.9.1-1 libstdc++6_4.9.1-1 libstdc++6-4.6-dev_4.6.4-7 linux-libc-dev_3.14.12-1
Package versions: apt_1.0.6 base-files_7.3 base-passwd_3.5.33 bash_4.3-7 binutils_2.24.51.20140709-1 bsdmainutils_9.0.5 bsdutils_1:2.20.1-5.8 build-essential_11.6 bzip2_1.0.6-5 ca-certificates_20140325 coreutils_8.21-1.2 cpanminus_1.7004-2 cpp_4:4.9.1-1 cpp-4.6_4.6.4-7 cpp-4.7_4.7.4-1 cpp-4.9_4.9.1-1 curl_7.37.1-1 dash_0.5.7-4 debconf_1.5.53 debconf-i18n_1.5.53 debfoster_2.7-1.2 debhelper_9.20140613 debian-archive-keyring_2012.4 debianutils_4.4 diffutils_1:3.3-1 dpkg_1.17.10 dpkg-dev_1.17.10 e2fslibs_1.42.11-2 e2fsprogs_1.42.11-2 fakeroot_1.20.1-1 file_1:5.19-1 findutils_4.4.2-9 g++_4:4.9.1-1 g++-4.6_4.6.4-7 g++-4.9_4.9.1-1 gcc_4:4.9.1-1 gcc-4.4-base_4.4.7-8 gcc-4.5-base_4.5.4-1 gcc-4.6_4.6.4-7 gcc-4.6-base_4.6.4-7 gcc-4.7_4.7.4-1 gcc-4.7-base_4.7.4-1 gcc-4.8-base_4.8.3-5 gcc-4.9_4.9.1-1 gcc-4.9-base_4.9.1-1 gettext_0.18.3.2-4 gettext-base_0.18.3.2-4 gnupg_1.4.18-2 gpgv_1.4.18-2 grep_2.18-2 groff-base_1.22.2-6 gzip_1.6-3 hostname_3.15 initscripts_2.88dsf-53.2 insserv_1.14.0-5 intltool-debian_0.35.0+20060710.1 libacl1_2.2.52-1 libalgorithm-c3-perl_0.09-1 libaliased-perl_0.31-1 libany-moose-perl_0.24-1 libapache-htpasswd-perl_1.8-1.1 libapache-logformat-compiler-perl_0.30-1 libapp-cmd-perl_0.323-1 libapt-pkg4.12_1.0.6 libarchive-any-create-perl_0.3-1 libarchive-extract-perl_0.72-1 libarchive-zip-perl_1.37-2 libasan1_4.9.1-1 libasprintf0c2_0.18.3.2-4 libatomic1_4.9.1-1 libattr1_1:2.4.47-1 libaudit-common_1:2.3.7-1 libaudit1_1:2.3.7-1 libauthen-simple-passwd-perl_0.6-3 libauthen-simple-perl_0.5-1 libb-hooks-endofscope-perl_0.13-1 libblkid1_2.20.1-5.8 libbz2-1.0_1.0.6-5 libc-bin_2.19-7 libc-dev-bin_2.19-7 libc6_2.19-7 libc6-dev_2.19-7 libcap2_1:2.22-2 libcapture-tiny-perl_0.24-2 libcarp-clan-perl_6.04-1 libcilkrts5_4.9.1-1 libclass-accessor-chained-perl_0.01.1~debian-2.1 libclass-accessor-grouped-perl_0.10010-1 libclass-accessor-lite-perl_0.06-1 libclass-accessor-perl_0.34-1 libclass-c3-componentised-perl_1.001000-1 libclass-c3-perl_0.26-1 libclass-data-inheritable-perl_0.08-2 libclass-inspector-perl_1.28-1 libclass-isa-perl_0.36-5 libclass-load-perl_0.21-1 libclass-load-xs-perl_0.08-1 libclass-method-modifiers-perl_2.10-1 libclass-singleton-perl_1.4-1 libclone-perl_0.37-1 libcloog-isl4_0.18.2-1 libcloog-ppl1_0.16.1-5 libcomerr2_1.42.11-2 libcompress-bzip2-perl_2.16-1+b1 libconfig-any-perl_0.24-1 libconfig-ini-perl_1:0.024-1 libcontext-preserve-perl_0.01-1 libcpan-checksums-perl_2.09-1 libcpan-distnameinfo-perl_0.12-1 libcpan-meta-check-perl_0.009-1 libcpan-meta-perl_2.141520-1 libcpan-meta-requirements-perl_2.125-1 libcpan-meta-yaml-perl_0.012-1 libcroco3_0.6.8-2 libcrypt-passwdmd5-perl_1.3-10 libcurl3_7.37.1-1 libcwd-guard-perl_0.4-1 libdata-compare-perl_1.23-0.1 libdata-dump-perl_1.22-1 libdata-dumper-concise-perl_2.022-1 libdata-optlist-perl_0.109-1 libdata-page-perl_2.02-1 libdatetime-locale-perl_1:0.45-2 libdatetime-perl_2:1.10-1 libdatetime-timezone-perl_1:1.71-1+2014e libdb5.1_5.1.29-5 libdb5.3_5.3.28-5 libdbd-sqlite3-perl_1.42-2 libdbi-perl_1.631-3 libdbix-class-perl_0.08270-2 libdebconfclient0_0.191 libdevel-globaldestruction-perl_0.12-1 libdevel-stacktrace-ashtml-perl_0.14-1 libdevel-stacktrace-perl_1.3400-1 libdist-metadata-perl_0.925-1 libdpkg-perl_1.17.10 libencode-locale-perl_1.03-1 libeval-closure-perl_0.11-1 libexception-class-perl_1.38-1 libexporter-tidy-perl_0.07-2 libfakeroot_1.20.1-1 libffi6_3.1-2 libfile-fcntllock-perl_0.20-1 libfile-find-rule-perl_0.33-1 libfile-homedir-perl_1.00-1 libfile-listing-perl_6.04-1 libfile-next-perl_1.12-1 libfile-nfslock-perl_1.21-1 libfile-pushd-perl_1.009-1 libfile-sharedir-perl_1.102-1 libfile-spec-native-perl_1.003-1 libfile-which-perl_1.09-1 libfilesys-notify-simple-perl_0.12-1 libgc1c2_1:7.2d-6.1 libgcc-4.7-dev_4.7.4-1 libgcc-4.9-dev_4.9.1-1 libgcc1_1:4.9.1-1 libgcrypt11_1.5.3-4 libgcrypt20_1.6.1-2 libgdbm3_1.8.3-13 libgetopt-long-descriptive-perl_0.097-1 libglib2.0-0_2.40.0-3 libgmp10_2:6.0.0+dfsg-4 libgmpxx4ldbl_2:6.0.0+dfsg-4 libgnutls-deb0-28_3.2.15-3 libgnutls26_2.12.23-17 libgomp1_4.9.1-1 libgpg-error0_1.13-0.1 libgpm2_1.20.4-6.1 libgssapi-krb5-2_1.12.1+dfsg-4 libhash-merge-perl_0.200-1 libhash-multivalue-perl_0.15-1 libhogweed2_2.7.1-2+b1 libhtml-parser-perl_3.71-1+b1 libhtml-tagset-perl_3.20-2 libhtml-tree-perl_5.03-1 libhttp-body-perl_1.19-1 libhttp-cookies-perl_6.00-2 libhttp-date-perl_6.02-1 libhttp-message-perl_6.06-1 libhttp-negotiate-perl_6.00-2 libhttp-parser-xs-perl_0.16-1+b1 libhttp-tiny-perl_0.043-2 libidn11_1.28-2 libimport-into-perl_1.002004-1 libio-html-perl_1.001-1 libio-interactive-perl_0.0.6-1 libio-multiplex-perl_1.13-1 libio-prompt-perl_0.997002-1 libio-socket-inet6-perl_2.72-1 libio-socket-ssl-perl_1.992-1 libio-string-perl_1.08-3 libio-stringy-perl_2.110-5 libio-tiecombine-perl_1.003-1 libisl10_0.12.2-2 libitm1_4.9.1-1 libjson-perl_2.61-1 libjson-pp-perl_2.27203-1 libk5crypto3_1.12.1+dfsg-4 libkeyutils1_1.5.9-4 libkrb5-3_1.12.1+dfsg-4 libkrb5support0_1.12.1+dfsg-4 libldap-2.4-2_2.4.39-1 liblist-allutils-perl_0.03-1 liblist-moreutils-perl_0.33-2 liblocal-lib-perl_2.000012-1 liblocale-gettext-perl_1.05-8 liblog-message-perl_0.8-1 liblog-message-simple-perl_0.10-2 liblsan0_4.9.1-1 liblwp-mediatypes-perl_6.02-1 liblwp-protocol-https-perl_6.06-2 liblzma5_5.1.1alpha+20120614-2 libmagic1_1:5.19-1 libmixin-linewise-perl_0.106-1 libmodule-build-cleaninstall-perl_0.5-2 libmodule-build-perl_0.420500-1 libmodule-corelist-perl_5.021001-1 libmodule-cpanfile-perl_1.0002-1 libmodule-faker-perl_0.16-1 libmodule-find-perl_0.12-1 libmodule-implementation-perl_0.07-1 libmodule-metadata-perl_1.000024-1 libmodule-pluggable-perl_5.1-1 libmodule-refresh-perl_0.17-1 libmodule-runtime-perl_0.014-1 libmoo-perl_1.005000-1 libmoose-perl_2.1210-1 libmoosex-aliases-perl_0.11-1 libmoosex-classattribute-perl_0.27-1 libmoosex-configuration-perl_0.2-1 libmoosex-markasmethods-perl_0.15-1 libmoosex-nonmoose-perl_0.26-1 libmoosex-setonce-perl_0.200002-1 libmoosex-strictconstructor-perl_0.19-1 libmoosex-types-path-class-perl_0.05-2 libmoosex-types-perl_0.44-1 libmoosex-types-uri-perl_0.07-1 libmount1_2.20.1-5.8 libmpc2_0.9-4 libmpc3_1.0.2-1 libmpfr4_3.1.2-1 libmro-compat-perl_0.12-1 libnamespace-autoclean-perl_0.19-1 libnamespace-clean-perl_0.25-1 libncurses5_5.9+20140118-1 libnet-cidr-perl_0.17-1 libnet-http-perl_6.06-1 libnet-server-perl_2.008-1 libnet-ssleay-perl_1.65-1 libnettle4_2.7.1-2+b1 libnumber-compare-perl_0.03-1 libp11-kit0_0.20.2-5 libpackage-deprecationmanager-perl_0.13-1 libpackage-locator-perl_0.10-1 libpackage-stash-perl_0.36-1 libpackage-stash-xs-perl_0.28-2 libpam-modules_1.1.8-3 libpam-modules-bin_1.1.8-3 libpam-runtime_1.1.8-3 libpam0g_1.1.8-3 libparams-classify-perl_0.013-4+b1 libparams-util-perl_1.07-1+b1 libparams-validate-perl_1.13-1 libparse-cpan-meta-perl_1.4414-1 libpath-class-perl_0.33-1 libpcre3_1:8.35-2 libperlio-utf8-strict-perl_0.004-1 libpipeline1_1.3.0-1 libplack-perl_1.0030-1 libpod-latex-perl_0.61-1 libposix-strftime-compiler-perl_0.31-1 libppl-c4_1:1.1-2+b1 libppl13_1:1.1-2+b1 libproc-fork-perl_0.802-1 libproc-terminator-perl_0.5-1 libquadmath0_4.9.1-1 libreadline6_6.3-6 libreadonly-perl_2.000-1 librole-tiny-perl_1.003003-1 librouter-simple-perl_0.15-1 librtmp1_2.4+20131018.git79459a2-3 libsafe-isa-perl_1.000004-1 libsasl2-2_2.1.26.dfsg1-11 libsasl2-modules-db_2.1.26.dfsg1-11 libscope-guard-perl_0.20-1 libselinux1_2.3-1 libsemanage-common_2.3-1 libsemanage1_2.3-1 libsepol1_2.3-1 libslang2_2.2.4-17 libsocket6-perl_0.25-1 libsql-abstract-perl_1.78-1 libsqlite3-0_3.8.5-2 libss2_1.42.11-2 libssh2-1_1.4.3-3 libssl1.0.0_1.0.1h-3 libstdc++-4.9-dev_4.9.1-1 libstdc++6_4.9.1-1 libstdc++6-4.6-dev_4.6.4-7 libstream-buffered-perl_0.03-1 libstrictures-perl_1.005004-1 libstring-format-perl_1.17-1 libstring-rewriteprefix-perl_0.007-1 libstring-shellquote-perl_1.03-1 libsub-exporter-perl_0.986-1 libsub-exporter-progressive-perl_0.001011-1 libsub-identify-perl_0.04-2 libsub-install-perl_0.928-1 libsub-name-perl_0.07-1 libsub-uplevel-perl_0.2400-1 libswitch-perl_2.17-1 libtask-weaken-perl_1.04-1 libtasn1-6_4.0-2 libterm-editoredit-perl_0.16-1 libterm-readkey-perl_2.32-1 libterm-ui-perl_0.42-1 libtest-exception-perl_0.32-1 libtest-file-perl_1.36-1 libtest-lwp-useragent-perl_0.023-1 libtest-sharedfork-perl_0.28-1 libtest-tcp-perl_2.06-1 libtest-use-ok-perl_0.11-1 libtest-warn-perl_0.30-1 libtext-autoformat-perl_1.669004-1 libtext-charwidth-perl_0.04-7+b2 libtext-clip-perl_0.14-1 libtext-glob-perl_0.09-1 libtext-iconv-perl_1.7-5+b1 libtext-reform-perl_1.20-1 libtext-soundex-perl_3.4-1+b1 libtext-template-perl_1.46-1 libtext-wrapi18n-perl_0.06-7 libthrowable-perl_0.200011-1 libtimedate-perl_2.3000-2 libtinfo5_5.9+20140118-1 libtry-tiny-perl_0.22-1 libtsan0_4.9.1-1 libubsan0_4.9.1-1 libunistring0_0.9.3-5 libuniversal-require-perl_0.17-1 liburi-fromhash-perl_0.04-1 liburi-perl_1.62-1 libusb-0.1-4_2:0.1.12-24 libustr-1.0-1_1.0.4-3 libuuid-tiny-perl_1.0400-1 libuuid1_2.20.1-5.8 libvariable-magic-perl_0.53-1 libversion-perl_1:0.9908-1 libwant-perl_0.23-1 libwww-perl_6.07-1 libwww-robotrules-perl_6.01-1 libxml2_2.9.1+dfsg1-4 libyaml-perl_0.95-1 linux-libc-dev_3.14.12-1 login_1:4.2-2 lsb-base_4.1+Debian13 make_4.0-8 man-db_2.6.7.1-1 mawk_1.3.3-17 mount_2.20.1-5.8 multiarch-support_2.19-7 ncurses-base_5.9+20140118-1 ncurses-bin_5.9+20140118-1 netbase_5.2 openssl_1.0.1h-3 passwd_1:4.2-2 patch_2.7.1-5 perl_5.18.2-7 perl-base_5.18.2-7 perl-modules_5.18.2-7 po-debconf_1.0.16+nmu3 readline-common_6.3-6 rename_0.20-3 sbuild-build-depends-core-dummy_0.invalid.0 sbuild-build-depends-pinto-dummy_0.invalid.0 sed_4.2.2-4 sensible-utils_0.0.9 starman_0.4009-1 startpar_0.59-3 sudo_1.8.9p5-1 sysv-rc_2.88dsf-53.2 sysvinit_2.88dsf-53.2 sysvinit-core_2.88dsf-53.2 sysvinit-utils_2.88dsf-53.2 tar_1.27.1-2 tzdata_2014e-1 ucf_3.0030 util-linux_2.20.1-5.8 vim_2:7.4.335-1 vim-common_2:7.4.335-1 vim-runtime_2:7.4.335-1 xz-utils_5.1.1alpha+20120614-2 zlib1g_1:1.2.8.dfsg-1
┌──────────────────────────────────────────────────────────────────────────────┐
│ Build │
└──────────────────────────────────────────────────────────────────────────────┘
Unpack source
─────────────
gpgv: keyblock resource `/sbuild-nonexistent/.gnupg/trustedkeys.gpg': file open error
gpgv: Signature made Wed Jan 22 20:43:01 2014 UTC using RSA key ID 8649AA06
gpgv: Can't check signature: public key not found
dpkg-source: warning: failed to verify signature on ./pinto_0.97+dfsg-2.dsc
dpkg-source: info: extracting pinto in pinto-0.97+dfsg
dpkg-source: info: unpacking pinto_0.97+dfsg.orig.tar.gz
dpkg-source: info: unpacking pinto_0.97+dfsg-2.debian.tar.xz
Check disc space
────────────────
Sufficient free space for build
User Environment
────────────────
HOME=/sbuild-nonexistent
LOGNAME=user
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
SCHROOT_ALIAS_NAME=unstable-amd64-sbuild
SCHROOT_CHROOT_NAME=unstable-amd64-sbuild
SCHROOT_COMMAND=env
SCHROOT_GID=1000
SCHROOT_GROUP=user
SCHROOT_SESSION_ID=unstable-amd64-sbuild-bae70a4c-760e-4317-9e9b-2bf314f6d271
SCHROOT_UID=1000
SCHROOT_USER=user
SHELL=/bin/sh
USER=user
dpkg-buildpackage
─────────────────
dpkg-buildpackage: source package pinto
dpkg-buildpackage: source version 0.97+dfsg-2
dpkg-buildpackage: source distribution unstable
dpkg-buildpackage: source changed by gregor herrmann <gregoa@debian.org>
dpkg-source --before-build pinto-0.97+dfsg
dpkg-buildpackage: host architecture amd64
fakeroot debian/rules clean
dh clean
dh_testdir
dh_auto_clean
dh_clean
dpkg-source -b pinto-0.97+dfsg
dpkg-source: info: using source format `3.0 (quilt)'
dpkg-source: info: building pinto using existing ./pinto_0.97+dfsg.orig.tar.gz
dpkg-source: info: building pinto in pinto_0.97+dfsg-2.debian.tar.xz
dpkg-source: info: building pinto in pinto_0.97+dfsg-2.dsc
debian/rules build
dh build
dh_testdir
dh_auto_configure
Created MYMETA.yml and MYMETA.json
Creating new 'Build' script for 'Pinto' version '0.097'
dh_auto_build
Building Pinto
debian/rules override_dh_auto_test
make[1]: Entering directory '/«BUILDDIR»/pinto-0.97+dfsg'
http_proxy= dh_auto_test
t/00-compile.t ...................... ok
#
# Versions for all modules listed in MYMETA.json (including optional ones):
# Version Module
# -------- -------------------------------
# 1.8 Apache::Htpasswd
# 0.323 App::Cmd::Command::help
# 0.323 App::Cmd::Setup
# 0.72 Archive::Extract
# 1.90 Archive::Tar
# 0.6 Authen::Simple::Passwd
# 2.09 CPAN::Checksums
# 0.12 CPAN::DistnameInfo
# 2.141520 CPAN::Meta
# 2.125 CPAN::Meta::Requirements
# 0.24 Capture::Tiny
# 1.29 Carp
# 0.21 Class::Load
# 3.40 Cwd
# 0.04 Cwd::Guard
# 1.42 DBD::SQLite
# 0.08270 DBIx::Class
# undef DBIx::Class::Core
# undef DBIx::Class::ResultSet
# undef DBIx::Class::Schema
# 1.10 DateTime
# 1.71 DateTime::TimeZone
# 1.71 DateTime::TimeZone::Local::Unix
# 1.71 DateTime::TimeZone::OffsetOnly
# 1.34 Devel::StackTrace
# 2.52 Digest::MD5
# 5.84_01 Digest::SHA
# 0.925 Dist::Metadata
# 2.49 Encode
# 1.06_01 English
# 5.68 Exporter
# 6.66 ExtUtils::MakeMaker
# 2.26 File::Copy
# 1.23 File::Find
# 1.00 File::HomeDir
# 1.21 File::NFSLock
# 3.40 File::Spec
# 3.40 File::Spec::Functions
# 0.23 File::Temp
# 1.09 File::Which
# 1.51 FindBin
# 2.39 Getopt::Long
# 1.19 HTTP::Body
# 6.02 HTTP::Date
# 6.00 HTTP::Request
# 6.04 HTTP::Request::Common
# 6.04 HTTP::Response
# undef HTTP::Server::PSGI
# 1.16 IO::File
# 1.34 IO::Handle
# 0.0.6 IO::Interactive
# 1.15 IO::Pipe
# 0.997002 IO::Prompt
# 1.21 IO::Select
# 1.08 IO::String
# 1.10 IO::Zlib
# 1.13 IPC::Open3
# 2.61 JSON
# 2.27203 JSON::PP
# 6.06 LWP::UserAgent
# 0.33 List::MoreUtils
# 1.27 List::Util
# 0.4205 Module::Build
# 0.05 Module::Build::CleanInstall
# 5.021001 Module::CoreList
# 0.016 Module::Faker::Dist
# 2.1210 Moose
# 2.1210 Moose::Role
# 0.11 MooseX::Aliases
# 0.27 MooseX::ClassAttribute
# 0.02 MooseX::Configuration
# 0.15 MooseX::MarkAsMethods
# 0.26 MooseX::NonMoose
# 0.200002 MooseX::SetOnce
# 0.19 MooseX::StrictConstructor
# 0.44 MooseX::Types
# 0.44 MooseX::Types::Moose
# 0.010 Package::Locator
# 0.33 Path::Class
# 0.33 Path::Class::Dir
# 0.33 Path::Class::File
# 1.0030 Plack
# undef Plack::MIME
# undef Plack::Middleware::Auth::Basic
# 1.0030 Plack::Request
# 1.0030 Plack::Response
# undef Plack::Runner
# undef Plack::Test
# 1.61 Pod::Usage
# 0.802 Proc::Fork
# 0.05 Proc::Terminator
# 2.00 Readonly
# 0.15 Router::Simple
# 1.27 Scalar::Util
# 0.4009 Starman
# 1.17 String::Format
# 4.02 Term::ANSIColor
# 0.0016 Term::EditorEdit
# 0.98 Test::Builder::Module
# 0.32 Test::Exception
# 1.36 Test::File
# 0.023 Test::LWP::UserAgent
# 0.98 Test::More
# 2.06 Test::TCP
# 0.30 Test::Warn
# 0.200011 Throwable::Error
# 0.22 Try::Tiny
# 1.62 URI
# 1.04 UUID::Tiny
# 2.18 base
# 0.63 lib
# 1.22 overload
# 1.07 strict
# 1.10 utf8
# 0.9908 version
# 1.18 warnings
t/00-report-prereqs.t ............... ok
t/01-common/01-types.t .............. ok
t/01-common/02-package-spec.t ....... ok
t/01-common/03-distribution-spec.t .. ok
t/01-common/04-util.t ............... ok
t/01-common/05-pauseconfig.t ........ ok
t/02-bowels/01-config.t ............. ok
t/02-bowels/02-chrome.t ............. ok
t/02-bowels/03-package.t ............ ok
t/02-bowels/04-distribution.t ....... ok
t/02-bowels/05-compare.t ............ ok
t/02-bowels/10-init.t ............... ok
# Failed test 'Result indicates action was succesful'
# at t/lib/Pinto/Tester.pm line 537.
# Log messages are...
# Adding /tmp/XT4aSqXkGy/FooAndBar-1.2.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
Population failed. Aborting test
Trace begun at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Util.pm line 73
Pinto::Util::throw('Population failed. Aborting test') called at t/lib/Pinto/Tester.pm line 538
Pinto::Tester::populate('Pinto::Tester=HASH(0x6c3dc58)', 'AUTHOR/FooAndBar-1.2=Foo~1.2,Bar~0.0') called at t/02-bowels/11-tester.t line 41
# Tests were run but no plan was declared and done_testing() was not seen.
t/02-bowels/11-tester.t .............
Dubious, test returned 2 (wstat 512, 0x200)
Failed 1/13 subtests
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/20-add.t line 30.
# Log messages are...
# Adding /tmp/XZu8lsIIoY/Foo-Bar-0.01.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# Failed test 'Package Foo is not on stack master'
# at t/02-bowels/20-add.t line 32.
# Failed test 'Package Bar is not on stack master'
# at t/02-bowels/20-add.t line 33.
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/20-add.t line 44.
# Log messages are...
# Adding /tmp/XZu8lsIIoY/Foo-Bar-0.01.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# Failed test 'Package Foo is not on stack dev'
# at t/02-bowels/20-add.t line 46.
# Failed test 'Package Bar is not on stack dev'
# at t/02-bowels/20-add.t line 47.
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/20-add.t line 57.
# Log messages are...
# Adding /tmp/XZu8lsIIoY/Foo-Bar-0.01.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# Failed test 'Package Foo is not on stack master'
# at t/02-bowels/20-add.t line 58.
# Failed test 'Package Bar is not on stack master'
# at t/02-bowels/20-add.t line 59.
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/20-add.t line 61.
# Log messages are...
# Adding /tmp/XZu8lsIIoY/Foo-Bar-0.01.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# Failed test 'Package Foo is not on stack master'
# at t/02-bowels/20-add.t line 62.
# Failed test 'Package Bar is not on stack master'
# at t/02-bowels/20-add.t line 63.
# Failed test 'Got warning about identical dist'
# at t/02-bowels/20-add.t line 65.
# 'Adding /tmp/XZu8lsIIoY/Foo-Bar-0.01.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# '
# doesn't match '(?^:\/tmp\/XZu8lsIIoY\/Foo\-Bar\-0\.01\.tar\.gz is the same)'
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/20-add.t line 68.
# Log messages are...
# Adding /tmp/XZu8lsIIoY/Foo-Bar-0.01.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# Failed test 'Package Foo is not on stack master'
# at t/02-bowels/20-add.t line 69.
# Failed test 'Package Bar is not on stack master'
# at t/02-bowels/20-add.t line 70.
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/20-add.t line 80.
# Log messages are...
# Adding /tmp/XZu8lsIIoY/Foo-Bar-0.01.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# Failed test 'Package Foo is not on stack master'
# at t/02-bowels/20-add.t line 81.
# Failed test 'Package Bar is not on stack master'
# at t/02-bowels/20-add.t line 82.
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/20-add.t line 86.
# Log messages are...
# Adding /tmp/XZu8lsIIoY/Foo-Bar-0.01.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# Failed test 'Package Foo is not on stack dev'
# at t/02-bowels/20-add.t line 87.
# Failed test 'Package Bar is not on stack dev'
# at t/02-bowels/20-add.t line 88.
# Failed test 'Got warning about identical dist'
# at t/02-bowels/20-add.t line 90.
# 'Adding /tmp/XZu8lsIIoY/Foo-Bar-0.01.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# '
# doesn't match '(?^:\/tmp\/XZu8lsIIoY\/Foo\-Bar\-0\.01\.tar\.gz is the same)'
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/20-add.t line 100.
# Log messages are...
# Adding /tmp/XZu8lsIIoY/Foo-Bar-0.01.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# Failed test 'Package Foo is not on stack master'
# at t/02-bowels/20-add.t line 101.
# Failed test 'Package Bar is not on stack master'
# at t/02-bowels/20-add.t line 102.
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/20-add.t line 104.
# Log messages are...
# Adding /tmp/XZu8lsIIoY/Foo-Bar-0.01.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# Failed test 'Package Foo is not on stack master'
# at t/02-bowels/20-add.t line 105.
# Failed test 'Package Bar is not on stack master'
# at t/02-bowels/20-add.t line 106.
# Failed test 'Got warning about identical dist'
# at t/02-bowels/20-add.t line 108.
# 'Adding /tmp/XZu8lsIIoY/Foo-Bar-0.01.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# '
# doesn't match '(?^:\/tmp\/XZu8lsIIoY\/Foo\-Bar\-0\.01\.tar\.gz is the same)'
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/20-add.t line 125.
# Log messages are...
# Adding /tmp/LU7fIJWX6R/Dist-1.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# Failed test at t/02-bowels/20-add.t line 126.
# 'Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
#
#
# Trace begun at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Util.pm line 73
# Pinto::Util::throw('Can\'t locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.^J') called at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Action/Add.pm line 89
# Pinto::Action::Add::catch {...} ('Can\'t locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.^J') called at /usr/share/perl5/Try/Tiny.pm line 104
# Try::Tiny::try('CODE(0x764edf0)', 'Try::Tiny::Catch=REF(0x764f480)', 'Try::Tiny::Finally=REF(0x7632d30)') called at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Action/Add.pm line 101
# Pinto::Action::Add::execute('Pinto::Action::Add=HASH(0x7587288)') called at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/Committable.pm line 84
# Pinto::Role::Committable::try {...} at /usr/share/perl5/Try/Tiny.pm line 76
# eval {...} at /usr/share/perl5/Try/Tiny.pm line 72
# Try::Tiny::try('CODE(0x763bcf8)', 'Try::Tiny::Catch=REF(0x764f5d0)') called at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/Committable.pm line 84
# Class::MOP::Class:::around('CODE(0x724f838)', 'Pinto::Action::Add=HASH(0x7587288)') called at /usr/lib/perl5/Class/MOP/Method/Wrapped.pm line 160
# Class::MOP::Method::Wrapped::__ANON__('Pinto::Action::Add=HASH(0x7587288)') called at /usr/lib/perl5/Class/MOP/Method/Wrapped.pm line 89
# Pinto::Action::Add::execute('Pinto::Action::Add=HASH(0x7587288)') called at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto.pm line 90
# Pinto::try {...} at /usr/share/perl5/Try/Tiny.pm line 76
# eval {...} at /usr/share/perl5/Try/Tiny.pm line 72
# Try::Tiny::try('CODE(0x760fd58)', 'Try::Tiny::Catch=REF(0x76335d0)', 'Try::Tiny::Finally=REF(0x763c7c0)') called at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto.pm line 100
# Pinto::run('Pinto=HASH(0x760f250)', 'Add', 'author', 'ME', 'archives', 'Path::Class::File=HASH(0x763c2f8)') called at t/lib/Pinto/Tester.pm line 196
# Pinto::Tester::run_throws_ok('Pinto::Tester=HASH(0x7633738)', 'Add', 'HASH(0x73a3ac8)', 'Regexp=REGEXP(0x7426218)') called at t/02-bowels/20-add.t line 126
# '
# doesn't match '(?^:\/tmp\/LU7fIJWX6R\/MY\-Dist\-1\.tar\.gz is the same .* but with different name)'
# Log messages are...
# Adding /tmp/LU7fIJWX6R/MY-Dist-1.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/20-add.t line 145.
# Log messages are...
# Adding /tmp/bqiBox8_uo/Dist-1.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# Failed test 'Cannot add dist to same path twice'
# at t/02-bowels/20-add.t line 147.
# 'Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
#
#
# Trace begun at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Util.pm line 73
# Pinto::Util::throw('Can\'t locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.^J') called at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Action/Add.pm line 89
# Pinto::Action::Add::catch {...} ('Can\'t locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.^J') called at /usr/share/perl5/Try/Tiny.pm line 104
# Try::Tiny::try('CODE(0x761e838)', 'Try::Tiny::Catch=REF(0x74a6fb0)', 'Try::Tiny::Finally=REF(0x764f138)') called at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Action/Add.pm line 101
# Pinto::Action::Add::execute('Pinto::Action::Add=HASH(0x761f690)') called at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/Committable.pm line 84
# Pinto::Role::Committable::try {...} at /usr/share/perl5/Try/Tiny.pm line 76
# eval {...} at /usr/share/perl5/Try/Tiny.pm line 72
# Try::Tiny::try('CODE(0x760f9b0)', 'Try::Tiny::Catch=REF(0x761f570)') called at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/Committable.pm line 84
# Class::MOP::Class:::around('CODE(0x724f838)', 'Pinto::Action::Add=HASH(0x761f690)') called at /usr/lib/perl5/Class/MOP/Method/Wrapped.pm line 160
# Class::MOP::Method::Wrapped::__ANON__('Pinto::Action::Add=HASH(0x761f690)') called at /usr/lib/perl5/Class/MOP/Method/Wrapped.pm line 89
# Pinto::Action::Add::execute('Pinto::Action::Add=HASH(0x761f690)') called at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto.pm line 90
# Pinto::try {...} at /usr/share/perl5/Try/Tiny.pm line 76
# eval {...} at /usr/share/perl5/Try/Tiny.pm line 72
# Try::Tiny::try('CODE(0x7610070)', 'Try::Tiny::Catch=REF(0x76b17d8)', 'Try::Tiny::Finally=REF(0x7587270)') called at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto.pm line 100
# Pinto::run('Pinto=HASH(0x73b6e18)', 'Add', 'archives', 'Path::Class::File=HASH(0x52d46d0)', 'author', 'ME') called at t/lib/Pinto/Tester.pm line 196
# Pinto::Tester::run_throws_ok('Pinto::Tester=HASH(0x75f43b8)', 'Add', 'HASH(0x749a818)', 'Regexp=REGEXP(0x76105b0)', 'Cannot add dist to same path twice') called at t/02-bowels/20-add.t line 147
# '
# doesn't match '(?^:already exists)'
# Log messages are...
# Adding /tmp/GemADRTjoQ/Dist-1.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# Failed test 'Cannot add dist to same path twice'
# at t/02-bowels/20-add.t line 154.
# 'Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
#
#
# Trace begun at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Util.pm line 73
# Pinto::Util::throw('Can\'t locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.^J') called at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Action/Add.pm line 89
# Pinto::Action::Add::catch {...} ('Can\'t locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.^J') called at /usr/share/perl5/Try/Tiny.pm line 104
# Try::Tiny::try('CODE(0x760e7b8)', 'Try::Tiny::Catch=REF(0x75fb1d0)', 'Try::Tiny::Finally=REF(0x75f4148)') called at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Action/Add.pm line 101
# Pinto::Action::Add::execute('Pinto::Action::Add=HASH(0x74a6d28)') called at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/Committable.pm line 84
# Pinto::Role::Committable::try {...} at /usr/share/perl5/Try/Tiny.pm line 76
# eval {...} at /usr/share/perl5/Try/Tiny.pm line 72
# Try::Tiny::try('CODE(0x76b1880)', 'Try::Tiny::Catch=REF(0x7633ad8)') called at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/Committable.pm line 84
# Class::MOP::Class:::around('CODE(0x724f838)', 'Pinto::Action::Add=HASH(0x74a6d28)') called at /usr/lib/perl5/Class/MOP/Method/Wrapped.pm line 160
# Class::MOP::Method::Wrapped::__ANON__('Pinto::Action::Add=HASH(0x74a6d28)') called at /usr/lib/perl5/Class/MOP/Method/Wrapped.pm line 89
# Pinto::Action::Add::execute('Pinto::Action::Add=HASH(0x74a6d28)') called at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto.pm line 90
# Pinto::try {...} at /usr/share/perl5/Try/Tiny.pm line 76
# eval {...} at /usr/share/perl5/Try/Tiny.pm line 72
# Try::Tiny::try('CODE(0x764f540)', 'Try::Tiny::Catch=REF(0x76b1550)', 'Try::Tiny::Finally=REF(0x75f4808)') called at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto.pm line 100
# Pinto::run('Pinto=HASH(0x73b6e18)', 'Add', 'archives', 'Path::Class::File=HASH(0x52d46d0)', 'author', 'ME') called at t/lib/Pinto/Tester.pm line 196
# Pinto::Tester::run_throws_ok('Pinto::Tester=HASH(0x75f43b8)', 'Add', 'HASH(0x749a818)', 'Regexp=REGEXP(0x764f1e0)', 'Cannot add dist to same path twice') called at t/02-bowels/20-add.t line 154
# '
# doesn't match '(?^:already exists)'
# Log messages are...
# Adding /tmp/GemADRTjoQ/Dist-1.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/20-add.t line 176.
# Log messages are...
# Adding /tmp/H5bgPv8I98/Foo-1.0.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# Failed test 'Package Foo is not on stack master'
# at t/02-bowels/20-add.t line 178.
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/20-add.t line 189.
# Log messages are...
# Adding /tmp/LzHTV2pPv6/Foo-1.0.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# Failed test 'Package Foo is not on stack master'
# at t/02-bowels/20-add.t line 191.
# Looks like you failed 39 tests of 48.
t/02-bowels/20-add.t ................
Dubious, test returned 39 (wstat 9984, 0x2700)
Failed 39/48 subtests
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/21-add-no-index.t line 22.
# Log messages are...
# Adding /tmp/AXSxudE3OZ/Foo-Bar-0.01.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# Failed test 'Package Bar is not on stack master'
# at t/02-bowels/21-add-no-index.t line 25.
Can't call method "packages" on an undefined value at t/02-bowels/21-add-no-index.t line 28.
# Child (Excluding with exact match) exited without calling finalize()
# Failed test 'Excluding with exact match'
# at /usr/share/perl/5.18/Test/Builder.pm line 252.
# Tests were run but no plan was declared and done_testing() was not seen.
t/02-bowels/21-add-no-index.t .......
Dubious, test returned 2 (wstat 512, 0x200)
Failed 1/1 subtests
# Failed test 'Result indicates action was succesful'
# at t/lib/Pinto/Tester.pm line 537.
# Log messages are...
# Adding /tmp/oRxYRnKK4t/Baz-1.2.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
Population failed. Aborting test
Trace begun at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Util.pm line 73
Pinto::Util::throw('Population failed. Aborting test') called at t/lib/Pinto/Tester.pm line 538
Pinto::Tester::populate('Pinto::Tester=HASH(0x251e038)', 'JOHN/Baz-1.2 = Baz~1.2 & Nuts-2.3') called at t/02-bowels/21-pull.t line 15
# Tests were run but no plan was declared and done_testing() was not seen.
t/02-bowels/21-pull.t ...............
Dubious, test returned 2 (wstat 512, 0x200)
Failed 1/1 subtests
# Failed test 'Result indicates action was succesful'
# at t/lib/Pinto/Tester.pm line 537.
# Log messages are...
# Adding /tmp/J0bAupEXcB/Baz-1.2.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
Population failed. Aborting test
Trace begun at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Util.pm line 73
Pinto::Util::throw('Population failed. Aborting test') called at t/lib/Pinto/Tester.pm line 538
Pinto::Tester::populate('Pinto::Tester=HASH(0x1005088)', 'JOHN/Baz-1.2 = Baz~1.2 & Nuts~2.3') called at t/02-bowels/22-add-deep.t line 15
# Tests were run but no plan was declared and done_testing() was not seen.
t/02-bowels/22-add-deep.t ...........
Dubious, test returned 2 (wstat 512, 0x200)
Failed 1/1 subtests
# Failed test 'Result indicates action was succesful'
# at t/lib/Pinto/Tester.pm line 537.
# Log messages are...
# Adding /tmp/bWmgUjhHlj/DistA-1.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
Population failed. Aborting test
Trace begun at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Util.pm line 73
Pinto::Util::throw('Population failed. Aborting test') called at t/lib/Pinto/Tester.pm line 538
Pinto::Tester::populate('Pinto::Tester=HASH(0x2129088)', 'JOHN/DistA-1 = PkgA~1 & PkgB~1', 'JOHN/DistB-1 = PkgB~1 & PkgC~2', 'JOHN/DistC-1 = PkgC~1', 'JOHN/DistD-1 = PkgD~1 & PkgC~1') called at t/02-bowels/23-pull-multi.t line 14
# Tests were run but no plan was declared and done_testing() was not seen.
t/02-bowels/23-pull-multi.t .........
Dubious, test returned 2 (wstat 512, 0x200)
Failed 1/1 subtests
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/31-pin.t line 20.
# Log messages are...
# Adding /tmp/KTjWYyK06g/FooAndBar-1.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/31-pin.t line 21.
# Log messages are...
# Foo~0 is not registered on stack master
# Failed test 'Package Foo is not on stack master'
# at t/02-bowels/31-pin.t line 23.
# Failed test 'Package Bar is not on stack master'
# at t/02-bowels/31-pin.t line 24.
# Failed test 'Cannot upgrade pinned package'
# at t/02-bowels/31-pin.t line 28.
# 'Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
#
#
# Trace begun at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Util.pm line 73
# Pinto::Util::throw('Can\'t locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.^J') called at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Action/Add.pm line 89
# Pinto::Action::Add::catch {...} ('Can\'t locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.^J') called at /usr/share/perl5/Try/Tiny.pm line 104
# Try::Tiny::try('CODE(0x758d050)', 'Try::Tiny::Catch=REF(0x754ac08)', 'Try::Tiny::Finally=REF(0x72e0dd0)') called at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Action/Add.pm line 101
# Pinto::Action::Add::execute('Pinto::Action::Add=HASH(0x7550ba8)') called at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/Committable.pm line 84
# Pinto::Role::Committable::try {...} at /usr/share/perl5/Try/Tiny.pm line 76
# eval {...} at /usr/share/perl5/Try/Tiny.pm line 72
# Try::Tiny::try('CODE(0x7551040)', 'Try::Tiny::Catch=REF(0x758d6b0)') called at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/Committable.pm line 84
# Class::MOP::Class:::around('CODE(0x71f5f90)', 'Pinto::Action::Add=HASH(0x7550ba8)') called at /usr/lib/perl5/Class/MOP/Method/Wrapped.pm line 160
# Class::MOP::Method::Wrapped::__ANON__('Pinto::Action::Add=HASH(0x7550ba8)') called at /usr/lib/perl5/Class/MOP/Method/Wrapped.pm line 89
# Pinto::Action::Add::execute('Pinto::Action::Add=HASH(0x7550ba8)') called at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto.pm line 90
# Pinto::try {...} at /usr/share/perl5/Try/Tiny.pm line 76
# eval {...} at /usr/share/perl5/Try/Tiny.pm line 72
# Try::Tiny::try('CODE(0x7550cc8)', 'Try::Tiny::Catch=REF(0x6588058)', 'Try::Tiny::Finally=REF(0x752b168)') called at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto.pm line 100
# Pinto::run('Pinto=HASH(0x6436ec0)', 'Add', 'archives', 'Path::Class::File=HASH(0x6f499b0)', 'author', 'ME') called at t/lib/Pinto/Tester.pm line 196
# Pinto::Tester::run_throws_ok('Pinto::Tester=HASH(0x190b038)', 'Add', 'HASH(0x758d7e8)', 'Regexp=REGEXP(0x752dd40)', 'Cannot upgrade pinned package') called at t/02-bowels/31-pin.t line 28
# '
# doesn't match '(?^:Unable to register)'
# Log messages are...
# Adding /tmp/GRHV5vZnJg/BarAndBaz-2.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# Failed test 'stderr output matches'
# at t/02-bowels/31-pin.t line 35.
# 'Adding /tmp/GRHV5vZnJg/BarAndBaz-2.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# '
# doesn't match '(?^:Bar is pinned)'
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/31-pin.t line 38.
# Log messages are...
# Foo~0 is not registered on stack master
# Failed test 'Package Foo is not on stack master'
# at t/02-bowels/31-pin.t line 39.
# Failed test 'Package Bar is not on stack master'
# at t/02-bowels/31-pin.t line 40.
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/31-pin.t line 43.
# Log messages are...
# Adding /tmp/GRHV5vZnJg/BarAndBaz-2.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# Failed test 'Package Bar is not on stack master'
# at t/02-bowels/31-pin.t line 44.
# Failed test 'Package Baz is not on stack master'
# at t/02-bowels/31-pin.t line 45.
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/31-pin.t line 52.
# Log messages are...
# Bar~0 is not registered on stack master
# Failed test 'Package Bar is not on stack master'
# at t/02-bowels/31-pin.t line 55.
# Failed test 'Package Baz is not on stack master'
# at t/02-bowels/31-pin.t line 56.
# Looks like you failed 15 tests of 16.
t/02-bowels/31-pin.t ................
Dubious, test returned 15 (wstat 3840, 0xf00)
Failed 15/16 subtests
# Failed test 'Result indicates action was succesful'
# at t/lib/Pinto/Tester.pm line 537.
# Log messages are...
# Adding /tmp/8wb78O9Gtf/DistA-1.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
Population failed. Aborting test
Trace begun at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Util.pm line 73
Pinto::Util::throw('Population failed. Aborting test') called at t/lib/Pinto/Tester.pm line 538
Pinto::Tester::populate('Pinto::Tester=HASH(0x1f85088)', 'JOHN/DistA-1 = PkgA~1 & PkgB~1', 'FRED/DistB-1 = PkgB~1') called at t/02-bowels/32-pin-rjbs.t line 18
# Tests were run but no plan was declared and done_testing() was not seen.
t/02-bowels/32-pin-rjbs.t ...........
Dubious, test returned 2 (wstat 512, 0x200)
Failed 1/1 subtests
# Failed test 'Result indicates action was succesful'
# at t/lib/Pinto/Tester.pm line 537.
# Log messages are...
# Adding /tmp/uKrzWKLvkr/Dist-1.0.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
Population failed. Aborting test
Trace begun at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Util.pm line 73
Pinto::Util::throw('Population failed. Aborting test') called at t/lib/Pinto/Tester.pm line 538
Pinto::Tester::populate('Pinto::Tester=HASH(0x181f048)', 'AUTHOR/Dist-1.0.tar.gz=PkgA~1,PkgB~1') called at t/02-bowels/35-delete.t line 33
# Tests were run but no plan was declared and done_testing() was not seen.
t/02-bowels/35-delete.t .............
Dubious, test returned 2 (wstat 512, 0x200)
Failed 1/1 subtests
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/40-list.t line 22.
# Log messages are...
# Adding /tmp/5Rr2WLxSTh/Foo-0.01.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/40-list.t line 23.
# Log messages are...
# Adding /tmp/z3FvXj5ph7/Bar-0.02.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/40-list.t line 24.
# Log messages are...
# Adding /tmp/h3W9z_ff1s/Baz-0.03.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# Failed test 'Got correct number of records in listing'
# at t/02-bowels/40-list.t line 32.
# got: '0'
# expected: '1'
Use of uninitialized value $this in pattern match (m//) at t/02-bowels/40-list.t line 33.
# Failed test 'Listing for dev stack'
# at t/02-bowels/40-list.t line 33.
# undef
# doesn't match '(?^x:Foo \s+ 0.01)'
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/40-list.t line 39.
# Log messages are...
#
# Failed test 'Got correct number of records in listing'
# at t/02-bowels/40-list.t line 42.
# got: '0'
# expected: '1'
Use of uninitialized value $this in pattern match (m//) at t/02-bowels/40-list.t line 43.
# Failed test 'Listing for packages matching %Bar% on qa stack'
# at t/02-bowels/40-list.t line 43.
# undef
# doesn't match '(?^x:Bar \s+ 0.02)'
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/40-list.t line 49.
# Log messages are...
#
# Failed test 'Got correct number of records in listing'
# at t/02-bowels/40-list.t line 52.
# got: '0'
# expected: '1'
Use of uninitialized value $this in pattern match (m//) at t/02-bowels/40-list.t line 53.
# Failed test 'Listing for dists matching %Baz% on qa stack'
# at t/02-bowels/40-list.t line 53.
# undef
# doesn't match '(?^x:Baz \s+ 0.03)'
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/40-list.t line 59.
# Log messages are...
#
# Failed test 'Got correct number of records in listing'
# at t/02-bowels/40-list.t line 62.
# got: '0'
# expected: '1'
Use of uninitialized value $this in pattern match (m//) at t/02-bowels/40-list.t line 63.
# Failed test 'Listing where author == BOB on qa stack'
# at t/02-bowels/40-list.t line 63.
# undef
# doesn't match '(?^x:Baz \s+ 0.03)'
# Looks like you failed 14 tests of 20.
t/02-bowels/40-list.t ...............
Dubious, test returned 14 (wstat 3584, 0xe00)
Failed 14/20 subtests
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/41-log.t line 20.
# Log messages are...
# Adding /tmp/4JippFvNSJ/Foo-0.01.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/41-log.t line 34.
# Log messages are...
# Adding /tmp/3C6YoGzLdG/Bar-0.02.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# Failed test 'Stack master has correct message count'
# at t/02-bowels/41-log.t line 49.
# got: '0'
# expected: '1'
# Failed test 'Log message has Foo archive'
# at t/02-bowels/41-log.t line 51.
# ''
# doesn't match '(?^:Foo-0.01.tar.gz)'
# Failed test 'Log message has correct user'
# at t/02-bowels/41-log.t line 54.
# ''
# doesn't match '(?^:User: USERNAME)'
# Failed test 'Log message has correct date'
# at t/02-bowels/41-log.t line 57.
# ''
# doesn't match '(?^:Date: Jan 1, 1970)'
# Failed test 'Stack branch has correct message count'
# at t/02-bowels/41-log.t line 69.
# got: '0'
# expected: '2'
# Failed test 'Log messages have Foo archive'
# at t/02-bowels/41-log.t line 71.
# ''
# doesn't match '(?^:Foo-0.01.tar.gz)'
# Failed test 'Log messages have Bar archive'
# at t/02-bowels/41-log.t line 72.
# ''
# doesn't match '(?^:Bar-0.02.tar.gz)'
# Looks like you failed 9 tests of 12.
t/02-bowels/41-log.t ................
Dubious, test returned 9 (wstat 2304, 0x900)
Failed 9/12 subtests
Can't write to cpanm home '/sbuild-nonexistent/.cpanm': You should fix it with chown/chmod first.
Use of uninitialized value $cpanm_ver in numeric ge (>=) at t/lib/Pinto/Tester/Util.pm line 190, <DATA> line 1.
t/02-bowels/42-install.t ............ skipped: Need cpanm 1.6920 or newer
Can't write to cpanm home '/sbuild-nonexistent/.cpanm': You should fix it with chown/chmod first.
Use of uninitialized value $cpanm_ver in numeric ge (>=) at t/lib/Pinto/Tester/Util.pm line 190, <DATA> line 1.
t/02-bowels/43-install-and-pull.t ... skipped: Need cpanm 1.6920 or newer
# Failed test 'Result indicates action was succesful'
# at t/lib/Pinto/Tester.pm line 537.
# Log messages are...
# Adding /tmp/SNNigkt_Gy/Dist-1.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
Population failed. Aborting test
Trace begun at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Util.pm line 73
Pinto::Util::throw('Population failed. Aborting test') called at t/lib/Pinto/Tester.pm line 538
Pinto::Tester::populate('Pinto::Tester=HASH(0x2163038)', 'AUTHOR/Dist-1 = PkgA~1, PkgB~1') called at t/02-bowels/50-diff.t line 17
# Tests were run but no plan was declared and done_testing() was not seen.
t/02-bowels/50-diff.t ...............
Dubious, test returned 2 (wstat 512, 0x200)
Failed 1/1 subtests
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/51-diff-more.t line 20.
# Log messages are...
# Adding /tmp/Nmxxn5leZS/Dist-1.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/51-diff-more.t line 22.
# Log messages are...
# Adding /tmp/j5r6G6_zGl/Dist-2.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# Failed test 'stdout output matches'
# at t/02-bowels/51-diff-more.t line 38.
# ''
# doesn't match '(?^mx:^ \- .+ PkgB \s+ 1 \s+ AUTHOR/Dist-1)'
# Failed test 'stdout output matches'
# at t/02-bowels/51-diff-more.t line 38.
# ''
# doesn't match '(?^mx:^ \+ .+ PkgB \s+ 2 \s+ AUTHOR/Dist-2)'
# Failed test 'stdout output matches'
# at t/02-bowels/51-diff-more.t line 38.
# ''
# doesn't match '(?^mx:^ \+ .+ PkgC \s+ 2 \s+ AUTHOR/Dist-2)'
# Failed test 'stdout output matches'
# at t/02-bowels/51-diff-more.t line 44.
# ''
# doesn't match '(?^mx:^ \- .+ PkgB \s+ 1 \s+ AUTHOR/Dist-1)'
# Failed test 'stdout output matches'
# at t/02-bowels/51-diff-more.t line 44.
# ''
# doesn't match '(?^mx:^ \+ .+ PkgB \s+ 2 \s+ AUTHOR/Dist-2)'
# Failed test 'stdout output matches'
# at t/02-bowels/51-diff-more.t line 44.
# ''
# doesn't match '(?^mx:^ \+ .+ PkgC \s+ 2 \s+ AUTHOR/Dist-2)'
# Failed test 'stdout output matches'
# at t/02-bowels/51-diff-more.t line 48.
# ''
# doesn't match '(?^mx:^ \- .+ PkgB \s+ 1 \s+ AUTHOR/Dist-1)'
# Failed test 'stdout output matches'
# at t/02-bowels/51-diff-more.t line 48.
# ''
# doesn't match '(?^mx:^ \+ .+ PkgB \s+ 2 \s+ AUTHOR/Dist-2)'
# Failed test 'stdout output matches'
# at t/02-bowels/51-diff-more.t line 48.
# ''
# doesn't match '(?^mx:^ \+ .+ PkgC \s+ 2 \s+ AUTHOR/Dist-2)'
# Failed test 'Result indicates action was not succesful'
# at t/02-bowels/51-diff-more.t line 69.
# Log messages are...
#
# Failed test at t/02-bowels/51-diff-more.t line 69.
# 'ok'
# doesn't match '(?^:is ambiguous)'
# Log messages are...
#
# Looks like you failed 13 tests of 22.
t/02-bowels/51-diff-more.t ..........
Dubious, test returned 13 (wstat 3328, 0xd00)
Failed 13/22 subtests
# Failed test 'Result indicates action was succesful'
# at t/lib/Pinto/Tester.pm line 537.
# Log messages are...
# Adding /tmp/WUqBGT8CMW/Dist-1.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
Population failed. Aborting test
Trace begun at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Util.pm line 73
Pinto::Util::throw('Population failed. Aborting test') called at t/lib/Pinto/Tester.pm line 538
Pinto::Tester::populate('Pinto::Tester=HASH(0x1509038)', 'ME/Dist-1 = PkgA~1 & PkgB~1') called at t/02-bowels/53-roots.t line 18
# Tests were run but no plan was declared and done_testing() was not seen.
t/02-bowels/53-roots.t ..............
Dubious, test returned 2 (wstat 512, 0x200)
Failed 1/1 subtests
# Failed test 'Result indicates action was succesful'
# at t/lib/Pinto/Tester.pm line 537.
# Log messages are...
# Adding /tmp/xK9C6v2hz2/Baz-1.2.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
Population failed. Aborting test
Trace begun at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Util.pm line 73
Pinto::Util::throw('Population failed. Aborting test') called at t/lib/Pinto/Tester.pm line 538
Pinto::Tester::populate('Pinto::Tester=HASH(0x10d6048)', 'JOHN/Baz-1.2 = Baz~1.2 & Nuts~2.3') called at t/02-bowels/60-dryrun.t line 15
# Tests were run but no plan was declared and done_testing() was not seen.
t/02-bowels/60-dryrun.t .............
Dubious, test returned 2 (wstat 512, 0x200)
Failed 1/1 subtests
# Failed test 'Result indicates action was succesful'
# at t/lib/Pinto/Tester.pm line 537.
# Log messages are...
# Adding /tmp/k3BSt9AwX3/DistA-1.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
Population failed. Aborting test
Trace begun at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Util.pm line 73
Pinto::Util::throw('Population failed. Aborting test') called at t/lib/Pinto/Tester.pm line 538
Pinto::Tester::populate('Pinto::Tester=HASH(0x23ea048)', 'AUTHOR/DistA-1 = PkgA~1') called at t/02-bowels/61-nofail.t line 14
# Tests were run but no plan was declared and done_testing() was not seen.
t/02-bowels/61-nofail.t .............
Dubious, test returned 2 (wstat 512, 0x200)
Failed 1/1 subtests
t/02-bowels/62-commit.t ............. ok
# Failed test 'Result indicates action was succesful'
# at t/lib/Pinto/Tester.pm line 537.
# Log messages are...
# Adding /tmp/MP8j5U39nX/Foo-1.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
Population failed. Aborting test
Trace begun at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Util.pm line 73
Pinto::Util::throw('Population failed. Aborting test') called at t/lib/Pinto/Tester.pm line 538
Pinto::Tester::populate('Pinto::Tester=HASH(0x2579088)', 'AUTHOR/Foo-1 = Foo-1 & Bar~1') called at t/02-bowels/63-prereq-circular.t line 18
# Tests were run but no plan was declared and done_testing() was not seen.
t/02-bowels/63-prereq-circular.t ....
Dubious, test returned 2 (wstat 512, 0x200)
Failed 1/1 subtests
# Failed test 'Result indicates action was succesful'
# at t/lib/Pinto/Tester.pm line 537.
# Log messages are...
# Adding /tmp/fduRQnUpNS/Foo-1.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
Population failed. Aborting test
Trace begun at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Util.pm line 73
Pinto::Util::throw('Population failed. Aborting test') called at t/lib/Pinto/Tester.pm line 538
Pinto::Tester::populate('Pinto::Tester=HASH(0x16c1048)', 'AUTHOR/Foo-1 = Foo-1 & Bar~1, perl~5.6.0, strict') called at t/02-bowels/63-prereq.t line 19
# Tests were run but no plan was declared and done_testing() was not seen.
t/02-bowels/63-prereq.t .............
Dubious, test returned 2 (wstat 512, 0x200)
Failed 1/1 subtests
# Failed test 'Result indicates action was succesful'
# at t/lib/Pinto/Tester.pm line 537.
# Log messages are...
# Adding /tmp/DbATL77Vb9/Foo-3.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
Population failed. Aborting test
Trace begun at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Util.pm line 73
Pinto::Util::throw('Population failed. Aborting test') called at t/lib/Pinto/Tester.pm line 538
Pinto::Tester::populate('Pinto::Tester=HASH(0x1959088)', 'AUTHOR/Foo-3 = Foo-4 & Bar~1, perl~5.6.0, strict') called at t/02-bowels/64-metadata.t line 19
# Tests were run but no plan was declared and done_testing() was not seen.
t/02-bowels/64-metadata.t ...........
Dubious, test returned 2 (wstat 512, 0x200)
Failed 1/1 subtests
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/70-stack-copy.t line 28.
# Log messages are...
# Adding /tmp/PHHTKgAIgY/FooAndBar-1.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/70-stack-copy.t line 38.
# Log messages are...
# Adding /tmp/himqWxLwcc/FooAndBar-2.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# Failed test 'Updated stack mtime'
# at t/02-bowels/70-stack-copy.t line 41.
# '1405749084'
# >
# '1405749084'
# Looks like you failed 3 tests of 35.
t/02-bowels/70-stack-copy.t .........
Dubious, test returned 3 (wstat 768, 0x300)
Failed 3/35 subtests
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/71-stack-kill.t line 23.
# Log messages are...
# Adding /tmp/S6rhAhmMZl/Dist-1.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# Failed test 'Package PkgA is not on stack master'
# at t/02-bowels/71-stack-kill.t line 24.
# Failed test 'Package PkgA is not on stack dev'
# at t/02-bowels/71-stack-kill.t line 28.
# Failed test 'Package PkgA is not on stack dev'
# at t/02-bowels/71-stack-kill.t line 36.
# Looks like you failed 4 tests of 31.
t/02-bowels/71-stack-kill.t .........
Dubious, test returned 4 (wstat 1024, 0x400)
Failed 4/31 subtests
# Failed test 'Result indicates action was succesful'
# at t/02-bowels/72-stack-rename.t line 20.
# Log messages are...
# Adding /tmp/rqo6oJD6Z8/Dist-1.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
# Failed test 'Package PkgA is not on stack master'
# at t/02-bowels/72-stack-rename.t line 21.
# Failed test 'Package PkgA is not on stack dev'
# at t/02-bowels/72-stack-rename.t line 25.
# Looks like you failed 3 tests of 23.
t/02-bowels/72-stack-rename.t .......
Dubious, test returned 3 (wstat 768, 0x300)
Failed 3/23 subtests
# Failed test 'Result indicates action was succesful'
# at t/lib/Pinto/Tester.pm line 537.
# Log messages are...
# Adding /tmp/Ti1yzNy654/Foo-1.tar.gz to the repository
# Can't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.
Population failed. Aborting test
Trace begun at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Util.pm line 73
Pinto::Util::throw('Population failed. Aborting test') called at t/lib/Pinto/Tester.pm line 538
Pinto::Tester::populate('Pinto::Tester=HASH(0x2312088)', 'AUTHOR/Foo-1=Foo~1') called at t/02-bowels/73-stack-lock.t line 15
# Tests were run but no plan was declared and done_testing() was not seen.
t/02-bowels/73-stack-lock.t .........
Dubious, test returned 2 (wstat 512, 0x200)
Failed 1/1 subtests
t/02-bowels/74-stack-default.t ...... ok
t/02-bowels/75-stack-props.t ........ ok
t/02-bowels/80-repo-lock.t .......... ok
t/03-remote/01-requests.t ........... ok
t/03-remote/02-responses.t .......... ok
Can't write to cpanm home '/sbuild-nonexistent/.cpanm': You should fix it with chown/chmod first.
Use of uninitialized value $cpanm_ver in numeric ge (>=) at t/lib/Pinto/Tester/Util.pm line 190, <DATA> line 1.
t/03-remote/03-install.t ............ skipped: Need cpanm 1.6920 or newer
Can't write to cpanm home '/sbuild-nonexistent/.cpanm': You should fix it with chown/chmod first.
Use of uninitialized value $cpanm_ver in numeric ge (>=) at t/lib/Pinto/Tester/Util.pm line 190, <DATA> line 1.
t/03-remote/04-install-with-auth.t .. skipped: Need cpanm 1.6920 or newer
# Failed test 'Response ends with status-ok for POST http://localhost/action/add'
# at t/04-server/01-functional.t line 91.
# '## [31mCan't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.[0m
# '
# doesn't match '(?^:## Status: ok\n$)'
# Failed test 'Correct status code for GET stacks/master/authors/id/T/TH/THEBARD/TestDist-1.0.tar.gz'
# at /usr/share/perl5/Plack/Test.pm line 38.
# got: '404'
# expected: '200'
# Failed test 'Correct Type header for GET stacks/master/authors/id/T/TH/THEBARD/TestDist-1.0.tar.gz'
# at /usr/share/perl5/Plack/Test.pm line 38.
# got: 'text/plain'
# expected: 'application/x-gzip'
# Failed test 'Length header matches actual archive size for GET stacks/master/authors/id/T/TH/THEBARD/TestDist-1.0.tar.gz'
# at /usr/share/perl5/Plack/Test.pm line 38.
# got: '88'
# expected: '896'
# Failed test 'Last-Modified header contains a proper HTTP::Date string for HEAD stacks/master/authors/id/T/TH/THEBARD/TestDist-1.0.tar.gz'
# at /usr/share/perl5/Plack/Test.pm line 38.
# got: undef
# expected: anything else
# Failed test 'Correct status code for HEAD stacks/master/authors/id/T/TH/THEBARD/TestDist-1.0.tar.gz'
# at /usr/share/perl5/Plack/Test.pm line 38.
# got: '404'
# expected: '200'
# Failed test 'Correct Type header for HEAD stacks/master/authors/id/T/TH/THEBARD/TestDist-1.0.tar.gz'
# at /usr/share/perl5/Plack/Test.pm line 38.
# got: 'text/plain'
# expected: 'application/x-gzip'
# Failed test 'Length header matches actual archive size for HEAD stacks/master/authors/id/T/TH/THEBARD/TestDist-1.0.tar.gz'
# at /usr/share/perl5/Plack/Test.pm line 38.
# got: '88'
# expected: '896'
# Failed test 'No content returned for HEAD stacks/master/authors/id/T/TH/THEBARD/TestDist-1.0.tar.gz'
# at /usr/share/perl5/Plack/Test.pm line 38.
# got: '88'
# expected: '0'
# Failed test 'Correct status code for unmodified stacks/master/authors/id/T/TH/THEBARD/TestDist-1.0.tar.gz'
# at /usr/share/perl5/Plack/Test.pm line 38.
# got: '404'
# expected: '304'
# Failed test 'No Content-Type header for 304 response'
# at /usr/share/perl5/Plack/Test.pm line 38.
# got: 'text/plain'
# expected: undef
# Failed test 'No Content-Length header for 304 response'
# at /usr/share/perl5/Plack/Test.pm line 38.
# got: '88'
# expected: undef
# Failed test 'No content returned for 304 response'
# at /usr/share/perl5/Plack/Test.pm line 38.
# got: '88'
# expected: '0'
# Failed test 'Listing contains the Foo package'
# at /usr/share/perl5/Plack/Test.pm line 38.
# '## Status: ok
# '
# doesn't match '(?^mx:\s Foo \s+ 0.7 \s+ \S+ \n)'
# Failed test 'Listing contains the Bar package'
# at /usr/share/perl5/Plack/Test.pm line 38.
# '## Status: ok
# '
# doesn't match '(?^mx:\s Bar \s+ 0.8 \s+ \S+ \n)'
# Failed test 'Response ends with status-ok for POST http://localhost/action/add'
# at t/04-server/01-functional.t line 219.
# '## [31mCan't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.[0m
# '
# doesn't match '(?^:## Status: ok\n$)'
# Failed test 'index contains package Apple-1'
# at /usr/share/perl5/Plack/Test.pm line 38.
# 'File: 02packages.details.txt.gz
# URL: file:///tmp/ab3wugD3J6/stacks/stack_1/modules/02packages.details.txt.gz
# Description: Package names found in directory $CPAN/authors/id/
# Columns: package name, version, path
# Intended-For: Automated fetch routines, namespace documentation.
# Written-By: Pinto::IndexWriter version 0.097
# Line-Count: 0
# Last-Updated: Sat, 19 Jul 2014 05:52:25 GMT
#
# '
# doesn't match '(?^mx:^ Apple \s+ 1 \s+ J/JO/JOHN/Fruit-1.tar.gz $)'
# Failed test 'index contains package Orange-1'
# at /usr/share/perl5/Plack/Test.pm line 38.
# 'File: 02packages.details.txt.gz
# URL: file:///tmp/ab3wugD3J6/stacks/stack_1/modules/02packages.details.txt.gz
# Description: Package names found in directory $CPAN/authors/id/
# Columns: package name, version, path
# Intended-For: Automated fetch routines, namespace documentation.
# Written-By: Pinto::IndexWriter version 0.097
# Line-Count: 0
# Last-Updated: Sat, 19 Jul 2014 05:52:25 GMT
#
# '
# doesn't match '(?^mx:^ Orange \s+ 1 \s+ J/JO/JOHN/Fruit-1.tar.gz $)'
# Failed test 'Response ends with status-ok for POST http://localhost/action/add'
# at t/04-server/01-functional.t line 219.
# '## [31mCan't locate object method "new" via package "URI::file" at /«BUILDDIR»/pinto-0.97+dfsg/blib/lib/Pinto/Role/FileFetcher.pm line 111.[0m
# '
# doesn't match '(?^:## Status: ok\n$)'
# Failed test 'index contains package Apple-2'
# at /usr/share/perl5/Plack/Test.pm line 38.
# 'File: 02packages.details.txt.gz
# URL: file:///tmp/ab3wugD3J6/stacks/stack_2/modules/02packages.details.txt.gz
# Description: Package names found in directory $CPAN/authors/id/
# Columns: package name, version, path
# Intended-For: Automated fetch routines, namespace documentation.
# Written-By: Pinto::IndexWriter version 0.097
# Line-Count: 0
# Last-Updated: Sat, 19 Jul 2014 05:52:26 GMT
#
# '
# doesn't match '(?^mx:^ Apple \s+ 2 \s+ J/JO/JOHN/Fruit-2.tar.gz $)'
# Failed test 'index contains package Orange-2'
# at /usr/share/perl5/Plack/Test.pm line 38.
# 'File: 02packages.details.txt.gz
# URL: file:///tmp/ab3wugD3J6/stacks/stack_2/modules/02packages.details.txt.gz
# Description: Package names found in directory $CPAN/authors/id/
# Columns: package name, version, path
# Intended-For: Automated fetch routines, namespace documentation.
# Written-By: Pinto::IndexWriter version 0.097
# Line-Count: 0
# Last-Updated: Sat, 19 Jul 2014 05:52:26 GMT
#
# '
# doesn't match '(?^mx:^ Orange \s+ 2 \s+ J/JO/JOHN/Fruit-2.tar.gz $)'
# Looks like you failed 21 tests of 67.
t/04-server/01-functional.t .........
Dubious, test returned 21 (wstat 5376, 0x1500)
Failed 21/67 subtests
t/04-server/02-authentication.t ..... ok
Test Summary Report
-------------------
t/02-bowels/11-tester.t (Wstat: 512 Tests: 13 Failed: 1)
Failed test: 13
Non-zero exit status: 2
Parse errors: No plan found in TAP output
t/02-bowels/20-add.t (Wstat: 9984 Tests: 48 Failed: 39)
Failed tests: 1-3, 5-20, 22-32, 35, 37-38, 40, 42, 45-48
Non-zero exit status: 39
t/02-bowels/21-add-no-index.t (Wstat: 512 Tests: 1 Failed: 1)
Failed test: 1
Non-zero exit status: 2
Parse errors: No plan found in TAP output
t/02-bowels/21-pull.t (Wstat: 512 Tests: 1 Failed: 1)
Failed test: 1
Non-zero exit status: 2
Parse errors: No plan found in TAP output
t/02-bowels/22-add-deep.t (Wstat: 512 Tests: 1 Failed: 1)
Failed test: 1
Non-zero exit status: 2
Parse errors: No plan found in TAP output
t/02-bowels/23-pull-multi.t (Wstat: 512 Tests: 1 Failed: 1)
Failed test: 1
Non-zero exit status: 2
Parse errors: No plan found in TAP output
t/02-bowels/31-pin.t (Wstat: 3840 Tests: 16 Failed: 15)
Failed tests: 1-4, 6-16
Non-zero exit status: 15
t/02-bowels/32-pin-rjbs.t (Wstat: 512 Tests: 1 Failed: 1)
Failed test: 1
Non-zero exit status: 2
Parse errors: No plan found in TAP output
t/02-bowels/35-delete.t (Wstat: 512 Tests: 1 Failed: 1)
Failed test: 1
Non-zero exit status: 2
Parse errors: No plan found in TAP output
t/02-bowels/40-list.t (Wstat: 3584 Tests: 20 Failed: 14)
Failed tests: 3-5, 7-17
Non-zero exit status: 14
t/02-bowels/41-log.t (Wstat: 2304 Tests: 12 Failed: 9)
Failed tests: 1, 3, 5-8, 10-12
Non-zero exit status: 9
t/02-bowels/50-diff.t (Wstat: 512 Tests: 1 Failed: 1)
Failed test: 1
Non-zero exit status: 2
Parse errors: No plan found in TAP output
t/02-bowels/51-diff-more.t (Wstat: 3328 Tests: 22 Failed: 13)
Failed tests: 1, 3, 5-7, 9-11, 13-15, 18-19
Non-zero exit status: 13
t/02-bowels/53-roots.t (Wstat: 512 Tests: 1 Failed: 1)
Failed test: 1
Non-zero exit status: 2
Parse errors: No plan found in TAP output
t/02-bowels/60-dryrun.t (Wstat: 512 Tests: 1 Failed: 1)
Failed test: 1
Non-zero exit status: 2
Parse errors: No plan found in TAP output
t/02-bowels/61-nofail.t (Wstat: 512 Tests: 1 Failed: 1)
Failed test: 1
Non-zero exit status: 2
Parse errors: No plan found in TAP output
t/02-bowels/63-prereq-circular.t (Wstat: 512 Tests: 1 Failed: 1)
Failed test: 1
Non-zero exit status: 2
Parse errors: No plan found in TAP output
t/02-bowels/63-prereq.t (Wstat: 512 Tests: 1 Failed: 1)
Failed test: 1
Non-zero exit status: 2
Parse errors: No plan found in TAP output
t/02-bowels/64-metadata.t (Wstat: 512 Tests: 1 Failed: 1)
Failed test: 1
Non-zero exit status: 2
Parse errors: No plan found in TAP output
t/02-bowels/70-stack-copy.t (Wstat: 768 Tests: 35 Failed: 3)
Failed tests: 3-5
Non-zero exit status: 3
t/02-bowels/71-stack-kill.t (Wstat: 1024 Tests: 31 Failed: 4)
Failed tests: 2-3, 5, 12
Non-zero exit status: 4
t/02-bowels/72-stack-rename.t (Wstat: 768 Tests: 23 Failed: 3)
Failed tests: 1-2, 4
Non-zero exit status: 3
t/02-bowels/73-stack-lock.t (Wstat: 512 Tests: 1 Failed: 1)
Failed test: 1
Non-zero exit status: 2
Parse errors: No plan found in TAP output
t/04-server/01-functional.t (Wstat: 5376 Tests: 67 Failed: 21)
Failed tests: 18, 26-28, 30-38, 40-41, 47, 49-50, 56
58-59
Non-zero exit status: 21
Files=48, Tests=716, 233 wallclock secs ( 0.37 usr 0.52 sys + 176.32 cusr 27.20 csys = 204.41 CPU)
Result: FAIL
Failed 24/48 test programs. 136/716 subtests failed.
dh_auto_test: perl Build test returned exit code 255
make[1]: *** [override_dh_auto_test] Error 255
debian/rules:7: recipe for target 'override_dh_auto_test' failed
make[1]: Leaving directory '/«BUILDDIR»/pinto-0.97+dfsg'
make: *** [build] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2
debian/rules:4: recipe for target 'build' failed
────────────────────────────────────────────────────────────────────────────────
Build finished at 20140719-0552
Finished
────────
E: Build failure (dpkg-buildpackage died)
┌──────────────────────────────────────────────────────────────────────────────┐
│ Cleanup │
└──────────────────────────────────────────────────────────────────────────────┘
Purging /«BUILDDIR»
Not cleaning session: cloned chroot in use
┌──────────────────────────────────────────────────────────────────────────────┐
│ Summary │
└──────────────────────────────────────────────────────────────────────────────┘
Build Architecture: amd64
Build-Space: 3208
Build-Time: 238
Distribution: unstable
Fail-Stage: build
Host Architecture: amd64
Install-Time: 50
Job: pinto_0.97+dfsg-2
Machine Architecture: amd64
Package: pinto
Package-Time: 306
Source-Version: 0.97+dfsg-2
Space: 3208
Status: attempted
Version: 0.97+dfsg-2
────────────────────────────────────────────────────────────────────────────────
Finished at 20140719-0552
Build needed 00:05:06, 3208k disc space
DC-Status: Failed 306.52618652s
DC-Time-Estimation: 306.52618652 versus expected 1088 (r/m: 2.549452046339313 ; m: 306.52618652)
|