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
|
DC-Build-Header: miro 1.1.2-1 / Wed Feb 13 02:24:42 +0100 2008
Automatic build of miro_1.1.2-1 on bordereau-37.bordeaux.grid5000.fr by sbuild/amd64 0.57.0
Build started at 20080213-0224
******************************************************************************
Failed to open ./miro_1.1.2-1.dsc
Checking available source versions...
Fetching source files...
Reading package lists...
Building dependency tree...
Reading state information...
Need to get 13.2MB of source archives.
Get:1 http://idpot.grenoble.grid5000.fr sid/main miro 1.1.2-1 (dsc) [837B]
Get:2 http://idpot.grenoble.grid5000.fr sid/main miro 1.1.2-1 (tar) [13.2MB]
Get:3 http://idpot.grenoble.grid5000.fr sid/main miro 1.1.2-1 (diff) [10.0kB]
Fetched 13.2MB in 2s (4526kB/s)
Download complete and in download only mode
** Using build dependencies supplied by package:
Build-Depends: cdbs (>= 0.4.43), chrpath, debhelper (>= 5.0.37.2), libboost-python-dev (>= 1.34.1-2), libxine-dev (>= 1.1.6-2), libxul-dev (>= 1.8.0.4-2), libxv-dev, python, python-dbus, python-gnome2-extras-dev (>= 2.14.0-2), python-gtk2-dev, python-pyrex, python-support (>= 0.6)
Checking for already installed source dependencies...
cdbs: missing
Using default version 0.4.51
chrpath: missing
debhelper: missing
Using default version 6.0.5
libboost-python-dev: missing
Using default version 1.34.1-6
libxine-dev: missing
Using default version 1.1.10.1-1
libxul-dev: missing
Using default version 1.8.1.12-1
libxv-dev: missing
python: missing
python-dbus: missing
python-gnome2-extras-dev: missing
Using default version 2.14.3-1
python-gtk2-dev: missing
python-pyrex: missing
python-support: missing
Using default version 0.7.6
Checking for source dependency conflicts...
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
adduser bsdmainutils dbus defoma esound-common file fontconfig
fontconfig-config gconf2 gconf2-common gettext gettext-base
gnome-media-common gnome-mime-data groff-base html2text intltool-debian
libart-2.0-2 libaspell15 libatk1.0-0 libatk1.0-dev libaudiofile0
libavahi-client3 libavahi-common-data libavahi-common3 libavahi-glib1
libbonobo2-0 libbonobo2-common libbonoboui2-0 libbonoboui2-common
libboost-dev libboost-python1.34.1 libcairo2 libcairo2-dev libcroco3
libcupsys2 libdatrie0 libdbus-1-3 libdbus-glib-1-2 libdmx1 libdrm2 libesd0
libexpat1 libexpat1-dev libfam0 libffi4 libffi4-dev libfontconfig1
libfontconfig1-dev libfontenc1 libfreetype6 libfreetype6-dev libfs6
libgail-common libgail18 libgconf2-4 libgda2-3 libgda2-common libgdl-1-0
libgdl-1-common libgdl-gnome-1-0 libgksu1.2-0 libgksuui1.0-1 libgl1-mesa-glx
libglade2-0 libglib2.0-0 libglib2.0-dev libgnome-desktop-2 libgnome-keyring0
libgnome-media0 libgnome2-0 libgnome2-common libgnomecanvas2-0
libgnomecanvas2-common libgnomecups1.0-1 libgnomeprint2.2-0
libgnomeprint2.2-data libgnomeprintui2.2-0 libgnomeprintui2.2-common
libgnomeui-0 libgnomeui-common libgnomevfs2-0 libgnomevfs2-common libgomp1
libgsf-1-114 libgsf-1-common libgtk2.0-0 libgtk2.0-common libgtk2.0-dev
libgtkhtml2-0 libgtksourceview-common libgtksourceview1.0-0 libgtkspell0
libgtop2-7 libgtop2-common libhal-storage1 libhal1 libhunspell-1.1-0
libice-dev libice6 libidl0 libjpeg62 libkeyutils1 libkrb53 libmagic1
libmetacity0 libmozjs-dev libmozjs0d libnautilus-burn4 libncursesw5
libnewt0.52 libnspr4-0d libnspr4-dev libnss3-1d libnss3-dev liborbit2
libpanel-applet2-0 libpango1.0-0 libpango1.0-common libpango1.0-dev libpcre3
libpng12-0 libpng12-dev libpopt0 librsvg2-2 libslang2-dev libsm-dev libsm6
libsqlite3-0 libssl0.9.8 libstartup-notification0 libthai-data libthai0
libtiff4 libtotem-plparser7 libwnck-common libwnck22 libx11-6 libx11-data
libx11-dev libxau-dev libxau6 libxaw7 libxcomposite-dev libxcomposite1
libxcursor-dev libxcursor1 libxdamage-dev libxdamage1 libxdmcp-dev libxdmcp6
libxext-dev libxext6 libxfixes-dev libxfixes3 libxft-dev libxft2 libxi-dev
libxi6 libxine1-bin libxinerama-dev libxinerama1 libxkbfile1 libxml2 libxmu6
libxmuu1 libxpm4 libxrandr-dev libxrandr2 libxrender-dev libxrender1
libxres1 libxslt1.1 libxt6 libxtrap6 libxtst6 libxul-common libxul0d libxv1
libxxf86dga1 libxxf86misc1 libxxf86vm1 man-db metacity-common mime-support
pkg-config po-debconf psmisc python-cairo python-central python-dev
python-gnome2-desktop python-gnome2-extras python-gobject python-gobject-dev
python-gtk2 python-minimal python-numeric python-pyorbit python2.4
python2.4-dev python2.4-minimal sgml-base shared-mime-info ttf-dejavu
ttf-dejavu-core ttf-dejavu-extra ucf whiptail x11-apps x11-common
x11-session-utils x11-utils x11-xfs-utils x11-xkb-utils x11-xserver-utils
x11proto-composite-dev x11proto-core-dev x11proto-damage-dev
x11proto-fixes-dev x11proto-input-dev x11proto-kb-dev x11proto-randr-dev
x11proto-render-dev x11proto-video-dev x11proto-xext-dev
x11proto-xinerama-dev xauth xbase-clients xinit xtrans-dev xulrunner
zlib1g-dev
Suggested packages:
wamerican wordlist whois vacation devscripts doc-base dh-make defoma-doc
dfontmgr psfontmgr x-ttcidfont-conf cvs gettext-doc groff aspell
libbonobo2-bin libcairo2-doc cupsys-common esound gda2-mysql gda2-postgres
gda2-odbc gda2-sqlite gda2-freetds libglib2.0-doc desktop-base
libgnomevfs2-bin librsvg2-common libgtk2.0-doc krb5-doc krb5-user
ttf-arphic-bkai00mp ttf-arphic-bsmi00lp ttf-arphic-gbsn00lp
ttf-arphic-gkai00mp ttf-baekmuk ttf-kochi-gothic ttf-kochi-mincho
ttf-thryomanes imagemagick libpango1.0-doc librsvg2-bin www-browser
python-doc python-tk python-profiler python-dbus-dbg python-dbus-doc
python-gnome2-desktop-doc python-gnome2-extras-doc python-gobject-dbg
python-gtk2-doc python-numeric-tutorial python-numeric-ext
python-numeric-dbg python2.4-doc binfmt-support sgml-base-doc mesa-utils
pdksh xulrunner-gnome-support
Recommended packages:
autotools-dev dbus-x11 libft-perl curl wget lynx gnome-media aspell-en
aspell-dictionary aspell6a-dictionary libatk1.0-data libboost-date-time-dev
libboost-doc libboost-filesystem-dev libboost-graph-dev
libboost-iostreams-dev libboost-program-options-dev libboost-regex-dev
libboost-serialization-dev libboost-signals-dev libboost-test-dev
libboost-thread-dev libboost-wave-dev esound-clients fam libgda2-bin sudo
libglib2.0-data gnome-keyring cupsys gnome-icon-theme libgnomevfs2-extra
gnome-mount hicolor-icon-theme libgtk2.0-bin libgpmg1 libfribidi0 xml-core
libcompress-zlib-perl libmail-box-perl libmail-sendmail-perl docbook-xsl
python-all-dev debconf-utils
The following NEW packages will be installed:
adduser bsdmainutils cdbs chrpath dbus debhelper defoma esound-common file
fontconfig fontconfig-config gconf2 gconf2-common gettext gettext-base
gnome-media-common gnome-mime-data groff-base html2text intltool-debian
libart-2.0-2 libaspell15 libatk1.0-0 libatk1.0-dev libaudiofile0
libavahi-client3 libavahi-common-data libavahi-common3 libavahi-glib1
libbonobo2-0 libbonobo2-common libbonoboui2-0 libbonoboui2-common
libboost-dev libboost-python-dev libboost-python1.34.1 libcairo2
libcairo2-dev libcroco3 libcupsys2 libdatrie0 libdbus-1-3 libdbus-glib-1-2
libdmx1 libdrm2 libesd0 libexpat1 libexpat1-dev libfam0 libffi4 libffi4-dev
libfontconfig1 libfontconfig1-dev libfontenc1 libfreetype6 libfreetype6-dev
libfs6 libgail-common libgail18 libgconf2-4 libgda2-3 libgda2-common
libgdl-1-0 libgdl-1-common libgdl-gnome-1-0 libgksu1.2-0 libgksuui1.0-1
libgl1-mesa-glx libglade2-0 libglib2.0-0 libglib2.0-dev libgnome-desktop-2
libgnome-keyring0 libgnome-media0 libgnome2-0 libgnome2-common
libgnomecanvas2-0 libgnomecanvas2-common libgnomecups1.0-1
libgnomeprint2.2-0 libgnomeprint2.2-data libgnomeprintui2.2-0
libgnomeprintui2.2-common libgnomeui-0 libgnomeui-common libgnomevfs2-0
libgnomevfs2-common libgomp1 libgsf-1-114 libgsf-1-common libgtk2.0-0
libgtk2.0-common libgtk2.0-dev libgtkhtml2-0 libgtksourceview-common
libgtksourceview1.0-0 libgtkspell0 libgtop2-7 libgtop2-common
libhal-storage1 libhal1 libhunspell-1.1-0 libice-dev libice6 libidl0
libjpeg62 libkeyutils1 libkrb53 libmagic1 libmetacity0 libmozjs-dev
libmozjs0d libnautilus-burn4 libncursesw5 libnewt0.52 libnspr4-0d
libnspr4-dev libnss3-1d libnss3-dev liborbit2 libpanel-applet2-0
libpango1.0-0 libpango1.0-common libpango1.0-dev libpcre3 libpng12-0
libpng12-dev libpopt0 librsvg2-2 libslang2-dev libsm-dev libsm6 libsqlite3-0
libssl0.9.8 libstartup-notification0 libthai-data libthai0 libtiff4
libtotem-plparser7 libwnck-common libwnck22 libx11-6 libx11-data libx11-dev
libxau-dev libxau6 libxaw7 libxcomposite-dev libxcomposite1 libxcursor-dev
libxcursor1 libxdamage-dev libxdamage1 libxdmcp-dev libxdmcp6 libxext-dev
libxext6 libxfixes-dev libxfixes3 libxft-dev libxft2 libxi-dev libxi6
libxine-dev libxine1-bin libxinerama-dev libxinerama1 libxkbfile1 libxml2
libxmu6 libxmuu1 libxpm4 libxrandr-dev libxrandr2 libxrender-dev libxrender1
libxres1 libxslt1.1 libxt6 libxtrap6 libxtst6 libxul-common libxul-dev
libxul0d libxv-dev libxv1 libxxf86dga1 libxxf86misc1 libxxf86vm1 man-db
metacity-common mime-support pkg-config po-debconf psmisc python
python-cairo python-central python-dbus python-dev python-gnome2-desktop
python-gnome2-extras python-gnome2-extras-dev python-gobject
python-gobject-dev python-gtk2 python-gtk2-dev python-minimal python-numeric
python-pyorbit python-pyrex python-support python2.4 python2.4-dev
python2.4-minimal sgml-base shared-mime-info ttf-dejavu ttf-dejavu-core
ttf-dejavu-extra ucf whiptail x11-apps x11-common x11-session-utils
x11-utils x11-xfs-utils x11-xkb-utils x11-xserver-utils
x11proto-composite-dev x11proto-core-dev x11proto-damage-dev
x11proto-fixes-dev x11proto-input-dev x11proto-kb-dev x11proto-randr-dev
x11proto-render-dev x11proto-video-dev x11proto-xext-dev
x11proto-xinerama-dev xauth xbase-clients xinit xtrans-dev xulrunner
zlib1g-dev
0 upgraded, 246 newly installed, 0 to remove and 0 not upgraded.
Need to get 87.2MB of archives.
After this operation, 321MB of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
x11-common libxau6 libxdmcp6 libx11-data libx11-6 libxext6 libdmx1 libice6
x11proto-core-dev libice-dev libsm6 libsm-dev libxau-dev libxdmcp-dev
x11proto-input-dev x11proto-xext-dev libxext-dev x11proto-kb-dev xtrans-dev
libx11-dev libxfixes3 libxcomposite1 x11proto-fixes-dev libxfixes-dev
x11proto-composite-dev libxcomposite-dev libxrender1 libxcursor1
x11proto-render-dev libxrender-dev libxcursor-dev libxdamage1
x11proto-damage-dev libxdamage-dev libexpat1 libfreetype6 ucf libmagic1 file
libnewt0.52 libpopt0 whiptail defoma ttf-dejavu-core ttf-dejavu-extra
ttf-dejavu fontconfig-config libfontconfig1 libxft2 libexpat1-dev zlib1g-dev
libfreetype6-dev libpcre3 libglib2.0-0 pkg-config libfontconfig1-dev
libxft-dev libxi6 libxi-dev libxinerama1 x11proto-xinerama-dev
libxinerama-dev libxrandr2 x11proto-randr-dev libxrandr-dev libxt6 libxv1
x11proto-video-dev libxv-dev libpng12-0 libxmu6 libxpm4 libxaw7 libxkbfile1
libxmuu1 x11-apps x11-session-utils libfontenc1 libdrm2 libxxf86vm1
libgl1-mesa-glx libxtst6 libxxf86dga1 x11-utils libfs6 x11-xfs-utils
x11-xkb-utils libxtrap6 libxxf86misc1 x11-xserver-utils xauth xinit adduser
bsdmainutils groff-base libncursesw5 libssl0.9.8 man-db gettext-base
libkeyutils1 libkrb53 mime-support python2.4-minimal python2.4
python-minimal python python-central python-support html2text libgomp1
gettext intltool-debian po-debconf debhelper cdbs chrpath libdbus-1-3 dbus
esound-common fontconfig gconf2-common libidl0 liborbit2 libxml2 libgconf2-4
psmisc gconf2 gnome-media-common gnome-mime-data libart-2.0-2 libaspell15
libatk1.0-0 libglib2.0-dev libatk1.0-dev libaudiofile0 libavahi-common-data
libavahi-common3 libavahi-client3 libavahi-glib1 libbonobo2-common
libbonobo2-0 libbonoboui2-common libcairo2 libcupsys2 libgtk2.0-common
libjpeg62 libdatrie0 libpango1.0-common libthai-data libthai0 libpango1.0-0
libtiff4 libgtk2.0-0 libglade2-0 libesd0 libdbus-glib-1-2 libfam0 libhal1
libhal-storage1 shared-mime-info libgnomevfs2-common libgnomevfs2-0
libgnome2-common libgnome2-0 libgail18 libgail-common libgnomecanvas2-common
libgnomecanvas2-0 libbonoboui2-0 libboost-dev libboost-python1.34.1
python2.4-dev libboost-python-dev libpng12-dev libcairo2-dev libcroco3
libffi4 libffi4-dev libgda2-common libxslt1.1 libgda2-3 libgdl-1-common
libgnome-keyring0 libgnomeui-common libgnomeui-0 libgdl-1-0 libgdl-gnome-1-0
xbase-clients libgksu1.2-0 libgksuui1.0-1 libstartup-notification0
libgnome-desktop-2 libgnome-media0 libgnomecups1.0-1 libgnomeprint2.2-data
libgnomeprint2.2-0 libgnomeprintui2.2-common libgnomeprintui2.2-0
libgsf-1-common libgsf-1-114 libpango1.0-dev libgtk2.0-dev libgtkhtml2-0
libgtksourceview-common libgtksourceview1.0-0 libgtkspell0 libgtop2-common
libgtop2-7 libhunspell-1.1-0 sgml-base metacity-common libmetacity0
libnspr4-0d libmozjs0d libnspr4-dev libmozjs-dev libnautilus-burn4
libsqlite3-0 libnss3-1d libnss3-dev libpanel-applet2-0 librsvg2-2
libslang2-dev libtotem-plparser7 libwnck-common libxres1 libwnck22
libxine1-bin libxine-dev libxul-common libxul0d xulrunner libxul-dev
python-cairo python-dbus python-dev python-gobject python-numeric
python-gtk2 python-pyorbit python-gnome2-desktop python-gnome2-extras
python-gnome2-extras-dev python-gobject-dev python-gtk2-dev python-pyrex
Authentication warning overridden.
Get:1 http://idpot.grenoble.grid5000.fr sid/main x11-common 1:7.3+10 [345kB]
Get:2 http://idpot.grenoble.grid5000.fr sid/main libxau6 1:1.0.3-2 [11.7kB]
Get:3 http://idpot.grenoble.grid5000.fr sid/main libxdmcp6 1:1.0.2-2 [16.7kB]
Get:4 http://idpot.grenoble.grid5000.fr sid/main libx11-data 2:1.0.3-7 [157kB]
Get:5 http://idpot.grenoble.grid5000.fr sid/main libx11-6 2:1.0.3-7 [567kB]
Get:6 http://idpot.grenoble.grid5000.fr sid/main libxext6 1:1.0.3-2 [30.1kB]
Get:7 http://idpot.grenoble.grid5000.fr sid/main libdmx1 1:1.0.2-2 [8762B]
Get:8 http://idpot.grenoble.grid5000.fr sid/main libice6 2:1.0.4-1 [46.6kB]
Get:9 http://idpot.grenoble.grid5000.fr sid/main x11proto-core-dev 7.0.11-1 [88.9kB]
Get:10 http://idpot.grenoble.grid5000.fr sid/main libice-dev 2:1.0.4-1 [55.1kB]
Get:11 http://idpot.grenoble.grid5000.fr sid/main libsm6 2:1.0.3-1+b1 [21.8kB]
Get:12 http://idpot.grenoble.grid5000.fr sid/main libsm-dev 2:1.0.3-1+b1 [24.3kB]
Get:13 http://idpot.grenoble.grid5000.fr sid/main libxau-dev 1:1.0.3-2 [15.4kB]
Get:14 http://idpot.grenoble.grid5000.fr sid/main libxdmcp-dev 1:1.0.2-2 [19.8kB]
Get:15 http://idpot.grenoble.grid5000.fr sid/main x11proto-input-dev 1.4.2-1 [15.6kB]
Get:16 http://idpot.grenoble.grid5000.fr sid/main x11proto-xext-dev 7.0.2-5 [41.7kB]
Get:17 http://idpot.grenoble.grid5000.fr sid/main libxext-dev 1:1.0.3-2 [81.5kB]
Get:18 http://idpot.grenoble.grid5000.fr sid/main x11proto-kb-dev 1.0.3-2 [26.8kB]
Get:19 http://idpot.grenoble.grid5000.fr sid/main xtrans-dev 1.0.4-1 [70.4kB]
Get:20 http://idpot.grenoble.grid5000.fr sid/main libx11-dev 2:1.0.3-7 [1269kB]
Get:21 http://idpot.grenoble.grid5000.fr sid/main libxfixes3 1:4.0.3-2 [9572B]
Get:22 http://idpot.grenoble.grid5000.fr sid/main libxcomposite1 1:0.4.0-1 [10.8kB]
Get:23 http://idpot.grenoble.grid5000.fr sid/main x11proto-fixes-dev 4.0-2 [5640B]
Get:24 http://idpot.grenoble.grid5000.fr sid/main libxfixes-dev 1:4.0.3-2 [12.1kB]
Get:25 http://idpot.grenoble.grid5000.fr sid/main x11proto-composite-dev 1:0.4-2 [12.3kB]
Get:26 http://idpot.grenoble.grid5000.fr sid/main libxcomposite-dev 1:0.4.0-1 [14.3kB]
Get:27 http://idpot.grenoble.grid5000.fr sid/main libxrender1 1:0.9.4-1 [25.4kB]
Get:28 http://idpot.grenoble.grid5000.fr sid/main libxcursor1 1:1.1.9-1 [24.0kB]
Get:29 http://idpot.grenoble.grid5000.fr sid/main x11proto-render-dev 2:0.9.3-2 [7062B]
Get:30 http://idpot.grenoble.grid5000.fr sid/main libxrender-dev 1:0.9.4-1 [28.5kB]
Get:31 http://idpot.grenoble.grid5000.fr sid/main libxcursor-dev 1:1.1.9-1 [30.8kB]
Get:32 http://idpot.grenoble.grid5000.fr sid/main libxdamage1 1:1.1.1-3 [9804B]
Get:33 http://idpot.grenoble.grid5000.fr sid/main x11proto-damage-dev 1.1.0-2 [9090B]
Get:34 http://idpot.grenoble.grid5000.fr sid/main libxdamage-dev 1:1.1.1-3 [9634B]
Get:35 http://idpot.grenoble.grid5000.fr sid/main libexpat1 1.95.8-4 [63.9kB]
Get:36 http://idpot.grenoble.grid5000.fr sid/main libfreetype6 2.3.5-1+b1 [347kB]
Get:37 http://idpot.grenoble.grid5000.fr sid/main ucf 3.004 [62.9kB]
Get:38 http://idpot.grenoble.grid5000.fr sid/main libmagic1 4.23-2 [342kB]
Get:39 http://idpot.grenoble.grid5000.fr sid/main file 4.23-2 [41.0kB]
Get:40 http://idpot.grenoble.grid5000.fr sid/main libnewt0.52 0.52.2-11.1 [66.2kB]
Get:41 http://idpot.grenoble.grid5000.fr sid/main libpopt0 1.10-3 [33.1kB]
Get:42 http://idpot.grenoble.grid5000.fr sid/main whiptail 0.52.2-11.1 [34.7kB]
Get:43 http://idpot.grenoble.grid5000.fr sid/main defoma 0.11.10-0.2 [101kB]
Get:44 http://idpot.grenoble.grid5000.fr sid/main ttf-dejavu-core 2.23-1 [1347kB]
Get:45 http://idpot.grenoble.grid5000.fr sid/main ttf-dejavu-extra 2.23-1 [2949kB]
Get:46 http://idpot.grenoble.grid5000.fr sid/main ttf-dejavu 2.23-1 [24.3kB]
Get:47 http://idpot.grenoble.grid5000.fr sid/main fontconfig-config 2.5.0-2 [179kB]
Get:48 http://idpot.grenoble.grid5000.fr sid/main libfontconfig1 2.5.0-2 [110kB]
Get:49 http://idpot.grenoble.grid5000.fr sid/main libxft2 2.1.12-2 [47.6kB]
Get:50 http://idpot.grenoble.grid5000.fr sid/main libexpat1-dev 1.95.8-4 [129kB]
Get:51 http://idpot.grenoble.grid5000.fr sid/main zlib1g-dev 1:1.2.3.3.dfsg-11 [157kB]
Get:52 http://idpot.grenoble.grid5000.fr sid/main libfreetype6-dev 2.3.5-1+b1 [662kB]
Get:53 http://idpot.grenoble.grid5000.fr sid/main libpcre3 7.6-1 [208kB]
Get:54 http://idpot.grenoble.grid5000.fr sid/main libglib2.0-0 2.14.6-1 [561kB]
Get:55 http://idpot.grenoble.grid5000.fr sid/main pkg-config 0.22-1 [52.2kB]
Get:56 http://idpot.grenoble.grid5000.fr sid/main libfontconfig1-dev 2.5.0-2 [595kB]
Get:57 http://idpot.grenoble.grid5000.fr sid/main libxft-dev 2.1.12-2 [61.3kB]
Get:58 http://idpot.grenoble.grid5000.fr sid/main libxi6 2:1.1.3-1 [24.6kB]
Get:59 http://idpot.grenoble.grid5000.fr sid/main libxi-dev 2:1.1.3-1 [69.0kB]
Get:60 http://idpot.grenoble.grid5000.fr sid/main libxinerama1 1:1.0.2-1 [9256B]
Get:61 http://idpot.grenoble.grid5000.fr sid/main x11proto-xinerama-dev 1.1.2-4 [5074B]
Get:62 http://idpot.grenoble.grid5000.fr sid/main libxinerama-dev 1:1.0.2-1 [10.8kB]
Get:63 http://idpot.grenoble.grid5000.fr sid/main libxrandr2 2:1.2.2-1 [20.4kB]
Get:64 http://idpot.grenoble.grid5000.fr sid/main x11proto-randr-dev 1.2.1-2 [28.6kB]
Get:65 http://idpot.grenoble.grid5000.fr sid/main libxrandr-dev 2:1.2.2-1 [27.8kB]
Get:66 http://idpot.grenoble.grid5000.fr sid/main libxt6 1:1.0.5-3 [166kB]
Get:67 http://idpot.grenoble.grid5000.fr sid/main libxv1 1:1.0.3-1 [15.1kB]
Get:68 http://idpot.grenoble.grid5000.fr sid/main x11proto-video-dev 2.2.2-4 [9514B]
Get:69 http://idpot.grenoble.grid5000.fr sid/main libxv-dev 1:1.0.3-1 [35.4kB]
Get:70 http://idpot.grenoble.grid5000.fr sid/main libpng12-0 1.2.15~beta5-3 [187kB]
Get:71 http://idpot.grenoble.grid5000.fr sid/main libxmu6 2:1.0.4-1 [51.1kB]
Get:72 http://idpot.grenoble.grid5000.fr sid/main libxpm4 1:3.5.7-1 [40.3kB]
Get:73 http://idpot.grenoble.grid5000.fr sid/main libxaw7 2:1.0.4-1 [186kB]
Get:74 http://idpot.grenoble.grid5000.fr sid/main libxkbfile1 1:1.0.4-1 [71.5kB]
Get:75 http://idpot.grenoble.grid5000.fr sid/main libxmuu1 2:1.0.4-1 [13.2kB]
Get:76 http://idpot.grenoble.grid5000.fr sid/main x11-apps 7.3+1 [546kB]
Get:77 http://idpot.grenoble.grid5000.fr sid/main x11-session-utils 7.3+1 [71.0kB]
Get:78 http://idpot.grenoble.grid5000.fr sid/main libfontenc1 1:1.0.4-2 [17.7kB]
Get:79 http://idpot.grenoble.grid5000.fr sid/main libdrm2 2.3.0-4 [20.7kB]
Get:80 http://idpot.grenoble.grid5000.fr sid/main libxxf86vm1 1:1.0.1-2 [9778B]
Get:81 http://idpot.grenoble.grid5000.fr sid/main libgl1-mesa-glx 7.0.2-4 [148kB]
Get:82 http://idpot.grenoble.grid5000.fr sid/main libxtst6 2:1.0.3-1 [12.3kB]
Get:83 http://idpot.grenoble.grid5000.fr sid/main libxxf86dga1 2:1.0.2-1 [15.7kB]
Get:84 http://idpot.grenoble.grid5000.fr sid/main x11-utils 7.3+1 [198kB]
Get:85 http://idpot.grenoble.grid5000.fr sid/main libfs6 2:1.0.0-4 [24.1kB]
Get:86 http://idpot.grenoble.grid5000.fr sid/main x11-xfs-utils 7.3+1 [24.3kB]
Get:87 http://idpot.grenoble.grid5000.fr sid/main x11-xkb-utils 7.3+1 [172kB]
Get:88 http://idpot.grenoble.grid5000.fr sid/main libxtrap6 1:1.0.0-4 [16.6kB]
Get:89 http://idpot.grenoble.grid5000.fr sid/main libxxf86misc1 1:1.0.1-2 [7674B]
Get:90 http://idpot.grenoble.grid5000.fr sid/main x11-xserver-utils 7.3+2 [171kB]
Get:91 http://idpot.grenoble.grid5000.fr sid/main xauth 1:1.0.2-2 [29.7kB]
Get:92 http://idpot.grenoble.grid5000.fr sid/main xinit 1.0.7-2 [26.1kB]
Get:93 http://idpot.grenoble.grid5000.fr sid/main adduser 3.105 [174kB]
Get:94 http://idpot.grenoble.grid5000.fr sid/main bsdmainutils 6.1.10 [172kB]
Get:95 http://idpot.grenoble.grid5000.fr sid/main groff-base 1.18.1.1-16 [844kB]
Get:96 http://idpot.grenoble.grid5000.fr sid/main libncursesw5 5.6+20080203-1 [347kB]
Get:97 http://idpot.grenoble.grid5000.fr sid/main libssl0.9.8 0.9.8g-4 [2883kB]
Get:98 http://idpot.grenoble.grid5000.fr sid/main man-db 2.5.1-2 [997kB]
Get:99 http://idpot.grenoble.grid5000.fr sid/main gettext-base 0.17-2 [123kB]
Get:100 http://idpot.grenoble.grid5000.fr sid/main libkeyutils1 1.2-6 [5206B]
Get:101 http://idpot.grenoble.grid5000.fr sid/main libkrb53 1.6.dfsg.3~beta1-2 [462kB]
Get:102 http://idpot.grenoble.grid5000.fr sid/main mime-support 3.40-1 [31.2kB]
Get:103 http://idpot.grenoble.grid5000.fr sid/main python2.4-minimal 2.4.4-7 [979kB]
Get:104 http://idpot.grenoble.grid5000.fr sid/main python2.4 2.4.4-7 [2814kB]
Get:105 http://idpot.grenoble.grid5000.fr sid/main python-minimal 2.4.4-6 [12.9kB]
Get:106 http://idpot.grenoble.grid5000.fr sid/main python 2.4.4-6 [140kB]
Get:107 http://idpot.grenoble.grid5000.fr sid/main python-central 0.5.15-0.1 [33.2kB]
Get:108 http://idpot.grenoble.grid5000.fr sid/main python-support 0.7.6 [26.6kB]
Get:109 http://idpot.grenoble.grid5000.fr sid/main html2text 1.3.2a-3 [98.9kB]
Get:110 http://idpot.grenoble.grid5000.fr sid/main libgomp1 4.3-20080202-1 [13.3kB]
Get:111 http://idpot.grenoble.grid5000.fr sid/main gettext 0.17-2 [2683kB]
Get:112 http://idpot.grenoble.grid5000.fr sid/main intltool-debian 0.35.0+20060710.1 [30.8kB]
Get:113 http://idpot.grenoble.grid5000.fr sid/main po-debconf 1.0.11 [231kB]
Get:114 http://idpot.grenoble.grid5000.fr sid/main debhelper 6.0.5 [519kB]
Get:115 http://idpot.grenoble.grid5000.fr sid/main cdbs 0.4.51 [919kB]
Get:116 http://idpot.grenoble.grid5000.fr sid/main chrpath 0.13-2 [13.6kB]
Get:117 http://idpot.grenoble.grid5000.fr sid/main libdbus-1-3 1.1.2-1 [134kB]
Get:118 http://idpot.grenoble.grid5000.fr sid/main dbus 1.1.2-1 [212kB]
Get:119 http://idpot.grenoble.grid5000.fr sid/main esound-common 0.2.36-3 [38.2kB]
Get:120 http://idpot.grenoble.grid5000.fr sid/main fontconfig 2.5.0-2 [43.0kB]
Get:121 http://idpot.grenoble.grid5000.fr sid/main gconf2-common 2.20.1-2 [1489kB]
Get:122 http://idpot.grenoble.grid5000.fr sid/main libidl0 0.8.9-0.1 [86.9kB]
Get:123 http://idpot.grenoble.grid5000.fr sid/main liborbit2 1:2.14.10-0.1 [246kB]
Get:124 http://idpot.grenoble.grid5000.fr sid/main libxml2 2.6.31.dfsg-1 [782kB]
Get:125 http://idpot.grenoble.grid5000.fr sid/main libgconf2-4 2.20.1-2+b1 [240kB]
Get:126 http://idpot.grenoble.grid5000.fr sid/main psmisc 22.6-1 [84.7kB]
Get:127 http://idpot.grenoble.grid5000.fr sid/main gconf2 2.20.1-2+b1 [139kB]
Get:128 http://idpot.grenoble.grid5000.fr sid/main gnome-media-common 2.20.1-3 [1882kB]
Get:129 http://idpot.grenoble.grid5000.fr sid/main gnome-mime-data 2.18.0-1 [725kB]
Get:130 http://idpot.grenoble.grid5000.fr sid/main libart-2.0-2 2.3.20-1 [64.7kB]
Get:131 http://idpot.grenoble.grid5000.fr sid/main libaspell15 0.60.5-2 [635kB]
Get:132 http://idpot.grenoble.grid5000.fr sid/main libatk1.0-0 1.20.0-1 [78.5kB]
Get:133 http://idpot.grenoble.grid5000.fr sid/main libglib2.0-dev 2.14.6-1 [569kB]
Get:134 http://idpot.grenoble.grid5000.fr sid/main libatk1.0-dev 1.20.0-1 [112kB]
Get:135 http://idpot.grenoble.grid5000.fr sid/main libaudiofile0 0.2.6-7 [76.4kB]
Get:136 http://idpot.grenoble.grid5000.fr sid/main libavahi-common-data 0.6.22-2 [98.7kB]
Get:137 http://idpot.grenoble.grid5000.fr sid/main libavahi-common3 0.6.22-2 [114kB]
Get:138 http://idpot.grenoble.grid5000.fr sid/main libavahi-client3 0.6.22-2 [118kB]
Get:139 http://idpot.grenoble.grid5000.fr sid/main libavahi-glib1 0.6.22-2 [99.2kB]
Get:140 http://idpot.grenoble.grid5000.fr sid/main libbonobo2-common 2.21.90-1 [306kB]
Get:141 http://idpot.grenoble.grid5000.fr sid/main libbonobo2-0 2.21.90-1 [212kB]
Get:142 http://idpot.grenoble.grid5000.fr sid/main libbonoboui2-common 2.21.90-1 [392kB]
Get:143 http://idpot.grenoble.grid5000.fr sid/main libcairo2 1.4.14-1 [539kB]
Get:144 http://idpot.grenoble.grid5000.fr sid/main libcupsys2 1.3.5-1+b1 [164kB]
Get:145 http://idpot.grenoble.grid5000.fr sid/main libgtk2.0-common 2.12.7-1 [6169kB]
Get:146 http://idpot.grenoble.grid5000.fr sid/main libjpeg62 6b-14 [86.0kB]
Get:147 http://idpot.grenoble.grid5000.fr sid/main libdatrie0 0.1.3-1 [18.3kB]
Get:148 http://idpot.grenoble.grid5000.fr sid/main libpango1.0-common 1.18.4-1 [50.1kB]
Get:149 http://idpot.grenoble.grid5000.fr sid/main libthai-data 0.1.9-3 [162kB]
Get:150 http://idpot.grenoble.grid5000.fr sid/main libthai0 0.1.9-3 [31.5kB]
Get:151 http://idpot.grenoble.grid5000.fr sid/main libpango1.0-0 1.18.4-1 [294kB]
Get:152 http://idpot.grenoble.grid5000.fr sid/main libtiff4 3.8.2-7 [483kB]
Get:153 http://idpot.grenoble.grid5000.fr sid/main libgtk2.0-0 2.12.7-1 [2059kB]
Get:154 http://idpot.grenoble.grid5000.fr sid/main libglade2-0 1:2.6.2-1 [86.5kB]
Get:155 http://idpot.grenoble.grid5000.fr sid/main libesd0 0.2.36-3 [18.9kB]
Get:156 http://idpot.grenoble.grid5000.fr sid/main libdbus-glib-1-2 0.74-1 [135kB]
Get:157 http://idpot.grenoble.grid5000.fr sid/main libfam0 2.7.0-13.1 [27.9kB]
Get:158 http://idpot.grenoble.grid5000.fr sid/main libhal1 0.5.10-5 [393kB]
Get:159 http://idpot.grenoble.grid5000.fr sid/main libhal-storage1 0.5.10-5 [388kB]
Get:160 http://idpot.grenoble.grid5000.fr sid/main shared-mime-info 0.23-1 [586kB]
Get:161 http://idpot.grenoble.grid5000.fr sid/main libgnomevfs2-common 1:2.20.1-1 [1172kB]
Get:162 http://idpot.grenoble.grid5000.fr sid/main libgnomevfs2-0 1:2.20.1-1 [549kB]
Get:163 http://idpot.grenoble.grid5000.fr sid/main libgnome2-common 2.20.1.1-1 [987kB]
Get:164 http://idpot.grenoble.grid5000.fr sid/main libgnome2-0 2.20.1.1-1 [114kB]
Get:165 http://idpot.grenoble.grid5000.fr sid/main libgail18 1.20.2-1 [195kB]
Get:166 http://idpot.grenoble.grid5000.fr sid/main libgail-common 1.20.2-1 [227kB]
Get:167 http://idpot.grenoble.grid5000.fr sid/main libgnomecanvas2-common 2.20.1.1-1 [159kB]
Get:168 http://idpot.grenoble.grid5000.fr sid/main libgnomecanvas2-0 2.20.1.1-1 [116kB]
Get:169 http://idpot.grenoble.grid5000.fr sid/main libbonoboui2-0 2.21.90-1 [221kB]
Get:170 http://idpot.grenoble.grid5000.fr sid/main libboost-dev 1.34.1-6 [1935kB]
Get:171 http://idpot.grenoble.grid5000.fr sid/main libboost-python1.34.1 1.34.1-6 [194kB]
Get:172 http://idpot.grenoble.grid5000.fr sid/main python2.4-dev 2.4.4-7 [1473kB]
Get:173 http://idpot.grenoble.grid5000.fr sid/main libboost-python-dev 1.34.1-6 [358kB]
Get:174 http://idpot.grenoble.grid5000.fr sid/main libpng12-dev 1.2.15~beta5-3 [171kB]
Get:175 http://idpot.grenoble.grid5000.fr sid/main libcairo2-dev 1.4.14-1 [617kB]
Get:176 http://idpot.grenoble.grid5000.fr sid/main libcroco3 0.6.1-1 [110kB]
Get:177 http://idpot.grenoble.grid5000.fr sid/main libffi4 4.3-20080202-1 [12.8kB]
Get:178 http://idpot.grenoble.grid5000.fr sid/main libffi4-dev 4.3-20080202-1 [92.7kB]
Get:179 http://idpot.grenoble.grid5000.fr sid/main libgda2-common 1.2.4-1 [348kB]
Get:180 http://idpot.grenoble.grid5000.fr sid/main libxslt1.1 1.1.22-1 [219kB]
Get:181 http://idpot.grenoble.grid5000.fr sid/main libgda2-3 1.2.4-1 [230kB]
Get:182 http://idpot.grenoble.grid5000.fr sid/main libgdl-1-common 0.7.8-1 [135kB]
Get:183 http://idpot.grenoble.grid5000.fr sid/main libgnome-keyring0 2.20.3-1 [48.0kB]
Get:184 http://idpot.grenoble.grid5000.fr sid/main libgnomeui-common 2.20.1.1-1 [803kB]
Get:185 http://idpot.grenoble.grid5000.fr sid/main libgnomeui-0 2.20.1.1-1 [362kB]
Get:186 http://idpot.grenoble.grid5000.fr sid/main libgdl-1-0 0.7.8-1 [96.4kB]
Get:187 http://idpot.grenoble.grid5000.fr sid/main libgdl-gnome-1-0 0.7.8-1 [27.4kB]
Get:188 http://idpot.grenoble.grid5000.fr sid/main xbase-clients 1:7.3+10 [25.2kB]
Get:189 http://idpot.grenoble.grid5000.fr sid/main libgksu1.2-0 1.3.8-1 [40.1kB]
Get:190 http://idpot.grenoble.grid5000.fr sid/main libgksuui1.0-1 1.0.7-2 [24.4kB]
Get:191 http://idpot.grenoble.grid5000.fr sid/main libstartup-notification0 0.9-1 [20.5kB]
Get:192 http://idpot.grenoble.grid5000.fr sid/main libgnome-desktop-2 2.20.3-1 [78.8kB]
Get:193 http://idpot.grenoble.grid5000.fr sid/main libgnome-media0 2.20.1-3 [119kB]
Get:194 http://idpot.grenoble.grid5000.fr sid/main libgnomecups1.0-1 0.2.3-1 [70.6kB]
Get:195 http://idpot.grenoble.grid5000.fr sid/main libgnomeprint2.2-data 2.18.3-1 [173kB]
Get:196 http://idpot.grenoble.grid5000.fr sid/main libgnomeprint2.2-0 2.18.3-1 [262kB]
Get:197 http://idpot.grenoble.grid5000.fr sid/main libgnomeprintui2.2-common 2.18.2-1 [270kB]
Get:198 http://idpot.grenoble.grid5000.fr sid/main libgnomeprintui2.2-0 2.18.2-1 [163kB]
Get:199 http://idpot.grenoble.grid5000.fr sid/main libgsf-1-common 1.14.7-2 [54.7kB]
Get:200 http://idpot.grenoble.grid5000.fr sid/main libgsf-1-114 1.14.7-2 [139kB]
Get:201 http://idpot.grenoble.grid5000.fr sid/main libpango1.0-dev 1.18.4-1 [361kB]
Get:202 http://idpot.grenoble.grid5000.fr sid/main libgtk2.0-dev 2.12.7-1 [2782kB]
Get:203 http://idpot.grenoble.grid5000.fr sid/main libgtkhtml2-0 2.11.1-1 [242kB]
Get:204 http://idpot.grenoble.grid5000.fr sid/main libgtksourceview-common 1.8.5-1 [457kB]
Get:205 http://idpot.grenoble.grid5000.fr sid/main libgtksourceview1.0-0 1.8.5-1 [111kB]
Get:206 http://idpot.grenoble.grid5000.fr sid/main libgtkspell0 2.0.10-4 [19.0kB]
Get:207 http://idpot.grenoble.grid5000.fr sid/main libgtop2-common 2.20.1-1 [107kB]
Get:208 http://idpot.grenoble.grid5000.fr sid/main libgtop2-7 2.20.1-1 [66.1kB]
Get:209 http://idpot.grenoble.grid5000.fr sid/main libhunspell-1.1-0 1.1.9-1 [105kB]
Get:210 http://idpot.grenoble.grid5000.fr sid/main sgml-base 1.26 [11.7kB]
Get:211 http://idpot.grenoble.grid5000.fr sid/main metacity-common 1:2.20.2-1 [2125kB]
Get:212 http://idpot.grenoble.grid5000.fr sid/main libmetacity0 1:2.20.2-1 [244kB]
Get:213 http://idpot.grenoble.grid5000.fr sid/main libnspr4-0d 4.7.0~1.9b1-2 [120kB]
Get:214 http://idpot.grenoble.grid5000.fr sid/main libmozjs0d 1.8.1.12-1 [361kB]
Get:215 http://idpot.grenoble.grid5000.fr sid/main libnspr4-dev 4.7.0~1.9b1-2 [254kB]
Get:216 http://idpot.grenoble.grid5000.fr sid/main libmozjs-dev 1.8.1.12-1 [192kB]
Get:217 http://idpot.grenoble.grid5000.fr sid/main libnautilus-burn4 2.20.0-1 [89.9kB]
Get:218 http://idpot.grenoble.grid5000.fr sid/main libsqlite3-0 3.4.2-2 [211kB]
Get:219 http://idpot.grenoble.grid5000.fr sid/main libnss3-1d 3.12.0~1.9b1-2 [1020kB]
Get:220 http://idpot.grenoble.grid5000.fr sid/main libnss3-dev 3.12.0~1.9b1-2 [328kB]
Get:221 http://idpot.grenoble.grid5000.fr sid/main libpanel-applet2-0 2.20.3-1 [104kB]
Get:222 http://idpot.grenoble.grid5000.fr sid/main librsvg2-2 2.20.0-1 [136kB]
Get:223 http://idpot.grenoble.grid5000.fr sid/main libslang2-dev 2.1.3-2 [480kB]
Get:224 http://idpot.grenoble.grid5000.fr sid/main libtotem-plparser7 2.20.3-1 [243kB]
Get:225 http://idpot.grenoble.grid5000.fr sid/main libwnck-common 2.20.3-1 [281kB]
Get:226 http://idpot.grenoble.grid5000.fr sid/main libxres1 2:1.0.3-1 [9642B]
Get:227 http://idpot.grenoble.grid5000.fr sid/main libwnck22 2.20.3-1 [151kB]
Get:228 http://idpot.grenoble.grid5000.fr sid/main libxine1-bin 1.1.10.1-1 [1716kB]
Get:229 http://idpot.grenoble.grid5000.fr sid/main libxine-dev 1.1.10.1-1 [325kB]
Get:230 http://idpot.grenoble.grid5000.fr sid/main libxul-common 1.8.1.12-1 [1201kB]
Get:231 http://idpot.grenoble.grid5000.fr sid/main libxul0d 1.8.1.12-1 [5547kB]
Get:232 http://idpot.grenoble.grid5000.fr sid/main xulrunner 1.8.1.12-1 [277kB]
Get:233 http://idpot.grenoble.grid5000.fr sid/main libxul-dev 1.8.1.12-1 [3010kB]
Get:234 http://idpot.grenoble.grid5000.fr sid/main python-cairo 1.4.12-1 [86.0kB]
Get:235 http://idpot.grenoble.grid5000.fr sid/main python-dbus 0.82.4-1 [212kB]
Get:236 http://idpot.grenoble.grid5000.fr sid/main python-dev 2.4.4-6 [934B]
Get:237 http://idpot.grenoble.grid5000.fr sid/main python-gobject 2.14.1-1 [157kB]
Get:238 http://idpot.grenoble.grid5000.fr sid/main python-numeric 24.2-8 [182kB]
Get:239 http://idpot.grenoble.grid5000.fr sid/main python-gtk2 2.12.1-1 [1377kB]
Get:240 http://idpot.grenoble.grid5000.fr sid/main python-pyorbit 2.14.3-2 [97.1kB]
Get:241 http://idpot.grenoble.grid5000.fr sid/main python-gnome2-desktop 2.20.0-1 [291kB]
Get:242 http://idpot.grenoble.grid5000.fr sid/main python-gnome2-extras 2.14.3-1+b1 [237kB]
Get:243 http://idpot.grenoble.grid5000.fr sid/main python-gnome2-extras-dev 2.14.3-1 [31.9kB]
Get:244 http://idpot.grenoble.grid5000.fr sid/main python-gobject-dev 2.14.1-1 [52.0kB]
Get:245 http://idpot.grenoble.grid5000.fr sid/main python-gtk2-dev 2.12.1-1 [205kB]
Get:246 http://idpot.grenoble.grid5000.fr sid/main python-pyrex 0.9.6.4-1 [215kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 87.2MB in 15s (5587kB/s)
Selecting previously deselected package x11-common.
(Reading database ... 9173 files and directories currently installed.)
Unpacking x11-common (from .../x11-common_1%3a7.3+10_i386.deb) ...
Selecting previously deselected package libxau6.
Unpacking libxau6 (from .../libxau6_1%3a1.0.3-2_i386.deb) ...
Selecting previously deselected package libxdmcp6.
Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.0.2-2_i386.deb) ...
Setting up x11-common (1:7.3+10) ...
Selecting previously deselected package libx11-data.
(Reading database ... 9217 files and directories currently installed.)
Unpacking libx11-data (from .../libx11-data_2%3a1.0.3-7_all.deb) ...
Selecting previously deselected package libx11-6.
Unpacking libx11-6 (from .../libx11-6_2%3a1.0.3-7_i386.deb) ...
Selecting previously deselected package libxext6.
Unpacking libxext6 (from .../libxext6_1%3a1.0.3-2_i386.deb) ...
Selecting previously deselected package libdmx1.
Unpacking libdmx1 (from .../libdmx1_1%3a1.0.2-2_i386.deb) ...
Selecting previously deselected package libice6.
Unpacking libice6 (from .../libice6_2%3a1.0.4-1_i386.deb) ...
Selecting previously deselected package x11proto-core-dev.
Unpacking x11proto-core-dev (from .../x11proto-core-dev_7.0.11-1_all.deb) ...
Selecting previously deselected package libice-dev.
Unpacking libice-dev (from .../libice-dev_2%3a1.0.4-1_i386.deb) ...
Selecting previously deselected package libsm6.
Unpacking libsm6 (from .../libsm6_2%3a1.0.3-1+b1_i386.deb) ...
Selecting previously deselected package libsm-dev.
Unpacking libsm-dev (from .../libsm-dev_2%3a1.0.3-1+b1_i386.deb) ...
Selecting previously deselected package libxau-dev.
Unpacking libxau-dev (from .../libxau-dev_1%3a1.0.3-2_i386.deb) ...
Selecting previously deselected package libxdmcp-dev.
Unpacking libxdmcp-dev (from .../libxdmcp-dev_1%3a1.0.2-2_i386.deb) ...
Selecting previously deselected package x11proto-input-dev.
Unpacking x11proto-input-dev (from .../x11proto-input-dev_1.4.2-1_all.deb) ...
Selecting previously deselected package x11proto-xext-dev.
Unpacking x11proto-xext-dev (from .../x11proto-xext-dev_7.0.2-5_all.deb) ...
Selecting previously deselected package libxext-dev.
Unpacking libxext-dev (from .../libxext-dev_1%3a1.0.3-2_i386.deb) ...
Selecting previously deselected package x11proto-kb-dev.
Unpacking x11proto-kb-dev (from .../x11proto-kb-dev_1.0.3-2_all.deb) ...
Selecting previously deselected package xtrans-dev.
Unpacking xtrans-dev (from .../xtrans-dev_1.0.4-1_all.deb) ...
Selecting previously deselected package libx11-dev.
Unpacking libx11-dev (from .../libx11-dev_2%3a1.0.3-7_i386.deb) ...
Selecting previously deselected package libxfixes3.
Unpacking libxfixes3 (from .../libxfixes3_1%3a4.0.3-2_i386.deb) ...
Selecting previously deselected package libxcomposite1.
Unpacking libxcomposite1 (from .../libxcomposite1_1%3a0.4.0-1_i386.deb) ...
Selecting previously deselected package x11proto-fixes-dev.
Unpacking x11proto-fixes-dev (from .../x11proto-fixes-dev_4.0-2_all.deb) ...
Selecting previously deselected package libxfixes-dev.
Unpacking libxfixes-dev (from .../libxfixes-dev_1%3a4.0.3-2_i386.deb) ...
Selecting previously deselected package x11proto-composite-dev.
Unpacking x11proto-composite-dev (from .../x11proto-composite-dev_1%3a0.4-2_all.deb) ...
Selecting previously deselected package libxcomposite-dev.
Unpacking libxcomposite-dev (from .../libxcomposite-dev_1%3a0.4.0-1_i386.deb) ...
Selecting previously deselected package libxrender1.
Unpacking libxrender1 (from .../libxrender1_1%3a0.9.4-1_i386.deb) ...
Selecting previously deselected package libxcursor1.
Unpacking libxcursor1 (from .../libxcursor1_1%3a1.1.9-1_i386.deb) ...
Selecting previously deselected package x11proto-render-dev.
Unpacking x11proto-render-dev (from .../x11proto-render-dev_2%3a0.9.3-2_all.deb) ...
Selecting previously deselected package libxrender-dev.
Unpacking libxrender-dev (from .../libxrender-dev_1%3a0.9.4-1_i386.deb) ...
Selecting previously deselected package libxcursor-dev.
Unpacking libxcursor-dev (from .../libxcursor-dev_1%3a1.1.9-1_i386.deb) ...
Selecting previously deselected package libxdamage1.
Unpacking libxdamage1 (from .../libxdamage1_1%3a1.1.1-3_i386.deb) ...
Selecting previously deselected package x11proto-damage-dev.
Unpacking x11proto-damage-dev (from .../x11proto-damage-dev_1.1.0-2_all.deb) ...
Selecting previously deselected package libxdamage-dev.
Unpacking libxdamage-dev (from .../libxdamage-dev_1%3a1.1.1-3_i386.deb) ...
Selecting previously deselected package libexpat1.
Unpacking libexpat1 (from .../libexpat1_1.95.8-4_i386.deb) ...
Selecting previously deselected package libfreetype6.
Unpacking libfreetype6 (from .../libfreetype6_2.3.5-1+b1_i386.deb) ...
Selecting previously deselected package ucf.
Unpacking ucf (from .../apt/archives/ucf_3.004_all.deb) ...
Moving old data out of the way
Selecting previously deselected package libmagic1.
Unpacking libmagic1 (from .../libmagic1_4.23-2_i386.deb) ...
Selecting previously deselected package file.
Unpacking file (from .../archives/file_4.23-2_i386.deb) ...
Selecting previously deselected package libnewt0.52.
Unpacking libnewt0.52 (from .../libnewt0.52_0.52.2-11.1_i386.deb) ...
Selecting previously deselected package libpopt0.
Unpacking libpopt0 (from .../libpopt0_1.10-3_i386.deb) ...
Selecting previously deselected package whiptail.
Unpacking whiptail (from .../whiptail_0.52.2-11.1_i386.deb) ...
Selecting previously deselected package defoma.
Unpacking defoma (from .../defoma_0.11.10-0.2_all.deb) ...
Selecting previously deselected package ttf-dejavu-core.
Unpacking ttf-dejavu-core (from .../ttf-dejavu-core_2.23-1_all.deb) ...
Selecting previously deselected package ttf-dejavu-extra.
Unpacking ttf-dejavu-extra (from .../ttf-dejavu-extra_2.23-1_all.deb) ...
Selecting previously deselected package ttf-dejavu.
Unpacking ttf-dejavu (from .../ttf-dejavu_2.23-1_all.deb) ...
Selecting previously deselected package fontconfig-config.
Unpacking fontconfig-config (from .../fontconfig-config_2.5.0-2_all.deb) ...
Selecting previously deselected package libfontconfig1.
Unpacking libfontconfig1 (from .../libfontconfig1_2.5.0-2_i386.deb) ...
Selecting previously deselected package libxft2.
Unpacking libxft2 (from .../libxft2_2.1.12-2_i386.deb) ...
Selecting previously deselected package libexpat1-dev.
Unpacking libexpat1-dev (from .../libexpat1-dev_1.95.8-4_i386.deb) ...
Selecting previously deselected package zlib1g-dev.
Unpacking zlib1g-dev (from .../zlib1g-dev_1%3a1.2.3.3.dfsg-11_i386.deb) ...
Selecting previously deselected package libfreetype6-dev.
Unpacking libfreetype6-dev (from .../libfreetype6-dev_2.3.5-1+b1_i386.deb) ...
Selecting previously deselected package libpcre3.
Unpacking libpcre3 (from .../libpcre3_7.6-1_i386.deb) ...
Selecting previously deselected package libglib2.0-0.
Unpacking libglib2.0-0 (from .../libglib2.0-0_2.14.6-1_i386.deb) ...
Selecting previously deselected package pkg-config.
Unpacking pkg-config (from .../pkg-config_0.22-1_i386.deb) ...
Selecting previously deselected package libfontconfig1-dev.
Unpacking libfontconfig1-dev (from .../libfontconfig1-dev_2.5.0-2_i386.deb) ...
Selecting previously deselected package libxft-dev.
Unpacking libxft-dev (from .../libxft-dev_2.1.12-2_i386.deb) ...
Selecting previously deselected package libxi6.
Unpacking libxi6 (from .../libxi6_2%3a1.1.3-1_i386.deb) ...
Selecting previously deselected package libxi-dev.
Unpacking libxi-dev (from .../libxi-dev_2%3a1.1.3-1_i386.deb) ...
Selecting previously deselected package libxinerama1.
Unpacking libxinerama1 (from .../libxinerama1_1%3a1.0.2-1_i386.deb) ...
Selecting previously deselected package x11proto-xinerama-dev.
Unpacking x11proto-xinerama-dev (from .../x11proto-xinerama-dev_1.1.2-4_all.deb) ...
Selecting previously deselected package libxinerama-dev.
Unpacking libxinerama-dev (from .../libxinerama-dev_1%3a1.0.2-1_i386.deb) ...
Selecting previously deselected package libxrandr2.
Unpacking libxrandr2 (from .../libxrandr2_2%3a1.2.2-1_i386.deb) ...
Selecting previously deselected package x11proto-randr-dev.
Unpacking x11proto-randr-dev (from .../x11proto-randr-dev_1.2.1-2_all.deb) ...
Selecting previously deselected package libxrandr-dev.
Unpacking libxrandr-dev (from .../libxrandr-dev_2%3a1.2.2-1_i386.deb) ...
Selecting previously deselected package libxt6.
Unpacking libxt6 (from .../libxt6_1%3a1.0.5-3_i386.deb) ...
Selecting previously deselected package libxv1.
Unpacking libxv1 (from .../libxv1_1%3a1.0.3-1_i386.deb) ...
Selecting previously deselected package x11proto-video-dev.
Unpacking x11proto-video-dev (from .../x11proto-video-dev_2.2.2-4_all.deb) ...
Selecting previously deselected package libxv-dev.
Unpacking libxv-dev (from .../libxv-dev_1%3a1.0.3-1_i386.deb) ...
Selecting previously deselected package libpng12-0.
Unpacking libpng12-0 (from .../libpng12-0_1.2.15~beta5-3_i386.deb) ...
Selecting previously deselected package libxmu6.
Unpacking libxmu6 (from .../libxmu6_2%3a1.0.4-1_i386.deb) ...
Selecting previously deselected package libxpm4.
Unpacking libxpm4 (from .../libxpm4_1%3a3.5.7-1_i386.deb) ...
Selecting previously deselected package libxaw7.
Unpacking libxaw7 (from .../libxaw7_2%3a1.0.4-1_i386.deb) ...
Selecting previously deselected package libxkbfile1.
Unpacking libxkbfile1 (from .../libxkbfile1_1%3a1.0.4-1_i386.deb) ...
Selecting previously deselected package libxmuu1.
Unpacking libxmuu1 (from .../libxmuu1_2%3a1.0.4-1_i386.deb) ...
Selecting previously deselected package x11-apps.
Unpacking x11-apps (from .../x11-apps_7.3+1_i386.deb) ...
Selecting previously deselected package x11-session-utils.
Unpacking x11-session-utils (from .../x11-session-utils_7.3+1_i386.deb) ...
Selecting previously deselected package libfontenc1.
Unpacking libfontenc1 (from .../libfontenc1_1%3a1.0.4-2_i386.deb) ...
Selecting previously deselected package libdrm2.
Unpacking libdrm2 (from .../libdrm2_2.3.0-4_i386.deb) ...
Selecting previously deselected package libxxf86vm1.
Unpacking libxxf86vm1 (from .../libxxf86vm1_1%3a1.0.1-2_i386.deb) ...
Selecting previously deselected package libgl1-mesa-glx.
Unpacking libgl1-mesa-glx (from .../libgl1-mesa-glx_7.0.2-4_i386.deb) ...
Selecting previously deselected package libxtst6.
Unpacking libxtst6 (from .../libxtst6_2%3a1.0.3-1_i386.deb) ...
Selecting previously deselected package libxxf86dga1.
Unpacking libxxf86dga1 (from .../libxxf86dga1_2%3a1.0.2-1_i386.deb) ...
Selecting previously deselected package x11-utils.
Unpacking x11-utils (from .../x11-utils_7.3+1_i386.deb) ...
Selecting previously deselected package libfs6.
Unpacking libfs6 (from .../libfs6_2%3a1.0.0-4_i386.deb) ...
Selecting previously deselected package x11-xfs-utils.
Unpacking x11-xfs-utils (from .../x11-xfs-utils_7.3+1_i386.deb) ...
Selecting previously deselected package x11-xkb-utils.
Unpacking x11-xkb-utils (from .../x11-xkb-utils_7.3+1_i386.deb) ...
Selecting previously deselected package libxtrap6.
Unpacking libxtrap6 (from .../libxtrap6_1%3a1.0.0-4_i386.deb) ...
Selecting previously deselected package libxxf86misc1.
Unpacking libxxf86misc1 (from .../libxxf86misc1_1%3a1.0.1-2_i386.deb) ...
Selecting previously deselected package x11-xserver-utils.
Unpacking x11-xserver-utils (from .../x11-xserver-utils_7.3+2_i386.deb) ...
Selecting previously deselected package xauth.
Unpacking xauth (from .../xauth_1%3a1.0.2-2_i386.deb) ...
Selecting previously deselected package xinit.
Unpacking xinit (from .../xinit_1.0.7-2_i386.deb) ...
Selecting previously deselected package adduser.
Unpacking adduser (from .../archives/adduser_3.105_all.deb) ...
Selecting previously deselected package bsdmainutils.
Unpacking bsdmainutils (from .../bsdmainutils_6.1.10_i386.deb) ...
Selecting previously deselected package groff-base.
Unpacking groff-base (from .../groff-base_1.18.1.1-16_i386.deb) ...
Selecting previously deselected package libncursesw5.
Unpacking libncursesw5 (from .../libncursesw5_5.6+20080203-1_i386.deb) ...
Selecting previously deselected package libssl0.9.8.
Unpacking libssl0.9.8 (from .../libssl0.9.8_0.9.8g-4_i386.deb) ...
Selecting previously deselected package man-db.
Unpacking man-db (from .../man-db_2.5.1-2_i386.deb) ...
Selecting previously deselected package gettext-base.
Unpacking gettext-base (from .../gettext-base_0.17-2_i386.deb) ...
Selecting previously deselected package libkeyutils1.
Unpacking libkeyutils1 (from .../libkeyutils1_1.2-6_i386.deb) ...
Selecting previously deselected package libkrb53.
Unpacking libkrb53 (from .../libkrb53_1.6.dfsg.3~beta1-2_i386.deb) ...
Selecting previously deselected package mime-support.
Unpacking mime-support (from .../mime-support_3.40-1_all.deb) ...
Selecting previously deselected package python2.4-minimal.
Unpacking python2.4-minimal (from .../python2.4-minimal_2.4.4-7_i386.deb) ...
Selecting previously deselected package python2.4.
Unpacking python2.4 (from .../python2.4_2.4.4-7_i386.deb) ...
Selecting previously deselected package python-minimal.
Unpacking python-minimal (from .../python-minimal_2.4.4-6_all.deb) ...
Selecting previously deselected package python.
Unpacking python (from .../python_2.4.4-6_all.deb) ...
Selecting previously deselected package python-central.
Unpacking python-central (from .../python-central_0.5.15-0.1_all.deb) ...
Selecting previously deselected package python-support.
Unpacking python-support (from .../python-support_0.7.6_all.deb) ...
Selecting previously deselected package html2text.
Unpacking html2text (from .../html2text_1.3.2a-3_i386.deb) ...
Selecting previously deselected package libgomp1.
Unpacking libgomp1 (from .../libgomp1_4.3-20080202-1_i386.deb) ...
Selecting previously deselected package gettext.
Unpacking gettext (from .../gettext_0.17-2_i386.deb) ...
Selecting previously deselected package intltool-debian.
Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ...
Selecting previously deselected package po-debconf.
Unpacking po-debconf (from .../po-debconf_1.0.11_all.deb) ...
Selecting previously deselected package debhelper.
Unpacking debhelper (from .../debhelper_6.0.5_all.deb) ...
Selecting previously deselected package cdbs.
Unpacking cdbs (from .../archives/cdbs_0.4.51_all.deb) ...
Selecting previously deselected package chrpath.
Unpacking chrpath (from .../chrpath_0.13-2_i386.deb) ...
Selecting previously deselected package libdbus-1-3.
Unpacking libdbus-1-3 (from .../libdbus-1-3_1.1.2-1_i386.deb) ...
Selecting previously deselected package dbus.
Unpacking dbus (from .../archives/dbus_1.1.2-1_i386.deb) ...
Selecting previously deselected package esound-common.
Unpacking esound-common (from .../esound-common_0.2.36-3_all.deb) ...
Selecting previously deselected package fontconfig.
Unpacking fontconfig (from .../fontconfig_2.5.0-2_i386.deb) ...
Selecting previously deselected package gconf2-common.
Unpacking gconf2-common (from .../gconf2-common_2.20.1-2_all.deb) ...
Selecting previously deselected package libidl0.
Unpacking libidl0 (from .../libidl0_0.8.9-0.1_i386.deb) ...
Selecting previously deselected package liborbit2.
Unpacking liborbit2 (from .../liborbit2_1%3a2.14.10-0.1_i386.deb) ...
Selecting previously deselected package libxml2.
Unpacking libxml2 (from .../libxml2_2.6.31.dfsg-1_i386.deb) ...
Selecting previously deselected package libgconf2-4.
Unpacking libgconf2-4 (from .../libgconf2-4_2.20.1-2+b1_i386.deb) ...
Selecting previously deselected package psmisc.
Unpacking psmisc (from .../psmisc_22.6-1_i386.deb) ...
Selecting previously deselected package gconf2.
Unpacking gconf2 (from .../gconf2_2.20.1-2+b1_i386.deb) ...
Selecting previously deselected package gnome-media-common.
Unpacking gnome-media-common (from .../gnome-media-common_2.20.1-3_all.deb) ...
Selecting previously deselected package gnome-mime-data.
Unpacking gnome-mime-data (from .../gnome-mime-data_2.18.0-1_all.deb) ...
Selecting previously deselected package libart-2.0-2.
Unpacking libart-2.0-2 (from .../libart-2.0-2_2.3.20-1_i386.deb) ...
Selecting previously deselected package libaspell15.
Unpacking libaspell15 (from .../libaspell15_0.60.5-2_i386.deb) ...
Selecting previously deselected package libatk1.0-0.
Unpacking libatk1.0-0 (from .../libatk1.0-0_1.20.0-1_i386.deb) ...
Selecting previously deselected package libglib2.0-dev.
Unpacking libglib2.0-dev (from .../libglib2.0-dev_2.14.6-1_i386.deb) ...
Selecting previously deselected package libatk1.0-dev.
Unpacking libatk1.0-dev (from .../libatk1.0-dev_1.20.0-1_i386.deb) ...
Selecting previously deselected package libaudiofile0.
Unpacking libaudiofile0 (from .../libaudiofile0_0.2.6-7_i386.deb) ...
Selecting previously deselected package libavahi-common-data.
Unpacking libavahi-common-data (from .../libavahi-common-data_0.6.22-2_i386.deb) ...
Selecting previously deselected package libavahi-common3.
Unpacking libavahi-common3 (from .../libavahi-common3_0.6.22-2_i386.deb) ...
Selecting previously deselected package libavahi-client3.
Unpacking libavahi-client3 (from .../libavahi-client3_0.6.22-2_i386.deb) ...
Selecting previously deselected package libavahi-glib1.
Unpacking libavahi-glib1 (from .../libavahi-glib1_0.6.22-2_i386.deb) ...
Selecting previously deselected package libbonobo2-common.
Unpacking libbonobo2-common (from .../libbonobo2-common_2.21.90-1_all.deb) ...
Selecting previously deselected package libbonobo2-0.
Unpacking libbonobo2-0 (from .../libbonobo2-0_2.21.90-1_i386.deb) ...
Selecting previously deselected package libbonoboui2-common.
Unpacking libbonoboui2-common (from .../libbonoboui2-common_2.21.90-1_all.deb) ...
Selecting previously deselected package libcairo2.
Unpacking libcairo2 (from .../libcairo2_1.4.14-1_i386.deb) ...
Selecting previously deselected package libcupsys2.
Unpacking libcupsys2 (from .../libcupsys2_1.3.5-1+b1_i386.deb) ...
Selecting previously deselected package libgtk2.0-common.
Unpacking libgtk2.0-common (from .../libgtk2.0-common_2.12.7-1_all.deb) ...
Selecting previously deselected package libjpeg62.
Unpacking libjpeg62 (from .../libjpeg62_6b-14_i386.deb) ...
Selecting previously deselected package libdatrie0.
Unpacking libdatrie0 (from .../libdatrie0_0.1.3-1_i386.deb) ...
Selecting previously deselected package libpango1.0-common.
Unpacking libpango1.0-common (from .../libpango1.0-common_1.18.4-1_all.deb) ...
Selecting previously deselected package libthai-data.
Unpacking libthai-data (from .../libthai-data_0.1.9-3_all.deb) ...
Selecting previously deselected package libthai0.
Unpacking libthai0 (from .../libthai0_0.1.9-3_i386.deb) ...
Selecting previously deselected package libpango1.0-0.
Unpacking libpango1.0-0 (from .../libpango1.0-0_1.18.4-1_i386.deb) ...
Selecting previously deselected package libtiff4.
Unpacking libtiff4 (from .../libtiff4_3.8.2-7_i386.deb) ...
Selecting previously deselected package libgtk2.0-0.
Unpacking libgtk2.0-0 (from .../libgtk2.0-0_2.12.7-1_i386.deb) ...
Selecting previously deselected package libglade2-0.
Unpacking libglade2-0 (from .../libglade2-0_1%3a2.6.2-1_i386.deb) ...
Selecting previously deselected package libesd0.
Unpacking libesd0 (from .../libesd0_0.2.36-3_i386.deb) ...
Selecting previously deselected package libdbus-glib-1-2.
Unpacking libdbus-glib-1-2 (from .../libdbus-glib-1-2_0.74-1_i386.deb) ...
Selecting previously deselected package libfam0.
Unpacking libfam0 (from .../libfam0_2.7.0-13.1_i386.deb) ...
Selecting previously deselected package libhal1.
Unpacking libhal1 (from .../libhal1_0.5.10-5_i386.deb) ...
Selecting previously deselected package libhal-storage1.
Unpacking libhal-storage1 (from .../libhal-storage1_0.5.10-5_i386.deb) ...
Selecting previously deselected package shared-mime-info.
Unpacking shared-mime-info (from .../shared-mime-info_0.23-1_i386.deb) ...
Selecting previously deselected package libgnomevfs2-common.
Unpacking libgnomevfs2-common (from .../libgnomevfs2-common_1%3a2.20.1-1_all.deb) ...
Selecting previously deselected package libgnomevfs2-0.
Unpacking libgnomevfs2-0 (from .../libgnomevfs2-0_1%3a2.20.1-1_i386.deb) ...
Selecting previously deselected package libgnome2-common.
Unpacking libgnome2-common (from .../libgnome2-common_2.20.1.1-1_all.deb) ...
Selecting previously deselected package libgnome2-0.
Unpacking libgnome2-0 (from .../libgnome2-0_2.20.1.1-1_i386.deb) ...
Selecting previously deselected package libgail18.
Unpacking libgail18 (from .../libgail18_1.20.2-1_i386.deb) ...
Selecting previously deselected package libgail-common.
Unpacking libgail-common (from .../libgail-common_1.20.2-1_i386.deb) ...
Selecting previously deselected package libgnomecanvas2-common.
Unpacking libgnomecanvas2-common (from .../libgnomecanvas2-common_2.20.1.1-1_all.deb) ...
Selecting previously deselected package libgnomecanvas2-0.
Unpacking libgnomecanvas2-0 (from .../libgnomecanvas2-0_2.20.1.1-1_i386.deb) ...
Selecting previously deselected package libbonoboui2-0.
Unpacking libbonoboui2-0 (from .../libbonoboui2-0_2.21.90-1_i386.deb) ...
Selecting previously deselected package libboost-dev.
Unpacking libboost-dev (from .../libboost-dev_1.34.1-6_i386.deb) ...
Selecting previously deselected package libboost-python1.34.1.
Unpacking libboost-python1.34.1 (from .../libboost-python1.34.1_1.34.1-6_i386.deb) ...
Selecting previously deselected package python2.4-dev.
Unpacking python2.4-dev (from .../python2.4-dev_2.4.4-7_i386.deb) ...
Selecting previously deselected package libboost-python-dev.
Unpacking libboost-python-dev (from .../libboost-python-dev_1.34.1-6_i386.deb) ...
Selecting previously deselected package libpng12-dev.
Unpacking libpng12-dev (from .../libpng12-dev_1.2.15~beta5-3_i386.deb) ...
Selecting previously deselected package libcairo2-dev.
Unpacking libcairo2-dev (from .../libcairo2-dev_1.4.14-1_i386.deb) ...
Selecting previously deselected package libcroco3.
Unpacking libcroco3 (from .../libcroco3_0.6.1-1_i386.deb) ...
Selecting previously deselected package libffi4.
Unpacking libffi4 (from .../libffi4_4.3-20080202-1_i386.deb) ...
Selecting previously deselected package libffi4-dev.
Unpacking libffi4-dev (from .../libffi4-dev_4.3-20080202-1_i386.deb) ...
Selecting previously deselected package libgda2-common.
Unpacking libgda2-common (from .../libgda2-common_1.2.4-1_all.deb) ...
Selecting previously deselected package libxslt1.1.
Unpacking libxslt1.1 (from .../libxslt1.1_1.1.22-1_i386.deb) ...
Selecting previously deselected package libgda2-3.
Unpacking libgda2-3 (from .../libgda2-3_1.2.4-1_i386.deb) ...
Selecting previously deselected package libgdl-1-common.
Unpacking libgdl-1-common (from .../libgdl-1-common_0.7.8-1_all.deb) ...
Selecting previously deselected package libgnome-keyring0.
Unpacking libgnome-keyring0 (from .../libgnome-keyring0_2.20.3-1_i386.deb) ...
Selecting previously deselected package libgnomeui-common.
Unpacking libgnomeui-common (from .../libgnomeui-common_2.20.1.1-1_all.deb) ...
Selecting previously deselected package libgnomeui-0.
Unpacking libgnomeui-0 (from .../libgnomeui-0_2.20.1.1-1_i386.deb) ...
Selecting previously deselected package libgdl-1-0.
Unpacking libgdl-1-0 (from .../libgdl-1-0_0.7.8-1_i386.deb) ...
Selecting previously deselected package libgdl-gnome-1-0.
Unpacking libgdl-gnome-1-0 (from .../libgdl-gnome-1-0_0.7.8-1_i386.deb) ...
Selecting previously deselected package xbase-clients.
Unpacking xbase-clients (from .../xbase-clients_1%3a7.3+10_all.deb) ...
Selecting previously deselected package libgksu1.2-0.
Unpacking libgksu1.2-0 (from .../libgksu1.2-0_1.3.8-1_i386.deb) ...
Selecting previously deselected package libgksuui1.0-1.
Unpacking libgksuui1.0-1 (from .../libgksuui1.0-1_1.0.7-2_i386.deb) ...
Selecting previously deselected package libstartup-notification0.
Unpacking libstartup-notification0 (from .../libstartup-notification0_0.9-1_i386.deb) ...
Selecting previously deselected package libgnome-desktop-2.
Unpacking libgnome-desktop-2 (from .../libgnome-desktop-2_2.20.3-1_i386.deb) ...
Selecting previously deselected package libgnome-media0.
Unpacking libgnome-media0 (from .../libgnome-media0_2.20.1-3_i386.deb) ...
Selecting previously deselected package libgnomecups1.0-1.
Unpacking libgnomecups1.0-1 (from .../libgnomecups1.0-1_0.2.3-1_i386.deb) ...
Selecting previously deselected package libgnomeprint2.2-data.
Unpacking libgnomeprint2.2-data (from .../libgnomeprint2.2-data_2.18.3-1_all.deb) ...
Selecting previously deselected package libgnomeprint2.2-0.
Unpacking libgnomeprint2.2-0 (from .../libgnomeprint2.2-0_2.18.3-1_i386.deb) ...
Selecting previously deselected package libgnomeprintui2.2-common.
Unpacking libgnomeprintui2.2-common (from .../libgnomeprintui2.2-common_2.18.2-1_all.deb) ...
Selecting previously deselected package libgnomeprintui2.2-0.
Unpacking libgnomeprintui2.2-0 (from .../libgnomeprintui2.2-0_2.18.2-1_i386.deb) ...
Selecting previously deselected package libgsf-1-common.
Unpacking libgsf-1-common (from .../libgsf-1-common_1.14.7-2_all.deb) ...
Selecting previously deselected package libgsf-1-114.
Unpacking libgsf-1-114 (from .../libgsf-1-114_1.14.7-2_i386.deb) ...
Selecting previously deselected package libpango1.0-dev.
Unpacking libpango1.0-dev (from .../libpango1.0-dev_1.18.4-1_i386.deb) ...
Selecting previously deselected package libgtk2.0-dev.
Unpacking libgtk2.0-dev (from .../libgtk2.0-dev_2.12.7-1_i386.deb) ...
Selecting previously deselected package libgtkhtml2-0.
Unpacking libgtkhtml2-0 (from .../libgtkhtml2-0_2.11.1-1_i386.deb) ...
Selecting previously deselected package libgtksourceview-common.
Unpacking libgtksourceview-common (from .../libgtksourceview-common_1.8.5-1_all.deb) ...
Selecting previously deselected package libgtksourceview1.0-0.
Unpacking libgtksourceview1.0-0 (from .../libgtksourceview1.0-0_1.8.5-1_i386.deb) ...
Selecting previously deselected package libgtkspell0.
Unpacking libgtkspell0 (from .../libgtkspell0_2.0.10-4_i386.deb) ...
Selecting previously deselected package libgtop2-common.
Unpacking libgtop2-common (from .../libgtop2-common_2.20.1-1_all.deb) ...
Selecting previously deselected package libgtop2-7.
Unpacking libgtop2-7 (from .../libgtop2-7_2.20.1-1_i386.deb) ...
Selecting previously deselected package libhunspell-1.1-0.
Unpacking libhunspell-1.1-0 (from .../libhunspell-1.1-0_1.1.9-1_i386.deb) ...
Selecting previously deselected package sgml-base.
Unpacking sgml-base (from .../sgml-base_1.26_all.deb) ...
Selecting previously deselected package metacity-common.
Unpacking metacity-common (from .../metacity-common_1%3a2.20.2-1_all.deb) ...
Selecting previously deselected package libmetacity0.
Unpacking libmetacity0 (from .../libmetacity0_1%3a2.20.2-1_i386.deb) ...
Selecting previously deselected package libnspr4-0d.
Unpacking libnspr4-0d (from .../libnspr4-0d_4.7.0~1.9b1-2_i386.deb) ...
Selecting previously deselected package libmozjs0d.
Unpacking libmozjs0d (from .../libmozjs0d_1.8.1.12-1_i386.deb) ...
Selecting previously deselected package libnspr4-dev.
Unpacking libnspr4-dev (from .../libnspr4-dev_4.7.0~1.9b1-2_i386.deb) ...
Selecting previously deselected package libmozjs-dev.
Unpacking libmozjs-dev (from .../libmozjs-dev_1.8.1.12-1_all.deb) ...
Selecting previously deselected package libnautilus-burn4.
Unpacking libnautilus-burn4 (from .../libnautilus-burn4_2.20.0-1_i386.deb) ...
Selecting previously deselected package libsqlite3-0.
Unpacking libsqlite3-0 (from .../libsqlite3-0_3.4.2-2_i386.deb) ...
Selecting previously deselected package libnss3-1d.
Unpacking libnss3-1d (from .../libnss3-1d_3.12.0~1.9b1-2_i386.deb) ...
Selecting previously deselected package libnss3-dev.
Unpacking libnss3-dev (from .../libnss3-dev_3.12.0~1.9b1-2_i386.deb) ...
Selecting previously deselected package libpanel-applet2-0.
Unpacking libpanel-applet2-0 (from .../libpanel-applet2-0_2.20.3-1_i386.deb) ...
Selecting previously deselected package librsvg2-2.
Unpacking librsvg2-2 (from .../librsvg2-2_2.20.0-1_i386.deb) ...
Selecting previously deselected package libslang2-dev.
Unpacking libslang2-dev (from .../libslang2-dev_2.1.3-2_i386.deb) ...
Selecting previously deselected package libtotem-plparser7.
Unpacking libtotem-plparser7 (from .../libtotem-plparser7_2.20.3-1_i386.deb) ...
Selecting previously deselected package libwnck-common.
Unpacking libwnck-common (from .../libwnck-common_2.20.3-1_all.deb) ...
Selecting previously deselected package libxres1.
Unpacking libxres1 (from .../libxres1_2%3a1.0.3-1_i386.deb) ...
Selecting previously deselected package libwnck22.
Unpacking libwnck22 (from .../libwnck22_2.20.3-1_i386.deb) ...
Selecting previously deselected package libxine1-bin.
Unpacking libxine1-bin (from .../libxine1-bin_1.1.10.1-1_i386.deb) ...
Selecting previously deselected package libxine-dev.
Unpacking libxine-dev (from .../libxine-dev_1.1.10.1-1_i386.deb) ...
Selecting previously deselected package libxul-common.
Unpacking libxul-common (from .../libxul-common_1.8.1.12-1_all.deb) ...
Selecting previously deselected package libxul0d.
Unpacking libxul0d (from .../libxul0d_1.8.1.12-1_i386.deb) ...
Selecting previously deselected package xulrunner.
Unpacking xulrunner (from .../xulrunner_1.8.1.12-1_i386.deb) ...
Selecting previously deselected package libxul-dev.
Unpacking libxul-dev (from .../libxul-dev_1.8.1.12-1_all.deb) ...
Selecting previously deselected package python-cairo.
Unpacking python-cairo (from .../python-cairo_1.4.12-1_i386.deb) ...
Selecting previously deselected package python-dbus.
Unpacking python-dbus (from .../python-dbus_0.82.4-1_i386.deb) ...
Selecting previously deselected package python-dev.
Unpacking python-dev (from .../python-dev_2.4.4-6_all.deb) ...
Selecting previously deselected package python-gobject.
Unpacking python-gobject (from .../python-gobject_2.14.1-1_i386.deb) ...
Selecting previously deselected package python-numeric.
Unpacking python-numeric (from .../python-numeric_24.2-8_i386.deb) ...
Selecting previously deselected package python-gtk2.
Unpacking python-gtk2 (from .../python-gtk2_2.12.1-1_i386.deb) ...
Selecting previously deselected package python-pyorbit.
Unpacking python-pyorbit (from .../python-pyorbit_2.14.3-2_i386.deb) ...
Selecting previously deselected package python-gnome2-desktop.
Unpacking python-gnome2-desktop (from .../python-gnome2-desktop_2.20.0-1_i386.deb) ...
Selecting previously deselected package python-gnome2-extras.
Unpacking python-gnome2-extras (from .../python-gnome2-extras_2.14.3-1+b1_i386.deb) ...
Selecting previously deselected package python-gnome2-extras-dev.
Unpacking python-gnome2-extras-dev (from .../python-gnome2-extras-dev_2.14.3-1_all.deb) ...
Selecting previously deselected package python-gobject-dev.
Unpacking python-gobject-dev (from .../python-gobject-dev_2.14.1-1_all.deb) ...
Selecting previously deselected package python-gtk2-dev.
Unpacking python-gtk2-dev (from .../python-gtk2-dev_2.12.1-1_all.deb) ...
Selecting previously deselected package python-pyrex.
Unpacking python-pyrex (from .../python-pyrex_0.9.6.4-1_all.deb) ...
Setting up libxau6 (1:1.0.3-2) ...
Setting up libxdmcp6 (1:1.0.2-2) ...
Setting up libx11-data (2:1.0.3-7) ...
Setting up libx11-6 (2:1.0.3-7) ...
Setting up libxext6 (1:1.0.3-2) ...
Setting up libdmx1 (1:1.0.2-2) ...
Setting up libice6 (2:1.0.4-1) ...
Setting up x11proto-core-dev (7.0.11-1) ...
Setting up libice-dev (2:1.0.4-1) ...
Setting up libsm6 (2:1.0.3-1+b1) ...
Setting up libsm-dev (2:1.0.3-1+b1) ...
Setting up libxau-dev (1:1.0.3-2) ...
Setting up libxdmcp-dev (1:1.0.2-2) ...
Setting up x11proto-input-dev (1.4.2-1) ...
Setting up x11proto-xext-dev (7.0.2-5) ...
Setting up x11proto-kb-dev (1.0.3-2) ...
Setting up xtrans-dev (1.0.4-1) ...
Setting up libxfixes3 (1:4.0.3-2) ...
Setting up libxcomposite1 (1:0.4.0-1) ...
Setting up x11proto-fixes-dev (4.0-2) ...
Setting up x11proto-composite-dev (1:0.4-2) ...
Setting up libxrender1 (1:0.9.4-1) ...
Setting up libxcursor1 (1:1.1.9-1) ...
Setting up x11proto-render-dev (2:0.9.3-2) ...
Setting up libxdamage1 (1:1.1.1-3) ...
Setting up x11proto-damage-dev (1.1.0-2) ...
Setting up libexpat1 (1.95.8-4) ...
Setting up libfreetype6 (2.3.5-1+b1) ...
Setting up ucf (3.004) ...
Setting up libmagic1 (4.23-2) ...
Setting up file (4.23-2) ...
Setting up libnewt0.52 (0.52.2-11.1) ...
Setting up libpopt0 (1.10-3) ...
Setting up whiptail (0.52.2-11.1) ...
Setting up defoma (0.11.10-0.2) ...
Setting up ttf-dejavu-core (2.23-1) ...
Setting up ttf-dejavu-extra (2.23-1) ...
Setting up ttf-dejavu (2.23-1) ...
Setting up fontconfig-config (2.5.0-2) ...
Setting up libfontconfig1 (2.5.0-2) ...
Setting up libxft2 (2.1.12-2) ...
Setting up libexpat1-dev (1.95.8-4) ...
Setting up zlib1g-dev (1:1.2.3.3.dfsg-11) ...
Setting up libfreetype6-dev (2.3.5-1+b1) ...
Setting up libpcre3 (7.6-1) ...
Setting up libglib2.0-0 (2.14.6-1) ...
Setting up pkg-config (0.22-1) ...
Setting up libfontconfig1-dev (2.5.0-2) ...
Setting up libxi6 (2:1.1.3-1) ...
Setting up libxinerama1 (1:1.0.2-1) ...
Setting up x11proto-xinerama-dev (1.1.2-4) ...
Setting up libxrandr2 (2:1.2.2-1) ...
Setting up x11proto-randr-dev (1.2.1-2) ...
Setting up libxt6 (1:1.0.5-3) ...
Setting up libxv1 (1:1.0.3-1) ...
Setting up x11proto-video-dev (2.2.2-4) ...
Setting up libpng12-0 (1.2.15~beta5-3) ...
Setting up libxmu6 (2:1.0.4-1) ...
Setting up libxpm4 (1:3.5.7-1) ...
Setting up libxaw7 (2:1.0.4-1) ...
Setting up libxkbfile1 (1:1.0.4-1) ...
Setting up libxmuu1 (2:1.0.4-1) ...
Setting up x11-apps (7.3+1) ...
Setting up x11-session-utils (7.3+1) ...
Setting up libfontenc1 (1:1.0.4-2) ...
Setting up libdrm2 (2.3.0-4) ...
Setting up libxxf86vm1 (1:1.0.1-2) ...
Setting up libgl1-mesa-glx (7.0.2-4) ...
Setting up libxtst6 (2:1.0.3-1) ...
Setting up libxxf86dga1 (2:1.0.2-1) ...
Setting up x11-utils (7.3+1) ...
Setting up libfs6 (2:1.0.0-4) ...
Setting up x11-xfs-utils (7.3+1) ...
Setting up x11-xkb-utils (7.3+1) ...
Setting up libxtrap6 (1:1.0.0-4) ...
Setting up libxxf86misc1 (1:1.0.1-2) ...
Setting up x11-xserver-utils (7.3+2) ...
Setting up xauth (1:1.0.2-2) ...
Setting up xinit (1.0.7-2) ...
Setting up adduser (3.105) ...
Setting up bsdmainutils (6.1.10) ...
Setting up groff-base (1.18.1.1-16) ...
Setting up libncursesw5 (5.6+20080203-1) ...
Setting up libssl0.9.8 (0.9.8g-4) ...
Setting up man-db (2.5.1-2) ...
Building database of manual pages ...
Setting up gettext-base (0.17-2) ...
Setting up libkeyutils1 (1.2-6) ...
Setting up libkrb53 (1.6.dfsg.3~beta1-2) ...
Setting up mime-support (3.40-1) ...
Setting up python2.4-minimal (2.4.4-7) ...
Setting up python2.4 (2.4.4-7) ...
Setting up python-minimal (2.4.4-6) ...
Setting up python (2.4.4-6) ...
Setting up python-central (0.5.15-0.1) ...
Setting up python-support (0.7.6) ...
Setting up html2text (1.3.2a-3) ...
Setting up libgomp1 (4.3-20080202-1) ...
Setting up gettext (0.17-2) ...
Setting up intltool-debian (0.35.0+20060710.1) ...
Setting up po-debconf (1.0.11) ...
Setting up debhelper (6.0.5) ...
Setting up cdbs (0.4.51) ...
Setting up chrpath (0.13-2) ...
Setting up libdbus-1-3 (1.1.2-1) ...
Setting up dbus (1.1.2-1) ...
Adding system user `messagebus' (UID 105) ...
Adding new group `messagebus' (GID 106) ...
Adding new user `messagebus' (UID 105) with group `messagebus' ...
Not creating home directory `/var/run/dbus'.
Starting system message bus: dbus.
Setting up esound-common (0.2.36-3) ...
Setting up fontconfig (2.5.0-2) ...
Updating font configuration of fontconfig...
Cleaning up category cid..
Cleaning up category truetype..
Cleaning up category type1..
Updating category type1..
Updating category truetype..
Updating category cid..
Updating fontconfig cache for /usr/share/fonts/truetype/ttf-dejavu
Cleaning up old fontconfig caches... done.
Regenerating fonts cache... done.
Setting up gconf2-common (2.20.1-2) ...
Creating config file /etc/gconf/2/path with new version
Setting up libidl0 (0.8.9-0.1) ...
Setting up liborbit2 (1:2.14.10-0.1) ...
Setting up libxml2 (2.6.31.dfsg-1) ...
Setting up libgconf2-4 (2.20.1-2+b1) ...
Setting up psmisc (22.6-1) ...
Setting up gconf2 (2.20.1-2+b1) ...
Setting up gnome-media-common (2.20.1-3) ...
Setting up gnome-mime-data (2.18.0-1) ...
Setting up libart-2.0-2 (2.3.20-1) ...
Setting up libaspell15 (0.60.5-2) ...
Setting up libatk1.0-0 (1.20.0-1) ...
Setting up libglib2.0-dev (2.14.6-1) ...
Setting up libatk1.0-dev (1.20.0-1) ...
Setting up libaudiofile0 (0.2.6-7) ...
Setting up libavahi-common-data (0.6.22-2) ...
Setting up libavahi-common3 (0.6.22-2) ...
Setting up libavahi-client3 (0.6.22-2) ...
Setting up libavahi-glib1 (0.6.22-2) ...
Setting up libbonobo2-common (2.21.90-1) ...
Setting up libbonobo2-0 (2.21.90-1) ...
Setting up libbonoboui2-common (2.21.90-1) ...
Setting up libcairo2 (1.4.14-1) ...
Setting up libcupsys2 (1.3.5-1+b1) ...
Setting up libgtk2.0-common (2.12.7-1) ...
Setting up libjpeg62 (6b-14) ...
Setting up libdatrie0 (0.1.3-1) ...
Setting up libpango1.0-common (1.18.4-1) ...
I: Purging /etc/pango/pango.modules
Cleaning up font configuration of pango...
Updating font configuration of pango...
Cleaning up category xfont..
Updating category xfont..
*** You don't have any defomized font packages.
*** So we are trying to force to generate pangox.aliases...
Setting up libthai-data (0.1.9-3) ...
Setting up libthai0 (0.1.9-3) ...
Setting up libpango1.0-0 (1.18.4-1) ...
Setting up libtiff4 (3.8.2-7) ...
Setting up libgtk2.0-0 (2.12.7-1) ...
Removing generated module files coming from the previous Gtk binary version...
Setting up libglade2-0 (1:2.6.2-1) ...
Setting up libesd0 (0.2.36-3) ...
Setting up libdbus-glib-1-2 (0.74-1) ...
Setting up libfam0 (2.7.0-13.1) ...
Setting up libhal1 (0.5.10-5) ...
Setting up libhal-storage1 (0.5.10-5) ...
Setting up shared-mime-info (0.23-1) ...
Setting up libgnomevfs2-common (1:2.20.1-1) ...
Setting up libgnomevfs2-0 (1:2.20.1-1) ...
Setting up libgnome2-common (2.20.1.1-1) ...
Setting up libgnome2-0 (2.20.1.1-1) ...
Setting up libgail18 (1.20.2-1) ...
Setting up libgail-common (1.20.2-1) ...
Setting up libgnomecanvas2-common (2.20.1.1-1) ...
Setting up libgnomecanvas2-0 (2.20.1.1-1) ...
Setting up libbonoboui2-0 (2.21.90-1) ...
Setting up libboost-dev (1.34.1-6) ...
Setting up libboost-python1.34.1 (1.34.1-6) ...
Setting up python2.4-dev (2.4.4-7) ...
Setting up libboost-python-dev (1.34.1-6) ...
Setting up libpng12-dev (1.2.15~beta5-3) ...
Setting up libcroco3 (0.6.1-1) ...
Setting up libffi4 (4.3-20080202-1) ...
Setting up libffi4-dev (4.3-20080202-1) ...
Setting up libgda2-common (1.2.4-1) ...
Setting up libxslt1.1 (1.1.22-1) ...
Setting up libgda2-3 (1.2.4-1) ...
Setting up libgdl-1-common (0.7.8-1) ...
Setting up libgnome-keyring0 (2.20.3-1) ...
Setting up libgnomeui-common (2.20.1.1-1) ...
Setting up libgnomeui-0 (2.20.1.1-1) ...
Setting up libgdl-1-0 (0.7.8-1) ...
Setting up libgdl-gnome-1-0 (0.7.8-1) ...
Setting up xbase-clients (1:7.3+10) ...
Setting up libgksu1.2-0 (1.3.8-1) ...
Setting up libgksuui1.0-1 (1.0.7-2) ...
Setting up libstartup-notification0 (0.9-1) ...
Setting up libgnome-desktop-2 (2.20.3-1) ...
Setting up libgnome-media0 (2.20.1-3) ...
Setting up libgnomecups1.0-1 (0.2.3-1) ...
Setting up libgnomeprint2.2-data (2.18.3-1) ...
Setting up libgnomeprint2.2-0 (2.18.3-1) ...
Setting up libgnomeprintui2.2-common (2.18.2-1) ...
Setting up libgnomeprintui2.2-0 (2.18.2-1) ...
Setting up libgsf-1-common (1.14.7-2) ...
Setting up libgsf-1-114 (1.14.7-2) ...
Setting up libgtkhtml2-0 (2.11.1-1) ...
Setting up libgtksourceview-common (1.8.5-1) ...
Setting up libgtksourceview1.0-0 (1.8.5-1) ...
Setting up libgtkspell0 (2.0.10-4) ...
Setting up libgtop2-common (2.20.1-1) ...
Setting up libgtop2-7 (2.20.1-1) ...
Setting up libhunspell-1.1-0 (1.1.9-1) ...
Setting up sgml-base (1.26) ...
Setting up metacity-common (1:2.20.2-1) ...
Setting up libmetacity0 (1:2.20.2-1) ...
Setting up libnspr4-0d (4.7.0~1.9b1-2) ...
Setting up libmozjs0d (1.8.1.12-1) ...
Setting up libnspr4-dev (4.7.0~1.9b1-2) ...
Setting up libmozjs-dev (1.8.1.12-1) ...
Setting up libnautilus-burn4 (2.20.0-1) ...
Setting up libsqlite3-0 (3.4.2-2) ...
Setting up libnss3-1d (3.12.0~1.9b1-2) ...
Setting up libnss3-dev (3.12.0~1.9b1-2) ...
Setting up libpanel-applet2-0 (2.20.3-1) ...
Setting up librsvg2-2 (2.20.0-1) ...
Setting up libslang2-dev (2.1.3-2) ...
Setting up libtotem-plparser7 (2.20.3-1) ...
Setting up libwnck-common (2.20.3-1) ...
Setting up libxres1 (2:1.0.3-1) ...
Setting up libwnck22 (2.20.3-1) ...
Setting up libxine1-bin (1.1.10.1-1) ...
Setting up libxine-dev (1.1.10.1-1) ...
Setting up libxul-common (1.8.1.12-1) ...
Setting up libxul0d (1.8.1.12-1) ...
Setting up xulrunner (1.8.1.12-1) ...
Setting up libxul-dev (1.8.1.12-1) ...
Setting up python-cairo (1.4.12-1) ...
Setting up python-dbus (0.82.4-1) ...
Remove stale byte-compiled files...
Setting up python-dev (2.4.4-6) ...
Setting up python-gobject (2.14.1-1) ...
Setting up python-numeric (24.2-8) ...
Setting up python-gtk2 (2.12.1-1) ...
Setting up python-pyorbit (2.14.3-2) ...
Setting up python-gnome2-desktop (2.20.0-1) ...
Setting up python-gnome2-extras (2.14.3-1+b1) ...
Setting up python-gnome2-extras-dev (2.14.3-1) ...
Setting up python-gobject-dev (2.14.1-1) ...
Setting up python-pyrex (0.9.6.4-1) ...
Setting up libxext-dev (1:1.0.3-2) ...
Setting up libx11-dev (2:1.0.3-7) ...
Setting up libxfixes-dev (1:4.0.3-2) ...
Setting up libxcomposite-dev (1:0.4.0-1) ...
Setting up libxrender-dev (1:0.9.4-1) ...
Setting up libxcursor-dev (1:1.1.9-1) ...
Setting up libxdamage-dev (1:1.1.1-3) ...
Setting up libxft-dev (2.1.12-2) ...
Setting up libxi-dev (2:1.1.3-1) ...
Setting up libxinerama-dev (1:1.0.2-1) ...
Setting up libxrandr-dev (2:1.2.2-1) ...
Setting up libxv-dev (1:1.0.3-1) ...
Setting up libcairo2-dev (1.4.14-1) ...
Setting up libpango1.0-dev (1.18.4-1) ...
Setting up libgtk2.0-dev (2.12.7-1) ...
Setting up python-gtk2-dev (2.12.1-1) ...
Checking correctness of source dependencies...
Kernel: Linux 2.6.18-3-amd64 i386 (x86_64)
Toolchain package versions: libc6-dev_2.7-6 linux-libc-dev_2.6.24-4 gcc-4.2_4.2.3-1 g++-4.2_4.2.3-1 binutils_2.18.1~cvs20080103-1 libstdc++6-4.2-dev_4.2.3-1 libstdc++6_4.3-20080202-1
------------------------------------------------------------------------------
gpg: Signature made Tue Feb 12 13:28:40 2008 CET using DSA key ID 78D621B4
gpg: Can't check signature: public key not found
dpkg-source: extracting miro in miro-1.1.2
dpkg-source: unpacking miro_1.1.2.orig.tar.gz
dpkg-source: applying ./miro_1.1.2-1.diff.gz
dpkg-buildpackage: source package miro
dpkg-buildpackage: source version 1.1.2-1
dpkg-buildpackage: source changed by Uwe Hermann <uwe@debian.org>
dpkg-buildpackage: host architecture i386
/usr/bin/fakeroot debian/rules clean
pyversions: missing XS-Python-Version in control file, fall back to debian/pyversions
test -x debian/rules
dh_testroot
/usr/bin/make -f debian/rules reverse-config
pyversions: missing XS-Python-Version in control file, fall back to debian/pyversions
make[1]: Entering directory `/build/user/miro-1.1.2'
make[1]: Nothing to be done for `reverse-config'.
make[1]: Leaving directory `/build/user/miro-1.1.2'
if [ "reverse-patches" = "reverse-patches" ]; then rm -f debian/stamp-patched; fi
patches: debian/patches/10_movies_dir.patch debian/patches/20_no_autoupdate.patch debian/patches/30_de_po_typo.patch debian/patches/40_feedparser.patch debian/patches/50_xine_extractor_path.patch debian/patches/60_xine_driver.patch
Patch debian/patches/60_xine_driver.patch is not applied.
Patch debian/patches/50_xine_extractor_path.patch is not applied.
Patch debian/patches/40_feedparser.patch is not applied.
Patch debian/patches/30_de_po_typo.patch is not applied.
Patch debian/patches/20_no_autoupdate.patch is not applied.
Patch debian/patches/10_movies_dir.patch is not applied.
if [ "reverse-patches" != "reverse-patches" ]; then touch debian/stamp-patched; fi
if [ "reverse-patches" != "reverse-patches" ] ; then \
/usr/bin/make -f debian/rules update-config ; \
fi
for dir in debian/patches ; do \
rm -f $dir/*.log ; \
done
dh_clean
cd . && python platform/gtk-x11/setup.py clean -a
Attempting to detect your system information
32bit x86 system detected
Linux operating system detected
Compiling 'new' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/new.py
Starting compile of new
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
Ending compile
Compiling 'channel' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/channel.py
Starting compile of channel
compiling 'feed-settings' subtemplate
Starting compile of feed-settings
Ending compile
compiling 'channel-content' subtemplate
Starting compile of channel-content
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
Ending compile
Ending compile
Compiling 'playlist-folder' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/playlist_folder.py
Starting compile of playlist-folder
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
Ending compile
Compiling 'channel-content' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/channel_content.py
Starting compile of channel-content
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
Ending compile
Compiling 'guidetab' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/guidetab.py
Starting compile of guidetab
Ending compile
Compiling 'feedtab' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/feedtab.py
Starting compile of feedtab
Ending compile
Compiling 'static-tab-sort-bar' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/static_tab_sort_bar.py
Starting compile of static-tab-sort-bar
compiling 'sort-bar' subtemplate
Starting compile of sort-bar
Ending compile
Ending compile
Compiling 'guide-loading' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/guide_loading.py
Starting compile of guide-loading
Ending compile
Compiling 'download' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/download.py
Starting compile of download
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
Ending compile
Compiling 'download-item-inner' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/download_item_inner.py
Starting compile of download-item-inner
compiling 'download-item-thumbnail' subtemplate
Starting compile of download-item-thumbnail
Ending compile
compiling 'download-item-details' subtemplate
Starting compile of download-item-details
Ending compile
compiling 'download-item-description' subtemplate
Starting compile of download-item-description
Ending compile
Ending compile
Compiling 'video-info' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/video_info.py
Starting compile of video-info
Ending compile
Compiling 'library' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/library.py
Starting compile of library
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
Ending compile
Compiling 'tablist' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/tablist.py
Starting compile of tablist
compiling 'guidetab' subtemplate
Starting compile of guidetab
Ending compile
compiling 'statictab' subtemplate
Starting compile of statictab
Ending compile
compiling 'feedtab' subtemplate
Starting compile of feedtab
Ending compile
compiling 'channelfoldertab' subtemplate
Starting compile of channelfoldertab
Ending compile
compiling 'playlisttab' subtemplate
Starting compile of playlisttab
Ending compile
compiling 'playlistfoldertab' subtemplate
Starting compile of playlistfoldertab
Ending compile
Ending compile
Compiling 'sort-bar' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/sort_bar.py
Starting compile of sort-bar
Ending compile
Compiling 'download-item-details' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/download_item_details.py
Starting compile of download-item-details
Ending compile
Compiling 'feed-settings' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/feed_settings.py
Starting compile of feed-settings
Ending compile
Compiling 'download-item' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/download_item.py
Starting compile of download-item
Ending compile
Compiling 'playlistfoldertab' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/playlistfoldertab.py
Starting compile of playlistfoldertab
Ending compile
Compiling 'search' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/search.py
Starting compile of search
in raw for br
ending raw for br
in raw for br
ending raw for br
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
Ending compile
Compiling 'multi-channel' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/multi_channel.py
Starting compile of multi-channel
in raw for br
ending raw for br
Ending compile
Compiling 'external-playback-continue' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/external_playback_continue.py
Starting compile of external-playback-continue
compiling 'video-info' subtemplate
Starting compile of video-info
Ending compile
Ending compile
Compiling 'statictab' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/statictab.py
Starting compile of statictab
Ending compile
Compiling 'download-item-thumbnail' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/download_item_thumbnail.py
Starting compile of download-item-thumbnail
Ending compile
Compiling 'playlisttab' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/playlisttab.py
Starting compile of playlisttab
Ending compile
Compiling 'playlist' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/playlist.py
Starting compile of playlist
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
Ending compile
Compiling 'multi-playlist' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/multi_playlist.py
Starting compile of multi-playlist
in raw for br
ending raw for br
Ending compile
Compiling 'channelfoldertab' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/channelfoldertab.py
Starting compile of channelfoldertab
Ending compile
Compiling 'channel-folder' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/channel_folder.py
Starting compile of channel-folder
compiling 'channel-content' subtemplate
Starting compile of channel-content
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
Ending compile
Ending compile
Compiling 'external-playback' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/external_playback.py
Starting compile of external-playback
in raw for br
ending raw for br
in raw for br
ending raw for br
in raw for strong
ending raw for strong
in raw for br
ending raw for br
in raw for strong
ending raw for strong
compiling 'video-info' subtemplate
Starting compile of video-info
Ending compile
Ending compile
Compiling 'download-item-description' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/download_item_description.py
Starting compile of download-item-description
Ending compile
Compiling unittest
Compiling 'unittest/execute-template' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/unittest/execute_template.py
Starting compile of unittest/execute-template
Ending compile
Compiling 'unittest/view' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/unittest/view.py
Starting compile of unittest/view
compiling 'unittest/include-template' subtemplate
Starting compile of unittest/include-template
Ending compile
compiling 'unittest/include-template' subtemplate
Starting compile of unittest/include-template
Ending compile
Ending compile
Compiling 'unittest/update' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/unittest/update.py
Starting compile of unittest/update
compiling 'unittest/include-template' subtemplate
Starting compile of unittest/include-template
Ending compile
compiling 'unittest/include-template' subtemplate
Starting compile of unittest/include-template
Ending compile
Ending compile
Compiling 'unittest/simple' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/unittest/simple.py
Starting compile of unittest/simple
Ending compile
Compiling 'unittest/replace' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/unittest/replace.py
Starting compile of unittest/replace
compiling 'unittest/include-template' subtemplate
Starting compile of unittest/include-template
Ending compile
Ending compile
Compiling 'unittest/view-double' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/unittest/view_double.py
Starting compile of unittest/view-double
compiling 'unittest/include-template' subtemplate
Starting compile of unittest/include-template
Ending compile
compiling 'unittest/include-template' subtemplate
Starting compile of unittest/include-template
Ending compile
compiling 'unittest/include-template' subtemplate
Starting compile of unittest/include-template
Ending compile
compiling 'unittest/include-template' subtemplate
Starting compile of unittest/include-template
Ending compile
Ending compile
Compiling 'unittest/include-template' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/unittest/include_template.py
Starting compile of unittest/include-template
Ending compile
Compiling 'unittest/update-hide' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/unittest/update_hide.py
Starting compile of unittest/update-hide
compiling 'unittest/include-template' subtemplate
Starting compile of unittest/include-template
Ending compile
compiling 'unittest/include-template' subtemplate
Starting compile of unittest/include-template
Ending compile
Ending compile
Compiling 'unittest/simpleunicode' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/unittest/simpleunicode.py
Starting compile of unittest/simpleunicode
Ending compile
Compiling 'unittest/translationtest' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/unittest/translationtest.py
Starting compile of unittest/translationtest
in raw for span
ending raw for span
Ending compile
Compiling 'unittest/hide' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/unittest/hide.py
Starting compile of unittest/hide
compiling 'unittest/include-template' subtemplate
Starting compile of unittest/include-template
Ending compile
compiling 'unittest/include-template' subtemplate
Starting compile of unittest/include-template
Ending compile
Ending compile
Compiling 'unittest/replace-with-variable' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/unittest/replace_with_variable.py
Starting compile of unittest/replace-with-variable
Ending compile
Compiling 'unittest/view-container-div' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/unittest/view_container_div.py
Starting compile of unittest/view-container-div
compiling 'unittest/include-template' subtemplate
Starting compile of unittest/include-template
Ending compile
compiling 'unittest/include-template' subtemplate
Starting compile of unittest/include-template
Ending compile
Ending compile
Compiling 'unittest/include' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/unittest/include.py
Starting compile of unittest/include
Ending compile
Libraries mt
Using the Xine driver hack. If you experience trouble playing video,
try setting USE_XINE_HACK to False in setup.py.
running clean
'build/lib.linux-i686-2.4' does not exist -- can't clean it
'build/bdist.linux-i686' does not exist -- can't clean it
'build/scripts-2.4' does not exist -- can't clean it
rm -f python-build-stamp-*
find . -name '*.pyc' -exec rm '{}' ';'
rm -rf portable/compiled_templates/*
rm -f portable/database.c
rm -f portable/sorts.c
rm -f portable/dl_daemon/daemon.py
rm -f platform/gtk-x11/xine/xine.c
rm -f platform/gtk-x11/xine/xine_extractor
rm -f platform/gtk-x11/frontend_implementation/MozillaBrowser.c
rm -f platform/gtk-x11/frontend_implementation/MozillaBrowser.h
rm -f platform/gtk-x11/frontend_implementation/MozillaBrowser.pxi
rm -f platform/gtk-x11/frontend_implementation/xlibhelper.c
rm -f platform/gtk-x11/miro.1.gz
rm -f platform/gtk-x11/miro
# rm -f portable/*.pyc
# rm -f resources/locale/*.mo
dpkg-source -b miro-1.1.2
dpkg-source: building miro using existing miro_1.1.2.orig.tar.gz
dpkg-source: building miro in miro_1.1.2-1.diff.gz
dpkg-source: building miro in miro_1.1.2-1.dsc
debian/rules build
pyversions: missing XS-Python-Version in control file, fall back to debian/pyversions
test -x debian/rules
mkdir -p "."
/usr/bin/make -f debian/rules reverse-config
pyversions: missing XS-Python-Version in control file, fall back to debian/pyversions
make[1]: Entering directory `/build/user/miro-1.1.2'
make[1]: Nothing to be done for `reverse-config'.
make[1]: Leaving directory `/build/user/miro-1.1.2'
if [ "debian/stamp-patched" = "reverse-patches" ]; then rm -f debian/stamp-patched; fi
patches: debian/patches/10_movies_dir.patch debian/patches/20_no_autoupdate.patch debian/patches/30_de_po_typo.patch debian/patches/40_feedparser.patch debian/patches/50_xine_extractor_path.patch debian/patches/60_xine_driver.patch
Trying patch debian/patches/10_movies_dir.patch at level 1 ... 0 ... success.
Trying patch debian/patches/20_no_autoupdate.patch at level 1 ... 0 ... success.
Trying patch debian/patches/30_de_po_typo.patch at level 1 ... 0 ... success.
Trying patch debian/patches/40_feedparser.patch at level 1 ... 0 ... success.
Trying patch debian/patches/50_xine_extractor_path.patch at level 1 ... 0 ... success.
Trying patch debian/patches/60_xine_driver.patch at level 1 ... success.
if [ "debian/stamp-patched" != "reverse-patches" ]; then touch debian/stamp-patched; fi
if [ "debian/stamp-patched" != "reverse-patches" ] ; then \
/usr/bin/make -f debian/rules update-config ; \
fi
pyversions: missing XS-Python-Version in control file, fall back to debian/pyversions
make[1]: Entering directory `/build/user/miro-1.1.2'
make[1]: Nothing to be done for `update-config'.
make[1]: Leaving directory `/build/user/miro-1.1.2'
cd . && python platform/gtk-x11/setup.py build --build-base="/build/user/miro-1.1.2/./build"
Attempting to detect your system information
32bit x86 system detected
Linux operating system detected
Compiling 'new' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/new.py
Starting compile of new
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
Ending compile
Compiling 'channel' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/channel.py
Starting compile of channel
compiling 'feed-settings' subtemplate
Starting compile of feed-settings
Ending compile
compiling 'channel-content' subtemplate
Starting compile of channel-content
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
Ending compile
Ending compile
Compiling 'playlist-folder' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/playlist_folder.py
Starting compile of playlist-folder
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
Ending compile
Compiling 'channel-content' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/channel_content.py
Starting compile of channel-content
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
Ending compile
Compiling 'guidetab' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/guidetab.py
Starting compile of guidetab
Ending compile
Compiling 'feedtab' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/feedtab.py
Starting compile of feedtab
Ending compile
Compiling 'static-tab-sort-bar' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/static_tab_sort_bar.py
Starting compile of static-tab-sort-bar
compiling 'sort-bar' subtemplate
Starting compile of sort-bar
Ending compile
Ending compile
Compiling 'guide-loading' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/guide_loading.py
Starting compile of guide-loading
Ending compile
Compiling 'download' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/download.py
Starting compile of download
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
Ending compile
Compiling 'download-item-inner' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/download_item_inner.py
Starting compile of download-item-inner
compiling 'download-item-thumbnail' subtemplate
Starting compile of download-item-thumbnail
Ending compile
compiling 'download-item-details' subtemplate
Starting compile of download-item-details
Ending compile
compiling 'download-item-description' subtemplate
Starting compile of download-item-description
Ending compile
Ending compile
Compiling 'video-info' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/video_info.py
Starting compile of video-info
Ending compile
Compiling 'library' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/library.py
Starting compile of library
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
Ending compile
Compiling 'tablist' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/tablist.py
Starting compile of tablist
compiling 'guidetab' subtemplate
Starting compile of guidetab
Ending compile
compiling 'statictab' subtemplate
Starting compile of statictab
Ending compile
compiling 'feedtab' subtemplate
Starting compile of feedtab
Ending compile
compiling 'channelfoldertab' subtemplate
Starting compile of channelfoldertab
Ending compile
compiling 'playlisttab' subtemplate
Starting compile of playlisttab
Ending compile
compiling 'playlistfoldertab' subtemplate
Starting compile of playlistfoldertab
Ending compile
Ending compile
Compiling 'sort-bar' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/sort_bar.py
Starting compile of sort-bar
Ending compile
Compiling 'download-item-details' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/download_item_details.py
Starting compile of download-item-details
Ending compile
Compiling 'feed-settings' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/feed_settings.py
Starting compile of feed-settings
Ending compile
Compiling 'download-item' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/download_item.py
Starting compile of download-item
Ending compile
Compiling 'playlistfoldertab' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/playlistfoldertab.py
Starting compile of playlistfoldertab
Ending compile
Compiling 'search' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/search.py
Starting compile of search
in raw for br
ending raw for br
in raw for br
ending raw for br
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
Ending compile
Compiling 'multi-channel' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/multi_channel.py
Starting compile of multi-channel
in raw for br
ending raw for br
Ending compile
Compiling 'external-playback-continue' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/external_playback_continue.py
Starting compile of external-playback-continue
compiling 'video-info' subtemplate
Starting compile of video-info
Ending compile
Ending compile
Compiling 'statictab' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/statictab.py
Starting compile of statictab
Ending compile
Compiling 'download-item-thumbnail' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/download_item_thumbnail.py
Starting compile of download-item-thumbnail
Ending compile
Compiling 'playlisttab' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/playlisttab.py
Starting compile of playlisttab
Ending compile
Compiling 'playlist' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/playlist.py
Starting compile of playlist
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
Ending compile
Compiling 'multi-playlist' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/multi_playlist.py
Starting compile of multi-playlist
in raw for br
ending raw for br
Ending compile
Compiling 'channelfoldertab' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/channelfoldertab.py
Starting compile of channelfoldertab
Ending compile
Compiling 'channel-folder' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/channel_folder.py
Starting compile of channel-folder
compiling 'channel-content' subtemplate
Starting compile of channel-content
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
compiling 'download-item' subtemplate
Starting compile of download-item
Ending compile
Ending compile
Ending compile
Compiling 'external-playback' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/external_playback.py
Starting compile of external-playback
in raw for br
ending raw for br
in raw for br
ending raw for br
in raw for strong
ending raw for strong
in raw for br
ending raw for br
in raw for strong
ending raw for strong
compiling 'video-info' subtemplate
Starting compile of video-info
Ending compile
Ending compile
Compiling 'download-item-description' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/download_item_description.py
Starting compile of download-item-description
Ending compile
Compiling unittest
Compiling 'unittest/execute-template' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/unittest/execute_template.py
Starting compile of unittest/execute-template
Ending compile
Compiling 'unittest/view' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/unittest/view.py
Starting compile of unittest/view
compiling 'unittest/include-template' subtemplate
Starting compile of unittest/include-template
Ending compile
compiling 'unittest/include-template' subtemplate
Starting compile of unittest/include-template
Ending compile
Ending compile
Compiling 'unittest/update' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/unittest/update.py
Starting compile of unittest/update
compiling 'unittest/include-template' subtemplate
Starting compile of unittest/include-template
Ending compile
compiling 'unittest/include-template' subtemplate
Starting compile of unittest/include-template
Ending compile
Ending compile
Compiling 'unittest/simple' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/unittest/simple.py
Starting compile of unittest/simple
Ending compile
Compiling 'unittest/replace' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/unittest/replace.py
Starting compile of unittest/replace
compiling 'unittest/include-template' subtemplate
Starting compile of unittest/include-template
Ending compile
Ending compile
Compiling 'unittest/view-double' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/unittest/view_double.py
Starting compile of unittest/view-double
compiling 'unittest/include-template' subtemplate
Starting compile of unittest/include-template
Ending compile
compiling 'unittest/include-template' subtemplate
Starting compile of unittest/include-template
Ending compile
compiling 'unittest/include-template' subtemplate
Starting compile of unittest/include-template
Ending compile
compiling 'unittest/include-template' subtemplate
Starting compile of unittest/include-template
Ending compile
Ending compile
Compiling 'unittest/include-template' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/unittest/include_template.py
Starting compile of unittest/include-template
Ending compile
Compiling 'unittest/update-hide' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/unittest/update_hide.py
Starting compile of unittest/update-hide
compiling 'unittest/include-template' subtemplate
Starting compile of unittest/include-template
Ending compile
compiling 'unittest/include-template' subtemplate
Starting compile of unittest/include-template
Ending compile
Ending compile
Compiling 'unittest/simpleunicode' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/unittest/simpleunicode.py
Starting compile of unittest/simpleunicode
Ending compile
Compiling 'unittest/translationtest' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/unittest/translationtest.py
Starting compile of unittest/translationtest
in raw for span
ending raw for span
Ending compile
Compiling 'unittest/hide' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/unittest/hide.py
Starting compile of unittest/hide
compiling 'unittest/include-template' subtemplate
Starting compile of unittest/include-template
Ending compile
compiling 'unittest/include-template' subtemplate
Starting compile of unittest/include-template
Ending compile
Ending compile
Compiling 'unittest/replace-with-variable' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/unittest/replace_with_variable.py
Starting compile of unittest/replace-with-variable
Ending compile
Compiling 'unittest/view-container-div' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/unittest/view_container_div.py
Starting compile of unittest/view-container-div
compiling 'unittest/include-template' subtemplate
Starting compile of unittest/include-template
Ending compile
compiling 'unittest/include-template' subtemplate
Starting compile of unittest/include-template
Ending compile
Ending compile
Compiling 'unittest/include' template to /build/user/miro-1.1.2/resources/../portable/compiled_templates/unittest/include.py
Starting compile of unittest/include
Ending compile
Libraries mt
Using the Xine driver hack. If you experience trouble playing video,
try setting USE_XINE_HACK to False in setup.py.
running build
running build_py
creating /build/user/miro-1.1.2/build
creating /build/user/miro-1.1.2/build/lib.linux-i686-2.4
creating /build/user/miro-1.1.2/build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/databasesanity.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/schema.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/theme.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/filetypes.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/template.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/opml.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/app.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/selection.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/rdfa.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/guide.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/indexes.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/download_utils.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/feedparser.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/template_compiler.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/searchengines.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/httpauth.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/license.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/extrastrings.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/templatehelper.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/views.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/moviedata.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/item.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/olddatabaseupgrade.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/iconcache.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/readwritelock.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/xhtmltools.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/folder.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/util.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/databasehelper.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/prefs.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/playlist.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/fileutil.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/autoupdate.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/singleclick.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/dialogs.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/eventloop.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/flashscraper.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/downloader.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/feed.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/tabs.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/storedatabase.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/templateoptimize.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/menu.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/setup_portable.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/keyboard.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/adscraper.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/maps.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/filters.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/menubar.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/search.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/gtcache.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/subscription.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/autodler.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/httpclient.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/config.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/idlenotifier.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/imageresize.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/databaseupgrade.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/portable/clock.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/platform/gtk-x11/platformutils.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/platform/gtk-x11/resources.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/platform/gtk-x11/coverage.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/platform/gtk-x11/upgrade.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/platform/gtk-x11/mozsetup.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/platform/gtk-x11/__init__.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/platform/gtk-x11/onetime.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/platform/gtk-x11/frontend.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/platform/gtk-x11/idletime.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/platform/gtk-x11/timetemplates.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
copying /build/user/miro-1.1.2/platform/gtk-x11/platformcfg.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro
creating /build/user/miro-1.1.2/build/lib.linux-i686-2.4/miro/frontend_implementation
copying /build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/HTMLDisplay.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/frontend_implementation
copying /build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/gst_extractor.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/frontend_implementation
copying /build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/VideoDisplay.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/frontend_implementation
copying /build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/MainFrame.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/frontend_implementation
copying /build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/__init__.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/frontend_implementation
copying /build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/startup.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/frontend_implementation
copying /build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/xinerenderer.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/frontend_implementation
copying /build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/gstrenderer.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/frontend_implementation
copying /build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/UIBackendDelegate.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/frontend_implementation
copying /build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/gtk_queue.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/frontend_implementation
copying /build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/trayicon.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/frontend_implementation
copying /build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/Application.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/frontend_implementation
copying /build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/callbackhandler.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/frontend_implementation
copying /build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/mainwindowchanger.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/frontend_implementation
creating /build/user/miro-1.1.2/build/lib.linux-i686-2.4/miro/dl_daemon
copying /build/user/miro-1.1.2/portable/dl_daemon/__init__.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/dl_daemon
copying /build/user/miro-1.1.2/portable/dl_daemon/download.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/dl_daemon
copying /build/user/miro-1.1.2/portable/dl_daemon/Democracy_Downloader.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/dl_daemon
copying /build/user/miro-1.1.2/portable/dl_daemon/command.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/dl_daemon
copying /build/user/miro-1.1.2/portable/dl_daemon/daemon.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/dl_daemon
creating /build/user/miro-1.1.2/build/lib.linux-i686-2.4/miro/test
copying /build/user/miro-1.1.2/portable/test/httpclienttest.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/test
copying /build/user/miro-1.1.2/portable/test/templatetest.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/test
copying /build/user/miro-1.1.2/portable/test/storedatabasetest.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/test
copying /build/user/miro-1.1.2/portable/test/fasttypestest.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/test
copying /build/user/miro-1.1.2/portable/test/databaseupgradetest.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/test
copying /build/user/miro-1.1.2/portable/test/schedulertest.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/test
copying /build/user/miro-1.1.2/portable/test/schematest.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/test
copying /build/user/miro-1.1.2/portable/test/bmachinetest.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/test
copying /build/user/miro-1.1.2/portable/test/olddatabaseupgradetest.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/test
copying /build/user/miro-1.1.2/portable/test/parseurltest.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/test
copying /build/user/miro-1.1.2/portable/test/httpdownloadertest.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/test
copying /build/user/miro-1.1.2/portable/test/feedtest.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/test
copying /build/user/miro-1.1.2/portable/test/__init__.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/test
copying /build/user/miro-1.1.2/portable/test/playlisttest.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/test
copying /build/user/miro-1.1.2/portable/test/unicodetest.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/test
copying /build/user/miro-1.1.2/portable/test/feedparsertest.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/test
copying /build/user/miro-1.1.2/portable/test/databasesanitytest.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/test
copying /build/user/miro-1.1.2/portable/test/databasetest.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/test
copying /build/user/miro-1.1.2/portable/test/framework.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/test
copying /build/user/miro-1.1.2/portable/test/subscriptiontest.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/test
copying /build/user/miro-1.1.2/portable/test/utiltest.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/test
creating /build/user/miro-1.1.2/build/lib.linux-i686-2.4/miro/compiled_templates
copying /build/user/miro-1.1.2/portable/compiled_templates/__init__.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates
copying /build/user/miro-1.1.2/portable/compiled_templates/new.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates
copying /build/user/miro-1.1.2/portable/compiled_templates/channel.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates
copying /build/user/miro-1.1.2/portable/compiled_templates/playlist_folder.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates
copying /build/user/miro-1.1.2/portable/compiled_templates/channel_content.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates
copying /build/user/miro-1.1.2/portable/compiled_templates/guidetab.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates
copying /build/user/miro-1.1.2/portable/compiled_templates/feedtab.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates
copying /build/user/miro-1.1.2/portable/compiled_templates/static_tab_sort_bar.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates
copying /build/user/miro-1.1.2/portable/compiled_templates/guide_loading.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates
copying /build/user/miro-1.1.2/portable/compiled_templates/download.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates
copying /build/user/miro-1.1.2/portable/compiled_templates/download_item_inner.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates
copying /build/user/miro-1.1.2/portable/compiled_templates/video_info.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates
copying /build/user/miro-1.1.2/portable/compiled_templates/library.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates
copying /build/user/miro-1.1.2/portable/compiled_templates/tablist.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates
copying /build/user/miro-1.1.2/portable/compiled_templates/sort_bar.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates
copying /build/user/miro-1.1.2/portable/compiled_templates/download_item_details.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates
copying /build/user/miro-1.1.2/portable/compiled_templates/feed_settings.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates
copying /build/user/miro-1.1.2/portable/compiled_templates/download_item.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates
copying /build/user/miro-1.1.2/portable/compiled_templates/playlistfoldertab.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates
copying /build/user/miro-1.1.2/portable/compiled_templates/search.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates
copying /build/user/miro-1.1.2/portable/compiled_templates/multi_channel.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates
copying /build/user/miro-1.1.2/portable/compiled_templates/external_playback_continue.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates
copying /build/user/miro-1.1.2/portable/compiled_templates/statictab.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates
copying /build/user/miro-1.1.2/portable/compiled_templates/download_item_thumbnail.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates
copying /build/user/miro-1.1.2/portable/compiled_templates/playlisttab.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates
copying /build/user/miro-1.1.2/portable/compiled_templates/playlist.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates
copying /build/user/miro-1.1.2/portable/compiled_templates/multi_playlist.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates
copying /build/user/miro-1.1.2/portable/compiled_templates/channelfoldertab.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates
copying /build/user/miro-1.1.2/portable/compiled_templates/channel_folder.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates
copying /build/user/miro-1.1.2/portable/compiled_templates/external_playback.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates
copying /build/user/miro-1.1.2/portable/compiled_templates/download_item_description.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates
creating /build/user/miro-1.1.2/build/lib.linux-i686-2.4/miro/compiled_templates/unittest
copying /build/user/miro-1.1.2/portable/compiled_templates/unittest/__init__.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates/unittest
copying /build/user/miro-1.1.2/portable/compiled_templates/unittest/execute_template.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates/unittest
copying /build/user/miro-1.1.2/portable/compiled_templates/unittest/view.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates/unittest
copying /build/user/miro-1.1.2/portable/compiled_templates/unittest/update.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates/unittest
copying /build/user/miro-1.1.2/portable/compiled_templates/unittest/simple.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates/unittest
copying /build/user/miro-1.1.2/portable/compiled_templates/unittest/replace.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates/unittest
copying /build/user/miro-1.1.2/portable/compiled_templates/unittest/view_double.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates/unittest
copying /build/user/miro-1.1.2/portable/compiled_templates/unittest/include_template.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates/unittest
copying /build/user/miro-1.1.2/portable/compiled_templates/unittest/update_hide.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates/unittest
copying /build/user/miro-1.1.2/portable/compiled_templates/unittest/simpleunicode.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates/unittest
copying /build/user/miro-1.1.2/portable/compiled_templates/unittest/translationtest.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates/unittest
copying /build/user/miro-1.1.2/portable/compiled_templates/unittest/hide.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates/unittest
copying /build/user/miro-1.1.2/portable/compiled_templates/unittest/replace_with_variable.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates/unittest
copying /build/user/miro-1.1.2/portable/compiled_templates/unittest/view_container_div.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates/unittest
copying /build/user/miro-1.1.2/portable/compiled_templates/unittest/include.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/compiled_templates/unittest
creating /build/user/miro-1.1.2/build/lib.linux-i686-2.4/miro/dl_daemon/private
copying /build/user/miro-1.1.2/portable/dl_daemon/private/resources.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/dl_daemon/private
copying /build/user/miro-1.1.2/portable/dl_daemon/private/httpauth.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/dl_daemon/private
copying /build/user/miro-1.1.2/portable/dl_daemon/private/__init__.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/dl_daemon/private
copying /build/user/miro-1.1.2/portable/dl_daemon/private/config.py -> /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/dl_daemon/private
running build_ext
building 'miro.fasttypes' extension
creating /build/user/miro-1.1.2/build/temp.linux-i686-2.4
creating /build/user/miro-1.1.2/build/temp.linux-i686-2.4/build
creating /build/user/miro-1.1.2/build/temp.linux-i686-2.4/build/user
creating /build/user/miro-1.1.2/build/temp.linux-i686-2.4/build/user/miro-1.1.2
creating /build/user/miro-1.1.2/build/temp.linux-i686-2.4/build/user/miro-1.1.2/portable
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -fPIC -I/usr/include/python2.4 -c /build/user/miro-1.1.2/portable/fasttypes.cpp -o /build/user/miro-1.1.2/./build/temp.linux-i686-2.4/build/user/miro-1.1.2/portable/fasttypes.o
g++ -pthread -shared /build/user/miro-1.1.2/./build/temp.linux-i686-2.4/build/user/miro-1.1.2/portable/fasttypes.o -lboost_python -o /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/fasttypes.so
pyrexc /build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/MozillaBrowser.pyx --> /build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/MozillaBrowser.c
/build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/MozillaBrowser.pyx:113:4: Warning: __new__ method of extension type will change semantics in a future version of Pyrex. Use __cinit__ instead.
building 'miro.MozillaBrowser' extension
creating /build/user/miro-1.1.2/build/temp.linux-i686-2.4/build/user/miro-1.1.2/platform
creating /build/user/miro-1.1.2/build/temp.linux-i686-2.4/build/user/miro-1.1.2/platform/gtk-x11
creating /build/user/miro-1.1.2/build/temp.linux-i686-2.4/build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -fPIC -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/pygtk-2.0 -I/usr/include/xulrunner/gtkembedmoz -I/usr/include/xulrunner -I/usr/include/xulrunner/xpcom -I/usr/include/xulrunner/string -I/usr/include/nspr -I/usr/include/xulrunner/dom -I/usr/include/xulrunner/gfx -I/usr/include/xulrunner/widget -I/usr/include/xulrunner/commandhandler -I/usr/include/xulrunner/uriloader -I/usr/include/xulrunner/webbrwsr -I/usr/include/xulrunner/necko -I/usr/include/xulrunner/windowwatcher -I/usr/include/python2.4 -c /build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/MozillaBrowser.c -o /build/user/miro-1.1.2/./build/temp.linux-i686-2.4/build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/MozillaBrowser.o
In file included from /usr/include/nspr/prtypes.h:58,
from /usr/include/xulrunner/nscore.h:51,
from /usr/include/xulrunner/nsError.h:42,
from /build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/MozillaBrowser.c:31:
/usr/include/nspr/prcpucfg.h:663:1: warning: "HAVE_LONG_LONG" redefined
In file included from /usr/include/python2.4/Python.h:8,
from /build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/MozillaBrowser.c:4:
/usr/include/python2.4/pyconfig.h:283:1: warning: this is the location of the previous definition
/build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/MozillaBrowser.c: In function '__pyx_f_14MozillaBrowser_new_window_cb':
/build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/MozillaBrowser.c:1311: warning: assignment from incompatible pointer type
/build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/MozillaBrowser.c:1314: warning: passing argument 1 of 'gtk_container_add' from incompatible pointer type
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -fPIC -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/pygtk-2.0 -I/usr/include/xulrunner/gtkembedmoz -I/usr/include/xulrunner -I/usr/include/xulrunner/xpcom -I/usr/include/xulrunner/string -I/usr/include/nspr -I/usr/include/xulrunner/dom -I/usr/include/xulrunner/gfx -I/usr/include/xulrunner/widget -I/usr/include/xulrunner/commandhandler -I/usr/include/xulrunner/uriloader -I/usr/include/xulrunner/webbrwsr -I/usr/include/xulrunner/necko -I/usr/include/xulrunner/windowwatcher -I/usr/include/python2.4 -c /build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/MozillaBrowserXPCOM.cc -o /build/user/miro-1.1.2/./build/temp.linux-i686-2.4/build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/MozillaBrowserXPCOM.o
/build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/MozillaBrowserXPCOM.cc: In function 'nsresult showItem(GtkMozEmbed*, char*)':
/build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/MozillaBrowserXPCOM.cc:286: warning: deprecated conversion from string constant to 'char*'
/build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/MozillaBrowserXPCOM.cc:286: warning: deprecated conversion from string constant to 'char*'
/build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/MozillaBrowserXPCOM.cc: In function 'nsresult hideItem(GtkMozEmbed*, char*)':
/build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/MozillaBrowserXPCOM.cc:291: warning: deprecated conversion from string constant to 'char*'
/build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/MozillaBrowserXPCOM.cc:291: warning: deprecated conversion from string constant to 'char*'
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -fPIC -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/pygtk-2.0 -I/usr/include/xulrunner/gtkembedmoz -I/usr/include/xulrunner -I/usr/include/xulrunner/xpcom -I/usr/include/xulrunner/string -I/usr/include/nspr -I/usr/include/xulrunner/dom -I/usr/include/xulrunner/gfx -I/usr/include/xulrunner/widget -I/usr/include/xulrunner/commandhandler -I/usr/include/xulrunner/uriloader -I/usr/include/xulrunner/webbrwsr -I/usr/include/xulrunner/necko -I/usr/include/xulrunner/windowwatcher -I/usr/include/python2.4 -c /build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/HttpObserver.cc -o /build/user/miro-1.1.2/./build/temp.linux-i686-2.4/build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/HttpObserver.o
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -fPIC -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/pygtk-2.0 -I/usr/include/xulrunner/gtkembedmoz -I/usr/include/xulrunner -I/usr/include/xulrunner/xpcom -I/usr/include/xulrunner/string -I/usr/include/nspr -I/usr/include/xulrunner/dom -I/usr/include/xulrunner/gfx -I/usr/include/xulrunner/widget -I/usr/include/xulrunner/commandhandler -I/usr/include/xulrunner/uriloader -I/usr/include/xulrunner/webbrwsr -I/usr/include/xulrunner/necko -I/usr/include/xulrunner/windowwatcher -I/usr/include/python2.4 -c /build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/PromptService.cc -o /build/user/miro-1.1.2/./build/temp.linux-i686-2.4/build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/PromptService.o
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -fPIC -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/pygtk-2.0 -I/usr/include/xulrunner/gtkembedmoz -I/usr/include/xulrunner -I/usr/include/xulrunner/xpcom -I/usr/include/xulrunner/string -I/usr/include/nspr -I/usr/include/xulrunner/dom -I/usr/include/xulrunner/gfx -I/usr/include/xulrunner/widget -I/usr/include/xulrunner/commandhandler -I/usr/include/xulrunner/uriloader -I/usr/include/xulrunner/webbrwsr -I/usr/include/xulrunner/necko -I/usr/include/xulrunner/windowwatcher -I/usr/include/python2.4 -c /build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/DragAndDrop.cc -o /build/user/miro-1.1.2/./build/temp.linux-i686-2.4/build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/DragAndDrop.o
/build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/DragAndDrop.cc: In function 'nsresult isDragTypeSupported(const nsAString_internal&, PRBool*, nsAString_internal*)':
/build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/DragAndDrop.cc:161: warning: comparison between signed and unsigned integer expressions
/build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/DragAndDrop.cc: In function 'nsresult removeCurrentHighlight()':
/build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/DragAndDrop.cc:237: warning: comparison between signed and unsigned integer expressions
/build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/DragAndDrop.cc: In member function 'virtual nsresult MiroDNDHook::OnPasteOrDrop(nsIDOMEvent*, nsITransferable*, PRBool*)':
/build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/DragAndDrop.cc:455: warning: comparison between signed and unsigned integer expressions
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -fPIC -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/pygtk-2.0 -I/usr/include/xulrunner/gtkembedmoz -I/usr/include/xulrunner -I/usr/include/xulrunner/xpcom -I/usr/include/xulrunner/string -I/usr/include/nspr -I/usr/include/xulrunner/dom -I/usr/include/xulrunner/gfx -I/usr/include/xulrunner/widget -I/usr/include/xulrunner/commandhandler -I/usr/include/xulrunner/uriloader -I/usr/include/xulrunner/webbrwsr -I/usr/include/xulrunner/necko -I/usr/include/xulrunner/windowwatcher -I/usr/include/python2.4 -c /build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/XPCOMUtil.cc -o /build/user/miro-1.1.2/./build/temp.linux-i686-2.4/build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/XPCOMUtil.o
g++ -pthread -shared /build/user/miro-1.1.2/./build/temp.linux-i686-2.4/build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/MozillaBrowser.o /build/user/miro-1.1.2/./build/temp.linux-i686-2.4/build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/MozillaBrowserXPCOM.o /build/user/miro-1.1.2/./build/temp.linux-i686-2.4/build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/HttpObserver.o /build/user/miro-1.1.2/./build/temp.linux-i686-2.4/build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/PromptService.o /build/user/miro-1.1.2/./build/temp.linux-i686-2.4/build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/DragAndDrop.o /build/user/miro-1.1.2/./build/temp.linux-i686-2.4/build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/XPCOMUtil.o -L/usr/lib/xulrunner -Wl,-R/usr/lib/xulrunner -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lpango-1.0 -lcairo -lgmodule-2.0 -lffi -lgobject-2.0 -lglib-2.0 -lgtkembedmoz -lxpcom -lplds4 -lplc4 -lnspr4 -lpthread -ldl -o /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/MozillaBrowser.so
pyrexc /build/user/miro-1.1.2/platform/gtk-x11/xine/xine.pyx --> /build/user/miro-1.1.2/platform/gtk-x11/xine/xine.c
/build/user/miro-1.1.2/platform/gtk-x11/xine/xine.pyx:87:4: Warning: __new__ method of extension type will change semantics in a future version of Pyrex. Use __cinit__ instead.
building 'miro.xine' extension
creating /build/user/miro-1.1.2/build/temp.linux-i686-2.4/build/user/miro-1.1.2/platform/gtk-x11/xine
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -fPIC -DINCLUDE_XINE_DRIVER_HACK=1 -I/usr/include/pygtk-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/python2.4 -c /build/user/miro-1.1.2/platform/gtk-x11/xine/xine.c -o /build/user/miro-1.1.2/./build/temp.linux-i686-2.4/build/user/miro-1.1.2/platform/gtk-x11/xine/xine.o -pthread -pthread
/build/user/miro-1.1.2/platform/gtk-x11/xine/xine.c: In function '__pyx_f_4xine_4Xine___new__':
/build/user/miro-1.1.2/platform/gtk-x11/xine/xine.c:81: warning: passing argument 1 of 'xineCreate' from incompatible pointer type
/build/user/miro-1.1.2/platform/gtk-x11/xine/xine.c: In function '__pyx_f_4xine_4Xine_canPlayFile':
/build/user/miro-1.1.2/platform/gtk-x11/xine/xine.c:174: warning: implicit declaration of function 'xineCanPlayFile'
/build/user/miro-1.1.2/platform/gtk-x11/xine/xine.c: In function '__pyx_f_4xine_4Xine_selectFile':
/build/user/miro-1.1.2/platform/gtk-x11/xine/xine.c:207: warning: implicit declaration of function 'xineSelectFile'
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -fPIC -DINCLUDE_XINE_DRIVER_HACK=1 -I/usr/include/pygtk-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/python2.4 -c /build/user/miro-1.1.2/platform/gtk-x11/xine/xine_impl.c -o /build/user/miro-1.1.2/./build/temp.linux-i686-2.4/build/user/miro-1.1.2/platform/gtk-x11/xine/xine_impl.o -pthread -pthread
gcc -pthread -shared /build/user/miro-1.1.2/./build/temp.linux-i686-2.4/build/user/miro-1.1.2/platform/gtk-x11/xine/xine.o /build/user/miro-1.1.2/./build/temp.linux-i686-2.4/build/user/miro-1.1.2/platform/gtk-x11/xine/xine_impl.o -lxine -lffi -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lpango-1.0 -lcairo -lgobject-2.0 -lgmodule-2.0 -ldl -lgthread-2.0 -lrt -lglib-2.0 -o /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/xine.so
pyrexc /build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/xlibhelper.pyx --> /build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/xlibhelper.c
building 'miro.xlibhelper' extension
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -fPIC -I/usr/include/python2.4 -c /build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/xlibhelper.c -o /build/user/miro-1.1.2/./build/temp.linux-i686-2.4/build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/xlibhelper.o
gcc -pthread -shared /build/user/miro-1.1.2/./build/temp.linux-i686-2.4/build/user/miro-1.1.2/platform/gtk-x11/frontend_implementation/xlibhelper.o -L/usr/X11R6/lib -lX11 -o /build/user/miro-1.1.2/./build/lib.linux-i686-2.4/miro/xlibhelper.so
building 'miro.libtorrent' extension
creating /build/user/miro-1.1.2/build/temp.linux-i686-2.4/build/user/miro-1.1.2/portable/libtorrent
creating /build/user/miro-1.1.2/build/temp.linux-i686-2.4/build/user/miro-1.1.2/portable/libtorrent/bindings
creating /build/user/miro-1.1.2/build/temp.linux-i686-2.4/build/user/miro-1.1.2/portable/libtorrent/bindings/python
creating /build/user/miro-1.1.2/build/temp.linux-i686-2.4/build/user/miro-1.1.2/portable/libtorrent/bindings/python/src
creating /build/user/miro-1.1.2/build/temp.linux-i686-2.4/build/user/miro-1.1.2/portable/libtorrent/src
creating /build/user/miro-1.1.2/build/temp.linux-i686-2.4/build/user/miro-1.1.2/portable/libtorrent/src/kademlia
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -fPIC -I/build/user/miro-1.1.2/portable/libtorrent/include -I/build/user/miro-1.1.2/portable/libtorrent/include/libtorrent -I/usr/include/python2.4 -c /build/user/miro-1.1.2/portable/libtorrent/bindings/python/src/datetime.cpp -o /build/user/miro-1.1.2/./build/temp.linux-i686-2.4/build/user/miro-1.1.2/portable/libtorrent/bindings/python/src/datetime.o -Wno-missing-braces -DHAVE_INCLUDE_LIBTORRENT_ASIO____ASIO_HPP=1 -DHAVE_INCLUDE_LIBTORRENT_ASIO_SSL_STREAM_HPP=1 -DHAVE_INCLUDE_LIBTORRENT_ASIO_IP_TCP_HPP=1 -DHAVE_PTHREAD=1 -DTORRENT_USE_OPENSSL=1 -DHAVE_SSL=1 -DNDEBUG=1 -O2
/build/user/miro-1.1.2/portable/libtorrent/bindings/python/src/datetime.cpp:6:59: error: boost/date_time/posix_time/posix_time_types.hpp: No such file or directory
/build/user/miro-1.1.2/portable/libtorrent/bindings/python/src/datetime.cpp:30: error: expected ';' before '(' token
/build/user/miro-1.1.2/portable/libtorrent/bindings/python/src/datetime.cpp:40: error: expected `;' before '}' token
/build/user/miro-1.1.2/portable/libtorrent/bindings/python/src/datetime.cpp:44: error: expected ';' before '(' token
/build/user/miro-1.1.2/portable/libtorrent/bindings/python/src/datetime.cpp:60: error: expected `;' before '}' token
/build/user/miro-1.1.2/portable/libtorrent/bindings/python/src/datetime.cpp: In function 'void bind_datetime()':
/build/user/miro-1.1.2/portable/libtorrent/bindings/python/src/datetime.cpp:70: error: 'posix_time' is not a member of 'boost'
/build/user/miro-1.1.2/portable/libtorrent/bindings/python/src/datetime.cpp:70: error: 'posix_time' is not a member of 'boost'
/build/user/miro-1.1.2/portable/libtorrent/bindings/python/src/datetime.cpp:72: error: wrong number of template arguments (1, should be 2)
/usr/include/boost/python/to_python_converter.hpp:17: error: provided for 'template<class T, class Conversion> struct boost::python::to_python_converter'
/build/user/miro-1.1.2/portable/libtorrent/bindings/python/src/datetime.cpp:75: error: 'posix_time' is not a member of 'boost'
/build/user/miro-1.1.2/portable/libtorrent/bindings/python/src/datetime.cpp:75: error: 'posix_time' is not a member of 'boost'
/build/user/miro-1.1.2/portable/libtorrent/bindings/python/src/datetime.cpp:77: error: wrong number of template arguments (1, should be 2)
/usr/include/boost/python/to_python_converter.hpp:17: error: provided for 'template<class T, class Conversion> struct boost::python::to_python_converter'
/build/user/miro-1.1.2/portable/libtorrent/bindings/python/src/datetime.cpp:79: error: 'posix_time' is not a member of 'boost'
/build/user/miro-1.1.2/portable/libtorrent/bindings/python/src/datetime.cpp:79: error: 'posix_time' is not a member of 'boost'
/build/user/miro-1.1.2/portable/libtorrent/bindings/python/src/datetime.cpp:79: error: template argument 1 is invalid
error: command 'gcc' failed with exit status 1
make: *** [python-build-stamp-2.4] Error 1
dpkg-buildpackage: failure: debian/rules build gave error exit status 2
******************************************************************************
Build finished at 20080213-0226
FAILED [dpkg-buildpackage died]
Purging /var/lib/schroot/mount/sid32-571e486d-ccf1-483c-9568-12cbe7cfed9b/build/user/miro-1.1.2
------------------------------------------------------------------------------
Not removing build depends: session managed chroot in use
******************************************************************************
Finished at 20080213-0226
Build needed 00:00:29, 67932k disk space
DC-Build-Status: Failed 125.056073s
|