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
|
lockfile creation failed
DC-Build-Header: xpdf 3.02-1.4+lenny1 / Tue Jul 14 01:58:46 +0200 2009
sbuild (Debian sbuild) 0.58.6 (20 Jun 2009) on paramount-33.rennes.grid5000.fr
╔══════════════════════════════════════════════════════════════════════════════╗
║ xpdf 3.02-1.4+lenny1 (amd64) 14 Jul 2009 01:58 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Package: xpdf
Version: 3.02-1.4+lenny1
Architecture: amd64
Start Time: 20090714-0158
┌──────────────────────────────────────────────────────────────────────────────┐
│ Fetch source files │
└──────────────────────────────────────────────────────────────────────────────┘
Check APT
─────────
Checking available source versions...
Download source files with APT
──────────────────────────────
Reading package lists...
Building dependency tree...
Reading state information...
Need to get 718kB of source archives.
Get:1 http://localhost sid/main xpdf 3.02-1.4+lenny1 (dsc) [1266B]
Get:2 http://localhost sid/main xpdf 3.02-1.4+lenny1 (tar) [675kB]
Get:3 http://localhost sid/main xpdf 3.02-1.4+lenny1 (diff) [42.3kB]
Fetched 718kB in 3s (215kB/s)
Download complete and in download only mode
Check arch
──────────
** Using build dependencies supplied by package:
Build-Depends: libt1-dev (>= 5.0.2-3), libxext-dev, libxp-dev, libxt-dev, libxpm-dev, libx11-dev, lesstif2-dev | libmotif-dev, x-dev, debhelper (>= 4.2.21), libfreetype6-dev (>= 2.1.2-1), libpaper-dev | libpaperg-dev, pkg-config, dpatch, automake1.9, autoconf
Build-Conflicts: autoconf2.13, libstroke0-dev, libttf-dev
┌──────────────────────────────────────────────────────────────────────────────┐
│ Install build dependencies │
└──────────────────────────────────────────────────────────────────────────────┘
Checking for already installed source dependencies...
W: Unable to locate package libttf-dev
libt1-dev: missing
Using default version 5.1.2-3
libxext-dev: missing
libxp-dev: missing
libxt-dev: missing
libxpm-dev: missing
libx11-dev: missing
lesstif2-dev: missing
libmotif-dev: missing
x-dev: missing
debhelper: missing
Using default version 7.2.21
libfreetype6-dev: missing
Using default version 2.3.9-5
libpaper-dev: missing
libpaperg-dev: missing
pkg-config: missing
dpatch: missing
automake1.9: missing
autoconf: missing
autoconf2.13: already deinstalled
libstroke0-dev: already deinstalled
libttf-dev: already deinstalled
Checking for source dependency conflicts...
Installing positive dependencies: libt1-dev libxext-dev libxp-dev libxt-dev libxpm-dev libx11-dev lesstif2-dev x-dev debhelper libfreetype6-dev libpaper-dev pkg-config dpatch automake1.9 autoconf
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
autotools-dev bsdmainutils defoma file fontconfig-config gettext
gettext-base groff-base html2text intltool-debian lesstif2 libcroco3
libexpat1 libexpat1-dev libfontconfig1 libfontconfig1-dev libfreetype6
libglib2.0-0 libgomp1 libice-dev libice6 libmagic1 libnewt0.52 libpaper1
libpcre3 libpopt0 libpthread-stubs0 libpthread-stubs0-dev libsm-dev libsm6
libt1-5 libx11-6 libx11-data libxau-dev libxau6 libxaw7 libxaw7-dev libxcb1
libxcb1-dev libxdmcp-dev libxdmcp6 libxext6 libxft-dev libxft2 libxml2
libxmu-dev libxmu-headers libxmu6 libxp6 libxpm4 libxrender-dev libxrender1
libxt6 m4 man-db po-debconf ttf-dejavu ttf-dejavu-core ttf-dejavu-extra ucf
whiptail x11-common x11proto-core-dev x11proto-input-dev x11proto-kb-dev
x11proto-print-dev x11proto-render-dev x11proto-xext-dev xtrans-dev
zlib1g-dev
Suggested packages:
autobook autoconf-archive autoconf-doc autoconf2.13 gnu-standards libtool
automake1.9-doc vacation wamerican wordlist whois dh-make defoma-doc
dfontmgr psfontmgr x-ttcidfont-conf curl cvs gettext-doc groff www-browser
libmail-box-perl
Recommended packages:
automake automaken libft-perl patchutils libglib2.0-data shared-mime-info
libfribidi0 libpaper-utils libt1-doc xml-core libmail-sendmail-perl
The following NEW packages will be installed:
autoconf automake1.9 autotools-dev bsdmainutils debhelper defoma dpatch file
fontconfig-config gettext gettext-base groff-base html2text intltool-debian
lesstif2 lesstif2-dev libcroco3 libexpat1 libexpat1-dev libfontconfig1
libfontconfig1-dev libfreetype6 libfreetype6-dev libglib2.0-0 libgomp1
libice-dev libice6 libmagic1 libnewt0.52 libpaper-dev libpaper1 libpcre3
libpopt0 libpthread-stubs0 libpthread-stubs0-dev libsm-dev libsm6 libt1-5
libt1-dev libx11-6 libx11-data libx11-dev libxau-dev libxau6 libxaw7
libxaw7-dev libxcb1 libxcb1-dev libxdmcp-dev libxdmcp6 libxext-dev libxext6
libxft-dev libxft2 libxml2 libxmu-dev libxmu-headers libxmu6 libxp-dev
libxp6 libxpm-dev libxpm4 libxrender-dev libxrender1 libxt-dev libxt6 m4
man-db pkg-config po-debconf ttf-dejavu ttf-dejavu-core ttf-dejavu-extra ucf
whiptail x-dev x11-common x11proto-core-dev x11proto-input-dev
x11proto-kb-dev x11proto-print-dev x11proto-render-dev x11proto-xext-dev
xtrans-dev zlib1g-dev
0 upgraded, 85 newly installed, 0 to remove and 0 not upgraded.
Need to get 25.9MB of archives.
After this operation, 76.6MB of additional disk space will be used.
Get:1 http://localhost sid/main x11-common 1:7.4+3 [287kB]
Get:2 http://localhost sid/main libice6 2:1.0.5-1 [53.4kB]
Get:3 http://localhost sid/main x11proto-core-dev 7.0.15-1 [94.8kB]
Get:4 http://localhost sid/main libice-dev 2:1.0.5-1 [65.5kB]
Get:5 http://localhost sid/main libsm6 2:1.1.0-2 [23.5kB]
Get:6 http://localhost sid/main libsm-dev 2:1.1.0-2 [26.6kB]
Get:7 http://localhost sid/main libxau6 1:1.0.4-2 [13.2kB]
Get:8 http://localhost sid/main libxdmcp6 1:1.0.2-3 [17.9kB]
Get:9 http://localhost sid/main libxcb1 1.3-2 [43.2kB]
Err http://localhost sid/main libx11-data 2:1.2.1-1
404 Not Found
Get:10 http://localhost sid/main libx11-6 2:1.2.1-1 [836kB]
Get:11 http://localhost sid/main libxau-dev 1:1.0.4-2 [16.9kB]
Get:12 http://localhost sid/main libxdmcp-dev 1:1.0.2-3 [21.4kB]
Get:13 http://localhost sid/main x11proto-input-dev 1.5.0-2 [17.5kB]
Get:14 http://localhost sid/main x11proto-kb-dev 1.0.3-3 [27.1kB]
Get:15 http://localhost sid/main xtrans-dev 1.2.3-3 [66.1kB]
Get:16 http://localhost sid/main libpthread-stubs0 0.1-2 [2774B]
Get:17 http://localhost sid/main libpthread-stubs0-dev 0.1-2 [3052B]
Get:18 http://localhost sid/main libxcb1-dev 1.3-2 [79.8kB]
Get:19 http://localhost sid/main libx11-dev 2:1.2.1-1 [1944kB]
Get:20 http://localhost sid/main libxext6 2:1.0.4-1 [36.6kB]
Get:21 http://localhost sid/main libxt6 1:1.0.5-3 [185kB]
Get:22 http://localhost sid/main libxmu6 2:1.0.4-1 [55.4kB]
Get:23 http://localhost sid/main libxpm4 1:3.5.7-2 [43.1kB]
Get:24 http://localhost sid/main libxaw7 2:1.0.5-2 [211kB]
Get:25 http://localhost sid/main x11proto-xext-dev 7.0.4-2 [44.6kB]
Get:26 http://localhost sid/main libxext-dev 2:1.0.4-1 [88.7kB]
Get:27 http://localhost sid/main libxmu-headers 2:1.0.4-1 [21.0kB]
Get:28 http://localhost sid/main libxt-dev 1:1.0.5-3 [514kB]
Get:29 http://localhost sid/main libxmu-dev 2:1.0.4-1 [62.4kB]
Get:30 http://localhost sid/main libxpm-dev 1:3.5.7-2 [99.8kB]
Get:31 http://localhost sid/main libxaw7-dev 2:1.0.5-2 [308kB]
Get:32 http://localhost sid/main libexpat1 2.0.1-4 [136kB]
Get:33 http://localhost sid/main libfreetype6 2.3.9-5 [408kB]
Get:34 http://localhost sid/main ucf 3.0018 [64.3kB]
Get:35 http://localhost sid/main libmagic1 5.03-1 [389kB]
Get:36 http://localhost sid/main file 5.03-1 [46.7kB]
Get:37 http://localhost sid/main libnewt0.52 0.52.10-4 [67.8kB]
Get:38 http://localhost sid/main libpopt0 1.14-4 [46.4kB]
Get:39 http://localhost sid/main whiptail 0.52.10-4 [38.9kB]
Get:40 http://localhost sid/main defoma 0.11.10-0.2 [101kB]
Get:41 http://localhost sid/main ttf-dejavu-core 2.29-3 [1430kB]
Get:42 http://localhost sid/main ttf-dejavu-extra 2.29-3 [3173kB]
Get:43 http://localhost sid/main ttf-dejavu 2.29-3 [28.4kB]
Get:44 http://localhost sid/main fontconfig-config 2.6.0-4 [184kB]
Get:45 http://localhost sid/main libfontconfig1 2.6.0-4 [240kB]
Get:46 http://localhost sid/main libxrender1 1:0.9.4-2 [28.1kB]
Get:47 http://localhost sid/main libxft2 2.1.13-3 [53.8kB]
Get:48 http://localhost sid/main libexpat1-dev 2.0.1-4 [226kB]
Get:49 http://localhost sid/main zlib1g-dev 1:1.2.3.3.dfsg-14 [164kB]
Get:50 http://localhost sid/main libfreetype6-dev 2.3.9-5 [730kB]
Get:51 http://localhost sid/main libpcre3 7.8-2 [215kB]
Get:52 http://localhost sid/main libglib2.0-0 2.20.4-1 [849kB]
Get:53 http://localhost sid/main pkg-config 0.22-1 [55.0kB]
Get:54 http://localhost sid/main libfontconfig1-dev 2.6.0-4 [733kB]
Get:55 http://localhost sid/main x11proto-render-dev 2:0.9.3-2 [7062B]
Get:56 http://localhost sid/main libxrender-dev 1:0.9.4-2 [31.9kB]
Get:57 http://localhost sid/main libxft-dev 2.1.13-3 [69.1kB]
Get:58 http://localhost sid/main libxp6 1:1.0.0.xsf1-2 [18.3kB]
Get:59 http://localhost sid/main x11proto-print-dev 1.0.3.xsf1-1 [10.3kB]
Get:60 http://localhost sid/main libxp-dev 1:1.0.0.xsf1-2 [84.2kB]
Get:61 http://localhost sid/main bsdmainutils 6.1.10 [179kB]
Get:62 http://localhost sid/main groff-base 1.18.1.1-22 [897kB]
Get:63 http://localhost sid/main man-db 2.5.5-2 [1506kB]
Get:64 http://localhost sid/main gettext-base 0.17-6 [125kB]
Get:65 http://localhost sid/main libxml2 2.7.3.dfsg-2 [865kB]
Get:66 http://localhost sid/main m4 1.4.13-1 [288kB]
Get:67 http://localhost sid/main autoconf 2.63-3 [508kB]
Get:68 http://localhost sid/main autotools-dev 20090427.1 [64.6kB]
Get:69 http://localhost sid/main automake1.9 1.9.6+nogfdl-3 [388kB]
Get:70 http://localhost sid/main html2text 1.3.2a-14 [103kB]
Get:71 http://localhost sid/main libcroco3 0.6.1-2 [123kB]
Get:72 http://localhost sid/main libgomp1 4.4.0-10 [25.2kB]
Get:73 http://localhost sid/main gettext 0.17-6 [2710kB]
Get:74 http://localhost sid/main intltool-debian 0.35.0+20060710.1 [30.8kB]
Get:75 http://localhost sid/main po-debconf 1.0.16 [224kB]
Get:76 http://localhost sid/main debhelper 7.2.21 [544kB]
Get:77 http://localhost sid/main dpatch 2.0.31 [92.3kB]
Get:78 http://localhost sid/main lesstif2 1:0.95.0-2.3 [701kB]
Get:79 http://localhost sid/main lesstif2-dev 1:0.95.0-2.3 [959kB]
Get:80 http://localhost sid/main libpaper1 1.1.23+nmu1 [21.1kB]
Get:81 http://localhost sid/main libpaper-dev 1.1.23+nmu1 [17.2kB]
Get:82 http://localhost sid/main libt1-5 5.1.2-3 [169kB]
Get:83 http://localhost sid/main libt1-dev 5.1.2-3 [195kB]
Get:84 http://localhost sid/main x-dev 7.0.15-1 [16.0kB]
Failed to fetch http://localhost:9999/debian/pool/main/libx/libx11/libx11-data_1.2.1-1_all.deb 404 Not Found
E: Fetched 25.7MB in 4min 20s (98.6kB/s)
Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
apt-get failed.
Package installation failed
Trying to reinstall removed packages:
Trying to uninstall newly installed packages:
dpkg: warning: ignoring request to remove autoconf which isn't installed.
dpkg: warning: ignoring request to remove automake1.9 which isn't installed.
dpkg: warning: ignoring request to remove autotools-dev which isn't installed.
dpkg: warning: ignoring request to remove bsdmainutils which isn't installed.
dpkg: warning: ignoring request to remove debhelper which isn't installed.
dpkg: warning: ignoring request to remove defoma which isn't installed.
dpkg: warning: ignoring request to remove dpatch which isn't installed.
dpkg: warning: ignoring request to remove file which isn't installed.
dpkg: warning: ignoring request to remove fontconfig-config which isn't installed.
dpkg: warning: ignoring request to remove gettext which isn't installed.
dpkg: warning: ignoring request to remove gettext-base which isn't installed.
dpkg: warning: ignoring request to remove groff-base which isn't installed.
dpkg: warning: ignoring request to remove html2text which isn't installed.
dpkg: warning: ignoring request to remove intltool-debian which isn't installed.
dpkg: warning: ignoring request to remove lesstif2 which isn't installed.
dpkg: warning: ignoring request to remove lesstif2-dev which isn't installed.
dpkg: warning: ignoring request to remove libcroco3 which isn't installed.
dpkg: warning: ignoring request to remove libexpat1 which isn't installed.
dpkg: warning: ignoring request to remove libexpat1-dev which isn't installed.
dpkg: warning: ignoring request to remove libfontconfig1 which isn't installed.
dpkg: warning: ignoring request to remove libfontconfig1-dev which isn't installed.
dpkg: warning: ignoring request to remove libfreetype6 which isn't installed.
dpkg: warning: ignoring request to remove libfreetype6-dev which isn't installed.
dpkg: warning: ignoring request to remove libglib2.0-0 which isn't installed.
dpkg: warning: ignoring request to remove libgomp1 which isn't installed.
dpkg: warning: ignoring request to remove libice-dev which isn't installed.
dpkg: warning: ignoring request to remove libice6 which isn't installed.
dpkg: warning: ignoring request to remove libmagic1 which isn't installed.
dpkg: warning: ignoring request to remove libnewt0.52 which isn't installed.
dpkg: warning: ignoring request to remove libpaper-dev which isn't installed.
dpkg: warning: ignoring request to remove libpaper1 which isn't installed.
dpkg: warning: ignoring request to remove libpcre3 which isn't installed.
dpkg: warning: ignoring request to remove libpopt0 which isn't installed.
dpkg: warning: ignoring request to remove libpthread-stubs0 which isn't installed.
dpkg: warning: ignoring request to remove libpthread-stubs0-dev which isn't installed.
dpkg: warning: ignoring request to remove libsm-dev which isn't installed.
dpkg: warning: ignoring request to remove libsm6 which isn't installed.
dpkg: warning: ignoring request to remove libt1-5 which isn't installed.
dpkg: warning: ignoring request to remove libt1-dev which isn't installed.
dpkg: warning: ignoring request to remove libx11-6 which isn't installed.
dpkg: warning: ignoring request to remove libx11-data which isn't installed.
dpkg: warning: ignoring request to remove libx11-dev which isn't installed.
dpkg: warning: ignoring request to remove libxau-dev which isn't installed.
dpkg: warning: ignoring request to remove libxau6 which isn't installed.
dpkg: warning: ignoring request to remove libxaw7 which isn't installed.
dpkg: warning: ignoring request to remove libxaw7-dev which isn't installed.
dpkg: warning: ignoring request to remove libxcb1 which isn't installed.
dpkg: warning: ignoring request to remove libxcb1-dev which isn't installed.
dpkg: warning: ignoring request to remove libxdmcp-dev which isn't installed.
dpkg: warning: ignoring request to remove libxdmcp6 which isn't installed.
dpkg: warning: ignoring request to remove libxext-dev which isn't installed.
dpkg: warning: ignoring request to remove libxext6 which isn't installed.
dpkg: warning: ignoring request to remove libxft-dev which isn't installed.
dpkg: warning: ignoring request to remove libxft2 which isn't installed.
dpkg: warning: ignoring request to remove libxml2 which isn't installed.
dpkg: warning: ignoring request to remove libxmu-dev which isn't installed.
dpkg: warning: ignoring request to remove libxmu-headers which isn't installed.
dpkg: warning: ignoring request to remove libxmu6 which isn't installed.
dpkg: warning: ignoring request to remove libxp-dev which isn't installed.
dpkg: warning: ignoring request to remove libxp6 which isn't installed.
dpkg: warning: ignoring request to remove libxpm-dev which isn't installed.
dpkg: warning: ignoring request to remove libxpm4 which isn't installed.
dpkg: warning: ignoring request to remove libxrender-dev which isn't installed.
dpkg: warning: ignoring request to remove libxrender1 which isn't installed.
dpkg: warning: ignoring request to remove libxt-dev which isn't installed.
dpkg: warning: ignoring request to remove libxt6 which isn't installed.
dpkg: warning: ignoring request to remove m4 which isn't installed.
dpkg: warning: ignoring request to remove man-db which isn't installed.
dpkg: warning: ignoring request to remove pkg-config which isn't installed.
dpkg: warning: ignoring request to remove po-debconf which isn't installed.
dpkg: warning: ignoring request to remove ttf-dejavu which isn't installed.
dpkg: warning: ignoring request to remove ttf-dejavu-core which isn't installed.
dpkg: warning: ignoring request to remove ttf-dejavu-extra which isn't installed.
dpkg: warning: ignoring request to remove ucf which isn't installed.
dpkg: warning: ignoring request to remove whiptail which isn't installed.
dpkg: warning: ignoring request to remove x-dev which isn't installed.
dpkg: warning: ignoring request to remove x11-common which isn't installed.
dpkg: warning: ignoring request to remove x11proto-core-dev which isn't installed.
dpkg: warning: ignoring request to remove x11proto-input-dev which isn't installed.
dpkg: warning: ignoring request to remove x11proto-kb-dev which isn't installed.
dpkg: warning: ignoring request to remove x11proto-print-dev which isn't installed.
dpkg: warning: ignoring request to remove x11proto-render-dev which isn't installed.
dpkg: warning: ignoring request to remove x11proto-xext-dev which isn't installed.
dpkg: warning: ignoring request to remove xtrans-dev which isn't installed.
dpkg: warning: ignoring request to remove zlib1g-dev which isn't installed.
Source-dependencies not satisfied; skipping xpdf
Not removing build depends: cloned chroot in use
────────────────────────────────────────────────────────────────────────────────
Finished at 20090714-0203
Build needed 00:00:00, 0k disc space
DC-Message: Failed, but took only 274.979931. Retrying, you never know.
sbuild (Debian sbuild) 0.58.6 (20 Jun 2009) on paramount-33.rennes.grid5000.fr
╔══════════════════════════════════════════════════════════════════════════════╗
║ xpdf 3.02-1.4+lenny1 (amd64) 14 Jul 2009 02:03 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Package: xpdf
Version: 3.02-1.4+lenny1
Architecture: amd64
Start Time: 20090714-0203
┌──────────────────────────────────────────────────────────────────────────────┐
│ Fetch source files │
└──────────────────────────────────────────────────────────────────────────────┘
Check APT
─────────
Checking available source versions...
Download source files with APT
──────────────────────────────
Reading package lists...
Building dependency tree...
Reading state information...
Need to get 718kB of source archives.
Get:1 http://localhost sid/main xpdf 3.02-1.4+lenny1 (dsc) [1266B]
Get:2 http://localhost sid/main xpdf 3.02-1.4+lenny1 (tar) [675kB]
Get:3 http://localhost sid/main xpdf 3.02-1.4+lenny1 (diff) [42.3kB]
Fetched 718kB in 0s (46.7MB/s)
Download complete and in download only mode
Check arch
──────────
** Using build dependencies supplied by package:
Build-Depends: libt1-dev (>= 5.0.2-3), libxext-dev, libxp-dev, libxt-dev, libxpm-dev, libx11-dev, lesstif2-dev | libmotif-dev, x-dev, debhelper (>= 4.2.21), libfreetype6-dev (>= 2.1.2-1), libpaper-dev | libpaperg-dev, pkg-config, dpatch, automake1.9, autoconf
Build-Conflicts: autoconf2.13, libstroke0-dev, libttf-dev
┌──────────────────────────────────────────────────────────────────────────────┐
│ Install build dependencies │
└──────────────────────────────────────────────────────────────────────────────┘
Checking for already installed source dependencies...
W: Unable to locate package libttf-dev
libt1-dev: missing
Using default version 5.1.2-3
libxext-dev: missing
libxp-dev: missing
libxt-dev: missing
libxpm-dev: missing
libx11-dev: missing
lesstif2-dev: missing
libmotif-dev: missing
x-dev: missing
debhelper: missing
Using default version 7.2.21
libfreetype6-dev: missing
Using default version 2.3.9-5
libpaper-dev: missing
libpaperg-dev: missing
pkg-config: missing
dpatch: missing
automake1.9: missing
autoconf: missing
autoconf2.13: already deinstalled
libstroke0-dev: already deinstalled
libttf-dev: already deinstalled
Checking for source dependency conflicts...
Installing positive dependencies: libt1-dev libxext-dev libxp-dev libxt-dev libxpm-dev libx11-dev lesstif2-dev x-dev debhelper libfreetype6-dev libpaper-dev pkg-config dpatch automake1.9 autoconf
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
autotools-dev bsdmainutils defoma file fontconfig-config gettext
gettext-base groff-base html2text intltool-debian lesstif2 libcroco3
libexpat1 libexpat1-dev libfontconfig1 libfontconfig1-dev libfreetype6
libglib2.0-0 libgomp1 libice-dev libice6 libmagic1 libnewt0.52 libpaper1
libpcre3 libpopt0 libpthread-stubs0 libpthread-stubs0-dev libsm-dev libsm6
libt1-5 libx11-6 libx11-data libxau-dev libxau6 libxaw7 libxaw7-dev libxcb1
libxcb1-dev libxdmcp-dev libxdmcp6 libxext6 libxft-dev libxft2 libxml2
libxmu-dev libxmu-headers libxmu6 libxp6 libxpm4 libxrender-dev libxrender1
libxt6 m4 man-db po-debconf ttf-dejavu ttf-dejavu-core ttf-dejavu-extra ucf
whiptail x11-common x11proto-core-dev x11proto-input-dev x11proto-kb-dev
x11proto-print-dev x11proto-render-dev x11proto-xext-dev xtrans-dev
zlib1g-dev
Suggested packages:
autobook autoconf-archive autoconf-doc autoconf2.13 gnu-standards libtool
automake1.9-doc vacation wamerican wordlist whois dh-make defoma-doc
dfontmgr psfontmgr x-ttcidfont-conf curl cvs gettext-doc groff www-browser
libmail-box-perl
Recommended packages:
automake automaken libft-perl patchutils libglib2.0-data shared-mime-info
libfribidi0 libpaper-utils libt1-doc xml-core libmail-sendmail-perl
The following NEW packages will be installed:
autoconf automake1.9 autotools-dev bsdmainutils debhelper defoma dpatch file
fontconfig-config gettext gettext-base groff-base html2text intltool-debian
lesstif2 lesstif2-dev libcroco3 libexpat1 libexpat1-dev libfontconfig1
libfontconfig1-dev libfreetype6 libfreetype6-dev libglib2.0-0 libgomp1
libice-dev libice6 libmagic1 libnewt0.52 libpaper-dev libpaper1 libpcre3
libpopt0 libpthread-stubs0 libpthread-stubs0-dev libsm-dev libsm6 libt1-5
libt1-dev libx11-6 libx11-data libx11-dev libxau-dev libxau6 libxaw7
libxaw7-dev libxcb1 libxcb1-dev libxdmcp-dev libxdmcp6 libxext-dev libxext6
libxft-dev libxft2 libxml2 libxmu-dev libxmu-headers libxmu6 libxp-dev
libxp6 libxpm-dev libxpm4 libxrender-dev libxrender1 libxt-dev libxt6 m4
man-db pkg-config po-debconf ttf-dejavu ttf-dejavu-core ttf-dejavu-extra ucf
whiptail x-dev x11-common x11proto-core-dev x11proto-input-dev
x11proto-kb-dev x11proto-print-dev x11proto-render-dev x11proto-xext-dev
xtrans-dev zlib1g-dev
0 upgraded, 85 newly installed, 0 to remove and 0 not upgraded.
Need to get 25.9MB of archives.
After this operation, 76.6MB of additional disk space will be used.
Get:1 http://localhost sid/main x11-common 1:7.4+3 [287kB]
Get:2 http://localhost sid/main libice6 2:1.0.5-1 [53.4kB]
Get:3 http://localhost sid/main x11proto-core-dev 7.0.15-1 [94.8kB]
Get:4 http://localhost sid/main libice-dev 2:1.0.5-1 [65.5kB]
Get:5 http://localhost sid/main libsm6 2:1.1.0-2 [23.5kB]
Get:6 http://localhost sid/main libsm-dev 2:1.1.0-2 [26.6kB]
Get:7 http://localhost sid/main libxau6 1:1.0.4-2 [13.2kB]
Get:8 http://localhost sid/main libxdmcp6 1:1.0.2-3 [17.9kB]
Get:9 http://localhost sid/main libxcb1 1.3-2 [43.2kB]
Get:10 http://localhost sid/main libx11-data 2:1.2.1-1 [245kB]
Get:11 http://localhost sid/main libx11-6 2:1.2.1-1 [836kB]
Get:12 http://localhost sid/main libxau-dev 1:1.0.4-2 [16.9kB]
Get:13 http://localhost sid/main libxdmcp-dev 1:1.0.2-3 [21.4kB]
Get:14 http://localhost sid/main x11proto-input-dev 1.5.0-2 [17.5kB]
Get:15 http://localhost sid/main x11proto-kb-dev 1.0.3-3 [27.1kB]
Get:16 http://localhost sid/main xtrans-dev 1.2.3-3 [66.1kB]
Get:17 http://localhost sid/main libpthread-stubs0 0.1-2 [2774B]
Get:18 http://localhost sid/main libpthread-stubs0-dev 0.1-2 [3052B]
Get:19 http://localhost sid/main libxcb1-dev 1.3-2 [79.8kB]
Get:20 http://localhost sid/main libx11-dev 2:1.2.1-1 [1944kB]
Get:21 http://localhost sid/main libxext6 2:1.0.4-1 [36.6kB]
Get:22 http://localhost sid/main libxt6 1:1.0.5-3 [185kB]
Get:23 http://localhost sid/main libxmu6 2:1.0.4-1 [55.4kB]
Get:24 http://localhost sid/main libxpm4 1:3.5.7-2 [43.1kB]
Get:25 http://localhost sid/main libxaw7 2:1.0.5-2 [211kB]
Get:26 http://localhost sid/main x11proto-xext-dev 7.0.4-2 [44.6kB]
Get:27 http://localhost sid/main libxext-dev 2:1.0.4-1 [88.7kB]
Get:28 http://localhost sid/main libxmu-headers 2:1.0.4-1 [21.0kB]
Get:29 http://localhost sid/main libxt-dev 1:1.0.5-3 [514kB]
Get:30 http://localhost sid/main libxmu-dev 2:1.0.4-1 [62.4kB]
Get:31 http://localhost sid/main libxpm-dev 1:3.5.7-2 [99.8kB]
Get:32 http://localhost sid/main libxaw7-dev 2:1.0.5-2 [308kB]
Get:33 http://localhost sid/main libexpat1 2.0.1-4 [136kB]
Get:34 http://localhost sid/main libfreetype6 2.3.9-5 [408kB]
Get:35 http://localhost sid/main ucf 3.0018 [64.3kB]
Get:36 http://localhost sid/main libmagic1 5.03-1 [389kB]
Get:37 http://localhost sid/main file 5.03-1 [46.7kB]
Get:38 http://localhost sid/main libnewt0.52 0.52.10-4 [67.8kB]
Get:39 http://localhost sid/main libpopt0 1.14-4 [46.4kB]
Get:40 http://localhost sid/main whiptail 0.52.10-4 [38.9kB]
Get:41 http://localhost sid/main defoma 0.11.10-0.2 [101kB]
Get:42 http://localhost sid/main ttf-dejavu-core 2.29-3 [1430kB]
Get:43 http://localhost sid/main ttf-dejavu-extra 2.29-3 [3173kB]
Get:44 http://localhost sid/main ttf-dejavu 2.29-3 [28.4kB]
Get:45 http://localhost sid/main fontconfig-config 2.6.0-4 [184kB]
Get:46 http://localhost sid/main libfontconfig1 2.6.0-4 [240kB]
Get:47 http://localhost sid/main libxrender1 1:0.9.4-2 [28.1kB]
Get:48 http://localhost sid/main libxft2 2.1.13-3 [53.8kB]
Get:49 http://localhost sid/main libexpat1-dev 2.0.1-4 [226kB]
Get:50 http://localhost sid/main zlib1g-dev 1:1.2.3.3.dfsg-14 [164kB]
Get:51 http://localhost sid/main libfreetype6-dev 2.3.9-5 [730kB]
Get:52 http://localhost sid/main libpcre3 7.8-2 [215kB]
Get:53 http://localhost sid/main libglib2.0-0 2.20.4-1 [849kB]
Get:54 http://localhost sid/main pkg-config 0.22-1 [55.0kB]
Get:55 http://localhost sid/main libfontconfig1-dev 2.6.0-4 [733kB]
Get:56 http://localhost sid/main x11proto-render-dev 2:0.9.3-2 [7062B]
Get:57 http://localhost sid/main libxrender-dev 1:0.9.4-2 [31.9kB]
Get:58 http://localhost sid/main libxft-dev 2.1.13-3 [69.1kB]
Get:59 http://localhost sid/main libxp6 1:1.0.0.xsf1-2 [18.3kB]
Get:60 http://localhost sid/main x11proto-print-dev 1.0.3.xsf1-1 [10.3kB]
Get:61 http://localhost sid/main libxp-dev 1:1.0.0.xsf1-2 [84.2kB]
Get:62 http://localhost sid/main bsdmainutils 6.1.10 [179kB]
Get:63 http://localhost sid/main groff-base 1.18.1.1-22 [897kB]
Get:64 http://localhost sid/main man-db 2.5.5-2 [1506kB]
Get:65 http://localhost sid/main gettext-base 0.17-6 [125kB]
Get:66 http://localhost sid/main libxml2 2.7.3.dfsg-2 [865kB]
Get:67 http://localhost sid/main m4 1.4.13-1 [288kB]
Get:68 http://localhost sid/main autoconf 2.63-3 [508kB]
Get:69 http://localhost sid/main autotools-dev 20090427.1 [64.6kB]
Get:70 http://localhost sid/main automake1.9 1.9.6+nogfdl-3 [388kB]
Get:71 http://localhost sid/main html2text 1.3.2a-14 [103kB]
Get:72 http://localhost sid/main libcroco3 0.6.1-2 [123kB]
Get:73 http://localhost sid/main libgomp1 4.4.0-10 [25.2kB]
Get:74 http://localhost sid/main gettext 0.17-6 [2710kB]
Get:75 http://localhost sid/main intltool-debian 0.35.0+20060710.1 [30.8kB]
Get:76 http://localhost sid/main po-debconf 1.0.16 [224kB]
Get:77 http://localhost sid/main debhelper 7.2.21 [544kB]
Get:78 http://localhost sid/main dpatch 2.0.31 [92.3kB]
Get:79 http://localhost sid/main lesstif2 1:0.95.0-2.3 [701kB]
Get:80 http://localhost sid/main lesstif2-dev 1:0.95.0-2.3 [959kB]
Get:81 http://localhost sid/main libpaper1 1.1.23+nmu1 [21.1kB]
Get:82 http://localhost sid/main libpaper-dev 1.1.23+nmu1 [17.2kB]
Get:83 http://localhost sid/main libt1-5 5.1.2-3 [169kB]
Get:84 http://localhost sid/main libt1-dev 5.1.2-3 [195kB]
Get:85 http://localhost sid/main x-dev 7.0.15-1 [16.0kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 25.9MB in 0s (44.2MB/s)
Selecting previously deselected package x11-common.
(Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 9662 files and directories currently installed.)
Unpacking x11-common (from .../x11-common_1%3a7.4+3_all.deb) ...
Selecting previously deselected package libice6.
Unpacking libice6 (from .../libice6_2%3a1.0.5-1_amd64.deb) ...
Setting up x11-common (1:7.4+3) ...
Selecting previously deselected package x11proto-core-dev.
(Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 9696 files and directories currently installed.)
Unpacking x11proto-core-dev (from .../x11proto-core-dev_7.0.15-1_all.deb) ...
Selecting previously deselected package libice-dev.
Unpacking libice-dev (from .../libice-dev_2%3a1.0.5-1_amd64.deb) ...
Selecting previously deselected package libsm6.
Unpacking libsm6 (from .../libsm6_2%3a1.1.0-2_amd64.deb) ...
Selecting previously deselected package libsm-dev.
Unpacking libsm-dev (from .../libsm-dev_2%3a1.1.0-2_amd64.deb) ...
Selecting previously deselected package libxau6.
Unpacking libxau6 (from .../libxau6_1%3a1.0.4-2_amd64.deb) ...
Selecting previously deselected package libxdmcp6.
Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.0.2-3_amd64.deb) ...
Selecting previously deselected package libxcb1.
Unpacking libxcb1 (from .../libxcb1_1.3-2_amd64.deb) ...
Selecting previously deselected package libx11-data.
Unpacking libx11-data (from .../libx11-data_2%3a1.2.1-1_all.deb) ...
Selecting previously deselected package libx11-6.
Unpacking libx11-6 (from .../libx11-6_2%3a1.2.1-1_amd64.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use '--print-architecture' instead.
Selecting previously deselected package libxau-dev.
Unpacking libxau-dev (from .../libxau-dev_1%3a1.0.4-2_amd64.deb) ...
Selecting previously deselected package libxdmcp-dev.
Unpacking libxdmcp-dev (from .../libxdmcp-dev_1%3a1.0.2-3_amd64.deb) ...
Selecting previously deselected package x11proto-input-dev.
Unpacking x11proto-input-dev (from .../x11proto-input-dev_1.5.0-2_all.deb) ...
Selecting previously deselected package x11proto-kb-dev.
Unpacking x11proto-kb-dev (from .../x11proto-kb-dev_1.0.3-3_all.deb) ...
Selecting previously deselected package xtrans-dev.
Unpacking xtrans-dev (from .../xtrans-dev_1.2.3-3_all.deb) ...
Selecting previously deselected package libpthread-stubs0.
Unpacking libpthread-stubs0 (from .../libpthread-stubs0_0.1-2_amd64.deb) ...
Selecting previously deselected package libpthread-stubs0-dev.
Unpacking libpthread-stubs0-dev (from .../libpthread-stubs0-dev_0.1-2_amd64.deb) ...
Selecting previously deselected package libxcb1-dev.
Unpacking libxcb1-dev (from .../libxcb1-dev_1.3-2_amd64.deb) ...
Selecting previously deselected package libx11-dev.
Unpacking libx11-dev (from .../libx11-dev_2%3a1.2.1-1_amd64.deb) ...
Selecting previously deselected package libxext6.
Unpacking libxext6 (from .../libxext6_2%3a1.0.4-1_amd64.deb) ...
Selecting previously deselected package libxt6.
Unpacking libxt6 (from .../libxt6_1%3a1.0.5-3_amd64.deb) ...
Selecting previously deselected package libxmu6.
Unpacking libxmu6 (from .../libxmu6_2%3a1.0.4-1_amd64.deb) ...
Selecting previously deselected package libxpm4.
Unpacking libxpm4 (from .../libxpm4_1%3a3.5.7-2_amd64.deb) ...
Selecting previously deselected package libxaw7.
Unpacking libxaw7 (from .../libxaw7_2%3a1.0.5-2_amd64.deb) ...
Selecting previously deselected package x11proto-xext-dev.
Unpacking x11proto-xext-dev (from .../x11proto-xext-dev_7.0.4-2_all.deb) ...
Selecting previously deselected package libxext-dev.
Unpacking libxext-dev (from .../libxext-dev_2%3a1.0.4-1_amd64.deb) ...
Selecting previously deselected package libxmu-headers.
Unpacking libxmu-headers (from .../libxmu-headers_2%3a1.0.4-1_all.deb) ...
Selecting previously deselected package libxt-dev.
Unpacking libxt-dev (from .../libxt-dev_1%3a1.0.5-3_amd64.deb) ...
Selecting previously deselected package libxmu-dev.
Unpacking libxmu-dev (from .../libxmu-dev_2%3a1.0.4-1_amd64.deb) ...
Selecting previously deselected package libxpm-dev.
Unpacking libxpm-dev (from .../libxpm-dev_1%3a3.5.7-2_amd64.deb) ...
Selecting previously deselected package libxaw7-dev.
Unpacking libxaw7-dev (from .../libxaw7-dev_2%3a1.0.5-2_amd64.deb) ...
Selecting previously deselected package libexpat1.
Unpacking libexpat1 (from .../libexpat1_2.0.1-4_amd64.deb) ...
Selecting previously deselected package libfreetype6.
Unpacking libfreetype6 (from .../libfreetype6_2.3.9-5_amd64.deb) ...
Selecting previously deselected package ucf.
Unpacking ucf (from .../archives/ucf_3.0018_all.deb) ...
Moving old data out of the way
Selecting previously deselected package libmagic1.
Unpacking libmagic1 (from .../libmagic1_5.03-1_amd64.deb) ...
Selecting previously deselected package file.
Unpacking file (from .../archives/file_5.03-1_amd64.deb) ...
Selecting previously deselected package libnewt0.52.
Unpacking libnewt0.52 (from .../libnewt0.52_0.52.10-4_amd64.deb) ...
Selecting previously deselected package libpopt0.
Unpacking libpopt0 (from .../libpopt0_1.14-4_amd64.deb) ...
Selecting previously deselected package whiptail.
Unpacking whiptail (from .../whiptail_0.52.10-4_amd64.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.29-3_all.deb) ...
Selecting previously deselected package ttf-dejavu-extra.
Unpacking ttf-dejavu-extra (from .../ttf-dejavu-extra_2.29-3_all.deb) ...
Selecting previously deselected package ttf-dejavu.
Unpacking ttf-dejavu (from .../ttf-dejavu_2.29-3_all.deb) ...
Selecting previously deselected package fontconfig-config.
Unpacking fontconfig-config (from .../fontconfig-config_2.6.0-4_all.deb) ...
Selecting previously deselected package libfontconfig1.
Unpacking libfontconfig1 (from .../libfontconfig1_2.6.0-4_amd64.deb) ...
Selecting previously deselected package libxrender1.
Unpacking libxrender1 (from .../libxrender1_1%3a0.9.4-2_amd64.deb) ...
Selecting previously deselected package libxft2.
Unpacking libxft2 (from .../libxft2_2.1.13-3_amd64.deb) ...
Selecting previously deselected package libexpat1-dev.
Unpacking libexpat1-dev (from .../libexpat1-dev_2.0.1-4_amd64.deb) ...
Selecting previously deselected package zlib1g-dev.
Unpacking zlib1g-dev (from .../zlib1g-dev_1%3a1.2.3.3.dfsg-14_amd64.deb) ...
Selecting previously deselected package libfreetype6-dev.
Unpacking libfreetype6-dev (from .../libfreetype6-dev_2.3.9-5_amd64.deb) ...
Selecting previously deselected package libpcre3.
Unpacking libpcre3 (from .../libpcre3_7.8-2_amd64.deb) ...
Selecting previously deselected package libglib2.0-0.
Unpacking libglib2.0-0 (from .../libglib2.0-0_2.20.4-1_amd64.deb) ...
Selecting previously deselected package pkg-config.
Unpacking pkg-config (from .../pkg-config_0.22-1_amd64.deb) ...
Selecting previously deselected package libfontconfig1-dev.
Unpacking libfontconfig1-dev (from .../libfontconfig1-dev_2.6.0-4_amd64.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-2_amd64.deb) ...
Selecting previously deselected package libxft-dev.
Unpacking libxft-dev (from .../libxft-dev_2.1.13-3_amd64.deb) ...
Selecting previously deselected package libxp6.
Unpacking libxp6 (from .../libxp6_1%3a1.0.0.xsf1-2_amd64.deb) ...
Selecting previously deselected package x11proto-print-dev.
Unpacking x11proto-print-dev (from .../x11proto-print-dev_1.0.3.xsf1-1_all.deb) ...
Selecting previously deselected package libxp-dev.
Unpacking libxp-dev (from .../libxp-dev_1%3a1.0.0.xsf1-2_amd64.deb) ...
Selecting previously deselected package bsdmainutils.
Unpacking bsdmainutils (from .../bsdmainutils_6.1.10_amd64.deb) ...
Selecting previously deselected package groff-base.
Unpacking groff-base (from .../groff-base_1.18.1.1-22_amd64.deb) ...
Selecting previously deselected package man-db.
Unpacking man-db (from .../man-db_2.5.5-2_amd64.deb) ...
Selecting previously deselected package gettext-base.
Unpacking gettext-base (from .../gettext-base_0.17-6_amd64.deb) ...
Selecting previously deselected package libxml2.
Unpacking libxml2 (from .../libxml2_2.7.3.dfsg-2_amd64.deb) ...
Selecting previously deselected package m4.
Unpacking m4 (from .../archives/m4_1.4.13-1_amd64.deb) ...
Selecting previously deselected package autoconf.
Unpacking autoconf (from .../autoconf_2.63-3_all.deb) ...
Selecting previously deselected package autotools-dev.
Unpacking autotools-dev (from .../autotools-dev_20090427.1_all.deb) ...
Selecting previously deselected package automake1.9.
Unpacking automake1.9 (from .../automake1.9_1.9.6+nogfdl-3_all.deb) ...
Selecting previously deselected package html2text.
Unpacking html2text (from .../html2text_1.3.2a-14_amd64.deb) ...
Selecting previously deselected package libcroco3.
Unpacking libcroco3 (from .../libcroco3_0.6.1-2_amd64.deb) ...
Selecting previously deselected package libgomp1.
Unpacking libgomp1 (from .../libgomp1_4.4.0-10_amd64.deb) ...
Selecting previously deselected package gettext.
Unpacking gettext (from .../gettext_0.17-6_amd64.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.16_all.deb) ...
Selecting previously deselected package debhelper.
Unpacking debhelper (from .../debhelper_7.2.21_all.deb) ...
Selecting previously deselected package dpatch.
Unpacking dpatch (from .../archives/dpatch_2.0.31_all.deb) ...
Selecting previously deselected package lesstif2.
Unpacking lesstif2 (from .../lesstif2_1%3a0.95.0-2.3_amd64.deb) ...
Selecting previously deselected package lesstif2-dev.
Unpacking lesstif2-dev (from .../lesstif2-dev_1%3a0.95.0-2.3_amd64.deb) ...
Selecting previously deselected package libpaper1.
Unpacking libpaper1 (from .../libpaper1_1.1.23+nmu1_amd64.deb) ...
Selecting previously deselected package libpaper-dev.
Unpacking libpaper-dev (from .../libpaper-dev_1.1.23+nmu1_amd64.deb) ...
Selecting previously deselected package libt1-5.
Unpacking libt1-5 (from .../libt1-5_5.1.2-3_amd64.deb) ...
Selecting previously deselected package libt1-dev.
Unpacking libt1-dev (from .../libt1-dev_5.1.2-3_amd64.deb) ...
Selecting previously deselected package x-dev.
Unpacking x-dev (from .../x-dev_7.0.15-1_all.deb) ...
Setting up libice6 (2:1.0.5-1) ...
Setting up x11proto-core-dev (7.0.15-1) ...
Setting up libice-dev (2:1.0.5-1) ...
Setting up libsm6 (2:1.1.0-2) ...
Setting up libsm-dev (2:1.1.0-2) ...
Setting up libxau6 (1:1.0.4-2) ...
Setting up libxdmcp6 (1:1.0.2-3) ...
Setting up libxcb1 (1.3-2) ...
Setting up libx11-data (2:1.2.1-1) ...
Setting up libx11-6 (2:1.2.1-1) ...
Setting up libxau-dev (1:1.0.4-2) ...
Setting up libxdmcp-dev (1:1.0.2-3) ...
Setting up x11proto-input-dev (1.5.0-2) ...
Setting up x11proto-kb-dev (1.0.3-3) ...
Setting up xtrans-dev (1.2.3-3) ...
Setting up libpthread-stubs0 (0.1-2) ...
Setting up libpthread-stubs0-dev (0.1-2) ...
Setting up libxcb1-dev (1.3-2) ...
Setting up libx11-dev (2:1.2.1-1) ...
Setting up libxext6 (2:1.0.4-1) ...
Setting up libxt6 (1:1.0.5-3) ...
Setting up libxmu6 (2:1.0.4-1) ...
Setting up libxpm4 (1:3.5.7-2) ...
Setting up libxaw7 (2:1.0.5-2) ...
Setting up x11proto-xext-dev (7.0.4-2) ...
Setting up libxext-dev (2:1.0.4-1) ...
Setting up libxmu-headers (2:1.0.4-1) ...
Setting up libxt-dev (1:1.0.5-3) ...
Setting up libxmu-dev (2:1.0.4-1) ...
Setting up libxpm-dev (1:3.5.7-2) ...
Setting up libxaw7-dev (2:1.0.5-2) ...
Setting up libexpat1 (2.0.1-4) ...
Setting up libfreetype6 (2.3.9-5) ...
Setting up ucf (3.0018) ...
Setting up libmagic1 (5.03-1) ...
Setting up file (5.03-1) ...
Setting up libnewt0.52 (0.52.10-4) ...
Setting up libpopt0 (1.14-4) ...
Setting up whiptail (0.52.10-4) ...
Setting up defoma (0.11.10-0.2) ...
Setting up ttf-dejavu-core (2.29-3) ...
Setting up ttf-dejavu-extra (2.29-3) ...
Setting up ttf-dejavu (2.29-3) ...
Setting up fontconfig-config (2.6.0-4) ...
Setting up libfontconfig1 (2.6.0-4) ...
Setting up libxrender1 (1:0.9.4-2) ...
Setting up libxft2 (2.1.13-3) ...
Setting up libexpat1-dev (2.0.1-4) ...
Setting up zlib1g-dev (1:1.2.3.3.dfsg-14) ...
Setting up libfreetype6-dev (2.3.9-5) ...
Setting up libpcre3 (7.8-2) ...
Setting up libglib2.0-0 (2.20.4-1) ...
Setting up pkg-config (0.22-1) ...
Setting up libfontconfig1-dev (2.6.0-4) ...
Setting up x11proto-render-dev (2:0.9.3-2) ...
Setting up libxrender-dev (1:0.9.4-2) ...
Setting up libxft-dev (2.1.13-3) ...
Setting up libxp6 (1:1.0.0.xsf1-2) ...
Setting up x11proto-print-dev (1.0.3.xsf1-1) ...
Setting up libxp-dev (1:1.0.0.xsf1-2) ...
Setting up bsdmainutils (6.1.10) ...
update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode.
Setting up groff-base (1.18.1.1-22) ...
Setting up man-db (2.5.5-2) ...
Building database of manual pages ...
Setting up gettext-base (0.17-6) ...
Setting up libxml2 (2.7.3.dfsg-2) ...
Setting up m4 (1.4.13-1) ...
Setting up autoconf (2.63-3) ...
Setting up autotools-dev (20090427.1) ...
Setting up automake1.9 (1.9.6+nogfdl-3) ...
update-alternatives: using /usr/bin/automake-1.9 to provide /usr/bin/automake (automake) in auto mode.
Setting up html2text (1.3.2a-14) ...
Setting up libcroco3 (0.6.1-2) ...
Setting up libgomp1 (4.4.0-10) ...
Setting up gettext (0.17-6) ...
Setting up intltool-debian (0.35.0+20060710.1) ...
Setting up po-debconf (1.0.16) ...
Setting up debhelper (7.2.21) ...
Setting up dpatch (2.0.31) ...
Setting up lesstif2 (1:0.95.0-2.3) ...
Setting up lesstif2-dev (1:0.95.0-2.3) ...
Setting up libpaper1 (1.1.23+nmu1) ...
Creating config file /etc/papersize with new version
Setting up libpaper-dev (1.1.23+nmu1) ...
Setting up libt1-5 (5.1.2-3) ...
Setting up libt1-dev (5.1.2-3) ...
Setting up x-dev (7.0.15-1) ...
Removing negative dependencies:
Checking correctness of source dependencies...
Kernel: Linux 2.6.26-2-amd64 amd64 (x86_64)
Toolchain package versions: libc6-dev_2.9-19 linux-libc-dev_2.6.30-2 g++-4.3_4.3.3-13 gcc-4.3_4.3.3-13 binutils_2.19.51.20090704-1 libstdc++6_4.4.0-10 libstdc++6-4.3-dev_4.3.3-13
┌──────────────────────────────────────────────────────────────────────────────┐
│ Build │
└──────────────────────────────────────────────────────────────────────────────┘
Unpack source
─────────────
gpgv: keyblock resource `/home/user/.gnupg/trustedkeys.gpg': general error
gpgv: Signature made Tue May 5 00:52:02 2009 CEST using DSA key ID 11404EC3
gpgv: Can't check signature: public key not found
dpkg-source: warning: failed to verify signature on ./xpdf_3.02-1.4+lenny1.dsc
dpkg-source: info: extracting xpdf in xpdf-3.02
dpkg-source: info: unpacking xpdf_3.02.orig.tar.gz
dpkg-source: info: applying xpdf_3.02-1.4+lenny1.diff.gz
Check disc space
────────────────
dpkg-buildpackage
─────────────────
dpkg-buildpackage: set CFLAGS to default value: -g -O2
dpkg-buildpackage: set CPPFLAGS to default value:
dpkg-buildpackage: set LDFLAGS to default value:
dpkg-buildpackage: set FFLAGS to default value: -g -O2
dpkg-buildpackage: set CXXFLAGS to default value: -g -O2
dpkg-buildpackage: source package xpdf
dpkg-buildpackage: source version 3.02-1.4+lenny1
dpkg-buildpackage: source changed by Giuseppe Iuculano <giuseppe@iuculano.it>
dpkg-buildpackage: host architecture amd64
/usr/bin/fakeroot debian/rules clean
dh_testdir
/usr/bin/make -i distclean
make[1]: Entering directory `/build/user-xpdf_3.02-1.4+lenny1-amd64-A63H3J/xpdf-3.02'
make[1]: *** No rule to make target `distclean'. Stop.
make[1]: Leaving directory `/build/user-xpdf_3.02-1.4+lenny1-amd64-A63H3J/xpdf-3.02'
make: [clean1] Error 2 (ignored)
rm -rf *~ debian/*~ debian/files* build-stamp aconf.h
rm -rf fofi/Makefile splash/Makefile
dh_clean
dpatch deapply-all
fix-CVE-2009-0146,0147,0165,0166,0799,0800,1179-1183 not applied to ./ .
fix-444648 not applied to ./ .
fix-479467 not applied to ./ .
fix-437725 not applied to ./ .
fix-462544 not applied to ./ .
fix-CVE-2007-5393_2007-5392_2007-4352 not applied to ./ .
fix-CVE-2007-3387_CVE-2007-5049 not applied to ./ .
99_autoconf not applied to ./ .
41_lesstif_cpp not applied to ./ .
40_lesstif_copy not applied to ./ .
02_permissions not applied to ./ .
01_manpage not applied to ./ .
rm -rf patch-stamp debian/patched
dpkg-source -b xpdf-3.02
dpkg-source: info: using source format `1.0'
dpkg-source: info: building xpdf using existing xpdf_3.02.orig.tar.gz
dpkg-source: info: building xpdf in xpdf_3.02-1.4+lenny1.diff.gz
dpkg-source: warning: executable mode 0755 of 'debian/patches/02_permissions.dpatch' will not be represented in diff
dpkg-source: warning: executable mode 0755 of 'debian/patches/40_lesstif_copy.dpatch' will not be represented in diff
dpkg-source: warning: executable mode 0755 of 'debian/patches/41_lesstif_cpp.dpatch' will not be represented in diff
dpkg-source: warning: executable mode 0755 of 'debian/patches/01_manpage.dpatch' will not be represented in diff
dpkg-source: warning: executable mode 0755 of 'debian/patches/fix-437725.dpatch' will not be represented in diff
dpkg-source: warning: executable mode 0755 of 'debian/patches/fix-479467.dpatch' will not be represented in diff
dpkg-source: warning: executable mode 0755 of 'debian/patches/fix-CVE-2007-5393_2007-5392_2007-4352.dpatch' will not be represented in diff
dpkg-source: warning: executable mode 0755 of 'debian/patches/fix-CVE-2009-0146,0147,0165,0166,0799,0800,1179-1183.dpatch' will not be represented in diff
dpkg-source: warning: executable mode 0755 of 'debian/patches/fix-444648.dpatch' will not be represented in diff
dpkg-source: warning: executable mode 0755 of 'debian/patches/fix-462544.dpatch' will not be represented in diff
dpkg-source: warning: executable mode 0755 of 'debian/patches/99_autoconf.dpatch' will not be represented in diff
dpkg-source: warning: executable mode 0755 of 'debian/patches/fix-CVE-2007-3387_CVE-2007-5049.dpatch' will not be represented in diff
dpkg-source: info: building xpdf in xpdf_3.02-1.4+lenny1.dsc
debian/rules build
dpatch apply-all
applying patch 01_manpage to ./ ... ok.
applying patch 02_permissions to ./ ... ok.
applying patch 40_lesstif_copy to ./ ... ok.
applying patch 41_lesstif_cpp to ./ ... failed.
make: *** [patch-stamp] Error 1
dpkg-buildpackage: error: debian/rules build gave error exit status 2
────────────────────────────────────────────────────────────────────────────────
Build finished at 20090714-0204
FAILED [dpkg-buildpackage died]
Purging /var/lib/schroot/mount/lsid64-32fab7e4-7daf-4071-a5e3-9e2ed4be8c47/build/user-xpdf_3.02-1.4+lenny1-amd64-A63H3J
────────────────────────────────────────────────────────────────────────────────
Not removing build depends: cloned chroot in use
────────────────────────────────────────────────────────────────────────────────
Finished at 20090714-0204
Build needed 00:00:45, 5568k disc space
DC-Message: Failed, but took only 46.008191. Retrying, you never know.
sbuild (Debian sbuild) 0.58.6 (20 Jun 2009) on paramount-33.rennes.grid5000.fr
╔══════════════════════════════════════════════════════════════════════════════╗
║ xpdf 3.02-1.4+lenny1 (amd64) 14 Jul 2009 02:04 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Package: xpdf
Version: 3.02-1.4+lenny1
Architecture: amd64
Start Time: 20090714-0204
┌──────────────────────────────────────────────────────────────────────────────┐
│ Fetch source files │
└──────────────────────────────────────────────────────────────────────────────┘
Check APT
─────────
Checking available source versions...
Download source files with APT
──────────────────────────────
Reading package lists...
Building dependency tree...
Reading state information...
Need to get 718kB of source archives.
Get:1 http://localhost sid/main xpdf 3.02-1.4+lenny1 (dsc) [1266B]
Get:2 http://localhost sid/main xpdf 3.02-1.4+lenny1 (tar) [675kB]
Get:3 http://localhost sid/main xpdf 3.02-1.4+lenny1 (diff) [42.3kB]
Fetched 718kB in 0s (45.8MB/s)
Download complete and in download only mode
Check arch
──────────
** Using build dependencies supplied by package:
Build-Depends: libt1-dev (>= 5.0.2-3), libxext-dev, libxp-dev, libxt-dev, libxpm-dev, libx11-dev, lesstif2-dev | libmotif-dev, x-dev, debhelper (>= 4.2.21), libfreetype6-dev (>= 2.1.2-1), libpaper-dev | libpaperg-dev, pkg-config, dpatch, automake1.9, autoconf
Build-Conflicts: autoconf2.13, libstroke0-dev, libttf-dev
┌──────────────────────────────────────────────────────────────────────────────┐
│ Install build dependencies │
└──────────────────────────────────────────────────────────────────────────────┘
Checking for already installed source dependencies...
W: Unable to locate package libttf-dev
libt1-dev: missing
Using default version 5.1.2-3
libxext-dev: missing
libxp-dev: missing
libxt-dev: missing
libxpm-dev: missing
libx11-dev: missing
lesstif2-dev: missing
libmotif-dev: missing
x-dev: missing
debhelper: missing
Using default version 7.2.21
libfreetype6-dev: missing
Using default version 2.3.9-5
libpaper-dev: missing
libpaperg-dev: missing
pkg-config: missing
dpatch: missing
automake1.9: missing
autoconf: missing
autoconf2.13: already deinstalled
libstroke0-dev: already deinstalled
libttf-dev: already deinstalled
Checking for source dependency conflicts...
Installing positive dependencies: libt1-dev libxext-dev libxp-dev libxt-dev libxpm-dev libx11-dev lesstif2-dev x-dev debhelper libfreetype6-dev libpaper-dev pkg-config dpatch automake1.9 autoconf
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
autotools-dev bsdmainutils defoma file fontconfig-config gettext
gettext-base groff-base html2text intltool-debian lesstif2 libcroco3
libexpat1 libexpat1-dev libfontconfig1 libfontconfig1-dev libfreetype6
libglib2.0-0 libgomp1 libice-dev libice6 libmagic1 libnewt0.52 libpaper1
libpcre3 libpopt0 libpthread-stubs0 libpthread-stubs0-dev libsm-dev libsm6
libt1-5 libx11-6 libx11-data libxau-dev libxau6 libxaw7 libxaw7-dev libxcb1
libxcb1-dev libxdmcp-dev libxdmcp6 libxext6 libxft-dev libxft2 libxml2
libxmu-dev libxmu-headers libxmu6 libxp6 libxpm4 libxrender-dev libxrender1
libxt6 m4 man-db po-debconf ttf-dejavu ttf-dejavu-core ttf-dejavu-extra ucf
whiptail x11-common x11proto-core-dev x11proto-input-dev x11proto-kb-dev
x11proto-print-dev x11proto-render-dev x11proto-xext-dev xtrans-dev
zlib1g-dev
Suggested packages:
autobook autoconf-archive autoconf-doc autoconf2.13 gnu-standards libtool
automake1.9-doc vacation wamerican wordlist whois dh-make defoma-doc
dfontmgr psfontmgr x-ttcidfont-conf curl cvs gettext-doc groff www-browser
libmail-box-perl
Recommended packages:
automake automaken libft-perl patchutils libglib2.0-data shared-mime-info
libfribidi0 libpaper-utils libt1-doc xml-core libmail-sendmail-perl
The following NEW packages will be installed:
autoconf automake1.9 autotools-dev bsdmainutils debhelper defoma dpatch file
fontconfig-config gettext gettext-base groff-base html2text intltool-debian
lesstif2 lesstif2-dev libcroco3 libexpat1 libexpat1-dev libfontconfig1
libfontconfig1-dev libfreetype6 libfreetype6-dev libglib2.0-0 libgomp1
libice-dev libice6 libmagic1 libnewt0.52 libpaper-dev libpaper1 libpcre3
libpopt0 libpthread-stubs0 libpthread-stubs0-dev libsm-dev libsm6 libt1-5
libt1-dev libx11-6 libx11-data libx11-dev libxau-dev libxau6 libxaw7
libxaw7-dev libxcb1 libxcb1-dev libxdmcp-dev libxdmcp6 libxext-dev libxext6
libxft-dev libxft2 libxml2 libxmu-dev libxmu-headers libxmu6 libxp-dev
libxp6 libxpm-dev libxpm4 libxrender-dev libxrender1 libxt-dev libxt6 m4
man-db pkg-config po-debconf ttf-dejavu ttf-dejavu-core ttf-dejavu-extra ucf
whiptail x-dev x11-common x11proto-core-dev x11proto-input-dev
x11proto-kb-dev x11proto-print-dev x11proto-render-dev x11proto-xext-dev
xtrans-dev zlib1g-dev
0 upgraded, 85 newly installed, 0 to remove and 0 not upgraded.
Need to get 25.9MB of archives.
After this operation, 76.6MB of additional disk space will be used.
Get:1 http://localhost sid/main x11-common 1:7.4+3 [287kB]
Get:2 http://localhost sid/main libice6 2:1.0.5-1 [53.4kB]
Get:3 http://localhost sid/main x11proto-core-dev 7.0.15-1 [94.8kB]
Get:4 http://localhost sid/main libice-dev 2:1.0.5-1 [65.5kB]
Get:5 http://localhost sid/main libsm6 2:1.1.0-2 [23.5kB]
Get:6 http://localhost sid/main libsm-dev 2:1.1.0-2 [26.6kB]
Get:7 http://localhost sid/main libxau6 1:1.0.4-2 [13.2kB]
Get:8 http://localhost sid/main libxdmcp6 1:1.0.2-3 [17.9kB]
Get:9 http://localhost sid/main libxcb1 1.3-2 [43.2kB]
Get:10 http://localhost sid/main libx11-data 2:1.2.1-1 [245kB]
Get:11 http://localhost sid/main libx11-6 2:1.2.1-1 [836kB]
Get:12 http://localhost sid/main libxau-dev 1:1.0.4-2 [16.9kB]
Get:13 http://localhost sid/main libxdmcp-dev 1:1.0.2-3 [21.4kB]
Get:14 http://localhost sid/main x11proto-input-dev 1.5.0-2 [17.5kB]
Get:15 http://localhost sid/main x11proto-kb-dev 1.0.3-3 [27.1kB]
Get:16 http://localhost sid/main xtrans-dev 1.2.3-3 [66.1kB]
Get:17 http://localhost sid/main libpthread-stubs0 0.1-2 [2774B]
Get:18 http://localhost sid/main libpthread-stubs0-dev 0.1-2 [3052B]
Get:19 http://localhost sid/main libxcb1-dev 1.3-2 [79.8kB]
Get:20 http://localhost sid/main libx11-dev 2:1.2.1-1 [1944kB]
Get:21 http://localhost sid/main libxext6 2:1.0.4-1 [36.6kB]
Get:22 http://localhost sid/main libxt6 1:1.0.5-3 [185kB]
Get:23 http://localhost sid/main libxmu6 2:1.0.4-1 [55.4kB]
Get:24 http://localhost sid/main libxpm4 1:3.5.7-2 [43.1kB]
Get:25 http://localhost sid/main libxaw7 2:1.0.5-2 [211kB]
Get:26 http://localhost sid/main x11proto-xext-dev 7.0.4-2 [44.6kB]
Get:27 http://localhost sid/main libxext-dev 2:1.0.4-1 [88.7kB]
Get:28 http://localhost sid/main libxmu-headers 2:1.0.4-1 [21.0kB]
Get:29 http://localhost sid/main libxt-dev 1:1.0.5-3 [514kB]
Get:30 http://localhost sid/main libxmu-dev 2:1.0.4-1 [62.4kB]
Get:31 http://localhost sid/main libxpm-dev 1:3.5.7-2 [99.8kB]
Get:32 http://localhost sid/main libxaw7-dev 2:1.0.5-2 [308kB]
Get:33 http://localhost sid/main libexpat1 2.0.1-4 [136kB]
Get:34 http://localhost sid/main libfreetype6 2.3.9-5 [408kB]
Get:35 http://localhost sid/main ucf 3.0018 [64.3kB]
Get:36 http://localhost sid/main libmagic1 5.03-1 [389kB]
Get:37 http://localhost sid/main file 5.03-1 [46.7kB]
Get:38 http://localhost sid/main libnewt0.52 0.52.10-4 [67.8kB]
Get:39 http://localhost sid/main libpopt0 1.14-4 [46.4kB]
Get:40 http://localhost sid/main whiptail 0.52.10-4 [38.9kB]
Get:41 http://localhost sid/main defoma 0.11.10-0.2 [101kB]
Get:42 http://localhost sid/main ttf-dejavu-core 2.29-3 [1430kB]
Get:43 http://localhost sid/main ttf-dejavu-extra 2.29-3 [3173kB]
Get:44 http://localhost sid/main ttf-dejavu 2.29-3 [28.4kB]
Get:45 http://localhost sid/main fontconfig-config 2.6.0-4 [184kB]
Get:46 http://localhost sid/main libfontconfig1 2.6.0-4 [240kB]
Get:47 http://localhost sid/main libxrender1 1:0.9.4-2 [28.1kB]
Get:48 http://localhost sid/main libxft2 2.1.13-3 [53.8kB]
Get:49 http://localhost sid/main libexpat1-dev 2.0.1-4 [226kB]
Get:50 http://localhost sid/main zlib1g-dev 1:1.2.3.3.dfsg-14 [164kB]
Get:51 http://localhost sid/main libfreetype6-dev 2.3.9-5 [730kB]
Get:52 http://localhost sid/main libpcre3 7.8-2 [215kB]
Get:53 http://localhost sid/main libglib2.0-0 2.20.4-1 [849kB]
Get:54 http://localhost sid/main pkg-config 0.22-1 [55.0kB]
Get:55 http://localhost sid/main libfontconfig1-dev 2.6.0-4 [733kB]
Get:56 http://localhost sid/main x11proto-render-dev 2:0.9.3-2 [7062B]
Get:57 http://localhost sid/main libxrender-dev 1:0.9.4-2 [31.9kB]
Get:58 http://localhost sid/main libxft-dev 2.1.13-3 [69.1kB]
Get:59 http://localhost sid/main libxp6 1:1.0.0.xsf1-2 [18.3kB]
Get:60 http://localhost sid/main x11proto-print-dev 1.0.3.xsf1-1 [10.3kB]
Get:61 http://localhost sid/main libxp-dev 1:1.0.0.xsf1-2 [84.2kB]
Get:62 http://localhost sid/main bsdmainutils 6.1.10 [179kB]
Get:63 http://localhost sid/main groff-base 1.18.1.1-22 [897kB]
Get:64 http://localhost sid/main man-db 2.5.5-2 [1506kB]
Get:65 http://localhost sid/main gettext-base 0.17-6 [125kB]
Get:66 http://localhost sid/main libxml2 2.7.3.dfsg-2 [865kB]
Get:67 http://localhost sid/main m4 1.4.13-1 [288kB]
Get:68 http://localhost sid/main autoconf 2.63-3 [508kB]
Get:69 http://localhost sid/main autotools-dev 20090427.1 [64.6kB]
Get:70 http://localhost sid/main automake1.9 1.9.6+nogfdl-3 [388kB]
Get:71 http://localhost sid/main html2text 1.3.2a-14 [103kB]
Get:72 http://localhost sid/main libcroco3 0.6.1-2 [123kB]
Get:73 http://localhost sid/main libgomp1 4.4.0-10 [25.2kB]
Get:74 http://localhost sid/main gettext 0.17-6 [2710kB]
Get:75 http://localhost sid/main intltool-debian 0.35.0+20060710.1 [30.8kB]
Get:76 http://localhost sid/main po-debconf 1.0.16 [224kB]
Get:77 http://localhost sid/main debhelper 7.2.21 [544kB]
Get:78 http://localhost sid/main dpatch 2.0.31 [92.3kB]
Get:79 http://localhost sid/main lesstif2 1:0.95.0-2.3 [701kB]
Get:80 http://localhost sid/main lesstif2-dev 1:0.95.0-2.3 [959kB]
Get:81 http://localhost sid/main libpaper1 1.1.23+nmu1 [21.1kB]
Get:82 http://localhost sid/main libpaper-dev 1.1.23+nmu1 [17.2kB]
Get:83 http://localhost sid/main libt1-5 5.1.2-3 [169kB]
Get:84 http://localhost sid/main libt1-dev 5.1.2-3 [195kB]
Get:85 http://localhost sid/main x-dev 7.0.15-1 [16.0kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 25.9MB in 0s (47.1MB/s)
Selecting previously deselected package x11-common.
(Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 9662 files and directories currently installed.)
Unpacking x11-common (from .../x11-common_1%3a7.4+3_all.deb) ...
Selecting previously deselected package libice6.
Unpacking libice6 (from .../libice6_2%3a1.0.5-1_amd64.deb) ...
Setting up x11-common (1:7.4+3) ...
Selecting previously deselected package x11proto-core-dev.
(Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 9696 files and directories currently installed.)
Unpacking x11proto-core-dev (from .../x11proto-core-dev_7.0.15-1_all.deb) ...
Selecting previously deselected package libice-dev.
Unpacking libice-dev (from .../libice-dev_2%3a1.0.5-1_amd64.deb) ...
Selecting previously deselected package libsm6.
Unpacking libsm6 (from .../libsm6_2%3a1.1.0-2_amd64.deb) ...
Selecting previously deselected package libsm-dev.
Unpacking libsm-dev (from .../libsm-dev_2%3a1.1.0-2_amd64.deb) ...
Selecting previously deselected package libxau6.
Unpacking libxau6 (from .../libxau6_1%3a1.0.4-2_amd64.deb) ...
Selecting previously deselected package libxdmcp6.
Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.0.2-3_amd64.deb) ...
Selecting previously deselected package libxcb1.
Unpacking libxcb1 (from .../libxcb1_1.3-2_amd64.deb) ...
Selecting previously deselected package libx11-data.
Unpacking libx11-data (from .../libx11-data_2%3a1.2.1-1_all.deb) ...
Selecting previously deselected package libx11-6.
Unpacking libx11-6 (from .../libx11-6_2%3a1.2.1-1_amd64.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use '--print-architecture' instead.
Selecting previously deselected package libxau-dev.
Unpacking libxau-dev (from .../libxau-dev_1%3a1.0.4-2_amd64.deb) ...
Selecting previously deselected package libxdmcp-dev.
Unpacking libxdmcp-dev (from .../libxdmcp-dev_1%3a1.0.2-3_amd64.deb) ...
Selecting previously deselected package x11proto-input-dev.
Unpacking x11proto-input-dev (from .../x11proto-input-dev_1.5.0-2_all.deb) ...
Selecting previously deselected package x11proto-kb-dev.
Unpacking x11proto-kb-dev (from .../x11proto-kb-dev_1.0.3-3_all.deb) ...
Selecting previously deselected package xtrans-dev.
Unpacking xtrans-dev (from .../xtrans-dev_1.2.3-3_all.deb) ...
Selecting previously deselected package libpthread-stubs0.
Unpacking libpthread-stubs0 (from .../libpthread-stubs0_0.1-2_amd64.deb) ...
Selecting previously deselected package libpthread-stubs0-dev.
Unpacking libpthread-stubs0-dev (from .../libpthread-stubs0-dev_0.1-2_amd64.deb) ...
Selecting previously deselected package libxcb1-dev.
Unpacking libxcb1-dev (from .../libxcb1-dev_1.3-2_amd64.deb) ...
Selecting previously deselected package libx11-dev.
Unpacking libx11-dev (from .../libx11-dev_2%3a1.2.1-1_amd64.deb) ...
Selecting previously deselected package libxext6.
Unpacking libxext6 (from .../libxext6_2%3a1.0.4-1_amd64.deb) ...
Selecting previously deselected package libxt6.
Unpacking libxt6 (from .../libxt6_1%3a1.0.5-3_amd64.deb) ...
Selecting previously deselected package libxmu6.
Unpacking libxmu6 (from .../libxmu6_2%3a1.0.4-1_amd64.deb) ...
Selecting previously deselected package libxpm4.
Unpacking libxpm4 (from .../libxpm4_1%3a3.5.7-2_amd64.deb) ...
Selecting previously deselected package libxaw7.
Unpacking libxaw7 (from .../libxaw7_2%3a1.0.5-2_amd64.deb) ...
Selecting previously deselected package x11proto-xext-dev.
Unpacking x11proto-xext-dev (from .../x11proto-xext-dev_7.0.4-2_all.deb) ...
Selecting previously deselected package libxext-dev.
Unpacking libxext-dev (from .../libxext-dev_2%3a1.0.4-1_amd64.deb) ...
Selecting previously deselected package libxmu-headers.
Unpacking libxmu-headers (from .../libxmu-headers_2%3a1.0.4-1_all.deb) ...
Selecting previously deselected package libxt-dev.
Unpacking libxt-dev (from .../libxt-dev_1%3a1.0.5-3_amd64.deb) ...
Selecting previously deselected package libxmu-dev.
Unpacking libxmu-dev (from .../libxmu-dev_2%3a1.0.4-1_amd64.deb) ...
Selecting previously deselected package libxpm-dev.
Unpacking libxpm-dev (from .../libxpm-dev_1%3a3.5.7-2_amd64.deb) ...
Selecting previously deselected package libxaw7-dev.
Unpacking libxaw7-dev (from .../libxaw7-dev_2%3a1.0.5-2_amd64.deb) ...
Selecting previously deselected package libexpat1.
Unpacking libexpat1 (from .../libexpat1_2.0.1-4_amd64.deb) ...
Selecting previously deselected package libfreetype6.
Unpacking libfreetype6 (from .../libfreetype6_2.3.9-5_amd64.deb) ...
Selecting previously deselected package ucf.
Unpacking ucf (from .../archives/ucf_3.0018_all.deb) ...
Moving old data out of the way
Selecting previously deselected package libmagic1.
Unpacking libmagic1 (from .../libmagic1_5.03-1_amd64.deb) ...
Selecting previously deselected package file.
Unpacking file (from .../archives/file_5.03-1_amd64.deb) ...
Selecting previously deselected package libnewt0.52.
Unpacking libnewt0.52 (from .../libnewt0.52_0.52.10-4_amd64.deb) ...
Selecting previously deselected package libpopt0.
Unpacking libpopt0 (from .../libpopt0_1.14-4_amd64.deb) ...
Selecting previously deselected package whiptail.
Unpacking whiptail (from .../whiptail_0.52.10-4_amd64.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.29-3_all.deb) ...
Selecting previously deselected package ttf-dejavu-extra.
Unpacking ttf-dejavu-extra (from .../ttf-dejavu-extra_2.29-3_all.deb) ...
Selecting previously deselected package ttf-dejavu.
Unpacking ttf-dejavu (from .../ttf-dejavu_2.29-3_all.deb) ...
Selecting previously deselected package fontconfig-config.
Unpacking fontconfig-config (from .../fontconfig-config_2.6.0-4_all.deb) ...
Selecting previously deselected package libfontconfig1.
Unpacking libfontconfig1 (from .../libfontconfig1_2.6.0-4_amd64.deb) ...
Selecting previously deselected package libxrender1.
Unpacking libxrender1 (from .../libxrender1_1%3a0.9.4-2_amd64.deb) ...
Selecting previously deselected package libxft2.
Unpacking libxft2 (from .../libxft2_2.1.13-3_amd64.deb) ...
Selecting previously deselected package libexpat1-dev.
Unpacking libexpat1-dev (from .../libexpat1-dev_2.0.1-4_amd64.deb) ...
Selecting previously deselected package zlib1g-dev.
Unpacking zlib1g-dev (from .../zlib1g-dev_1%3a1.2.3.3.dfsg-14_amd64.deb) ...
Selecting previously deselected package libfreetype6-dev.
Unpacking libfreetype6-dev (from .../libfreetype6-dev_2.3.9-5_amd64.deb) ...
Selecting previously deselected package libpcre3.
Unpacking libpcre3 (from .../libpcre3_7.8-2_amd64.deb) ...
Selecting previously deselected package libglib2.0-0.
Unpacking libglib2.0-0 (from .../libglib2.0-0_2.20.4-1_amd64.deb) ...
Selecting previously deselected package pkg-config.
Unpacking pkg-config (from .../pkg-config_0.22-1_amd64.deb) ...
Selecting previously deselected package libfontconfig1-dev.
Unpacking libfontconfig1-dev (from .../libfontconfig1-dev_2.6.0-4_amd64.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-2_amd64.deb) ...
Selecting previously deselected package libxft-dev.
Unpacking libxft-dev (from .../libxft-dev_2.1.13-3_amd64.deb) ...
Selecting previously deselected package libxp6.
Unpacking libxp6 (from .../libxp6_1%3a1.0.0.xsf1-2_amd64.deb) ...
Selecting previously deselected package x11proto-print-dev.
Unpacking x11proto-print-dev (from .../x11proto-print-dev_1.0.3.xsf1-1_all.deb) ...
Selecting previously deselected package libxp-dev.
Unpacking libxp-dev (from .../libxp-dev_1%3a1.0.0.xsf1-2_amd64.deb) ...
Selecting previously deselected package bsdmainutils.
Unpacking bsdmainutils (from .../bsdmainutils_6.1.10_amd64.deb) ...
Selecting previously deselected package groff-base.
Unpacking groff-base (from .../groff-base_1.18.1.1-22_amd64.deb) ...
Selecting previously deselected package man-db.
Unpacking man-db (from .../man-db_2.5.5-2_amd64.deb) ...
Selecting previously deselected package gettext-base.
Unpacking gettext-base (from .../gettext-base_0.17-6_amd64.deb) ...
Selecting previously deselected package libxml2.
Unpacking libxml2 (from .../libxml2_2.7.3.dfsg-2_amd64.deb) ...
Selecting previously deselected package m4.
Unpacking m4 (from .../archives/m4_1.4.13-1_amd64.deb) ...
Selecting previously deselected package autoconf.
Unpacking autoconf (from .../autoconf_2.63-3_all.deb) ...
Selecting previously deselected package autotools-dev.
Unpacking autotools-dev (from .../autotools-dev_20090427.1_all.deb) ...
Selecting previously deselected package automake1.9.
Unpacking automake1.9 (from .../automake1.9_1.9.6+nogfdl-3_all.deb) ...
Selecting previously deselected package html2text.
Unpacking html2text (from .../html2text_1.3.2a-14_amd64.deb) ...
Selecting previously deselected package libcroco3.
Unpacking libcroco3 (from .../libcroco3_0.6.1-2_amd64.deb) ...
Selecting previously deselected package libgomp1.
Unpacking libgomp1 (from .../libgomp1_4.4.0-10_amd64.deb) ...
Selecting previously deselected package gettext.
Unpacking gettext (from .../gettext_0.17-6_amd64.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.16_all.deb) ...
Selecting previously deselected package debhelper.
Unpacking debhelper (from .../debhelper_7.2.21_all.deb) ...
Selecting previously deselected package dpatch.
Unpacking dpatch (from .../archives/dpatch_2.0.31_all.deb) ...
Selecting previously deselected package lesstif2.
Unpacking lesstif2 (from .../lesstif2_1%3a0.95.0-2.3_amd64.deb) ...
Selecting previously deselected package lesstif2-dev.
Unpacking lesstif2-dev (from .../lesstif2-dev_1%3a0.95.0-2.3_amd64.deb) ...
Selecting previously deselected package libpaper1.
Unpacking libpaper1 (from .../libpaper1_1.1.23+nmu1_amd64.deb) ...
Selecting previously deselected package libpaper-dev.
Unpacking libpaper-dev (from .../libpaper-dev_1.1.23+nmu1_amd64.deb) ...
Selecting previously deselected package libt1-5.
Unpacking libt1-5 (from .../libt1-5_5.1.2-3_amd64.deb) ...
Selecting previously deselected package libt1-dev.
Unpacking libt1-dev (from .../libt1-dev_5.1.2-3_amd64.deb) ...
Selecting previously deselected package x-dev.
Unpacking x-dev (from .../x-dev_7.0.15-1_all.deb) ...
Setting up libice6 (2:1.0.5-1) ...
Setting up x11proto-core-dev (7.0.15-1) ...
Setting up libice-dev (2:1.0.5-1) ...
Setting up libsm6 (2:1.1.0-2) ...
Setting up libsm-dev (2:1.1.0-2) ...
Setting up libxau6 (1:1.0.4-2) ...
Setting up libxdmcp6 (1:1.0.2-3) ...
Setting up libxcb1 (1.3-2) ...
Setting up libx11-data (2:1.2.1-1) ...
Setting up libx11-6 (2:1.2.1-1) ...
Setting up libxau-dev (1:1.0.4-2) ...
Setting up libxdmcp-dev (1:1.0.2-3) ...
Setting up x11proto-input-dev (1.5.0-2) ...
Setting up x11proto-kb-dev (1.0.3-3) ...
Setting up xtrans-dev (1.2.3-3) ...
Setting up libpthread-stubs0 (0.1-2) ...
Setting up libpthread-stubs0-dev (0.1-2) ...
Setting up libxcb1-dev (1.3-2) ...
Setting up libx11-dev (2:1.2.1-1) ...
Setting up libxext6 (2:1.0.4-1) ...
Setting up libxt6 (1:1.0.5-3) ...
Setting up libxmu6 (2:1.0.4-1) ...
Setting up libxpm4 (1:3.5.7-2) ...
Setting up libxaw7 (2:1.0.5-2) ...
Setting up x11proto-xext-dev (7.0.4-2) ...
Setting up libxext-dev (2:1.0.4-1) ...
Setting up libxmu-headers (2:1.0.4-1) ...
Setting up libxt-dev (1:1.0.5-3) ...
Setting up libxmu-dev (2:1.0.4-1) ...
Setting up libxpm-dev (1:3.5.7-2) ...
Setting up libxaw7-dev (2:1.0.5-2) ...
Setting up libexpat1 (2.0.1-4) ...
Setting up libfreetype6 (2.3.9-5) ...
Setting up ucf (3.0018) ...
Setting up libmagic1 (5.03-1) ...
Setting up file (5.03-1) ...
Setting up libnewt0.52 (0.52.10-4) ...
Setting up libpopt0 (1.14-4) ...
Setting up whiptail (0.52.10-4) ...
Setting up defoma (0.11.10-0.2) ...
Setting up ttf-dejavu-core (2.29-3) ...
Setting up ttf-dejavu-extra (2.29-3) ...
Setting up ttf-dejavu (2.29-3) ...
Setting up fontconfig-config (2.6.0-4) ...
Setting up libfontconfig1 (2.6.0-4) ...
Setting up libxrender1 (1:0.9.4-2) ...
Setting up libxft2 (2.1.13-3) ...
Setting up libexpat1-dev (2.0.1-4) ...
Setting up zlib1g-dev (1:1.2.3.3.dfsg-14) ...
Setting up libfreetype6-dev (2.3.9-5) ...
Setting up libpcre3 (7.8-2) ...
Setting up libglib2.0-0 (2.20.4-1) ...
Setting up pkg-config (0.22-1) ...
Setting up libfontconfig1-dev (2.6.0-4) ...
Setting up x11proto-render-dev (2:0.9.3-2) ...
Setting up libxrender-dev (1:0.9.4-2) ...
Setting up libxft-dev (2.1.13-3) ...
Setting up libxp6 (1:1.0.0.xsf1-2) ...
Setting up x11proto-print-dev (1.0.3.xsf1-1) ...
Setting up libxp-dev (1:1.0.0.xsf1-2) ...
Setting up bsdmainutils (6.1.10) ...
update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode.
Setting up groff-base (1.18.1.1-22) ...
Setting up man-db (2.5.5-2) ...
Building database of manual pages ...
Setting up gettext-base (0.17-6) ...
Setting up libxml2 (2.7.3.dfsg-2) ...
Setting up m4 (1.4.13-1) ...
Setting up autoconf (2.63-3) ...
Setting up autotools-dev (20090427.1) ...
Setting up automake1.9 (1.9.6+nogfdl-3) ...
update-alternatives: using /usr/bin/automake-1.9 to provide /usr/bin/automake (automake) in auto mode.
Setting up html2text (1.3.2a-14) ...
Setting up libcroco3 (0.6.1-2) ...
Setting up libgomp1 (4.4.0-10) ...
Setting up gettext (0.17-6) ...
Setting up intltool-debian (0.35.0+20060710.1) ...
Setting up po-debconf (1.0.16) ...
Setting up debhelper (7.2.21) ...
Setting up dpatch (2.0.31) ...
Setting up lesstif2 (1:0.95.0-2.3) ...
Setting up lesstif2-dev (1:0.95.0-2.3) ...
Setting up libpaper1 (1.1.23+nmu1) ...
Creating config file /etc/papersize with new version
Setting up libpaper-dev (1.1.23+nmu1) ...
Setting up libt1-5 (5.1.2-3) ...
Setting up libt1-dev (5.1.2-3) ...
Setting up x-dev (7.0.15-1) ...
Removing negative dependencies:
Checking correctness of source dependencies...
Kernel: Linux 2.6.26-2-amd64 amd64 (x86_64)
Toolchain package versions: libc6-dev_2.9-19 linux-libc-dev_2.6.30-2 g++-4.3_4.3.3-13 gcc-4.3_4.3.3-13 binutils_2.19.51.20090704-1 libstdc++6_4.4.0-10 libstdc++6-4.3-dev_4.3.3-13
┌──────────────────────────────────────────────────────────────────────────────┐
│ Build │
└──────────────────────────────────────────────────────────────────────────────┘
Unpack source
─────────────
gpgv: keyblock resource `/home/user/.gnupg/trustedkeys.gpg': general error
gpgv: Signature made Tue May 5 00:52:02 2009 CEST using DSA key ID 11404EC3
gpgv: Can't check signature: public key not found
dpkg-source: warning: failed to verify signature on ./xpdf_3.02-1.4+lenny1.dsc
dpkg-source: info: extracting xpdf in xpdf-3.02
dpkg-source: info: unpacking xpdf_3.02.orig.tar.gz
dpkg-source: info: applying xpdf_3.02-1.4+lenny1.diff.gz
Check disc space
────────────────
dpkg-buildpackage
─────────────────
dpkg-buildpackage: set CFLAGS to default value: -g -O2
dpkg-buildpackage: set CPPFLAGS to default value:
dpkg-buildpackage: set LDFLAGS to default value:
dpkg-buildpackage: set FFLAGS to default value: -g -O2
dpkg-buildpackage: set CXXFLAGS to default value: -g -O2
dpkg-buildpackage: source package xpdf
dpkg-buildpackage: source version 3.02-1.4+lenny1
dpkg-buildpackage: source changed by Giuseppe Iuculano <giuseppe@iuculano.it>
dpkg-buildpackage: host architecture amd64
/usr/bin/fakeroot debian/rules clean
dh_testdir
/usr/bin/make -i distclean
make[1]: *** make[1]: Entering directory `/build/user-xpdf_3.02-1.4+lenny1-amd64-36d4Rc/xpdf-3.02'
No rule to make target `distclean'. Stop.
make[1]: Leaving directory `/build/user-xpdf_3.02-1.4+lenny1-amd64-36d4Rc/xpdf-3.02'
make: [clean1] Error 2 (ignored)
rm -rf *~ debian/*~ debian/files* build-stamp aconf.h
rm -rf fofi/Makefile splash/Makefile
dh_clean
dpatch deapply-all
fix-CVE-2009-0146,0147,0165,0166,0799,0800,1179-1183 not applied to ./ .
fix-444648 not applied to ./ .
fix-479467 not applied to ./ .
fix-437725 not applied to ./ .
fix-462544 not applied to ./ .
fix-CVE-2007-5393_2007-5392_2007-4352 not applied to ./ .
fix-CVE-2007-3387_CVE-2007-5049 not applied to ./ .
99_autoconf not applied to ./ .
41_lesstif_cpp not applied to ./ .
40_lesstif_copy not applied to ./ .
02_permissions not applied to ./ .
01_manpage not applied to ./ .
rm -rf patch-stamp debian/patched
dpkg-source -b xpdf-3.02
dpkg-source: info: using source format `1.0'
dpkg-source: info: building xpdf using existing xpdf_3.02.orig.tar.gz
dpkg-source: info: building xpdf in xpdf_3.02-1.4+lenny1.diff.gz
dpkg-source: warning: executable mode 0755 of 'debian/patches/02_permissions.dpatch' will not be represented in diff
dpkg-source: warning: executable mode 0755 of 'debian/patches/40_lesstif_copy.dpatch' will not be represented in diff
dpkg-source: warning: executable mode 0755 of 'debian/patches/41_lesstif_cpp.dpatch' will not be represented in diff
dpkg-source: warning: executable mode 0755 of 'debian/patches/01_manpage.dpatch' will not be represented in diff
dpkg-source: warning: executable mode 0755 of 'debian/patches/fix-437725.dpatch' will not be represented in diff
dpkg-source: warning: executable mode 0755 of 'debian/patches/fix-479467.dpatch' will not be represented in diff
dpkg-source: warning: executable mode 0755 of 'debian/patches/fix-CVE-2007-5393_2007-5392_2007-4352.dpatch' will not be represented in diff
dpkg-source: warning: executable mode 0755 of 'debian/patches/fix-CVE-2009-0146,0147,0165,0166,0799,0800,1179-1183.dpatch' will not be represented in diff
dpkg-source: warning: executable mode 0755 of 'debian/patches/fix-444648.dpatch' will not be represented in diff
dpkg-source: warning: executable mode 0755 of 'debian/patches/fix-462544.dpatch' will not be represented in diff
dpkg-source: warning: executable mode 0755 of 'debian/patches/99_autoconf.dpatch' will not be represented in diff
dpkg-source: warning: executable mode 0755 of 'debian/patches/fix-CVE-2007-3387_CVE-2007-5049.dpatch' will not be represented in diff
dpkg-source: info: building xpdf in xpdf_3.02-1.4+lenny1.dsc
debian/rules build
dpatch apply-all
applying patch 01_manpage to ./ ... ok.
applying patch 02_permissions to ./ ... ok.
applying patch 40_lesstif_copy to ./ ... ok.
applying patch 41_lesstif_cpp to ./ ... failed.
make: *** [patch-stamp] Error 1
dpkg-buildpackage: error: debian/rules build gave error exit status 2
────────────────────────────────────────────────────────────────────────────────
Build finished at 20090714-0204
FAILED [dpkg-buildpackage died]
Purging /var/lib/schroot/mount/lsid64-aaef76fd-4b15-481b-b049-228e54d2658a/build/user-xpdf_3.02-1.4+lenny1-amd64-36d4Rc
────────────────────────────────────────────────────────────────────────────────
Not removing build depends: cloned chroot in use
────────────────────────────────────────────────────────────────────────────────
Finished at 20090714-0204
Build needed 00:00:26, 5568k disc space
DC-Build-Status: Failed 27.139323s
### Content of /var/log/daemon.log ###
Jul 14 01:59:41 paramount-33 approx: Concurrent download of debian/pool/main/libx/libx11/libx11-6_1.2.1-1_amd64.deb is taking too long
Jul 14 02:00:45 paramount-33 approx: Concurrent download of debian/pool/main/libx/libxcb/libxcb1-dev_1.3-2_amd64.deb is taking too long
Jul 14 02:04:14 paramount-33 approx: Concurrent download of debian/pool/main/e/ecj/ecj-gcj_3.4.2-4_amd64.deb is taking too long
### End of content of /var/log/daemon.log ###
DC-Time-Estimation: 27.139323 versus expected 32000 (r/m: 1178.10089356319 ; m: 27.139323)
|