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
|
DC-Build-Header: tomboy 0.8.2-1 / Sat Mar 08 15:01:08 +0100 2008
Automatic build of tomboy_0.8.2-1 on grelon-18.nancy.grid5000.fr by sbuild/amd64 0.57.0
Build started at 20080308-1501
******************************************************************************
Failed to open ./tomboy_0.8.2-1.dsc
Checking available source versions...
Fetching source files...
Reading package lists...
Building dependency tree...
Reading state information...
Need to get 2645kB of source archives.
Get:1 http://idpot.grenoble.grid5000.fr sid/main tomboy 0.8.2-1 (dsc) [1124B]
Get:2 http://idpot.grenoble.grid5000.fr sid/main tomboy 0.8.2-1 (tar) [2617kB]
Get:3 http://idpot.grenoble.grid5000.fr sid/main tomboy 0.8.2-1 (diff) [27.0kB]
Fetched 2645kB in 0s (4263kB/s)
Download complete and in download only mode
** Using build dependencies supplied by package:
Build-Depends: cdbs, cli-common-dev (>= 0.4.4), debhelper (>= 5), gnome-doc-utils (>= 0.3.2), intltool, libatk1.0-dev (>= 1.2.4), libdbus-1-dev (>= 0.90), libdbus-glib-1-dev (>= 0.60), libgconf2.0-cil, libgmime2.2-cil, libgnome2.0-cil, libgnomeprintui2.2-dev, libgtk2.0-cil (>= 2.6.0), libgtk2.0-dev (>= 2.6.0), libgtkspell-dev (>= 2.0.9), libmono-addins-gui0.2-cil (>= 0.2-4), libmono-addins0.2-cil (>= 0.2-4), libmono-cairo2.0-cil, libmono-dev (>= 1.1.13.4), libndesk-dbus-glib1.0-cil (>= 0.3), libndesk-dbus1.0-cil (>= 0.4), libpanel-applet2-dev, mono-gmcs (>= 1.1.13.4), scrollkeeper, sharutils
Checking for already installed source dependencies...
cdbs: missing
cli-common-dev: missing
Using default version 0.5.6
debhelper: missing
Using default version 6.0.7
gnome-doc-utils: missing
Using default version 0.12.1-1
intltool: missing
libatk1.0-dev: missing
Using default version 1.20.0-1
libdbus-1-dev: missing
Using default version 1.1.20-1
libdbus-glib-1-dev: missing
Using default version 0.74-1
libgconf2.0-cil: missing
libgmime2.2-cil: missing
libgnome2.0-cil: missing
libgnomeprintui2.2-dev: missing
libgtk2.0-cil: missing
Using default version 2.10.4-2
libgtk2.0-dev: missing
Using default version 2.12.8-1
libgtkspell-dev: missing
Using default version 2.0.10-4
libmono-addins-gui0.2-cil: missing
Using default version 0.3.1-3
libmono-addins0.2-cil: missing
Using default version 0.3.1-3
libmono-cairo2.0-cil: missing
libmono-dev: missing
Using default version 1.2.6+dfsg-6
libndesk-dbus-glib1.0-cil: missing
Using default version 0.4.1-1
libndesk-dbus1.0-cil: missing
Using default version 0.6.0-1
libpanel-applet2-dev: missing
mono-gmcs: missing
Using default version 1.2.6+dfsg-6
scrollkeeper: missing
sharutils: missing
Checking for source dependency conflicts...
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
adduser autoconf automake1.7 autotools-dev bsdmainutils cli-common dbus
defoma docbook-xml esound-common file fontconfig fontconfig-config gconf2
gconf2-common gettext gettext-base gnome-mime-data groff-base html2text
ifupdown intltool-debian libart-2.0-2 libart-2.0-dev libart2.0-cil
libaspell-dev libaspell15 libatk1.0-0 libaudiofile-dev libaudiofile0
libavahi-client-dev libavahi-client3 libavahi-common-data
libavahi-common-dev libavahi-common3 libavahi-glib-dev libavahi-glib1
libbonobo2-0 libbonobo2-common libbonobo2-dev libbonoboui2-0
libbonoboui2-common libbonoboui2-dev libcairo2 libcairo2-dev libcupsys2
libdatrie0 libdb4.5 libdbus-1-3 libdbus-glib-1-2 libesd0 libesd0-dev
libexpat1 libexpat1-dev libfam0 libfontconfig1 libfontconfig1-dev
libfreetype6 libfreetype6-dev libgail-common libgail-dev libgail18
libgconf2-4 libgconf2-dev libgcrypt11-dev libglade2-0 libglade2-dev
libglade2.0-cil libglib2.0-0 libglib2.0-cil libglib2.0-dev libgmime-2.0-2
libgnome-keyring-dev libgnome-keyring0 libgnome-vfs2.0-cil libgnome2-0
libgnome2-common libgnome2-dev libgnomecanvas2-0 libgnomecanvas2-common
libgnomecanvas2-dev libgnomecups1.0-1 libgnomeprint2.2-0
libgnomeprint2.2-data libgnomeprint2.2-dev libgnomeprintui2.2-0
libgnomeprintui2.2-common libgnomeui-0 libgnomeui-common libgnomeui-dev
libgnomevfs2-0 libgnomevfs2-common libgnomevfs2-dev libgnutls-dev libgomp1
libgpg-error-dev libgtk2.0-0 libgtk2.0-common libgtkspell0 libhal-dev
libhal-storage-dev libhal-storage1 libhal1 libhtml-parser-perl
libhtml-tagset-perl libhtml-tree-perl libice-dev libice6 libidl-dev libidl0
libjpeg62 libjpeg62-dev libkeyutils1 libkrb53 libmagic1 libmono-cairo1.0-cil
libmono-corlib1.0-cil libmono-corlib2.0-cil libmono-data-tds1.0-cil
libmono-data-tds2.0-cil libmono-peapi1.0-cil libmono-relaxng1.0-cil
libmono-security1.0-cil libmono-security2.0-cil libmono-sharpzip0.84-cil
libmono-sharpzip2.84-cil libmono-system-data1.0-cil
libmono-system-data2.0-cil libmono-system-runtime1.0-cil
libmono-system-web1.0-cil libmono-system-web2.0-cil libmono-system1.0-cil
libmono-system2.0-cil libmono0 libmono1.0-cil libmono2.0-cil libncursesw5
libnewt0.52 libopencdk10-dev liborbit2 liborbit2-dev libpanel-applet2-0
libpango1.0-0 libpango1.0-common libpango1.0-dev libpcre3 libpng12-0
libpng12-dev libpopt-dev libpopt0 libscrollkeeper0 libselinux1-dev
libsepol1-dev libsm-dev libsm6 libssl0.9.8 libtasn1-3-dev libthai-data
libthai0 libtiff4 liburi-perl libwww-perl libx11-6 libx11-data libx11-dev
libxau-dev libxau6 libxcomposite-dev libxcomposite1 libxcursor-dev
libxcursor1 libxdamage-dev libxdamage1 libxdmcp-dev libxdmcp6 libxext-dev
libxext6 libxfixes-dev libxfixes3 libxft-dev libxft2 libxi-dev libxi6
libxinerama-dev libxinerama1 libxml-dom-perl libxml-parser-perl libxml-perl
libxml-regexp-perl libxml2 libxml2-dev libxml2-utils libxrandr-dev
libxrandr2 libxrender-dev libxrender1 libxslt1.1 m4 man-db mime-support
mono-1.0-devel mono-common mono-gac mono-jit mono-runtime mono-utils
net-tools netbase pkg-config po-debconf psmisc python python-libxml2
python-minimal python-support python2.4 python2.4-minimal sgml-base
sgml-data shared-mime-info ttf-dejavu ttf-dejavu-core ttf-dejavu-extra ucf
whiptail x11-common 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-xext-dev
x11proto-xinerama-dev xml-core xsltproc xtrans-dev zlib1g-dev
Suggested packages:
autobook autoconf-archive autoconf-doc autoconf2.13 gnu-standards libtool
wamerican wordlist whois vacation devscripts doc-base dh-make defoma-doc
dfontmgr psfontmgr x-ttcidfont-conf docbook docbook-dsssl docbook-xsl
docbook-defguide cvs gettext-doc groff iproute dhcp3-client dhcp-client ppp
monodoc-gtk2.0-manual aspell-doc aspell libbonobo2-bin libcairo2-doc
cupsys-common esound libgail-doc libgcrypt11-doc glade glade-gnome
libglib2.0-doc desktop-base libgnome2-doc libgnomecanvas2-doc
libgnomeprint2.2-doc libgnomeui-doc libgnomevfs2-bin gnutls-bin gnutls-doc
guile-gnutls librsvg2-common libgtk2.0-doc hal-doc krb5-doc krb5-user
libgda2-3 libmono-winforms2.0-cil libgamin0 libgdiplus
libmono-winforms1.0-cil libasound2 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
libio-socket-ssl-perl www-browser python-doc python-tk python-profiler
python2.4-doc logrotate sgml-base-doc perlsgml doc-html-w3 opensp mailx
Recommended packages:
automake automaken dbus-x11 libft-perl curl wget lynx aspell-en
aspell-dictionary aspell6a-dictionary libatk1.0-data esound-clients fam
libglib2.0-data gnome-keyring cupsys gnome-icon-theme gnome-mount
libgnomevfs2-extra hicolor-icon-theme libgtk2.0-bin libmono-i18n1.0-cil
libmono-i18n2.0-cil libgpmg1 libfribidi0 orbit2 libcompress-zlib-perl
libhtml-format-perl libmailtools-perl mono-mcs binfmt-support
libmail-box-perl libmail-sendmail-perl
The following NEW packages will be installed:
adduser autoconf automake1.7 autotools-dev bsdmainutils cdbs cli-common
cli-common-dev dbus debhelper defoma docbook-xml esound-common file
fontconfig fontconfig-config gconf2 gconf2-common gettext gettext-base
gnome-doc-utils gnome-mime-data groff-base html2text ifupdown intltool
intltool-debian libart-2.0-2 libart-2.0-dev libart2.0-cil libaspell-dev
libaspell15 libatk1.0-0 libatk1.0-dev libaudiofile-dev libaudiofile0
libavahi-client-dev libavahi-client3 libavahi-common-data
libavahi-common-dev libavahi-common3 libavahi-glib-dev libavahi-glib1
libbonobo2-0 libbonobo2-common libbonobo2-dev libbonoboui2-0
libbonoboui2-common libbonoboui2-dev libcairo2 libcairo2-dev libcupsys2
libdatrie0 libdb4.5 libdbus-1-3 libdbus-1-dev libdbus-glib-1-2
libdbus-glib-1-dev libesd0 libesd0-dev libexpat1 libexpat1-dev libfam0
libfontconfig1 libfontconfig1-dev libfreetype6 libfreetype6-dev
libgail-common libgail-dev libgail18 libgconf2-4 libgconf2-dev
libgconf2.0-cil libgcrypt11-dev libglade2-0 libglade2-dev libglade2.0-cil
libglib2.0-0 libglib2.0-cil libglib2.0-dev libgmime-2.0-2 libgmime2.2-cil
libgnome-keyring-dev libgnome-keyring0 libgnome-vfs2.0-cil libgnome2-0
libgnome2-common libgnome2-dev libgnome2.0-cil libgnomecanvas2-0
libgnomecanvas2-common libgnomecanvas2-dev libgnomecups1.0-1
libgnomeprint2.2-0 libgnomeprint2.2-data libgnomeprint2.2-dev
libgnomeprintui2.2-0 libgnomeprintui2.2-common libgnomeprintui2.2-dev
libgnomeui-0 libgnomeui-common libgnomeui-dev libgnomevfs2-0
libgnomevfs2-common libgnomevfs2-dev libgnutls-dev libgomp1 libgpg-error-dev
libgtk2.0-0 libgtk2.0-cil libgtk2.0-common libgtk2.0-dev libgtkspell-dev
libgtkspell0 libhal-dev libhal-storage-dev libhal-storage1 libhal1
libhtml-parser-perl libhtml-tagset-perl libhtml-tree-perl libice-dev libice6
libidl-dev libidl0 libjpeg62 libjpeg62-dev libkeyutils1 libkrb53 libmagic1
libmono-addins-gui0.2-cil libmono-addins0.2-cil libmono-cairo1.0-cil
libmono-cairo2.0-cil libmono-corlib1.0-cil libmono-corlib2.0-cil
libmono-data-tds1.0-cil libmono-data-tds2.0-cil libmono-dev
libmono-peapi1.0-cil libmono-relaxng1.0-cil libmono-security1.0-cil
libmono-security2.0-cil libmono-sharpzip0.84-cil libmono-sharpzip2.84-cil
libmono-system-data1.0-cil libmono-system-data2.0-cil
libmono-system-runtime1.0-cil libmono-system-web1.0-cil
libmono-system-web2.0-cil libmono-system1.0-cil libmono-system2.0-cil
libmono0 libmono1.0-cil libmono2.0-cil libncursesw5
libndesk-dbus-glib1.0-cil libndesk-dbus1.0-cil libnewt0.52 libopencdk10-dev
liborbit2 liborbit2-dev libpanel-applet2-0 libpanel-applet2-dev
libpango1.0-0 libpango1.0-common libpango1.0-dev libpcre3 libpng12-0
libpng12-dev libpopt-dev libpopt0 libscrollkeeper0 libselinux1-dev
libsepol1-dev libsm-dev libsm6 libssl0.9.8 libtasn1-3-dev libthai-data
libthai0 libtiff4 liburi-perl libwww-perl libx11-6 libx11-data libx11-dev
libxau-dev libxau6 libxcomposite-dev libxcomposite1 libxcursor-dev
libxcursor1 libxdamage-dev libxdamage1 libxdmcp-dev libxdmcp6 libxext-dev
libxext6 libxfixes-dev libxfixes3 libxft-dev libxft2 libxi-dev libxi6
libxinerama-dev libxinerama1 libxml-dom-perl libxml-parser-perl libxml-perl
libxml-regexp-perl libxml2 libxml2-dev libxml2-utils libxrandr-dev
libxrandr2 libxrender-dev libxrender1 libxslt1.1 m4 man-db mime-support
mono-1.0-devel mono-common mono-gac mono-gmcs mono-jit mono-runtime
mono-utils net-tools netbase pkg-config po-debconf psmisc python
python-libxml2 python-minimal python-support python2.4 python2.4-minimal
scrollkeeper sgml-base sgml-data shared-mime-info sharutils ttf-dejavu
ttf-dejavu-core ttf-dejavu-extra ucf whiptail x11-common
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-xext-dev x11proto-xinerama-dev xml-core
xsltproc xtrans-dev zlib1g-dev
0 upgraded, 265 newly installed, 0 to remove and 0 not upgraded.
Need to get 83.7MB of archives.
After this operation, 268MB of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
x11-common libice6 x11proto-core-dev libice-dev libsm6 libsm-dev libxau6
libxdmcp6 libx11-data libx11-6 libxau-dev libxdmcp-dev libxext6
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 adduser
bsdmainutils groff-base net-tools ifupdown libncursesw5 libssl0.9.8 man-db
netbase gettext-base libdb4.5 libkeyutils1 libkrb53 m4 mime-support
python2.4-minimal python2.4 python-minimal python python-support sharutils
autoconf autotools-dev automake1.7 html2text libgomp1 gettext
intltool-debian po-debconf debhelper cdbs cli-common libhtml-tagset-perl
liburi-perl libhtml-parser-perl libhtml-tree-perl libwww-perl
libxml-parser-perl libxml-perl libxml-regexp-perl libxml-dom-perl
mono-common mono-jit libmono-corlib1.0-cil libmono-peapi1.0-cil
libmono-system1.0-cil libmono-relaxng1.0-cil libmono-security1.0-cil
libmono-sharpzip0.84-cil libmono-data-tds1.0-cil libmono-system-data1.0-cil
libmono-system-web1.0-cil libmono-system-runtime1.0-cil libmono0 mono-gac
mono-runtime libmono1.0-cil mono-1.0-devel mono-utils cli-common-dev
libdbus-1-3 dbus sgml-base xml-core sgml-data docbook-xml esound-common
fontconfig gconf2-common libidl0 liborbit2 libxml2 libgconf2-4 psmisc gconf2
libxml2-utils python-libxml2 libxslt1.1 xsltproc gnome-doc-utils
gnome-mime-data intltool libart-2.0-2 libart-2.0-dev libglib2.0-cil
libart2.0-cil libaspell15 libaspell-dev libatk1.0-0 libglib2.0-dev
libatk1.0-dev libaudiofile0 libaudiofile-dev libavahi-common-data
libavahi-common3 libavahi-client3 libavahi-common-dev libdbus-1-dev
libavahi-client-dev libavahi-glib1 libavahi-glib-dev libbonobo2-common
libbonobo2-0 libidl-dev liborbit2-dev libpopt-dev libbonobo2-dev
libbonoboui2-common libpng12-0 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
shared-mime-info libgnomevfs2-common libhal1 libhal-storage1 libgnomevfs2-0
libgnome2-common libgnome2-0 libgail18 libgail-common libgnomecanvas2-common
libgnomecanvas2-0 libbonoboui2-0 libpng12-dev libcairo2-dev libpango1.0-dev
libgtk2.0-dev libxml2-dev libglade2-dev libgconf2-dev libgpg-error-dev
libgcrypt11-dev libopencdk10-dev libtasn1-3-dev libgnutls-dev libsepol1-dev
libselinux1-dev libgnomevfs2-dev libesd0-dev libgnome2-dev libgail-dev
libgnomecanvas2-dev libbonoboui2-dev libdbus-glib-1-dev libgconf2.0-cil
libmono-cairo1.0-cil libgtk2.0-cil libglade2.0-cil libgmime-2.0-2
libgmime2.2-cil libgnome-keyring0 libhal-dev libhal-storage-dev
libgnome-keyring-dev libgnome-vfs2.0-cil libgnomecups1.0-1
libgnomeprint2.2-data libgnomeprint2.2-0 libgnomeprintui2.2-common
libgnomeprintui2.2-0 libgnomeui-common libgnomeui-0 libpanel-applet2-0
libgnome2.0-cil libgnomeprint2.2-dev libgnomeprintui2.2-dev libjpeg62-dev
libgnomeui-dev libgtkspell0 libgtkspell-dev libmono-addins0.2-cil
libmono-addins-gui0.2-cil libmono-corlib2.0-cil libmono-cairo2.0-cil
libmono-system2.0-cil libmono-security2.0-cil libmono-data-tds2.0-cil
libmono-dev libmono-sharpzip2.84-cil libmono-system-data2.0-cil
libmono-system-web2.0-cil libmono2.0-cil libndesk-dbus1.0-cil
libndesk-dbus-glib1.0-cil libpanel-applet2-dev libscrollkeeper0 mono-gmcs
scrollkeeper
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 libice6 2:1.0.4-1 [46.6kB]
Get:3 http://idpot.grenoble.grid5000.fr sid/main x11proto-core-dev 7.0.12-1 [89.6kB]
Get:4 http://idpot.grenoble.grid5000.fr sid/main libice-dev 2:1.0.4-1 [55.1kB]
Get:5 http://idpot.grenoble.grid5000.fr sid/main libsm6 2:1.0.3-1+b1 [21.8kB]
Get:6 http://idpot.grenoble.grid5000.fr sid/main libsm-dev 2:1.0.3-1+b1 [24.3kB]
Get:7 http://idpot.grenoble.grid5000.fr sid/main libxau6 1:1.0.3-2 [11.7kB]
Get:8 http://idpot.grenoble.grid5000.fr sid/main libxdmcp6 1:1.0.2-2 [16.7kB]
Get:9 http://idpot.grenoble.grid5000.fr sid/main libx11-data 2:1.0.3-7 [157kB]
Get:10 http://idpot.grenoble.grid5000.fr sid/main libx11-6 2:1.0.3-7 [567kB]
Get:11 http://idpot.grenoble.grid5000.fr sid/main libxau-dev 1:1.0.3-2 [15.4kB]
Get:12 http://idpot.grenoble.grid5000.fr sid/main libxdmcp-dev 1:1.0.2-2 [19.8kB]
Get:13 http://idpot.grenoble.grid5000.fr sid/main libxext6 2:1.0.4-1 [33.5kB]
Get:14 http://idpot.grenoble.grid5000.fr sid/main x11proto-input-dev 1.4.3-1 [15.9kB]
Get:15 http://idpot.grenoble.grid5000.fr sid/main x11proto-xext-dev 7.0.2-5 [41.7kB]
Get:16 http://idpot.grenoble.grid5000.fr sid/main libxext-dev 2:1.0.4-1 [84.2kB]
Get:17 http://idpot.grenoble.grid5000.fr sid/main x11proto-kb-dev 1.0.3-2 [26.8kB]
Get:18 http://idpot.grenoble.grid5000.fr sid/main xtrans-dev 1.1-1 [73.7kB]
Get:19 http://idpot.grenoble.grid5000.fr sid/main libx11-dev 2:1.0.3-7 [1269kB]
Get:20 http://idpot.grenoble.grid5000.fr sid/main libxfixes3 1:4.0.3-2 [9572B]
Get:21 http://idpot.grenoble.grid5000.fr sid/main libxcomposite1 1:0.4.0-1 [10.8kB]
Get:22 http://idpot.grenoble.grid5000.fr sid/main x11proto-fixes-dev 4.0-2 [5640B]
Get:23 http://idpot.grenoble.grid5000.fr sid/main libxfixes-dev 1:4.0.3-2 [12.1kB]
Get:24 http://idpot.grenoble.grid5000.fr sid/main x11proto-composite-dev 1:0.4-2 [12.3kB]
Get:25 http://idpot.grenoble.grid5000.fr sid/main libxcomposite-dev 1:0.4.0-1 [14.3kB]
Get:26 http://idpot.grenoble.grid5000.fr sid/main libxrender1 1:0.9.4-1 [25.4kB]
Get:27 http://idpot.grenoble.grid5000.fr sid/main libxcursor1 1:1.1.9-1 [24.0kB]
Get:28 http://idpot.grenoble.grid5000.fr sid/main x11proto-render-dev 2:0.9.3-2 [7062B]
Get:29 http://idpot.grenoble.grid5000.fr sid/main libxrender-dev 1:0.9.4-1 [28.5kB]
Get:30 http://idpot.grenoble.grid5000.fr sid/main libxcursor-dev 1:1.1.9-1 [30.8kB]
Get:31 http://idpot.grenoble.grid5000.fr sid/main libxdamage1 1:1.1.1-3 [9804B]
Get:32 http://idpot.grenoble.grid5000.fr sid/main x11proto-damage-dev 1.1.0-2 [9090B]
Get:33 http://idpot.grenoble.grid5000.fr sid/main libxdamage-dev 1:1.1.1-3 [9634B]
Get:34 http://idpot.grenoble.grid5000.fr sid/main libexpat1 1.95.8-4 [63.9kB]
Get:35 http://idpot.grenoble.grid5000.fr sid/main libfreetype6 2.3.5-1+b1 [347kB]
Get:36 http://idpot.grenoble.grid5000.fr sid/main ucf 3.005 [61.2kB]
Get:37 http://idpot.grenoble.grid5000.fr sid/main libmagic1 4.23-2 [342kB]
Get:38 http://idpot.grenoble.grid5000.fr sid/main file 4.23-2 [41.0kB]
Get:39 http://idpot.grenoble.grid5000.fr sid/main libnewt0.52 0.52.2-11.2 [67.2kB]
Get:40 http://idpot.grenoble.grid5000.fr sid/main libpopt0 1.10-3 [33.1kB]
Get:41 http://idpot.grenoble.grid5000.fr sid/main whiptail 0.52.2-11.2 [34.8kB]
Get:42 http://idpot.grenoble.grid5000.fr sid/main defoma 0.11.10-0.2 [101kB]
Get:43 http://idpot.grenoble.grid5000.fr sid/main ttf-dejavu-core 2.23-1 [1347kB]
Get:44 http://idpot.grenoble.grid5000.fr sid/main ttf-dejavu-extra 2.23-1 [2949kB]
Get:45 http://idpot.grenoble.grid5000.fr sid/main ttf-dejavu 2.23-1 [24.3kB]
Get:46 http://idpot.grenoble.grid5000.fr sid/main fontconfig-config 2.5.0-2 [179kB]
Get:47 http://idpot.grenoble.grid5000.fr sid/main libfontconfig1 2.5.0-2 [110kB]
Get:48 http://idpot.grenoble.grid5000.fr sid/main libxft2 2.1.12-2 [47.6kB]
Get:49 http://idpot.grenoble.grid5000.fr sid/main libexpat1-dev 1.95.8-4 [129kB]
Get:50 http://idpot.grenoble.grid5000.fr sid/main zlib1g-dev 1:1.2.3.3.dfsg-11 [157kB]
Get:51 http://idpot.grenoble.grid5000.fr sid/main libfreetype6-dev 2.3.5-1+b1 [662kB]
Get:52 http://idpot.grenoble.grid5000.fr sid/main libpcre3 7.6-2 [208kB]
Get:53 http://idpot.grenoble.grid5000.fr sid/main libglib2.0-0 2.14.6-1 [561kB]
Get:54 http://idpot.grenoble.grid5000.fr sid/main pkg-config 0.22-1 [52.2kB]
Get:55 http://idpot.grenoble.grid5000.fr sid/main libfontconfig1-dev 2.5.0-2 [595kB]
Get:56 http://idpot.grenoble.grid5000.fr sid/main libxft-dev 2.1.12-2 [61.3kB]
Get:57 http://idpot.grenoble.grid5000.fr sid/main libxi6 2:1.1.3-1 [24.6kB]
Get:58 http://idpot.grenoble.grid5000.fr sid/main libxi-dev 2:1.1.3-1 [69.0kB]
Get:59 http://idpot.grenoble.grid5000.fr sid/main libxinerama1 2:1.0.3-1 [9874B]
Get:60 http://idpot.grenoble.grid5000.fr sid/main x11proto-xinerama-dev 1.1.2-4 [5074B]
Get:61 http://idpot.grenoble.grid5000.fr sid/main libxinerama-dev 2:1.0.3-1 [11.4kB]
Get:62 http://idpot.grenoble.grid5000.fr sid/main libxrandr2 2:1.2.2-1 [20.4kB]
Get:63 http://idpot.grenoble.grid5000.fr sid/main x11proto-randr-dev 1.2.1-2 [28.6kB]
Get:64 http://idpot.grenoble.grid5000.fr sid/main libxrandr-dev 2:1.2.2-1 [27.8kB]
Get:65 http://idpot.grenoble.grid5000.fr sid/main adduser 3.106 [183kB]
Get:66 http://idpot.grenoble.grid5000.fr sid/main bsdmainutils 6.1.10 [172kB]
Get:67 http://idpot.grenoble.grid5000.fr sid/main groff-base 1.18.1.1-17 [844kB]
Get:68 http://idpot.grenoble.grid5000.fr sid/main net-tools 1.60-19 [258kB]
Get:69 http://idpot.grenoble.grid5000.fr sid/main ifupdown 0.6.8 [50.9kB]
Get:70 http://idpot.grenoble.grid5000.fr sid/main libncursesw5 5.6+20080203-1 [347kB]
Get:71 http://idpot.grenoble.grid5000.fr sid/main libssl0.9.8 0.9.8g-7 [2900kB]
Get:72 http://idpot.grenoble.grid5000.fr sid/main man-db 2.5.1-2 [997kB]
Get:73 http://idpot.grenoble.grid5000.fr sid/main netbase 4.30 [18.0kB]
Get:74 http://idpot.grenoble.grid5000.fr sid/main gettext-base 0.17-2 [123kB]
Get:75 http://idpot.grenoble.grid5000.fr sid/main libdb4.5 4.5.20-11 [525kB]
Get:76 http://idpot.grenoble.grid5000.fr sid/main libkeyutils1 1.2-6 [5206B]
Get:77 http://idpot.grenoble.grid5000.fr sid/main libkrb53 1.6.dfsg.3~beta1-3 [464kB]
Get:78 http://idpot.grenoble.grid5000.fr sid/main m4 1.4.10-1 [206kB]
Get:79 http://idpot.grenoble.grid5000.fr sid/main mime-support 3.40-1.1 [31.3kB]
Get:80 http://idpot.grenoble.grid5000.fr sid/main python2.4-minimal 2.4.4-8 [967kB]
Get:81 http://idpot.grenoble.grid5000.fr sid/main python2.4 2.4.4-8 [2801kB]
Get:82 http://idpot.grenoble.grid5000.fr sid/main python-minimal 2.4.4-6 [12.9kB]
Get:83 http://idpot.grenoble.grid5000.fr sid/main python 2.4.4-6 [140kB]
Get:84 http://idpot.grenoble.grid5000.fr sid/main python-support 0.7.6 [26.6kB]
Get:85 http://idpot.grenoble.grid5000.fr sid/main sharutils 1:4.6.3-1 [206kB]
Get:86 http://idpot.grenoble.grid5000.fr sid/main autoconf 2.61-6 [448kB]
Get:87 http://idpot.grenoble.grid5000.fr sid/main autotools-dev 20080123.1 [63.0kB]
Get:88 http://idpot.grenoble.grid5000.fr sid/main automake1.7 1.7.9-9 [391kB]
Get:89 http://idpot.grenoble.grid5000.fr sid/main html2text 1.3.2a-3 [98.9kB]
Get:90 http://idpot.grenoble.grid5000.fr sid/main libgomp1 4.3.0~rc2-1 [13.3kB]
Get:91 http://idpot.grenoble.grid5000.fr sid/main gettext 0.17-2 [2683kB]
Get:92 http://idpot.grenoble.grid5000.fr sid/main intltool-debian 0.35.0+20060710.1 [30.8kB]
Get:93 http://idpot.grenoble.grid5000.fr sid/main po-debconf 1.0.12 [237kB]
Get:94 http://idpot.grenoble.grid5000.fr sid/main debhelper 6.0.7 [521kB]
Get:95 http://idpot.grenoble.grid5000.fr sid/main cdbs 0.4.51 [919kB]
Get:96 http://idpot.grenoble.grid5000.fr sid/main cli-common 0.5.6 [165kB]
Get:97 http://idpot.grenoble.grid5000.fr sid/main libhtml-tagset-perl 3.10-2 [13.7kB]
Get:98 http://idpot.grenoble.grid5000.fr sid/main liburi-perl 1.35.dfsg.1-1 [88.0kB]
Get:99 http://idpot.grenoble.grid5000.fr sid/main libhtml-parser-perl 3.56-1 [108kB]
Get:100 http://idpot.grenoble.grid5000.fr sid/main libhtml-tree-perl 3.23-1 [209kB]
Get:101 http://idpot.grenoble.grid5000.fr sid/main libwww-perl 5.808-1 [366kB]
Get:102 http://idpot.grenoble.grid5000.fr sid/main libxml-parser-perl 2.36-1 [365kB]
Get:103 http://idpot.grenoble.grid5000.fr sid/main libxml-perl 0.08-1 [119kB]
Get:104 http://idpot.grenoble.grid5000.fr sid/main libxml-regexp-perl 0.03-7 [7518B]
Get:105 http://idpot.grenoble.grid5000.fr sid/main libxml-dom-perl 1.44-1 [184kB]
Get:106 http://idpot.grenoble.grid5000.fr sid/main mono-common 1.2.6+dfsg-6 [113kB]
Get:107 http://idpot.grenoble.grid5000.fr sid/main mono-jit 1.2.6+dfsg-6 [712kB]
Get:108 http://idpot.grenoble.grid5000.fr sid/main libmono-corlib1.0-cil 1.2.6+dfsg-6 [747kB]
Get:109 http://idpot.grenoble.grid5000.fr sid/main libmono-peapi1.0-cil 1.2.6+dfsg-6 [67.2kB]
Get:110 http://idpot.grenoble.grid5000.fr sid/main libmono-system1.0-cil 1.2.6+dfsg-6 [929kB]
Get:111 http://idpot.grenoble.grid5000.fr sid/main libmono-relaxng1.0-cil 1.2.6+dfsg-6 [107kB]
Get:112 http://idpot.grenoble.grid5000.fr sid/main libmono-security1.0-cil 1.2.6+dfsg-6 [138kB]
Get:113 http://idpot.grenoble.grid5000.fr sid/main libmono-sharpzip0.84-cil 1.2.6+dfsg-6 [81.9kB]
Get:114 http://idpot.grenoble.grid5000.fr sid/main libmono-data-tds1.0-cil 1.2.6+dfsg-6 [53.2kB]
Get:115 http://idpot.grenoble.grid5000.fr sid/main libmono-system-data1.0-cil 1.2.6+dfsg-6 [247kB]
Get:116 http://idpot.grenoble.grid5000.fr sid/main libmono-system-web1.0-cil 1.2.6+dfsg-6 [421kB]
Get:117 http://idpot.grenoble.grid5000.fr sid/main libmono-system-runtime1.0-cil 1.2.6+dfsg-6 [84.0kB]
Get:118 http://idpot.grenoble.grid5000.fr sid/main libmono0 1.2.6+dfsg-6 [816kB]
Get:119 http://idpot.grenoble.grid5000.fr sid/main mono-gac 1.2.6+dfsg-6 [38.4kB]
Get:120 http://idpot.grenoble.grid5000.fr sid/main mono-runtime 1.2.6+dfsg-6 [24.3kB]
Get:121 http://idpot.grenoble.grid5000.fr sid/main libmono1.0-cil 1.2.6+dfsg-6 [399kB]
Get:122 http://idpot.grenoble.grid5000.fr sid/main mono-1.0-devel 1.2.6+dfsg-6 [381kB]
Get:123 http://idpot.grenoble.grid5000.fr sid/main mono-utils 1.2.6+dfsg-6 [580kB]
Get:124 http://idpot.grenoble.grid5000.fr sid/main cli-common-dev 0.5.6 [38.0kB]
Get:125 http://idpot.grenoble.grid5000.fr sid/main libdbus-1-3 1.1.20-1 [143kB]
Get:126 http://idpot.grenoble.grid5000.fr sid/main dbus 1.1.20-1 [323kB]
Get:127 http://idpot.grenoble.grid5000.fr sid/main sgml-base 1.26 [11.7kB]
Get:128 http://idpot.grenoble.grid5000.fr sid/main xml-core 0.11 [22.4kB]
Get:129 http://idpot.grenoble.grid5000.fr sid/main sgml-data 2.0.3 [279kB]
Get:130 http://idpot.grenoble.grid5000.fr sid/main docbook-xml 4.5-5 [344kB]
Get:131 http://idpot.grenoble.grid5000.fr sid/main esound-common 0.2.36-3 [38.2kB]
Get:132 http://idpot.grenoble.grid5000.fr sid/main fontconfig 2.5.0-2 [43.0kB]
Get:133 http://idpot.grenoble.grid5000.fr sid/main gconf2-common 2.20.1-3 [1489kB]
Get:134 http://idpot.grenoble.grid5000.fr sid/main libidl0 0.8.9-0.1 [86.9kB]
Get:135 http://idpot.grenoble.grid5000.fr sid/main liborbit2 1:2.14.10-0.1 [246kB]
Get:136 http://idpot.grenoble.grid5000.fr sid/main libxml2 2.6.31.dfsg-2 [782kB]
Get:137 http://idpot.grenoble.grid5000.fr sid/main libgconf2-4 2.20.1-3 [240kB]
Get:138 http://idpot.grenoble.grid5000.fr sid/main psmisc 22.6-1 [84.7kB]
Get:139 http://idpot.grenoble.grid5000.fr sid/main gconf2 2.20.1-3 [139kB]
Get:140 http://idpot.grenoble.grid5000.fr sid/main libxml2-utils 2.6.31.dfsg-2 [33.9kB]
Get:141 http://idpot.grenoble.grid5000.fr sid/main python-libxml2 2.6.31.dfsg-2 [263kB]
Get:142 http://idpot.grenoble.grid5000.fr sid/main libxslt1.1 1.1.22-1 [219kB]
Get:143 http://idpot.grenoble.grid5000.fr sid/main xsltproc 1.1.22-1 [109kB]
Get:144 http://idpot.grenoble.grid5000.fr sid/main gnome-doc-utils 0.12.1-1 [383kB]
Get:145 http://idpot.grenoble.grid5000.fr sid/main gnome-mime-data 2.18.0-1 [725kB]
Get:146 http://idpot.grenoble.grid5000.fr sid/main intltool 0.37.1-1 [122kB]
Get:147 http://idpot.grenoble.grid5000.fr sid/main libart-2.0-2 2.3.20-1 [64.7kB]
Get:148 http://idpot.grenoble.grid5000.fr sid/main libart-2.0-dev 2.3.20-1 [81.7kB]
Get:149 http://idpot.grenoble.grid5000.fr sid/main libglib2.0-cil 2.10.4-2 [160kB]
Get:150 http://idpot.grenoble.grid5000.fr sid/main libart2.0-cil 2.16.1-2 [141kB]
Get:151 http://idpot.grenoble.grid5000.fr sid/main libaspell15 0.60.5-2 [635kB]
Get:152 http://idpot.grenoble.grid5000.fr sid/main libaspell-dev 0.60.5-2 [49.0kB]
Get:153 http://idpot.grenoble.grid5000.fr sid/main libatk1.0-0 1.20.0-1 [78.5kB]
Get:154 http://idpot.grenoble.grid5000.fr sid/main libglib2.0-dev 2.14.6-1 [569kB]
Get:155 http://idpot.grenoble.grid5000.fr sid/main libatk1.0-dev 1.20.0-1 [112kB]
Get:156 http://idpot.grenoble.grid5000.fr sid/main libaudiofile0 0.2.6-7 [76.4kB]
Get:157 http://idpot.grenoble.grid5000.fr sid/main libaudiofile-dev 0.2.6-7 [116kB]
Get:158 http://idpot.grenoble.grid5000.fr sid/main libavahi-common-data 0.6.22-2 [98.7kB]
Get:159 http://idpot.grenoble.grid5000.fr sid/main libavahi-common3 0.6.22-2 [114kB]
Get:160 http://idpot.grenoble.grid5000.fr sid/main libavahi-client3 0.6.22-2 [118kB]
Get:161 http://idpot.grenoble.grid5000.fr sid/main libavahi-common-dev 0.6.22-2 [134kB]
Get:162 http://idpot.grenoble.grid5000.fr sid/main libdbus-1-dev 1.1.20-1 [212kB]
Get:163 http://idpot.grenoble.grid5000.fr sid/main libavahi-client-dev 0.6.22-2 [128kB]
Get:164 http://idpot.grenoble.grid5000.fr sid/main libavahi-glib1 0.6.22-2 [99.2kB]
Get:165 http://idpot.grenoble.grid5000.fr sid/main libavahi-glib-dev 0.6.22-2 [101kB]
Get:166 http://idpot.grenoble.grid5000.fr sid/main libbonobo2-common 2.21.90-1 [306kB]
Get:167 http://idpot.grenoble.grid5000.fr sid/main libbonobo2-0 2.21.90-1 [212kB]
Get:168 http://idpot.grenoble.grid5000.fr sid/main libidl-dev 0.8.9-0.1 [102kB]
Get:169 http://idpot.grenoble.grid5000.fr sid/main liborbit2-dev 1:2.14.10-0.1 [461kB]
Get:170 http://idpot.grenoble.grid5000.fr sid/main libpopt-dev 1.10-3 [38.1kB]
Get:171 http://idpot.grenoble.grid5000.fr sid/main libbonobo2-dev 2.21.90-1 [666kB]
Get:172 http://idpot.grenoble.grid5000.fr sid/main libbonoboui2-common 2.21.90-1 [392kB]
Get:173 http://idpot.grenoble.grid5000.fr sid/main libpng12-0 1.2.15~beta5-3 [187kB]
Get:174 http://idpot.grenoble.grid5000.fr sid/main libcairo2 1.4.14-1 [539kB]
Get:175 http://idpot.grenoble.grid5000.fr sid/main libcupsys2 1.3.6-1 [156kB]
Get:176 http://idpot.grenoble.grid5000.fr sid/main libgtk2.0-common 2.12.8-1 [6206kB]
Get:177 http://idpot.grenoble.grid5000.fr sid/main libjpeg62 6b-14 [86.0kB]
Get:178 http://idpot.grenoble.grid5000.fr sid/main libdatrie0 0.1.3-1 [18.3kB]
Get:179 http://idpot.grenoble.grid5000.fr sid/main libpango1.0-common 1.18.4-1 [50.1kB]
Get:180 http://idpot.grenoble.grid5000.fr sid/main libthai-data 0.1.9-3 [162kB]
Get:181 http://idpot.grenoble.grid5000.fr sid/main libthai0 0.1.9-3 [31.5kB]
Get:182 http://idpot.grenoble.grid5000.fr sid/main libpango1.0-0 1.18.4-1 [294kB]
Get:183 http://idpot.grenoble.grid5000.fr sid/main libtiff4 3.8.2-7 [483kB]
Get:184 http://idpot.grenoble.grid5000.fr sid/main libgtk2.0-0 2.12.8-1 [2063kB]
Get:185 http://idpot.grenoble.grid5000.fr sid/main libglade2-0 1:2.6.2-1 [86.5kB]
Get:186 http://idpot.grenoble.grid5000.fr sid/main libesd0 0.2.36-3 [18.9kB]
Get:187 http://idpot.grenoble.grid5000.fr sid/main libdbus-glib-1-2 0.74-1 [135kB]
Get:188 http://idpot.grenoble.grid5000.fr sid/main libfam0 2.7.0-13.1 [27.9kB]
Get:189 http://idpot.grenoble.grid5000.fr sid/main shared-mime-info 0.23-4 [591kB]
Get:190 http://idpot.grenoble.grid5000.fr sid/main libgnomevfs2-common 1:2.20.1-2 [1180kB]
Get:191 http://idpot.grenoble.grid5000.fr sid/main libhal1 0.5.10+git20080301-1 [418kB]
Get:192 http://idpot.grenoble.grid5000.fr sid/main libhal-storage1 0.5.10+git20080301-1 [411kB]
Get:193 http://idpot.grenoble.grid5000.fr sid/main libgnomevfs2-0 1:2.20.1-2 [550kB]
Get:194 http://idpot.grenoble.grid5000.fr sid/main libgnome2-common 2.20.1.1-1 [987kB]
Get:195 http://idpot.grenoble.grid5000.fr sid/main libgnome2-0 2.20.1.1-1 [114kB]
Get:196 http://idpot.grenoble.grid5000.fr sid/main libgail18 1.20.2-1 [195kB]
Get:197 http://idpot.grenoble.grid5000.fr sid/main libgail-common 1.20.2-1 [227kB]
Get:198 http://idpot.grenoble.grid5000.fr sid/main libgnomecanvas2-common 2.20.1.1-1 [159kB]
Get:199 http://idpot.grenoble.grid5000.fr sid/main libgnomecanvas2-0 2.20.1.1-1 [116kB]
Get:200 http://idpot.grenoble.grid5000.fr sid/main libbonoboui2-0 2.21.90-1 [221kB]
Get:201 http://idpot.grenoble.grid5000.fr sid/main libpng12-dev 1.2.15~beta5-3 [171kB]
Get:202 http://idpot.grenoble.grid5000.fr sid/main libcairo2-dev 1.4.14-1 [617kB]
Get:203 http://idpot.grenoble.grid5000.fr sid/main libpango1.0-dev 1.18.4-1 [361kB]
Get:204 http://idpot.grenoble.grid5000.fr sid/main libgtk2.0-dev 2.12.8-1 [2784kB]
Get:205 http://idpot.grenoble.grid5000.fr sid/main libxml2-dev 2.6.31.dfsg-2 [673kB]
Get:206 http://idpot.grenoble.grid5000.fr sid/main libglade2-dev 1:2.6.2-1 [130kB]
Get:207 http://idpot.grenoble.grid5000.fr sid/main libgconf2-dev 2.20.1-3 [275kB]
Get:208 http://idpot.grenoble.grid5000.fr sid/main libgpg-error-dev 1.4-2 [33.6kB]
Get:209 http://idpot.grenoble.grid5000.fr sid/main libgcrypt11-dev 1.4.0-3 [319kB]
Get:210 http://idpot.grenoble.grid5000.fr sid/main libopencdk10-dev 0.6.6-1 [117kB]
Get:211 http://idpot.grenoble.grid5000.fr sid/main libtasn1-3-dev 1.3-1 [372kB]
Get:212 http://idpot.grenoble.grid5000.fr sid/main libgnutls-dev 2.2.2-1 [439kB]
Get:213 http://idpot.grenoble.grid5000.fr sid/main libsepol1-dev 2.0.11-1 [508kB]
Get:214 http://idpot.grenoble.grid5000.fr sid/main libselinux1-dev 2.0.35-1 [254kB]
Get:215 http://idpot.grenoble.grid5000.fr sid/main libgnomevfs2-dev 1:2.20.1-2 [534kB]
Get:216 http://idpot.grenoble.grid5000.fr sid/main libesd0-dev 0.2.36-3 [23.7kB]
Get:217 http://idpot.grenoble.grid5000.fr sid/main libgnome2-dev 2.20.1.1-1 [113kB]
Get:218 http://idpot.grenoble.grid5000.fr sid/main libgail-dev 1.20.2-1 [89.6kB]
Get:219 http://idpot.grenoble.grid5000.fr sid/main libgnomecanvas2-dev 2.20.1.1-1 [142kB]
Get:220 http://idpot.grenoble.grid5000.fr sid/main libbonoboui2-dev 2.21.90-1 [286kB]
Get:221 http://idpot.grenoble.grid5000.fr sid/main libdbus-glib-1-dev 0.74-1 [176kB]
Get:222 http://idpot.grenoble.grid5000.fr sid/main libgconf2.0-cil 2.16.1-2 [131kB]
Get:223 http://idpot.grenoble.grid5000.fr sid/main libmono-cairo1.0-cil 1.2.6+dfsg-6 [44.9kB]
Get:224 http://idpot.grenoble.grid5000.fr sid/main libgtk2.0-cil 2.10.4-2 [815kB]
Get:225 http://idpot.grenoble.grid5000.fr sid/main libglade2.0-cil 2.10.4-2 [143kB]
Get:226 http://idpot.grenoble.grid5000.fr sid/main libgmime-2.0-2 2.2.17-1 [202kB]
Get:227 http://idpot.grenoble.grid5000.fr sid/main libgmime2.2-cil 2.2.17-1 [106kB]
Get:228 http://idpot.grenoble.grid5000.fr sid/main libgnome-keyring0 2.20.3-1 [48.0kB]
Get:229 http://idpot.grenoble.grid5000.fr sid/main libhal-dev 0.5.10+git20080301-1 [424kB]
Get:230 http://idpot.grenoble.grid5000.fr sid/main libhal-storage-dev 0.5.10+git20080301-1 [411kB]
Get:231 http://idpot.grenoble.grid5000.fr sid/main libgnome-keyring-dev 2.20.3-1 [88.7kB]
Get:232 http://idpot.grenoble.grid5000.fr sid/main libgnome-vfs2.0-cil 2.16.1-2 [184kB]
Get:233 http://idpot.grenoble.grid5000.fr sid/main libgnomecups1.0-1 0.2.3-1 [70.6kB]
Get:234 http://idpot.grenoble.grid5000.fr sid/main libgnomeprint2.2-data 2.18.4-1 [173kB]
Get:235 http://idpot.grenoble.grid5000.fr sid/main libgnomeprint2.2-0 2.18.4-1 [264kB]
Get:236 http://idpot.grenoble.grid5000.fr sid/main libgnomeprintui2.2-common 2.18.2-1 [270kB]
Get:237 http://idpot.grenoble.grid5000.fr sid/main libgnomeprintui2.2-0 2.18.2-1 [163kB]
Get:238 http://idpot.grenoble.grid5000.fr sid/main libgnomeui-common 2.20.1.1-1 [803kB]
Get:239 http://idpot.grenoble.grid5000.fr sid/main libgnomeui-0 2.20.1.1-1 [362kB]
Get:240 http://idpot.grenoble.grid5000.fr sid/main libpanel-applet2-0 2.20.3-3 [105kB]
Get:241 http://idpot.grenoble.grid5000.fr sid/main libgnome2.0-cil 2.16.1-2 [269kB]
Get:242 http://idpot.grenoble.grid5000.fr sid/main libgnomeprint2.2-dev 2.18.4-1 [316kB]
Get:243 http://idpot.grenoble.grid5000.fr sid/main libgnomeprintui2.2-dev 2.18.2-1 [206kB]
Get:244 http://idpot.grenoble.grid5000.fr sid/main libjpeg62-dev 6b-14 [186kB]
Get:245 http://idpot.grenoble.grid5000.fr sid/main libgnomeui-dev 2.20.1.1-1 [428kB]
Get:246 http://idpot.grenoble.grid5000.fr sid/main libgtkspell0 2.0.10-4 [19.0kB]
Get:247 http://idpot.grenoble.grid5000.fr sid/main libgtkspell-dev 2.0.10-4 [24.3kB]
Get:248 http://idpot.grenoble.grid5000.fr sid/main libmono-addins0.2-cil 0.3.1-3 [114kB]
Get:249 http://idpot.grenoble.grid5000.fr sid/main libmono-addins-gui0.2-cil 0.3.1-3 [44.0kB]
Get:250 http://idpot.grenoble.grid5000.fr sid/main libmono-corlib2.0-cil 1.2.6+dfsg-6 [897kB]
Get:251 http://idpot.grenoble.grid5000.fr sid/main libmono-cairo2.0-cil 1.2.6+dfsg-6 [44.8kB]
Get:252 http://idpot.grenoble.grid5000.fr sid/main libmono-system2.0-cil 1.2.6+dfsg-6 [1413kB]
Get:253 http://idpot.grenoble.grid5000.fr sid/main libmono-security2.0-cil 1.2.6+dfsg-6 [139kB]
Get:254 http://idpot.grenoble.grid5000.fr sid/main libmono-data-tds2.0-cil 1.2.6+dfsg-6 [55.3kB]
Get:255 http://idpot.grenoble.grid5000.fr sid/main libmono-dev 1.2.6+dfsg-6 [1117kB]
Get:256 http://idpot.grenoble.grid5000.fr sid/main libmono-sharpzip2.84-cil 1.2.6+dfsg-6 [81.9kB]
Get:257 http://idpot.grenoble.grid5000.fr sid/main libmono-system-data2.0-cil 1.2.6+dfsg-6 [314kB]
Get:258 http://idpot.grenoble.grid5000.fr sid/main libmono-system-web2.0-cil 1.2.6+dfsg-6 [831kB]
Get:259 http://idpot.grenoble.grid5000.fr sid/main libmono2.0-cil 1.2.6+dfsg-6 [236kB]
Get:260 http://idpot.grenoble.grid5000.fr sid/main libndesk-dbus1.0-cil 0.6.0-1 [57.0kB]
Get:261 http://idpot.grenoble.grid5000.fr sid/main libndesk-dbus-glib1.0-cil 0.4.1-1 [7866B]
Get:262 http://idpot.grenoble.grid5000.fr sid/main libpanel-applet2-dev 2.20.3-3 [110kB]
Get:263 http://idpot.grenoble.grid5000.fr sid/main libscrollkeeper0 0.3.14-16 [150kB]
Get:264 http://idpot.grenoble.grid5000.fr sid/main mono-gmcs 1.2.6+dfsg-6 [380kB]
Get:265 http://idpot.grenoble.grid5000.fr sid/main scrollkeeper 0.3.14-16 [160kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 83.7MB in 11s (7235kB/s)
Selecting previously deselected package x11-common.
(Reading database ... 9174 files and directories currently installed.)
Unpacking x11-common (from .../x11-common_1%3a7.3+10_i386.deb) ...
Selecting previously deselected package libice6.
Unpacking libice6 (from .../libice6_2%3a1.0.4-1_i386.deb) ...
Setting up x11-common (1:7.3+10) ...
Selecting previously deselected package x11proto-core-dev.
(Reading database ... 9212 files and directories currently installed.)
Unpacking x11proto-core-dev (from .../x11proto-core-dev_7.0.12-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 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) ...
Selecting previously deselected package libx11-data.
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 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 libxext6.
Unpacking libxext6 (from .../libxext6_2%3a1.0.4-1_i386.deb) ...
Selecting previously deselected package x11proto-input-dev.
Unpacking x11proto-input-dev (from .../x11proto-input-dev_1.4.3-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_2%3a1.0.4-1_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.1-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.005_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.2_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.2_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-2_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_2%3a1.0.3-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_2%3a1.0.3-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 adduser.
Unpacking adduser (from .../archives/adduser_3.106_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-17_i386.deb) ...
Selecting previously deselected package net-tools.
Unpacking net-tools (from .../net-tools_1.60-19_i386.deb) ...
Selecting previously deselected package ifupdown.
Unpacking ifupdown (from .../ifupdown_0.6.8_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-7_i386.deb) ...
Selecting previously deselected package man-db.
Unpacking man-db (from .../man-db_2.5.1-2_i386.deb) ...
Selecting previously deselected package netbase.
Unpacking netbase (from .../archives/netbase_4.30_all.deb) ...
Selecting previously deselected package gettext-base.
Unpacking gettext-base (from .../gettext-base_0.17-2_i386.deb) ...
Selecting previously deselected package libdb4.5.
Unpacking libdb4.5 (from .../libdb4.5_4.5.20-11_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-3_i386.deb) ...
Selecting previously deselected package m4.
Unpacking m4 (from .../archives/m4_1.4.10-1_i386.deb) ...
Selecting previously deselected package mime-support.
Unpacking mime-support (from .../mime-support_3.40-1.1_all.deb) ...
Selecting previously deselected package python2.4-minimal.
Unpacking python2.4-minimal (from .../python2.4-minimal_2.4.4-8_i386.deb) ...
Selecting previously deselected package python2.4.
Unpacking python2.4 (from .../python2.4_2.4.4-8_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-support.
Unpacking python-support (from .../python-support_0.7.6_all.deb) ...
Selecting previously deselected package sharutils.
Unpacking sharutils (from .../sharutils_1%3a4.6.3-1_i386.deb) ...
Selecting previously deselected package autoconf.
Unpacking autoconf (from .../autoconf_2.61-6_all.deb) ...
Selecting previously deselected package autotools-dev.
Unpacking autotools-dev (from .../autotools-dev_20080123.1_all.deb) ...
Selecting previously deselected package automake1.7.
Unpacking automake1.7 (from .../automake1.7_1.7.9-9_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.0~rc2-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.12_all.deb) ...
Selecting previously deselected package debhelper.
Unpacking debhelper (from .../debhelper_6.0.7_all.deb) ...
Selecting previously deselected package cdbs.
Unpacking cdbs (from .../archives/cdbs_0.4.51_all.deb) ...
Selecting previously deselected package cli-common.
Unpacking cli-common (from .../cli-common_0.5.6_all.deb) ...
Selecting previously deselected package libhtml-tagset-perl.
Unpacking libhtml-tagset-perl (from .../libhtml-tagset-perl_3.10-2_all.deb) ...
Selecting previously deselected package liburi-perl.
Unpacking liburi-perl (from .../liburi-perl_1.35.dfsg.1-1_all.deb) ...
Selecting previously deselected package libhtml-parser-perl.
Unpacking libhtml-parser-perl (from .../libhtml-parser-perl_3.56-1_i386.deb) ...
Selecting previously deselected package libhtml-tree-perl.
Unpacking libhtml-tree-perl (from .../libhtml-tree-perl_3.23-1_all.deb) ...
Selecting previously deselected package libwww-perl.
Unpacking libwww-perl (from .../libwww-perl_5.808-1_all.deb) ...
Selecting previously deselected package libxml-parser-perl.
Unpacking libxml-parser-perl (from .../libxml-parser-perl_2.36-1_i386.deb) ...
Selecting previously deselected package libxml-perl.
Unpacking libxml-perl (from .../libxml-perl_0.08-1_all.deb) ...
Selecting previously deselected package libxml-regexp-perl.
Unpacking libxml-regexp-perl (from .../libxml-regexp-perl_0.03-7_all.deb) ...
Selecting previously deselected package libxml-dom-perl.
Unpacking libxml-dom-perl (from .../libxml-dom-perl_1.44-1_all.deb) ...
Selecting previously deselected package mono-common.
Unpacking mono-common (from .../mono-common_1.2.6+dfsg-6_i386.deb) ...
Selecting previously deselected package mono-jit.
Unpacking mono-jit (from .../mono-jit_1.2.6+dfsg-6_i386.deb) ...
Selecting previously deselected package libmono-corlib1.0-cil.
Unpacking libmono-corlib1.0-cil (from .../libmono-corlib1.0-cil_1.2.6+dfsg-6_all.deb) ...
Selecting previously deselected package libmono-peapi1.0-cil.
Unpacking libmono-peapi1.0-cil (from .../libmono-peapi1.0-cil_1.2.6+dfsg-6_all.deb) ...
Selecting previously deselected package libmono-system1.0-cil.
Unpacking libmono-system1.0-cil (from .../libmono-system1.0-cil_1.2.6+dfsg-6_all.deb) ...
Selecting previously deselected package libmono-relaxng1.0-cil.
Unpacking libmono-relaxng1.0-cil (from .../libmono-relaxng1.0-cil_1.2.6+dfsg-6_all.deb) ...
Selecting previously deselected package libmono-security1.0-cil.
Unpacking libmono-security1.0-cil (from .../libmono-security1.0-cil_1.2.6+dfsg-6_all.deb) ...
Selecting previously deselected package libmono-sharpzip0.84-cil.
Unpacking libmono-sharpzip0.84-cil (from .../libmono-sharpzip0.84-cil_1.2.6+dfsg-6_all.deb) ...
Selecting previously deselected package libmono-data-tds1.0-cil.
Unpacking libmono-data-tds1.0-cil (from .../libmono-data-tds1.0-cil_1.2.6+dfsg-6_all.deb) ...
Selecting previously deselected package libmono-system-data1.0-cil.
Unpacking libmono-system-data1.0-cil (from .../libmono-system-data1.0-cil_1.2.6+dfsg-6_all.deb) ...
Selecting previously deselected package libmono-system-web1.0-cil.
Unpacking libmono-system-web1.0-cil (from .../libmono-system-web1.0-cil_1.2.6+dfsg-6_all.deb) ...
Selecting previously deselected package libmono-system-runtime1.0-cil.
Unpacking libmono-system-runtime1.0-cil (from .../libmono-system-runtime1.0-cil_1.2.6+dfsg-6_all.deb) ...
Selecting previously deselected package libmono0.
Unpacking libmono0 (from .../libmono0_1.2.6+dfsg-6_i386.deb) ...
Selecting previously deselected package mono-gac.
Unpacking mono-gac (from .../mono-gac_1.2.6+dfsg-6_all.deb) ...
Selecting previously deselected package mono-runtime.
Unpacking mono-runtime (from .../mono-runtime_1.2.6+dfsg-6_i386.deb) ...
Selecting previously deselected package libmono1.0-cil.
Unpacking libmono1.0-cil (from .../libmono1.0-cil_1.2.6+dfsg-6_all.deb) ...
Selecting previously deselected package mono-1.0-devel.
Unpacking mono-1.0-devel (from .../mono-1.0-devel_1.2.6+dfsg-6_all.deb) ...
Selecting previously deselected package mono-utils.
Unpacking mono-utils (from .../mono-utils_1.2.6+dfsg-6_i386.deb) ...
Selecting previously deselected package cli-common-dev.
Unpacking cli-common-dev (from .../cli-common-dev_0.5.6_all.deb) ...
Selecting previously deselected package libdbus-1-3.
Unpacking libdbus-1-3 (from .../libdbus-1-3_1.1.20-1_i386.deb) ...
Selecting previously deselected package dbus.
Unpacking dbus (from .../dbus_1.1.20-1_i386.deb) ...
Selecting previously deselected package sgml-base.
Unpacking sgml-base (from .../sgml-base_1.26_all.deb) ...
Selecting previously deselected package xml-core.
Unpacking xml-core (from .../archives/xml-core_0.11_all.deb) ...
Selecting previously deselected package sgml-data.
Unpacking sgml-data (from .../sgml-data_2.0.3_all.deb) ...
Selecting previously deselected package docbook-xml.
Unpacking docbook-xml (from .../docbook-xml_4.5-5_all.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-3_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-2_i386.deb) ...
Selecting previously deselected package libgconf2-4.
Unpacking libgconf2-4 (from .../libgconf2-4_2.20.1-3_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-3_i386.deb) ...
Selecting previously deselected package libxml2-utils.
Unpacking libxml2-utils (from .../libxml2-utils_2.6.31.dfsg-2_i386.deb) ...
Selecting previously deselected package python-libxml2.
Unpacking python-libxml2 (from .../python-libxml2_2.6.31.dfsg-2_i386.deb) ...
Selecting previously deselected package libxslt1.1.
Unpacking libxslt1.1 (from .../libxslt1.1_1.1.22-1_i386.deb) ...
Selecting previously deselected package xsltproc.
Unpacking xsltproc (from .../xsltproc_1.1.22-1_i386.deb) ...
Selecting previously deselected package gnome-doc-utils.
Unpacking gnome-doc-utils (from .../gnome-doc-utils_0.12.1-1_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 intltool.
Unpacking intltool (from .../intltool_0.37.1-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 libart-2.0-dev.
Unpacking libart-2.0-dev (from .../libart-2.0-dev_2.3.20-1_i386.deb) ...
Selecting previously deselected package libglib2.0-cil.
Unpacking libglib2.0-cil (from .../libglib2.0-cil_2.10.4-2_i386.deb) ...
Selecting previously deselected package libart2.0-cil.
Unpacking libart2.0-cil (from .../libart2.0-cil_2.16.1-2_i386.deb) ...
Selecting previously deselected package libaspell15.
Unpacking libaspell15 (from .../libaspell15_0.60.5-2_i386.deb) ...
Selecting previously deselected package libaspell-dev.
Unpacking libaspell-dev (from .../libaspell-dev_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 libaudiofile-dev.
Unpacking libaudiofile-dev (from .../libaudiofile-dev_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-common-dev.
Unpacking libavahi-common-dev (from .../libavahi-common-dev_0.6.22-2_i386.deb) ...
Selecting previously deselected package libdbus-1-dev.
Unpacking libdbus-1-dev (from .../libdbus-1-dev_1.1.20-1_i386.deb) ...
Selecting previously deselected package libavahi-client-dev.
Unpacking libavahi-client-dev (from .../libavahi-client-dev_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 libavahi-glib-dev.
Unpacking libavahi-glib-dev (from .../libavahi-glib-dev_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 libidl-dev.
Unpacking libidl-dev (from .../libidl-dev_0.8.9-0.1_i386.deb) ...
Selecting previously deselected package liborbit2-dev.
Unpacking liborbit2-dev (from .../liborbit2-dev_1%3a2.14.10-0.1_i386.deb) ...
Selecting previously deselected package libpopt-dev.
Unpacking libpopt-dev (from .../libpopt-dev_1.10-3_i386.deb) ...
Selecting previously deselected package libbonobo2-dev.
Unpacking libbonobo2-dev (from .../libbonobo2-dev_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 libpng12-0.
Unpacking libpng12-0 (from .../libpng12-0_1.2.15~beta5-3_i386.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.6-1_i386.deb) ...
Selecting previously deselected package libgtk2.0-common.
Unpacking libgtk2.0-common (from .../libgtk2.0-common_2.12.8-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.8-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 shared-mime-info.
Unpacking shared-mime-info (from .../shared-mime-info_0.23-4_i386.deb) ...
Selecting previously deselected package libgnomevfs2-common.
Unpacking libgnomevfs2-common (from .../libgnomevfs2-common_1%3a2.20.1-2_all.deb) ...
Selecting previously deselected package libhal1.
Unpacking libhal1 (from .../libhal1_0.5.10+git20080301-1_i386.deb) ...
Selecting previously deselected package libhal-storage1.
Unpacking libhal-storage1 (from .../libhal-storage1_0.5.10+git20080301-1_i386.deb) ...
Selecting previously deselected package libgnomevfs2-0.
Unpacking libgnomevfs2-0 (from .../libgnomevfs2-0_1%3a2.20.1-2_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 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 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.8-1_i386.deb) ...
Selecting previously deselected package libxml2-dev.
Unpacking libxml2-dev (from .../libxml2-dev_2.6.31.dfsg-2_i386.deb) ...
Selecting previously deselected package libglade2-dev.
Unpacking libglade2-dev (from .../libglade2-dev_1%3a2.6.2-1_i386.deb) ...
Selecting previously deselected package libgconf2-dev.
Unpacking libgconf2-dev (from .../libgconf2-dev_2.20.1-3_i386.deb) ...
Selecting previously deselected package libgpg-error-dev.
Unpacking libgpg-error-dev (from .../libgpg-error-dev_1.4-2_i386.deb) ...
Selecting previously deselected package libgcrypt11-dev.
Unpacking libgcrypt11-dev (from .../libgcrypt11-dev_1.4.0-3_i386.deb) ...
Selecting previously deselected package libopencdk10-dev.
Unpacking libopencdk10-dev (from .../libopencdk10-dev_0.6.6-1_i386.deb) ...
Selecting previously deselected package libtasn1-3-dev.
Unpacking libtasn1-3-dev (from .../libtasn1-3-dev_1.3-1_i386.deb) ...
Selecting previously deselected package libgnutls-dev.
Unpacking libgnutls-dev (from .../libgnutls-dev_2.2.2-1_i386.deb) ...
Selecting previously deselected package libsepol1-dev.
Unpacking libsepol1-dev (from .../libsepol1-dev_2.0.11-1_i386.deb) ...
Selecting previously deselected package libselinux1-dev.
Unpacking libselinux1-dev (from .../libselinux1-dev_2.0.35-1_i386.deb) ...
Selecting previously deselected package libgnomevfs2-dev.
Unpacking libgnomevfs2-dev (from .../libgnomevfs2-dev_1%3a2.20.1-2_i386.deb) ...
Selecting previously deselected package libesd0-dev.
Unpacking libesd0-dev (from .../libesd0-dev_0.2.36-3_i386.deb) ...
Selecting previously deselected package libgnome2-dev.
Unpacking libgnome2-dev (from .../libgnome2-dev_2.20.1.1-1_i386.deb) ...
Selecting previously deselected package libgail-dev.
Unpacking libgail-dev (from .../libgail-dev_1.20.2-1_i386.deb) ...
Selecting previously deselected package libgnomecanvas2-dev.
Unpacking libgnomecanvas2-dev (from .../libgnomecanvas2-dev_2.20.1.1-1_i386.deb) ...
Selecting previously deselected package libbonoboui2-dev.
Unpacking libbonoboui2-dev (from .../libbonoboui2-dev_2.21.90-1_i386.deb) ...
Selecting previously deselected package libdbus-glib-1-dev.
Unpacking libdbus-glib-1-dev (from .../libdbus-glib-1-dev_0.74-1_i386.deb) ...
Selecting previously deselected package libgconf2.0-cil.
Unpacking libgconf2.0-cil (from .../libgconf2.0-cil_2.16.1-2_all.deb) ...
Selecting previously deselected package libmono-cairo1.0-cil.
Unpacking libmono-cairo1.0-cil (from .../libmono-cairo1.0-cil_1.2.6+dfsg-6_all.deb) ...
Selecting previously deselected package libgtk2.0-cil.
Unpacking libgtk2.0-cil (from .../libgtk2.0-cil_2.10.4-2_i386.deb) ...
Selecting previously deselected package libglade2.0-cil.
Unpacking libglade2.0-cil (from .../libglade2.0-cil_2.10.4-2_i386.deb) ...
Selecting previously deselected package libgmime-2.0-2.
Unpacking libgmime-2.0-2 (from .../libgmime-2.0-2_2.2.17-1_i386.deb) ...
Selecting previously deselected package libgmime2.2-cil.
Unpacking libgmime2.2-cil (from .../libgmime2.2-cil_2.2.17-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 libhal-dev.
Unpacking libhal-dev (from .../libhal-dev_0.5.10+git20080301-1_i386.deb) ...
Selecting previously deselected package libhal-storage-dev.
Unpacking libhal-storage-dev (from .../libhal-storage-dev_0.5.10+git20080301-1_i386.deb) ...
Selecting previously deselected package libgnome-keyring-dev.
Unpacking libgnome-keyring-dev (from .../libgnome-keyring-dev_2.20.3-1_i386.deb) ...
Selecting previously deselected package libgnome-vfs2.0-cil.
Unpacking libgnome-vfs2.0-cil (from .../libgnome-vfs2.0-cil_2.16.1-2_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.4-1_all.deb) ...
Selecting previously deselected package libgnomeprint2.2-0.
Unpacking libgnomeprint2.2-0 (from .../libgnomeprint2.2-0_2.18.4-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 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 libpanel-applet2-0.
Unpacking libpanel-applet2-0 (from .../libpanel-applet2-0_2.20.3-3_i386.deb) ...
Selecting previously deselected package libgnome2.0-cil.
Unpacking libgnome2.0-cil (from .../libgnome2.0-cil_2.16.1-2_i386.deb) ...
Selecting previously deselected package libgnomeprint2.2-dev.
Unpacking libgnomeprint2.2-dev (from .../libgnomeprint2.2-dev_2.18.4-1_i386.deb) ...
Selecting previously deselected package libgnomeprintui2.2-dev.
Unpacking libgnomeprintui2.2-dev (from .../libgnomeprintui2.2-dev_2.18.2-1_i386.deb) ...
Selecting previously deselected package libjpeg62-dev.
Unpacking libjpeg62-dev (from .../libjpeg62-dev_6b-14_i386.deb) ...
Selecting previously deselected package libgnomeui-dev.
Unpacking libgnomeui-dev (from .../libgnomeui-dev_2.20.1.1-1_i386.deb) ...
Selecting previously deselected package libgtkspell0.
Unpacking libgtkspell0 (from .../libgtkspell0_2.0.10-4_i386.deb) ...
Selecting previously deselected package libgtkspell-dev.
Unpacking libgtkspell-dev (from .../libgtkspell-dev_2.0.10-4_i386.deb) ...
Selecting previously deselected package libmono-addins0.2-cil.
Unpacking libmono-addins0.2-cil (from .../libmono-addins0.2-cil_0.3.1-3_all.deb) ...
Selecting previously deselected package libmono-addins-gui0.2-cil.
Unpacking libmono-addins-gui0.2-cil (from .../libmono-addins-gui0.2-cil_0.3.1-3_all.deb) ...
Selecting previously deselected package libmono-corlib2.0-cil.
Unpacking libmono-corlib2.0-cil (from .../libmono-corlib2.0-cil_1.2.6+dfsg-6_all.deb) ...
Selecting previously deselected package libmono-cairo2.0-cil.
Unpacking libmono-cairo2.0-cil (from .../libmono-cairo2.0-cil_1.2.6+dfsg-6_all.deb) ...
Selecting previously deselected package libmono-system2.0-cil.
Unpacking libmono-system2.0-cil (from .../libmono-system2.0-cil_1.2.6+dfsg-6_all.deb) ...
Selecting previously deselected package libmono-security2.0-cil.
Unpacking libmono-security2.0-cil (from .../libmono-security2.0-cil_1.2.6+dfsg-6_all.deb) ...
Selecting previously deselected package libmono-data-tds2.0-cil.
Unpacking libmono-data-tds2.0-cil (from .../libmono-data-tds2.0-cil_1.2.6+dfsg-6_all.deb) ...
Selecting previously deselected package libmono-dev.
Unpacking libmono-dev (from .../libmono-dev_1.2.6+dfsg-6_i386.deb) ...
Selecting previously deselected package libmono-sharpzip2.84-cil.
Unpacking libmono-sharpzip2.84-cil (from .../libmono-sharpzip2.84-cil_1.2.6+dfsg-6_all.deb) ...
Selecting previously deselected package libmono-system-data2.0-cil.
Unpacking libmono-system-data2.0-cil (from .../libmono-system-data2.0-cil_1.2.6+dfsg-6_all.deb) ...
Selecting previously deselected package libmono-system-web2.0-cil.
Unpacking libmono-system-web2.0-cil (from .../libmono-system-web2.0-cil_1.2.6+dfsg-6_all.deb) ...
Selecting previously deselected package libmono2.0-cil.
Unpacking libmono2.0-cil (from .../libmono2.0-cil_1.2.6+dfsg-6_all.deb) ...
Selecting previously deselected package libndesk-dbus1.0-cil.
Unpacking libndesk-dbus1.0-cil (from .../libndesk-dbus1.0-cil_0.6.0-1_all.deb) ...
Selecting previously deselected package libndesk-dbus-glib1.0-cil.
Unpacking libndesk-dbus-glib1.0-cil (from .../libndesk-dbus-glib1.0-cil_0.4.1-1_all.deb) ...
Selecting previously deselected package libpanel-applet2-dev.
Unpacking libpanel-applet2-dev (from .../libpanel-applet2-dev_2.20.3-3_i386.deb) ...
Selecting previously deselected package libscrollkeeper0.
Unpacking libscrollkeeper0 (from .../libscrollkeeper0_0.3.14-16_i386.deb) ...
Selecting previously deselected package mono-gmcs.
Unpacking mono-gmcs (from .../mono-gmcs_1.2.6+dfsg-6_all.deb) ...
Selecting previously deselected package scrollkeeper.
Unpacking scrollkeeper (from .../scrollkeeper_0.3.14-16_i386.deb) ...
Setting up libice6 (2:1.0.4-1) ...
Setting up x11proto-core-dev (7.0.12-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 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 libxau-dev (1:1.0.3-2) ...
Setting up libxdmcp-dev (1:1.0.2-2) ...
Setting up libxext6 (2:1.0.4-1) ...
Setting up x11proto-input-dev (1.4.3-1) ...
Setting up x11proto-xext-dev (7.0.2-5) ...
Setting up x11proto-kb-dev (1.0.3-2) ...
Setting up xtrans-dev (1.1-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.005) ...
Setting up libmagic1 (4.23-2) ...
Setting up file (4.23-2) ...
Setting up libnewt0.52 (0.52.2-11.2) ...
Setting up libpopt0 (1.10-3) ...
Setting up whiptail (0.52.2-11.2) ...
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-2) ...
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 (2:1.0.3-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 adduser (3.106) ...
Setting up bsdmainutils (6.1.10) ...
Setting up groff-base (1.18.1.1-17) ...
Setting up net-tools (1.60-19) ...
Setting up ifupdown (0.6.8) ...
ifupdown.postinst: Warning: No 'iface lo' definition found in /etc/network/interfaces
ifupdown.postinst: Warning: No 'auto lo' statement found in /etc/network/interfaces
Setting up libncursesw5 (5.6+20080203-1) ...
Setting up libssl0.9.8 (0.9.8g-7) ...
Setting up man-db (2.5.1-2) ...
Building database of manual pages ...
Setting up netbase (4.30) ...
Setting up gettext-base (0.17-2) ...
Setting up libdb4.5 (4.5.20-11) ...
Setting up libkeyutils1 (1.2-6) ...
Setting up libkrb53 (1.6.dfsg.3~beta1-3) ...
Setting up m4 (1.4.10-1) ...
Setting up mime-support (3.40-1.1) ...
Setting up python2.4-minimal (2.4.4-8) ...
Setting up python2.4 (2.4.4-8) ...
Setting up python-minimal (2.4.4-6) ...
Setting up python (2.4.4-6) ...
Setting up python-support (0.7.6) ...
Setting up sharutils (1:4.6.3-1) ...
Setting up autoconf (2.61-6) ...
Setting up autotools-dev (20080123.1) ...
Setting up automake1.7 (1.7.9-9) ...
Setting up html2text (1.3.2a-3) ...
Setting up libgomp1 (4.3.0~rc2-1) ...
Setting up gettext (0.17-2) ...
Setting up intltool-debian (0.35.0+20060710.1) ...
Setting up po-debconf (1.0.12) ...
Setting up debhelper (6.0.7) ...
Setting up cdbs (0.4.51) ...
Setting up cli-common (0.5.6) ...
Setting up libhtml-tagset-perl (3.10-2) ...
Setting up liburi-perl (1.35.dfsg.1-1) ...
Setting up libhtml-parser-perl (3.56-1) ...
Setting up libhtml-tree-perl (3.23-1) ...
Setting up libwww-perl (5.808-1) ...
Setting up libxml-parser-perl (2.36-1) ...
Setting up libxml-perl (0.08-1) ...
Setting up libxml-regexp-perl (0.03-7) ...
Setting up libxml-dom-perl (1.44-1) ...
Setting up mono-common (1.2.6+dfsg-6) ...
Setting up mono-jit (1.2.6+dfsg-6) ...
Setting up libmono-corlib1.0-cil (1.2.6+dfsg-6) ...
Setting up libmono-peapi1.0-cil (1.2.6+dfsg-6) ...
Setting up libmono-system1.0-cil (1.2.6+dfsg-6) ...
Setting up libmono-relaxng1.0-cil (1.2.6+dfsg-6) ...
Setting up libmono-security1.0-cil (1.2.6+dfsg-6) ...
Setting up libmono-sharpzip0.84-cil (1.2.6+dfsg-6) ...
Setting up libmono-data-tds1.0-cil (1.2.6+dfsg-6) ...
Setting up libmono-system-data1.0-cil (1.2.6+dfsg-6) ...
Setting up libmono-system-web1.0-cil (1.2.6+dfsg-6) ...
Setting up libmono-system-runtime1.0-cil (1.2.6+dfsg-6) ...
Setting up libmono0 (1.2.6+dfsg-6) ...
Setting up mono-gac (1.2.6+dfsg-6) ...
* Installing 1 assembly from libgmime2.2-cil into Mono
* Installing 2 assemblies from libmono-addins-gui0.2-cil into Mono
* Installing 4 assemblies from libmono-addins0.2-cil into Mono
* Installing 1 assembly from libndesk-dbus-glib1.0-cil into Mono
* Installing 1 assembly from libndesk-dbus1.0-cil into Mono
Setting up mono-runtime (1.2.6+dfsg-6) ...
Setting up libmono1.0-cil (1.2.6+dfsg-6) ...
Setting up mono-1.0-devel (1.2.6+dfsg-6) ...
Setting up mono-utils (1.2.6+dfsg-6) ...
Setting up cli-common-dev (0.5.6) ...
Setting up libdbus-1-3 (1.1.20-1) ...
Setting up dbus (1.1.20-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 sgml-base (1.26) ...
Setting up xml-core (0.11) ...
Setting up sgml-data (2.0.3) ...
Setting up docbook-xml (4.5-5) ...
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-3) ...
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-2) ...
Setting up libgconf2-4 (2.20.1-3) ...
Setting up psmisc (22.6-1) ...
Setting up gconf2 (2.20.1-3) ...
Setting up libxml2-utils (2.6.31.dfsg-2) ...
Setting up python-libxml2 (2.6.31.dfsg-2) ...
Setting up libxslt1.1 (1.1.22-1) ...
Setting up xsltproc (1.1.22-1) ...
Setting up gnome-doc-utils (0.12.1-1) ...
Setting up gnome-mime-data (2.18.0-1) ...
Setting up intltool (0.37.1-1) ...
Setting up libart-2.0-2 (2.3.20-1) ...
Setting up libart-2.0-dev (2.3.20-1) ...
Setting up libglib2.0-cil (2.10.4-2) ...
Setting up libart2.0-cil (2.16.1-2) ...
Setting up libaspell15 (0.60.5-2) ...
Setting up libaspell-dev (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 libaudiofile-dev (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-common-dev (0.6.22-2) ...
Setting up libdbus-1-dev (1.1.20-1) ...
Setting up libavahi-client-dev (0.6.22-2) ...
Setting up libavahi-glib1 (0.6.22-2) ...
Setting up libavahi-glib-dev (0.6.22-2) ...
Setting up libbonobo2-common (2.21.90-1) ...
Setting up libbonobo2-0 (2.21.90-1) ...
Setting up libidl-dev (0.8.9-0.1) ...
Setting up liborbit2-dev (1:2.14.10-0.1) ...
Setting up libpopt-dev (1.10-3) ...
Setting up libbonobo2-dev (2.21.90-1) ...
Setting up libbonoboui2-common (2.21.90-1) ...
Setting up libpng12-0 (1.2.15~beta5-3) ...
Setting up libcairo2 (1.4.14-1) ...
Setting up libcupsys2 (1.3.6-1) ...
Setting up libgtk2.0-common (2.12.8-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.8-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 shared-mime-info (0.23-4) ...
Setting up libgnomevfs2-common (1:2.20.1-2) ...
Setting up libhal1 (0.5.10+git20080301-1) ...
Setting up libhal-storage1 (0.5.10+git20080301-1) ...
Setting up libgnomevfs2-0 (1:2.20.1-2) ...
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 libpng12-dev (1.2.15~beta5-3) ...
Setting up libxml2-dev (2.6.31.dfsg-2) ...
Setting up libgconf2-dev (2.20.1-3) ...
Setting up libgpg-error-dev (1.4-2) ...
Setting up libgcrypt11-dev (1.4.0-3) ...
Setting up libopencdk10-dev (0.6.6-1) ...
Setting up libtasn1-3-dev (1.3-1) ...
Setting up libgnutls-dev (2.2.2-1) ...
Setting up libsepol1-dev (2.0.11-1) ...
Setting up libselinux1-dev (2.0.35-1) ...
Setting up libgnomevfs2-dev (1:2.20.1-2) ...
Setting up libesd0-dev (0.2.36-3) ...
Setting up libgnome2-dev (2.20.1.1-1) ...
Setting up libdbus-glib-1-dev (0.74-1) ...
Setting up libgconf2.0-cil (2.16.1-2) ...
Setting up libmono-cairo1.0-cil (1.2.6+dfsg-6) ...
Setting up libgtk2.0-cil (2.10.4-2) ...
Setting up libglade2.0-cil (2.10.4-2) ...
Setting up libgmime-2.0-2 (2.2.17-1) ...
Setting up libgmime2.2-cil (2.2.17-1) ...
* Installing 1 assembly from libgmime2.2-cil into Mono
Setting up libgnome-keyring0 (2.20.3-1) ...
Setting up libhal-dev (0.5.10+git20080301-1) ...
Setting up libhal-storage-dev (0.5.10+git20080301-1) ...
Setting up libgnome-keyring-dev (2.20.3-1) ...
Setting up libgnome-vfs2.0-cil (2.16.1-2) ...
Setting up libgnomecups1.0-1 (0.2.3-1) ...
Setting up libgnomeprint2.2-data (2.18.4-1) ...
Setting up libgnomeprint2.2-0 (2.18.4-1) ...
Setting up libgnomeprintui2.2-common (2.18.2-1) ...
Setting up libgnomeprintui2.2-0 (2.18.2-1) ...
Setting up libgnomeui-common (2.20.1.1-1) ...
Setting up libgnomeui-0 (2.20.1.1-1) ...
Setting up libpanel-applet2-0 (2.20.3-3) ...
Setting up libgnome2.0-cil (2.16.1-2) ...
Setting up libjpeg62-dev (6b-14) ...
Setting up libgtkspell0 (2.0.10-4) ...
Setting up libmono-addins0.2-cil (0.3.1-3) ...
* Installing 4 assemblies from libmono-addins0.2-cil into Mono
Setting up libmono-addins-gui0.2-cil (0.3.1-3) ...
* Installing 2 assemblies from libmono-addins-gui0.2-cil into Mono
Setting up libmono-corlib2.0-cil (1.2.6+dfsg-6) ...
Setting up libmono-cairo2.0-cil (1.2.6+dfsg-6) ...
Setting up libmono-dev (1.2.6+dfsg-6) ...
Setting up libscrollkeeper0 (0.3.14-16) ...
Setting up scrollkeeper (0.3.14-16) ...
Rebuilding the database. This may take some time.
Setting up libmono-system2.0-cil (1.2.6+dfsg-6) ...
Setting up libmono-sharpzip2.84-cil (1.2.6+dfsg-6) ...
Setting up mono-gmcs (1.2.6+dfsg-6) ...
Setting up libxext-dev (2:1.0.4-1) ...
Setting up libmono-security2.0-cil (1.2.6+dfsg-6) ...
Setting up libmono-data-tds2.0-cil (1.2.6+dfsg-6) ...
Setting up libmono-system-data2.0-cil (1.2.6+dfsg-6) ...
Setting up libmono-system-web2.0-cil (1.2.6+dfsg-6) ...
Setting up libmono2.0-cil (1.2.6+dfsg-6) ...
Setting up libndesk-dbus1.0-cil (0.6.0-1) ...
* Installing 1 assembly from libndesk-dbus1.0-cil into Mono
Setting up libndesk-dbus-glib1.0-cil (0.4.1-1) ...
* Installing 1 assembly from libndesk-dbus-glib1.0-cil into Mono
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 (2:1.0.3-1) ...
Setting up libxrandr-dev (2:1.2.2-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.8-1) ...
Setting up libglade2-dev (1:2.6.2-1) ...
Setting up libgail-dev (1.20.2-1) ...
Setting up libgnomecanvas2-dev (2.20.1.1-1) ...
Setting up libbonoboui2-dev (2.21.90-1) ...
Setting up libgnomeprint2.2-dev (2.18.4-1) ...
Setting up libgnomeprintui2.2-dev (2.18.2-1) ...
Setting up libgnomeui-dev (2.20.1.1-1) ...
Setting up libgtkspell-dev (2.0.10-4) ...
Setting up libpanel-applet2-dev (2.20.3-3) ...
Checking correctness of source dependencies...
Kernel: Linux 2.6.18-3-amd64 i386 (x86_64)
Toolchain package versions: libc6-dev_2.7-9 linux-libc-dev_2.6.24-4 gcc-4.2_4.2.3-2 g++-4.2_4.2.3-2 binutils_2.18.1~cvs20080103-1 libstdc++6-4.2-dev_4.2.3-2 libstdc++6_4.3.0~rc2-1
------------------------------------------------------------------------------
gpg: Signature made Mon Nov 26 17:35:36 2007 CET using DSA key ID 5BE41F21
gpg: Can't check signature: public key not found
dpkg-source: extracting tomboy in tomboy-0.8.2
dpkg-source: unpacking tomboy_0.8.2.orig.tar.gz
dpkg-source: applying ./tomboy_0.8.2-1.diff.gz
dpkg-buildpackage: source package tomboy
dpkg-buildpackage: source version 0.8.2-1
dpkg-buildpackage: source changed by Sebastian Dröge <slomo@debian.org>
dpkg-buildpackage: host architecture i386
/usr/bin/fakeroot debian/rules clean
test -x debian/rules
dh_testroot
/usr/bin/make -f debian/rules reverse-config
make[1]: Entering directory `/build/user/tomboy-0.8.2'
for i in ./config.guess ./config.sub ; do \
if test -e $i.cdbs-orig ; then \
mv $i.cdbs-orig $i ; \
fi ; \
done
make[1]: Leaving directory `/build/user/tomboy-0.8.2'
if [ "reverse-patches" = "reverse-patches" ]; then rm -f debian/stamp-patched; fi
patches: debian/patches/01_external-mono-addins.patch debian/patches/99_autoreconf.patch
Patch debian/patches/99_autoreconf.patch is not applied.
Patch debian/patches/01_external-mono-addins.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
for i in ./config.guess ./config.sub ; do \
if test -e $i.cdbs-orig ; then \
mv $i.cdbs-orig $i ; \
fi ; \
done
dh_clean
GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 /usr/bin/make -C . -k distclean
make[1]: Entering directory `/build/user/tomboy-0.8.2'
make[1]: *** No rule to make target `distclean'.
make[1]: Leaving directory `/build/user/tomboy-0.8.2'
make: [makefile-clean] Error 2 (ignored)
rm -f debian/stamp-makefile-build
rm -f debian/stamp-autotools-files
cd . && \
rm -f intltool-extract intltool-merge intltool-update po/.intltool-merge-cache; \
if test -d doc; then find doc -name '*.omf.out' -exec rm -f \{\} \; ; fi; \
if test -d help; then find help -name '*.omf.out' -exec rm -f \{\} \; ; fi
rm -rf /build/user/tomboy-0.8.2/.wapi
dpkg-source -b tomboy-0.8.2
dpkg-source: building tomboy using existing tomboy_0.8.2.orig.tar.gz
dpkg-source: building tomboy in tomboy_0.8.2-1.diff.gz
dpkg-source: building tomboy in tomboy_0.8.2-1.dsc
debian/rules build
test -x debian/rules
mkdir -p "."
/usr/bin/make -f debian/rules reverse-config
make[1]: Entering directory `/build/user/tomboy-0.8.2'
for i in ./config.guess ./config.sub ; do \
if test -e $i.cdbs-orig ; then \
mv $i.cdbs-orig $i ; \
fi ; \
done
make[1]: Leaving directory `/build/user/tomboy-0.8.2'
if [ "debian/stamp-patched" = "reverse-patches" ]; then rm -f debian/stamp-patched; fi
patches: debian/patches/01_external-mono-addins.patch debian/patches/99_autoreconf.patch
Trying patch debian/patches/01_external-mono-addins.patch at level 1 ... 0 ... success.
Trying patch debian/patches/99_autoreconf.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
make[1]: Entering directory `/build/user/tomboy-0.8.2'
if test -e /usr/share/misc/config.guess ; then \
for i in ./config.guess ; do \
if ! test -e $i.cdbs-orig ; then \
mv $i $i.cdbs-orig ; \
cp --remove-destination /usr/share/misc/config.guess $i ; \
fi ; \
done ; \
fi
if test -e /usr/share/misc/config.sub ; then \
for i in ./config.sub ; do \
if ! test -e $i.cdbs-orig ; then \
mv $i $i.cdbs-orig ; \
cp --remove-destination /usr/share/misc/config.sub $i ; \
fi ; \
done ; \
fi
make[1]: Leaving directory `/build/user/tomboy-0.8.2'
if test -e /usr/share/misc/config.guess ; then \
for i in ./config.guess ; do \
if ! test -e $i.cdbs-orig ; then \
mv $i $i.cdbs-orig ; \
cp --remove-destination /usr/share/misc/config.guess $i ; \
fi ; \
done ; \
fi
if test -e /usr/share/misc/config.sub ; then \
for i in ./config.sub ; do \
if ! test -e $i.cdbs-orig ; then \
mv $i $i.cdbs-orig ; \
cp --remove-destination /usr/share/misc/config.sub $i ; \
fi ; \
done ; \
fi
touch debian/stamp-autotools-files
chmod a+x /build/user/tomboy-0.8.2/./configure
cd . && LDFLAGS="-Wl,-O1" /build/user/tomboy-0.8.2/./configure --build=i486-linux-gnu --prefix=/usr --includedir="\${prefix}/include" --mandir="\${prefix}/share/man" --infodir="\${prefix}/share/info" --sysconfdir=/etc --localstatedir=/var --libexecdir="\${prefix}/lib/tomboy" --disable-maintainer-mode --disable-dependency-tracking --srcdir=. --disable-scrollkeeper --with-mono-addins=system
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking how to create a pax tar archive... gnutar
checking whether to enable maintainer-specific portions of Makefiles... no
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for a BSD-compatible install... /usr/bin/install -c
checking for style of include used by make... GNU
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking dependency style of gcc... none
checking for intltool >= 0.35... 0.36.2 found
checking for perl... /usr/bin/perl
checking for XML::Parser... ok
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking dependency style of gcc... (cached) none
checking for library containing strerror... none required
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking build system type... i486-pc-linux-gnu
checking host system type... i486-pc-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognize dependent libraries... pass_all
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... none
checking how to run the C++ preprocessor... g++ -E
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... no
checking for g95... no
checking for xlf95... no
checking for f95... no
checking for fort... no
checking for ifort... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for ftn... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether accepts -g... no
checking the maximum length of command line arguments... 98304
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for objdir... .libs
checking for ar... ar
checking for ranlib... ranlib
checking for strip... strip
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC
checking if gcc PIC flag -fPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC
checking if g++ PIC flag -fPIC works... yes
checking if g++ static flag -static works... yes
checking if g++ supports -c -o file.o... yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking for LC_MESSAGES... yes
checking libintl.h usability... yes
checking libintl.h presence... yes
checking for libintl.h... yes
checking for ngettext in libc... yes
checking for dgettext in libc... yes
checking for bind_textdomain_codeset... yes
checking for msgfmt... /usr/bin/msgfmt
checking for dcgettext... yes
checking if msgfmt accepts -c... yes
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for gconftool-2... /usr/bin/gconftool-2
Using config source xml:merged:/etc/gconf/gconf.xml.defaults for schema installation
Using $(sysconfdir)/gconf/schemas as install directory for schema files
checking for gmcs... /usr/bin/gmcs
checking for LIBTOMBOY... yes
checking for GTKSPELL... yes
checking for DBUS... yes
checking for MONO_ADDINS... yes
checking for TOMBOY... yes
checking for EVOLUTION... yes
checking for GALAGO... no
checking for NUNIT... no
checking for nunit-console... no
configure: creating ./config.status
config.status: creating pot-update
config.status: creating Makefile
config.status: creating tomboy.spec
config.status: WARNING: tomboy.spec contains a reference to the variable `datarootdir'
which seems to be undefined. Please make sure it is defined.
config.status: creating data/Makefile
config.status: creating data/tomboy-addins.pc
config.status: creating data/images/Makefile
config.status: creating help/Makefile
config.status: creating libtomboy/Makefile
config.status: creating Mono.Addins/Makefile
config.status: creating Mono.Addins/Mono.Addins.Setup/Makefile
config.status: creating Mono.Addins/Mono.Addins.Gui/Makefile
config.status: creating Mono.Addins/Mono.Addins/Makefile
config.status: creating Tomboy/Makefile
config.status: creating Tomboy/Addins/Makefile
config.status: creating Tomboy/Addins/Backlinks/Makefile
config.status: creating Tomboy/Addins/Bugzilla/Makefile
config.status: creating Tomboy/Addins/ExportToHtml/Makefile
config.status: creating Tomboy/Addins/Evolution/Makefile
config.status: creating Tomboy/Addins/FixedWidth/Makefile
config.status: creating Tomboy/Addins/GalagoPresence/Makefile
config.status: creating Tomboy/Addins/NoteOfTheDay/Makefile
config.status: creating Tomboy/Addins/PrintNotes/Makefile
config.status: creating Tomboy/Addins/StickyNoteImport/Makefile
config.status: creating Tomboy/Addins/FileSystemSyncService/Makefile
config.status: creating Tomboy/Addins/WebDavSyncService/Makefile
config.status: creating Tomboy/Addins/SshSyncService/Makefile
config.status: creating test/Makefile
config.status: creating po/Makefile.in
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing intltool commands
config.status: executing default-1 commands
config.status: executing po/stamp-it commands
GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 /usr/bin/make -C .
make[1]: Entering directory `/build/user/tomboy-0.8.2'
/usr/bin/make all-recursive
make[2]: Entering directory `/build/user/tomboy-0.8.2'
Making all in data
make[3]: Entering directory `/build/user/tomboy-0.8.2/data'
Making all in images
make[4]: Entering directory `/build/user/tomboy-0.8.2/data/images'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/build/user/tomboy-0.8.2/data/images'
make[4]: Entering directory `/build/user/tomboy-0.8.2/data'
sed -e "s|\@bindir\@|/usr/bin|g" \
-e "s|\@wrapper\@|tomboy|g" \
< org.gnome.Tomboy.service.in > org.gnome.Tomboy.service
LC_ALL=C ../intltool-merge -d -u -c ../po/.intltool-merge-cache ../po tomboy.desktop.in tomboy.desktop
Generating and caching the translation database
Merging translations into tomboy.desktop.
LC_ALL=C ../intltool-merge -s -u -c ../po/.intltool-merge-cache ../po tomboy.schemas.in tomboy.schemas
Odd number of elements in hash assignment at ../intltool-merge line 423.
Found cached translation database
Merging translations into tomboy.schemas.
sed -e "s|\@bindir\@|/usr/bin|g" \
-e "s|\@wrapper\@|tomboy-panel|g" \
< GNOME_TomboyApplet.server.in.in > GNOME_TomboyApplet.server.in
LC_ALL=C ../intltool-merge -o -u -c ../po/.intltool-merge-cache ../po GNOME_TomboyApplet.server.in GNOME_TomboyApplet.server
Odd number of elements in hash assignment at ../intltool-merge line 423.
Found cached translation database
Merging translations into GNOME_TomboyApplet.server.
make[4]: Leaving directory `/build/user/tomboy-0.8.2/data'
make[3]: Leaving directory `/build/user/tomboy-0.8.2/data'
Making all in libtomboy
make[3]: Entering directory `/build/user/tomboy-0.8.2/libtomboy'
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I.. -DG_LOG_DOMAIN=\"libtomboy\" -DEGG_COMPILATION -DGTK_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DG_DISABLE_DEPRECATED -I/usr/include/libgnomeprint-2.2 -I/usr/include/libart-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -I/usr/include/pango-1.0 -I/usr/include/libgnomeprintui-2.2 -I/usr/include/libgnomecanvas-2.0 -I/usr/include/freetype2 -I/usr/include/gail-1.0 -I/usr/include/gtk-2.0 -I/usr/include/atk-1.0 -I/usr/lib/gtk-2.0/include -I/usr/include/cairo -I/usr/include/libpng12 -g -O2 -c -o tomboykeybinder.lo tomboykeybinder.c
mkdir .libs
gcc -DHAVE_CONFIG_H -I. -I.. -I.. -DG_LOG_DOMAIN=\"libtomboy\" -DEGG_COMPILATION -DGTK_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DG_DISABLE_DEPRECATED -I/usr/include/libgnomeprint-2.2 -I/usr/include/libart-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -I/usr/include/pango-1.0 -I/usr/include/libgnomeprintui-2.2 -I/usr/include/libgnomecanvas-2.0 -I/usr/include/freetype2 -I/usr/include/gail-1.0 -I/usr/include/gtk-2.0 -I/usr/include/atk-1.0 -I/usr/lib/gtk-2.0/include -I/usr/include/cairo -I/usr/include/libpng12 -g -O2 -c tomboykeybinder.c -fPIC -DPIC -o .libs/tomboykeybinder.o
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I.. -DG_LOG_DOMAIN=\"libtomboy\" -DEGG_COMPILATION -DGTK_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DG_DISABLE_DEPRECATED -I/usr/include/libgnomeprint-2.2 -I/usr/include/libart-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -I/usr/include/pango-1.0 -I/usr/include/libgnomeprintui-2.2 -I/usr/include/libgnomecanvas-2.0 -I/usr/include/freetype2 -I/usr/include/gail-1.0 -I/usr/include/gtk-2.0 -I/usr/include/atk-1.0 -I/usr/lib/gtk-2.0/include -I/usr/include/cairo -I/usr/include/libpng12 -g -O2 -c -o tomboyutil.lo tomboyutil.c
gcc -DHAVE_CONFIG_H -I. -I.. -I.. -DG_LOG_DOMAIN=\"libtomboy\" -DEGG_COMPILATION -DGTK_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DG_DISABLE_DEPRECATED -I/usr/include/libgnomeprint-2.2 -I/usr/include/libart-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -I/usr/include/pango-1.0 -I/usr/include/libgnomeprintui-2.2 -I/usr/include/libgnomecanvas-2.0 -I/usr/include/freetype2 -I/usr/include/gail-1.0 -I/usr/include/gtk-2.0 -I/usr/include/atk-1.0 -I/usr/lib/gtk-2.0/include -I/usr/include/cairo -I/usr/include/libpng12 -g -O2 -c tomboyutil.c -fPIC -DPIC -o .libs/tomboyutil.o
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I.. -DG_LOG_DOMAIN=\"libtomboy\" -DEGG_COMPILATION -DGTK_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DG_DISABLE_DEPRECATED -I/usr/include/libgnomeprint-2.2 -I/usr/include/libart-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -I/usr/include/pango-1.0 -I/usr/include/libgnomeprintui-2.2 -I/usr/include/libgnomecanvas-2.0 -I/usr/include/freetype2 -I/usr/include/gail-1.0 -I/usr/include/gtk-2.0 -I/usr/include/atk-1.0 -I/usr/lib/gtk-2.0/include -I/usr/include/cairo -I/usr/include/libpng12 -g -O2 -c -o eggaccelerators.lo eggaccelerators.c
gcc -DHAVE_CONFIG_H -I. -I.. -I.. -DG_LOG_DOMAIN=\"libtomboy\" -DEGG_COMPILATION -DGTK_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DG_DISABLE_DEPRECATED -I/usr/include/libgnomeprint-2.2 -I/usr/include/libart-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -I/usr/include/pango-1.0 -I/usr/include/libgnomeprintui-2.2 -I/usr/include/libgnomecanvas-2.0 -I/usr/include/freetype2 -I/usr/include/gail-1.0 -I/usr/include/gtk-2.0 -I/usr/include/atk-1.0 -I/usr/lib/gtk-2.0/include -I/usr/include/cairo -I/usr/include/libpng12 -g -O2 -c eggaccelerators.c -fPIC -DPIC -o .libs/eggaccelerators.o
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I.. -DG_LOG_DOMAIN=\"libtomboy\" -DEGG_COMPILATION -DGTK_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DG_DISABLE_DEPRECATED -I/usr/include/libgnomeprint-2.2 -I/usr/include/libart-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -I/usr/include/pango-1.0 -I/usr/include/libgnomeprintui-2.2 -I/usr/include/libgnomecanvas-2.0 -I/usr/include/freetype2 -I/usr/include/gail-1.0 -I/usr/include/gtk-2.0 -I/usr/include/atk-1.0 -I/usr/lib/gtk-2.0/include -I/usr/include/cairo -I/usr/include/libpng12 -g -O2 -c -o eggtrayicon.lo eggtrayicon.c
gcc -DHAVE_CONFIG_H -I. -I.. -I.. -DG_LOG_DOMAIN=\"libtomboy\" -DEGG_COMPILATION -DGTK_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DG_DISABLE_DEPRECATED -I/usr/include/libgnomeprint-2.2 -I/usr/include/libart-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -I/usr/include/pango-1.0 -I/usr/include/libgnomeprintui-2.2 -I/usr/include/libgnomecanvas-2.0 -I/usr/include/freetype2 -I/usr/include/gail-1.0 -I/usr/include/gtk-2.0 -I/usr/include/atk-1.0 -I/usr/lib/gtk-2.0/include -I/usr/include/cairo -I/usr/include/libpng12 -g -O2 -c eggtrayicon.c -fPIC -DPIC -o .libs/eggtrayicon.o
/bin/sh ../libtool --tag=CC --mode=link gcc -g -O2 -export-dynamic -module -avoid-version -Wl,-O1 -o libtomboy.la -rpath /usr/lib/tomboy tomboykeybinder.lo tomboyutil.lo eggaccelerators.lo eggtrayicon.lo -lgnomeprintui-2-2 -lgnomeprint-2-2 -lz -lgnomecanvas-2 -lxml2 -lart_lgpl_2 -lgtk-x11-2.0 -lgdk-x11-2.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lpango-1.0 -lcairo -latk-1.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0
gcc -shared .libs/tomboykeybinder.o .libs/tomboyutil.o .libs/eggaccelerators.o .libs/eggtrayicon.o -lgnomeprintui-2-2 -lgnomeprint-2-2 -lz /usr/lib/libgnomecanvas-2.so /usr/lib/libxml2.so /usr/lib/libart_lgpl_2.so /usr/lib/libgtk-x11-2.0.so /usr/lib/libgdk-x11-2.0.so /usr/lib/libgdk_pixbuf-2.0.so -lm /usr/lib/libpangocairo-1.0.so /usr/lib/libpango-1.0.so /usr/lib/libcairo.so /usr/lib/libatk-1.0.so /usr/lib/libgobject-2.0.so /usr/lib/libgmodule-2.0.so -ldl /usr/lib/libglib-2.0.so -Wl,-O1 -Wl,-soname -Wl,libtomboy.so -o .libs/libtomboy.so
creating libtomboy.la
(cd .libs && rm -f libtomboy.la && ln -s ../libtomboy.la libtomboy.la)
make[3]: Leaving directory `/build/user/tomboy-0.8.2/libtomboy'
Making all in Mono.Addins
make[3]: Entering directory `/build/user/tomboy-0.8.2/Mono.Addins'
Making all in Mono.Addins
make[4]: Entering directory `/build/user/tomboy-0.8.2/Mono.Addins/Mono.Addins'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/build/user/tomboy-0.8.2/Mono.Addins/Mono.Addins'
Making all in Mono.Addins.Setup
make[4]: Entering directory `/build/user/tomboy-0.8.2/Mono.Addins/Mono.Addins.Setup'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/build/user/tomboy-0.8.2/Mono.Addins/Mono.Addins.Setup'
Making all in Mono.Addins.Gui
make[4]: Entering directory `/build/user/tomboy-0.8.2/Mono.Addins/Mono.Addins.Gui'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/build/user/tomboy-0.8.2/Mono.Addins/Mono.Addins.Gui'
make[4]: Entering directory `/build/user/tomboy-0.8.2/Mono.Addins'
make[4]: Nothing to be done for `all-am'.
make[4]: Leaving directory `/build/user/tomboy-0.8.2/Mono.Addins'
make[3]: Leaving directory `/build/user/tomboy-0.8.2/Mono.Addins'
Making all in Tomboy
make[3]: Entering directory `/build/user/tomboy-0.8.2/Tomboy'
Making all in .
make[4]: Entering directory `/build/user/tomboy-0.8.2/Tomboy'
sed -e "s|\@prefix\@|/usr|g" \
-e "s|\@pkglibdir\@|/usr/lib/tomboy|g" \
-e "s|\@bindir\@|/usr/bin|g" \
-e "s|\@target\@|Tomboy.exe|g" \
-e "s|\@wrapper\@|tomboy|g" \
-e "s|\@extragac\@||g" \
-e "s|\@srcdir\@|/build/user/tomboy-0.8.2/Tomboy|g" \
< tomboy.in > tomboy
chmod +x tomboy
sed -e "s|\@prefix\@|/usr|g" \
-e "s|\@pkglibdir\@|/usr/lib/tomboy|g" \
-e "s|\@bindir\@|/usr/bin|g" \
-e "s|\@target\@|Tomboy.exe|g" \
-e "s|\@wrapper\@|tomboy|g" \
-e "s|\@extragac\@||g" \
-e "s|\@srcdir\@|/build/user/tomboy-0.8.2/Tomboy|g" \
< tomboy-panel.in > tomboy-panel
chmod +x tomboy-panel
sed -e "s|\@version\@|0.8.2|" \
-e "s|\@datadir\@|/usr/share|" \
-e "s|\@pkglibdir\@|/usr/lib/tomboy|" \
< Defines.cs.in > Defines.cs
gmcs -debug -target:exe -out:Tomboy.exe -debug -define:DEBUG -unsafe -target:exe -define:ENABLE_DBUS -define:FIXED_GTKSPELL Tomboy.cs AbstractAddin.cs ActionManager.cs AddinManager.cs AddinPreferenceFactory.cs Applet.cs ApplicationAddin.cs Logger.cs Note.cs NoteAddin.cs NoteEditor.cs NoteManager.cs NoteWindow.cs NoteBuffer.cs NoteTag.cs Preferences.cs PreferencesDialog.cs RecentChanges.cs Tag.cs TagButton.cs TagManager.cs Tray.cs Trie.cs Undo.cs Utils.cs Watchers.cs WrapBox.cs XKeybinder.cs Synchronization/FileSystemSyncServer.cs Synchronization/FuseSyncServiceAddin.cs Synchronization/SyncDialog.cs Synchronization/SyncManager.cs Synchronization/SyncServiceAddin.cs Synchronization/SyncUtils.cs Synchronization/TomboySyncClient.cs panelapplet/BonoboUIVerb.cs panelapplet/ChangeBackgroundHandler.cs panelapplet/ChangeSizeHandler.cs panelapplet/GnomeSharp.PanelAppletFactoryCallbackNative.cs panelapplet/MoveFocusOutOfAppletHandler.cs panelapplet/ObjectManager.cs panelapplet/PanelApplet.cs panelapplet/PanelAppletBackgroundType.cs panelapplet/PanelAppletFactory.cs panelapplet/PanelAppletFactoryCallback.cs panelapplet/PanelAppletFlags.cs Gnome.Keyring/AccessRights.cs Gnome.Keyring/AttributeType.cs Gnome.Keyring/GenericItemData.cs Gnome.Keyring/ItemACL.cs Gnome.Keyring/ItemData.cs Gnome.Keyring/ItemType.cs Gnome.Keyring/KeyringException.cs Gnome.Keyring/KeyringInfo.cs Gnome.Keyring/NetItemData.cs Gnome.Keyring/NoteItemData.cs Gnome.Keyring/Operation.cs Gnome.Keyring/RequestMessage.cs Gnome.Keyring/ResponseMessage.cs Gnome.Keyring/ResultCode.cs Gnome.Keyring/Ring.cs RemoteControl.cs RemoteControlProxy.cs Defines.cs -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/pango-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/atk-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gdk-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gtk-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/glib-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gnome-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/art-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gnome-vfs-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gconf-sharp.dll -r:Mono.Posix -r:/usr/lib/cli/ndesk-dbus-1.0/NDesk.DBus.dll -r:/usr/lib/cli/ndesk-dbus-glib-1.0/NDesk.DBus.GLib.dll -r:/usr/lib/cli/mono-addins-0.2/Mono.Addins.dll -r:/usr/lib/cli/mono-addins-0.2/Mono.Addins.Gui.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gnome-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/pango-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/atk-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gdk-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gtk-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/glade-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/art-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gnome-vfs-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/glib-sharp.dll -r:/usr/lib/cli/mono-addins-0.2/Mono.Addins.Setup.dll -resource:../data/GNOME_TomboyApplet.xml,GNOME_TomboyApplet.xml -resource:../data/UIManagerLayout.xml -resource:../data/images/tomboy.png,tomboy.png -resource:../data/images/tomboy-note-16.png,tomboy-note.png -resource:../data/images/gnome-searchtool.png,gnome-searchtool.png -resource:../data/images/pinup.png,pinup.png -resource:../data/images/pinup-active.png,pinup-active.png -resource:../data/images/pindown.png,pindown.png -resource:./Tomboy.addin.xml
Synchronization/FuseSyncServiceAddin.cs(127,41): warning CS0642: Possible mistaken empty statement
Synchronization/FuseSyncServiceAddin.cs(130,49): warning CS0642: Possible mistaken empty statement
NoteTag.cs(325,40): warning CS0108: `Tomboy.DepthNoteTag.Direction' hides inherited member `Gtk.TextTag.Direction'. Use the new keyword if hiding was intended
/usr/lib/mono/gac/gtk-sharp/2.10.0.0__35e10195dab3c99f/gtk-sharp.dll (Location of the symbol related to previous warning)
PreferencesDialog.cs(5,13): error CS0234: The type or namespace name `PropertyEditors' does not exist in the namespace `GConf'. Are you missing an assembly reference?
PreferencesDialog.cs(5,1): error CS0246: The type or namespace name `GConf.PropertyEditors' could not be found. Are you missing a using directive or an assembly reference?
PreferencesDialog.cs(753,43): error CS0246: The type or namespace name `PropertyEditor' could not be found. Are you missing a using directive or an assembly reference?
WrapBox.cs(103,29): warning CS0108: `Tomboy.WrapBox.Remove(Gtk.Widget)' hides inherited member `Gtk.Container.Remove(Gtk.Widget)'. Use the new keyword if hiding was intended
/usr/lib/mono/gac/gtk-sharp/2.10.0.0__35e10195dab3c99f/gtk-sharp.dll (Location of the symbol related to previous warning)
PreferencesDialog.cs(5,13): error CS0234: The type or namespace name `PropertyEditors' does not exist in the namespace `GConf'. Are you missing an assembly reference?
PreferencesDialog.cs(5,1): error CS0246: The type or namespace name `GConf.PropertyEditors' could not be found. Are you missing a using directive or an assembly reference?
Compilation failed: 5 error(s), 4 warnings
make[4]: *** [Tomboy.exe] Error 1
make[4]: Leaving directory `/build/user/tomboy-0.8.2/Tomboy'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/build/user/tomboy-0.8.2/Tomboy'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/build/user/tomboy-0.8.2'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/build/user/tomboy-0.8.2'
make: *** [debian/stamp-makefile-build] Error 2
dpkg-buildpackage: failure: debian/rules build gave error exit status 2
******************************************************************************
Build finished at 20080308-1506
FAILED [dpkg-buildpackage died]
Purging /var/lib/schroot/mount/sid32-57d7357c-e819-40af-b304-149775f899d6/build/user/tomboy-0.8.2
------------------------------------------------------------------------------
Not removing build depends: session managed chroot in use
******************************************************************************
Finished at 20080308-1506
Build needed 00:00:18, 13880k disk space
DC-Build-Status: Failed 295.658188s
DC-Time-Estimation: 295.658188 versus expected 120 (r/m: 1.46381823333333 ; m: 120.0)
|