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
|
DC-Build-Header: drawxtl 5.4+dfsg-3 / Thu Dec 10 22:38:30 +0100 2009
sbuild (Debian sbuild) 0.59.0 (02 Aug 2009) on griffon-33.nancy.grid5000.fr
╔══════════════════════════════════════════════════════════════════════════════╗
║ drawxtl 5.4+dfsg-3 (amd64) 10 Dec 2009 22:38 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Package: drawxtl
Version: 5.4+dfsg-3
Architecture: amd64
Start Time: 20091210-2238
┌──────────────────────────────────────────────────────────────────────────────┐
│ 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 4279kB of source archives.
Get:1 http://localhost sid/main drawxtl 5.4+dfsg-3 (dsc) [1391B]
Get:2 http://localhost sid/main drawxtl 5.4+dfsg-3 (tar) [4269kB]
Get:3 http://localhost sid/main drawxtl 5.4+dfsg-3 (diff) [8534B]
Fetched 4279kB in 0s (4733kB/s)
Download complete and in download only mode
Check arch
──────────
** Using build dependencies supplied by package:
Build-Depends: debhelper (>= 5.0.55), dpatch, freeglut3-dev, libfltk1.1-dev | libfltk-dev, libgl1-mesa-dev, libglu1-mesa-dev, libx11-dev, libxext-dev, libxft-dev, libxinerama-dev, libxpm-dev
┌──────────────────────────────────────────────────────────────────────────────┐
│ Install build dependencies │
└──────────────────────────────────────────────────────────────────────────────┘
Checking for already installed source dependencies...
debhelper: missing
Using default version 7.4.10
dpatch: missing
freeglut3-dev: missing
libfltk1.1-dev: missing
libfltk-dev: missing
libgl1-mesa-dev: missing
libglu1-mesa-dev: missing
libx11-dev: missing
libxext-dev: missing
libxft-dev: missing
libxinerama-dev: missing
libxpm-dev: missing
Checking for source dependency conflicts...
Installing positive dependencies: debhelper dpatch freeglut3-dev libfltk1.1-dev libgl1-mesa-dev libglu1-mesa-dev libx11-dev libxext-dev libxft-dev libxinerama-dev libxpm-dev
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
bsdmainutils defoma file fontconfig-config freeglut3 gettext gettext-base
groff-base html2text intltool-debian libcroco3 libdrm2 libexpat1
libexpat1-dev libfltk1.1 libfontconfig1 libfontconfig1-dev libfreetype6
libfreetype6-dev libgl1-mesa-glx libglib2.0-0 libglu1-mesa libice-dev
libice6 libjpeg62 libmagic1 libnewt0.52 libpcre3 libpng12-0 libpopt0
libpthread-stubs0 libpthread-stubs0-dev libslang2 libsm-dev libsm6 libx11-6
libx11-data libxau-dev libxau6 libxcb1 libxcb1-dev libxdamage1 libxdmcp-dev
libxdmcp6 libxext6 libxfixes3 libxft2 libxinerama1 libxml2 libxpm4
libxrender-dev libxrender1 libxt-dev libxt6 libxxf86vm1 man-db
mesa-common-dev pkg-config po-debconf ttf-dejavu ttf-dejavu-core
ttf-dejavu-extra ucf whiptail x11-common x11proto-core-dev
x11proto-input-dev x11proto-kb-dev x11proto-render-dev x11proto-xext-dev
x11proto-xinerama-dev xtrans-dev zlib1g-dev
Suggested packages:
wamerican wordlist whois vacation dh-make defoma-doc psfontmgr
x-ttcidfont-conf dfontmgr curl gettext-doc groff fltk1.1-doc fluid
libjpeg62-dev libpng12-0-dev www-browser libmail-box-perl
Recommended packages:
libfont-freetype-perl patchutils cvs libgl1-mesa-dri libglib2.0-data
shared-mime-info libfribidi0 xml-core libmail-sendmail-perl
The following NEW packages will be installed:
bsdmainutils debhelper defoma dpatch file fontconfig-config freeglut3
freeglut3-dev gettext gettext-base groff-base html2text intltool-debian
libcroco3 libdrm2 libexpat1 libexpat1-dev libfltk1.1 libfltk1.1-dev
libfontconfig1 libfontconfig1-dev libfreetype6 libfreetype6-dev
libgl1-mesa-dev libgl1-mesa-glx libglib2.0-0 libglu1-mesa libglu1-mesa-dev
libice-dev libice6 libjpeg62 libmagic1 libnewt0.52 libpcre3 libpng12-0
libpopt0 libpthread-stubs0 libpthread-stubs0-dev libslang2 libsm-dev libsm6
libx11-6 libx11-data libx11-dev libxau-dev libxau6 libxcb1 libxcb1-dev
libxdamage1 libxdmcp-dev libxdmcp6 libxext-dev libxext6 libxfixes3
libxft-dev libxft2 libxinerama-dev libxinerama1 libxml2 libxpm-dev libxpm4
libxrender-dev libxrender1 libxt-dev libxt6 libxxf86vm1 man-db
mesa-common-dev pkg-config po-debconf ttf-dejavu ttf-dejavu-core
ttf-dejavu-extra ucf whiptail x11-common x11proto-core-dev
x11proto-input-dev x11proto-kb-dev x11proto-render-dev x11proto-xext-dev
x11proto-xinerama-dev xtrans-dev zlib1g-dev
0 upgraded, 84 newly installed, 0 to remove and 0 not upgraded.
Need to get 29.1MB of archives.
After this operation, 79.7MB of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
x11-common libice6 x11proto-core-dev libice-dev libxau6 libxdmcp6 libxcb1
libx11-data libx11-6 libxau-dev libxdmcp-dev x11proto-input-dev
x11proto-kb-dev xtrans-dev libpthread-stubs0 libpthread-stubs0-dev
libxcb1-dev libx11-dev libxext6 x11proto-xext-dev libxext-dev libxinerama1
x11proto-xinerama-dev libxinerama-dev libxpm4 libxpm-dev bsdmainutils
groff-base libslang2 libnewt0.52 libpopt0 man-db whiptail libmagic1 file
gettext-base libpcre3 libxml2 ucf html2text libglib2.0-0 libcroco3 gettext
intltool-debian po-debconf debhelper defoma dpatch ttf-dejavu-core
ttf-dejavu-extra ttf-dejavu fontconfig-config libdrm2 libxfixes3 libxdamage1
libxxf86vm1 libgl1-mesa-glx libglu1-mesa freeglut3 mesa-common-dev
libgl1-mesa-dev libglu1-mesa-dev libsm6 libxt6 libsm-dev libxt-dev
freeglut3-dev libexpat1 libexpat1-dev libfreetype6 libfontconfig1 libjpeg62
libpng12-0 libxrender1 libxft2 libfltk1.1 libfltk1.1-dev zlib1g-dev
libfreetype6-dev pkg-config libfontconfig1-dev x11proto-render-dev
libxrender-dev libxft-dev
Authentication warning overridden.
Get:1 http://localhost sid/main x11-common 1:7.4+4 [287kB]
Get:2 http://localhost sid/main libice6 2:1.0.6-1 [53.8kB]
Get:3 http://localhost sid/main x11proto-core-dev 7.0.16-1 [92.2kB]
Get:4 http://localhost sid/main libice-dev 2:1.0.6-1 [66.7kB]
Get:5 http://localhost sid/main libxau6 1:1.0.5-1 [14.2kB]
Get:6 http://localhost sid/main libxdmcp6 1:1.0.3-1 [18.9kB]
Get:7 http://localhost sid/main libxcb1 1.5-2 [43.4kB]
Get:8 http://localhost sid/main libx11-data 2:1.3.2-1 [219kB]
Get:9 http://localhost sid/main libx11-6 2:1.3.2-1 [844kB]
Get:10 http://localhost sid/main libxau-dev 1:1.0.5-1 [18.3kB]
Get:11 http://localhost sid/main libxdmcp-dev 1:1.0.3-1 [22.3kB]
Get:12 http://localhost sid/main x11proto-input-dev 1.5.0-2 [17.5kB]
Get:13 http://localhost sid/main x11proto-kb-dev 1.0.4-1 [27.3kB]
Get:14 http://localhost sid/main xtrans-dev 1.2.5-1 [68.4kB]
Get:15 http://localhost sid/main libpthread-stubs0 0.3-2 [3172B]
Get:16 http://localhost sid/main libpthread-stubs0-dev 0.3-2 [3504B]
Get:17 http://localhost sid/main libxcb1-dev 1.5-2 [80.2kB]
Get:18 http://localhost sid/main libx11-dev 2:1.3.2-1 [3560kB]
Get:19 http://localhost sid/main libxext6 2:1.0.4-1 [36.6kB]
Get:20 http://localhost sid/main x11proto-xext-dev 7.0.4-2 [44.6kB]
Get:21 http://localhost sid/main libxext-dev 2:1.0.4-1 [88.7kB]
Get:22 http://localhost sid/main libxinerama1 2:1.0.3-2 [10.5kB]
Get:23 http://localhost sid/main x11proto-xinerama-dev 1.1.2-5 [5334B]
Get:24 http://localhost sid/main libxinerama-dev 2:1.0.3-2 [12.0kB]
Get:25 http://localhost sid/main libxpm4 1:3.5.8-1 [44.2kB]
Get:26 http://localhost sid/main libxpm-dev 1:3.5.8-1 [101kB]
Get:27 http://localhost sid/main bsdmainutils 8.0.3 [198kB]
Get:28 http://localhost sid/main groff-base 1.20.1-6 [1156kB]
Get:29 http://localhost sid/main libslang2 2.2.2-1 [539kB]
Get:30 http://localhost sid/main libnewt0.52 0.52.10-4.1 [67.9kB]
Get:31 http://localhost sid/main libpopt0 1.15-1 [51.6kB]
Get:32 http://localhost sid/main man-db 2.5.6-4 [1477kB]
Get:33 http://localhost sid/main whiptail 0.52.10-4.1 [39.1kB]
Get:34 http://localhost sid/main libmagic1 5.03-4 [392kB]
Get:35 http://localhost sid/main file 5.03-4 [47.5kB]
Get:36 http://localhost sid/main gettext-base 0.17-8 [133kB]
Get:37 http://localhost sid/main libpcre3 7.8-3 [215kB]
Get:38 http://localhost sid/main libxml2 2.7.6.dfsg-1 [876kB]
Get:39 http://localhost sid/main ucf 3.0025 [66.0kB]
Get:40 http://localhost sid/main html2text 1.3.2a-14 [103kB]
Get:41 http://localhost sid/main libglib2.0-0 2.22.3-1 [988kB]
Get:42 http://localhost sid/main libcroco3 0.6.2-1 [125kB]
Get:43 http://localhost sid/main gettext 0.17-8 [2503kB]
Get:44 http://localhost sid/main intltool-debian 0.35.0+20060710.1 [30.8kB]
Get:45 http://localhost sid/main po-debconf 1.0.16 [224kB]
Get:46 http://localhost sid/main debhelper 7.4.10 [458kB]
Get:47 http://localhost sid/main defoma 0.11.10-3 [99.0kB]
Get:48 http://localhost sid/main dpatch 2.0.31 [92.3kB]
Get:49 http://localhost sid/main ttf-dejavu-core 2.30-1 [1437kB]
Get:50 http://localhost sid/main ttf-dejavu-extra 2.30-1 [3180kB]
Get:51 http://localhost sid/main ttf-dejavu 2.30-1 [28.7kB]
Get:52 http://localhost sid/main fontconfig-config 2.6.0-4 [184kB]
Get:53 http://localhost sid/main libdrm2 2.4.15-1 [394kB]
Get:54 http://localhost sid/main libxfixes3 1:4.0.4-1 [16.2kB]
Get:55 http://localhost sid/main libxdamage1 1:1.1.2-1 [12.2kB]
Get:56 http://localhost sid/main libxxf86vm1 1:1.0.2-1 [15.0kB]
Get:57 http://localhost sid/main libgl1-mesa-glx 7.6.1~rc2-1 [180kB]
Get:58 http://localhost sid/main libglu1-mesa 7.6.1~rc2-1 [214kB]
Get:59 http://localhost sid/main freeglut3 2.4.0-8 [99.2kB]
Get:60 http://localhost sid/main mesa-common-dev 7.6.1~rc2-1 [2157kB]
Get:61 http://localhost sid/main libgl1-mesa-dev 7.6.1~rc2-1 [23.3kB]
Get:62 http://localhost sid/main libglu1-mesa-dev 7.6.1~rc2-1 [291kB]
Get:63 http://localhost sid/main libsm6 2:1.1.1-1 [25.0kB]
Get:64 http://localhost sid/main libxt6 1:1.0.7-1 [192kB]
Get:65 http://localhost sid/main libsm-dev 2:1.1.1-1 [27.9kB]
Get:66 http://localhost sid/main libxt-dev 1:1.0.7-1 [519kB]
Get:67 http://localhost sid/main freeglut3-dev 2.4.0-8 [171kB]
Get:68 http://localhost sid/main libexpat1 2.0.1-5 [135kB]
Get:69 http://localhost sid/main libexpat1-dev 2.0.1-5 [223kB]
Get:70 http://localhost sid/main libfreetype6 2.3.11-1 [432kB]
Get:71 http://localhost sid/main libfontconfig1 2.6.0-4 [240kB]
Get:72 http://localhost sid/main libjpeg62 6b-15 [92.2kB]
Get:73 http://localhost sid/main libpng12-0 1.2.41-1 [178kB]
Get:74 http://localhost sid/main libxrender1 1:0.9.5-1 [28.2kB]
Get:75 http://localhost sid/main libxft2 2.1.14-1 [54.7kB]
Get:76 http://localhost sid/main libfltk1.1 1.1.10~rc3-1 [462kB]
Get:77 http://localhost sid/main libfltk1.1-dev 1.1.10~rc3-1 [643kB]
Get:78 http://localhost sid/main zlib1g-dev 1:1.2.3.3.dfsg-15 [164kB]
Get:79 http://localhost sid/main libfreetype6-dev 2.3.11-1 [739kB]
Get:80 http://localhost sid/main pkg-config 0.22-1 [55.0kB]
Get:81 http://localhost sid/main libfontconfig1-dev 2.6.0-4 [733kB]
Get:82 http://localhost sid/main x11proto-render-dev 2:0.11-1 [7368B]
Get:83 http://localhost sid/main libxrender-dev 1:0.9.5-1 [36.3kB]
Get:84 http://localhost sid/main libxft-dev 2.1.14-1 [69.6kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 29.1MB in 1s (15.4MB/s)
Selecting previously deselected package x11-common.
(Reading database ... 9973 files and directories currently installed.)
Unpacking x11-common (from .../x11-common_1%3a7.4+4_all.deb) ...
Selecting previously deselected package libice6.
Unpacking libice6 (from .../libice6_2%3a1.0.6-1_amd64.deb) ...
Selecting previously deselected package x11proto-core-dev.
Unpacking x11proto-core-dev (from .../x11proto-core-dev_7.0.16-1_all.deb) ...
Setting up x11-common (1:7.4+4) ...
Selecting previously deselected package libice-dev.
(Reading database ... 10039 files and directories currently installed.)
Unpacking libice-dev (from .../libice-dev_2%3a1.0.6-1_amd64.deb) ...
Selecting previously deselected package libxau6.
Unpacking libxau6 (from .../libxau6_1%3a1.0.5-1_amd64.deb) ...
Selecting previously deselected package libxdmcp6.
Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.0.3-1_amd64.deb) ...
Selecting previously deselected package libxcb1.
Unpacking libxcb1 (from .../libxcb1_1.5-2_amd64.deb) ...
Selecting previously deselected package libx11-data.
Unpacking libx11-data (from .../libx11-data_2%3a1.3.2-1_all.deb) ...
Selecting previously deselected package libx11-6.
Unpacking libx11-6 (from .../libx11-6_2%3a1.3.2-1_amd64.deb) ...
Selecting previously deselected package libxau-dev.
Unpacking libxau-dev (from .../libxau-dev_1%3a1.0.5-1_amd64.deb) ...
Selecting previously deselected package libxdmcp-dev.
Unpacking libxdmcp-dev (from .../libxdmcp-dev_1%3a1.0.3-1_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.4-1_all.deb) ...
Selecting previously deselected package xtrans-dev.
Unpacking xtrans-dev (from .../xtrans-dev_1.2.5-1_all.deb) ...
Selecting previously deselected package libpthread-stubs0.
Unpacking libpthread-stubs0 (from .../libpthread-stubs0_0.3-2_amd64.deb) ...
Selecting previously deselected package libpthread-stubs0-dev.
Unpacking libpthread-stubs0-dev (from .../libpthread-stubs0-dev_0.3-2_amd64.deb) ...
Selecting previously deselected package libxcb1-dev.
Unpacking libxcb1-dev (from .../libxcb1-dev_1.5-2_amd64.deb) ...
Selecting previously deselected package libx11-dev.
Unpacking libx11-dev (from .../libx11-dev_2%3a1.3.2-1_amd64.deb) ...
Selecting previously deselected package libxext6.
Unpacking libxext6 (from .../libxext6_2%3a1.0.4-1_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 libxinerama1.
Unpacking libxinerama1 (from .../libxinerama1_2%3a1.0.3-2_amd64.deb) ...
Selecting previously deselected package x11proto-xinerama-dev.
Unpacking x11proto-xinerama-dev (from .../x11proto-xinerama-dev_1.1.2-5_all.deb) ...
Selecting previously deselected package libxinerama-dev.
Unpacking libxinerama-dev (from .../libxinerama-dev_2%3a1.0.3-2_amd64.deb) ...
Selecting previously deselected package libxpm4.
Unpacking libxpm4 (from .../libxpm4_1%3a3.5.8-1_amd64.deb) ...
Selecting previously deselected package libxpm-dev.
Unpacking libxpm-dev (from .../libxpm-dev_1%3a3.5.8-1_amd64.deb) ...
Selecting previously deselected package bsdmainutils.
Unpacking bsdmainutils (from .../bsdmainutils_8.0.3_amd64.deb) ...
Selecting previously deselected package groff-base.
Unpacking groff-base (from .../groff-base_1.20.1-6_amd64.deb) ...
Selecting previously deselected package libslang2.
Unpacking libslang2 (from .../libslang2_2.2.2-1_amd64.deb) ...
Selecting previously deselected package libnewt0.52.
Unpacking libnewt0.52 (from .../libnewt0.52_0.52.10-4.1_amd64.deb) ...
Selecting previously deselected package libpopt0.
Unpacking libpopt0 (from .../libpopt0_1.15-1_amd64.deb) ...
Selecting previously deselected package man-db.
Unpacking man-db (from .../man-db_2.5.6-4_amd64.deb) ...
Selecting previously deselected package whiptail.
Unpacking whiptail (from .../whiptail_0.52.10-4.1_amd64.deb) ...
Selecting previously deselected package libmagic1.
Unpacking libmagic1 (from .../libmagic1_5.03-4_amd64.deb) ...
Selecting previously deselected package file.
Unpacking file (from .../archives/file_5.03-4_amd64.deb) ...
Selecting previously deselected package gettext-base.
Unpacking gettext-base (from .../gettext-base_0.17-8_amd64.deb) ...
Selecting previously deselected package libpcre3.
Unpacking libpcre3 (from .../libpcre3_7.8-3_amd64.deb) ...
Selecting previously deselected package libxml2.
Unpacking libxml2 (from .../libxml2_2.7.6.dfsg-1_amd64.deb) ...
Selecting previously deselected package ucf.
Unpacking ucf (from .../archives/ucf_3.0025_all.deb) ...
Moving old data out of the way
Selecting previously deselected package html2text.
Unpacking html2text (from .../html2text_1.3.2a-14_amd64.deb) ...
Selecting previously deselected package libglib2.0-0.
Unpacking libglib2.0-0 (from .../libglib2.0-0_2.22.3-1_amd64.deb) ...
Selecting previously deselected package libcroco3.
Unpacking libcroco3 (from .../libcroco3_0.6.2-1_amd64.deb) ...
Selecting previously deselected package gettext.
Unpacking gettext (from .../gettext_0.17-8_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.4.10_all.deb) ...
Selecting previously deselected package defoma.
Unpacking defoma (from .../defoma_0.11.10-3_all.deb) ...
Selecting previously deselected package dpatch.
Unpacking dpatch (from .../archives/dpatch_2.0.31_all.deb) ...
Selecting previously deselected package ttf-dejavu-core.
Unpacking ttf-dejavu-core (from .../ttf-dejavu-core_2.30-1_all.deb) ...
Selecting previously deselected package ttf-dejavu-extra.
Unpacking ttf-dejavu-extra (from .../ttf-dejavu-extra_2.30-1_all.deb) ...
Selecting previously deselected package ttf-dejavu.
Unpacking ttf-dejavu (from .../ttf-dejavu_2.30-1_all.deb) ...
Selecting previously deselected package fontconfig-config.
Unpacking fontconfig-config (from .../fontconfig-config_2.6.0-4_all.deb) ...
Selecting previously deselected package libdrm2.
Unpacking libdrm2 (from .../libdrm2_2.4.15-1_amd64.deb) ...
Selecting previously deselected package libxfixes3.
Unpacking libxfixes3 (from .../libxfixes3_1%3a4.0.4-1_amd64.deb) ...
Selecting previously deselected package libxdamage1.
Unpacking libxdamage1 (from .../libxdamage1_1%3a1.1.2-1_amd64.deb) ...
Selecting previously deselected package libxxf86vm1.
Unpacking libxxf86vm1 (from .../libxxf86vm1_1%3a1.0.2-1_amd64.deb) ...
Selecting previously deselected package libgl1-mesa-glx.
Unpacking libgl1-mesa-glx (from .../libgl1-mesa-glx_7.6.1~rc2-1_amd64.deb) ...
Selecting previously deselected package libglu1-mesa.
Unpacking libglu1-mesa (from .../libglu1-mesa_7.6.1~rc2-1_amd64.deb) ...
Selecting previously deselected package freeglut3.
Unpacking freeglut3 (from .../freeglut3_2.4.0-8_amd64.deb) ...
Selecting previously deselected package mesa-common-dev.
Unpacking mesa-common-dev (from .../mesa-common-dev_7.6.1~rc2-1_amd64.deb) ...
Selecting previously deselected package libgl1-mesa-dev.
Unpacking libgl1-mesa-dev (from .../libgl1-mesa-dev_7.6.1~rc2-1_amd64.deb) ...
Selecting previously deselected package libglu1-mesa-dev.
Unpacking libglu1-mesa-dev (from .../libglu1-mesa-dev_7.6.1~rc2-1_amd64.deb) ...
Selecting previously deselected package libsm6.
Unpacking libsm6 (from .../libsm6_2%3a1.1.1-1_amd64.deb) ...
Selecting previously deselected package libxt6.
Unpacking libxt6 (from .../libxt6_1%3a1.0.7-1_amd64.deb) ...
Selecting previously deselected package libsm-dev.
Unpacking libsm-dev (from .../libsm-dev_2%3a1.1.1-1_amd64.deb) ...
Selecting previously deselected package libxt-dev.
Unpacking libxt-dev (from .../libxt-dev_1%3a1.0.7-1_amd64.deb) ...
Selecting previously deselected package freeglut3-dev.
Unpacking freeglut3-dev (from .../freeglut3-dev_2.4.0-8_amd64.deb) ...
Selecting previously deselected package libexpat1.
Unpacking libexpat1 (from .../libexpat1_2.0.1-5_amd64.deb) ...
Selecting previously deselected package libexpat1-dev.
Unpacking libexpat1-dev (from .../libexpat1-dev_2.0.1-5_amd64.deb) ...
Selecting previously deselected package libfreetype6.
Unpacking libfreetype6 (from .../libfreetype6_2.3.11-1_amd64.deb) ...
Selecting previously deselected package libfontconfig1.
Unpacking libfontconfig1 (from .../libfontconfig1_2.6.0-4_amd64.deb) ...
Selecting previously deselected package libjpeg62.
Unpacking libjpeg62 (from .../libjpeg62_6b-15_amd64.deb) ...
Selecting previously deselected package libpng12-0.
Unpacking libpng12-0 (from .../libpng12-0_1.2.41-1_amd64.deb) ...
Selecting previously deselected package libxrender1.
Unpacking libxrender1 (from .../libxrender1_1%3a0.9.5-1_amd64.deb) ...
Selecting previously deselected package libxft2.
Unpacking libxft2 (from .../libxft2_2.1.14-1_amd64.deb) ...
Selecting previously deselected package libfltk1.1.
Unpacking libfltk1.1 (from .../libfltk1.1_1.1.10~rc3-1_amd64.deb) ...
Selecting previously deselected package libfltk1.1-dev.
Unpacking libfltk1.1-dev (from .../libfltk1.1-dev_1.1.10~rc3-1_amd64.deb) ...
Selecting previously deselected package zlib1g-dev.
Unpacking zlib1g-dev (from .../zlib1g-dev_1%3a1.2.3.3.dfsg-15_amd64.deb) ...
Selecting previously deselected package libfreetype6-dev.
Unpacking libfreetype6-dev (from .../libfreetype6-dev_2.3.11-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.11-1_all.deb) ...
Selecting previously deselected package libxrender-dev.
Unpacking libxrender-dev (from .../libxrender-dev_1%3a0.9.5-1_amd64.deb) ...
Selecting previously deselected package libxft-dev.
Unpacking libxft-dev (from .../libxft-dev_2.1.14-1_amd64.deb) ...
Setting up libice6 (2:1.0.6-1) ...
Setting up x11proto-core-dev (7.0.16-1) ...
Setting up libice-dev (2:1.0.6-1) ...
Setting up libxau6 (1:1.0.5-1) ...
Setting up libxdmcp6 (1:1.0.3-1) ...
Setting up libxcb1 (1.5-2) ...
Setting up libx11-data (2:1.3.2-1) ...
Setting up libx11-6 (2:1.3.2-1) ...
Setting up libxau-dev (1:1.0.5-1) ...
Setting up libxdmcp-dev (1:1.0.3-1) ...
Setting up x11proto-input-dev (1.5.0-2) ...
Setting up x11proto-kb-dev (1.0.4-1) ...
Setting up xtrans-dev (1.2.5-1) ...
Setting up libpthread-stubs0 (0.3-2) ...
Setting up libpthread-stubs0-dev (0.3-2) ...
Setting up libxcb1-dev (1.5-2) ...
Setting up libx11-dev (2:1.3.2-1) ...
Setting up libxext6 (2:1.0.4-1) ...
Setting up x11proto-xext-dev (7.0.4-2) ...
Setting up libxext-dev (2:1.0.4-1) ...
Setting up libxinerama1 (2:1.0.3-2) ...
Setting up x11proto-xinerama-dev (1.1.2-5) ...
Setting up libxinerama-dev (2:1.0.3-2) ...
Setting up libxpm4 (1:3.5.8-1) ...
Setting up libxpm-dev (1:3.5.8-1) ...
Setting up bsdmainutils (8.0.3) ...
update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode.
Setting up groff-base (1.20.1-6) ...
Setting up libslang2 (2.2.2-1) ...
Setting up libnewt0.52 (0.52.10-4.1) ...
Setting up libpopt0 (1.15-1) ...
Setting up man-db (2.5.6-4) ...
Building database of manual pages ...
Setting up whiptail (0.52.10-4.1) ...
Setting up libmagic1 (5.03-4) ...
Setting up file (5.03-4) ...
Setting up gettext-base (0.17-8) ...
Setting up libpcre3 (7.8-3) ...
Setting up libxml2 (2.7.6.dfsg-1) ...
Setting up ucf (3.0025) ...
Setting up html2text (1.3.2a-14) ...
Setting up libglib2.0-0 (2.22.3-1) ...
Setting up libcroco3 (0.6.2-1) ...
Setting up gettext (0.17-8) ...
Setting up intltool-debian (0.35.0+20060710.1) ...
Setting up po-debconf (1.0.16) ...
Setting up debhelper (7.4.10) ...
Setting up defoma (0.11.10-3) ...
Setting up dpatch (2.0.31) ...
Setting up ttf-dejavu-core (2.30-1) ...
Setting up ttf-dejavu-extra (2.30-1) ...
Setting up ttf-dejavu (2.30-1) ...
Setting up fontconfig-config (2.6.0-4) ...
Setting up libdrm2 (2.4.15-1) ...
Setting up libxfixes3 (1:4.0.4-1) ...
Setting up libxdamage1 (1:1.1.2-1) ...
Setting up libxxf86vm1 (1:1.0.2-1) ...
Setting up libgl1-mesa-glx (7.6.1~rc2-1) ...
Setting up libglu1-mesa (7.6.1~rc2-1) ...
Setting up freeglut3 (2.4.0-8) ...
Setting up mesa-common-dev (7.6.1~rc2-1) ...
Setting up libgl1-mesa-dev (7.6.1~rc2-1) ...
Setting up libglu1-mesa-dev (7.6.1~rc2-1) ...
Setting up libsm6 (2:1.1.1-1) ...
Setting up libxt6 (1:1.0.7-1) ...
Setting up libsm-dev (2:1.1.1-1) ...
Setting up libxt-dev (1:1.0.7-1) ...
Setting up freeglut3-dev (2.4.0-8) ...
Setting up libexpat1 (2.0.1-5) ...
Setting up libexpat1-dev (2.0.1-5) ...
Setting up libfreetype6 (2.3.11-1) ...
Setting up libfontconfig1 (2.6.0-4) ...
Setting up libjpeg62 (6b-15) ...
Setting up libpng12-0 (1.2.41-1) ...
Setting up libxrender1 (1:0.9.5-1) ...
Setting up libxft2 (2.1.14-1) ...
Setting up libfltk1.1 (1.1.10~rc3-1) ...
Setting up libfltk1.1-dev (1.1.10~rc3-1) ...
Setting up zlib1g-dev (1:1.2.3.3.dfsg-15) ...
Setting up libfreetype6-dev (2.3.11-1) ...
Setting up pkg-config (0.22-1) ...
Setting up libfontconfig1-dev (2.6.0-4) ...
Setting up x11proto-render-dev (2:0.11-1) ...
Setting up libxrender-dev (1:0.9.5-1) ...
Setting up libxft-dev (2.1.14-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.10.2-2 linux-libc-dev_2.6.32-1 g++-4.4_4.4.2-3 gcc-4.4_4.4.2-3 binutils_2.20-4 libstdc++6_4.4.2-3 libstdc++6-4.4-dev_4.4.2-3
┌──────────────────────────────────────────────────────────────────────────────┐
│ Build │
└──────────────────────────────────────────────────────────────────────────────┘
Unpack source
─────────────
gpgv: keyblock resource `/home/user/.gnupg/trustedkeys.gpg': file open error
gpgv: Signature made Thu Nov 19 01:48:12 2009 CET using DSA key ID 088F6B8C
gpgv: Can't check signature: public key not found
dpkg-source: warning: failed to verify signature on ./drawxtl_5.4+dfsg-3.dsc
dpkg-source: info: extracting drawxtl in drawxtl-5.4+dfsg
dpkg-source: info: unpacking drawxtl_5.4+dfsg.orig.tar.gz
dpkg-source: info: applying drawxtl_5.4+dfsg-3.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 drawxtl
dpkg-buildpackage: source version 5.4+dfsg-3
dpkg-buildpackage: source changed by Daniel Leidert (dale) <daniel.leidert@wgdd.de>
dpkg-buildpackage: host architecture amd64
/usr/bin/fakeroot debian/rules clean
dpatch deapply-all
arch_with_unsigned_char_fix not applied to ./ .
povray_default_location not applied to ./ .
rm -rf patch-stamp patch-stampT debian/patched
dh_testdir
dh_testroot
rm -f build-stamp patch-stamp
# Add here commands to clean up after the build process.
/usr/bin/make -C source/DRAWxtl54/ clean
make[1]: Entering directory `/build/user-drawxtl_5.4+dfsg-3-amd64-kJAhwk/drawxtl-5.4+dfsg/source/DRAWxtl54'
Building dependencies...
make[1]: Leaving directory `/build/user-drawxtl_5.4+dfsg-3-amd64-kJAhwk/drawxtl-5.4+dfsg/source/DRAWxtl54'
make[1]: Entering directory `/build/user-drawxtl_5.4+dfsg-3-amd64-kJAhwk/drawxtl-5.4+dfsg/source/DRAWxtl54'
make[1]: Leaving directory `/build/user-drawxtl_5.4+dfsg-3-amd64-kJAhwk/drawxtl-5.4+dfsg/source/DRAWxtl54'
dh_clean
dpkg-source -b drawxtl-5.4+dfsg
dpkg-source: info: using source format `1.0'
dpkg-source: info: building drawxtl using existing drawxtl_5.4+dfsg.orig.tar.gz
dpkg-source: info: building drawxtl in drawxtl_5.4+dfsg-3.diff.gz
dpkg-source: warning: executable mode 0755 of 'debian/patches/povray_default_location.dpatch' will not be represented in diff
dpkg-source: warning: executable mode 0755 of 'debian/patches/arch_with_unsigned_char_fix.dpatch' will not be represented in diff
dpkg-source: info: building drawxtl in drawxtl_5.4+dfsg-3.dsc
debian/rules build
test -d debian/patched || install -d debian/patched
dpatch apply-all
applying patch povray_default_location to ./ ... ok.
applying patch arch_with_unsigned_char_fix to ./ ... ok.
dpatch cat-all >>patch-stampT
mv -f patch-stampT patch-stamp
dh_testdir
/usr/bin/make -C source/DRAWxtl54/ \
OS=Linux \
prefix=/usr \
libdir=/usr/lib/ \
LINKFLTKGL="-lfltk_gl -lfltk" \
OPTIM="-Wall -g -O2 -Wunused -fno-exceptions"
make[1]: Entering directory `/build/user-drawxtl_5.4+dfsg-3-amd64-kJAhwk/drawxtl-5.4+dfsg/source/DRAWxtl54'
Building dependencies...
make[1]: Leaving directory `/build/user-drawxtl_5.4+dfsg-3-amd64-kJAhwk/drawxtl-5.4+dfsg/source/DRAWxtl54'
make[1]: Entering directory `/build/user-drawxtl_5.4+dfsg-3-amd64-kJAhwk/drawxtl-5.4+dfsg/source/DRAWxtl54'
Compiling CrystalView.cxx ...
CrystalView.cxx: In function 'void ImportDataFile_cb(Fl_Widget*, void*)':
CrystalView.cxx:998: error: invalid conversion from 'const char*' to 'char*'
CrystalView.cxx:1000: error: invalid conversion from 'const char*' to 'char*'
make[1]: *** [CrystalView.o] Error 1
make[1]: Leaving directory `/build/user-drawxtl_5.4+dfsg-3-amd64-kJAhwk/drawxtl-5.4+dfsg/source/DRAWxtl54'
make: *** [build-stamp] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2
────────────────────────────────────────────────────────────────────────────────
Build finished at 20091210-2241
FAILED [dpkg-buildpackage died]
Purging /var/lib/schroot/mount/lsid64-a8f4184b-3741-4446-bb2c-ce89e15e69bd/build/user-drawxtl_5.4+dfsg-3-amd64-kJAhwk
────────────────────────────────────────────────────────────────────────────────
Not removing build depends: cloned chroot in use
────────────────────────────────────────────────────────────────────────────────
Finished at 20091210-2241
Build needed 00:03:29, 8512k disc space
DC-Message: Failed, but took only 219.263806. Retrying, you never know.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
sbuild (Debian sbuild) 0.59.0 (02 Aug 2009) on griffon-33.nancy.grid5000.fr
╔══════════════════════════════════════════════════════════════════════════════╗
║ drawxtl 5.4+dfsg-3 (amd64) 10 Dec 2009 22:52 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Package: drawxtl
Version: 5.4+dfsg-3
Architecture: amd64
Start Time: 20091210-2252
┌──────────────────────────────────────────────────────────────────────────────┐
│ 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 4279kB of source archives.
Get:1 http://localhost sid/main drawxtl 5.4+dfsg-3 (dsc) [1391B]
Get:2 http://localhost sid/main drawxtl 5.4+dfsg-3 (tar) [4269kB]
Get:3 http://localhost sid/main drawxtl 5.4+dfsg-3 (diff) [8534B]
Fetched 4279kB in 0s (61.2MB/s)
Download complete and in download only mode
Check arch
──────────
** Using build dependencies supplied by package:
Build-Depends: debhelper (>= 5.0.55), dpatch, freeglut3-dev, libfltk1.1-dev | libfltk-dev, libgl1-mesa-dev, libglu1-mesa-dev, libx11-dev, libxext-dev, libxft-dev, libxinerama-dev, libxpm-dev
┌──────────────────────────────────────────────────────────────────────────────┐
│ Install build dependencies │
└──────────────────────────────────────────────────────────────────────────────┘
Checking for already installed source dependencies...
debhelper: missing
Using default version 7.4.10
dpatch: missing
freeglut3-dev: missing
libfltk1.1-dev: missing
libfltk-dev: missing
libgl1-mesa-dev: missing
libglu1-mesa-dev: missing
libx11-dev: missing
libxext-dev: missing
libxft-dev: missing
libxinerama-dev: missing
libxpm-dev: missing
Checking for source dependency conflicts...
Installing positive dependencies: debhelper dpatch freeglut3-dev libfltk1.1-dev libgl1-mesa-dev libglu1-mesa-dev libx11-dev libxext-dev libxft-dev libxinerama-dev libxpm-dev
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
bsdmainutils defoma file fontconfig-config freeglut3 gettext gettext-base
groff-base html2text intltool-debian libcroco3 libdrm2 libexpat1
libexpat1-dev libfltk1.1 libfontconfig1 libfontconfig1-dev libfreetype6
libfreetype6-dev libgl1-mesa-glx libglib2.0-0 libglu1-mesa libice-dev
libice6 libjpeg62 libmagic1 libnewt0.52 libpcre3 libpng12-0 libpopt0
libpthread-stubs0 libpthread-stubs0-dev libslang2 libsm-dev libsm6 libx11-6
libx11-data libxau-dev libxau6 libxcb1 libxcb1-dev libxdamage1 libxdmcp-dev
libxdmcp6 libxext6 libxfixes3 libxft2 libxinerama1 libxml2 libxpm4
libxrender-dev libxrender1 libxt-dev libxt6 libxxf86vm1 man-db
mesa-common-dev pkg-config po-debconf ttf-dejavu ttf-dejavu-core
ttf-dejavu-extra ucf whiptail x11-common x11proto-core-dev
x11proto-input-dev x11proto-kb-dev x11proto-render-dev x11proto-xext-dev
x11proto-xinerama-dev xtrans-dev zlib1g-dev
Suggested packages:
wamerican wordlist whois vacation dh-make defoma-doc psfontmgr
x-ttcidfont-conf dfontmgr curl gettext-doc groff fltk1.1-doc fluid
libjpeg62-dev libpng12-0-dev www-browser libmail-box-perl
Recommended packages:
libfont-freetype-perl patchutils cvs libgl1-mesa-dri libglib2.0-data
shared-mime-info libfribidi0 xml-core libmail-sendmail-perl
The following NEW packages will be installed:
bsdmainutils debhelper defoma dpatch file fontconfig-config freeglut3
freeglut3-dev gettext gettext-base groff-base html2text intltool-debian
libcroco3 libdrm2 libexpat1 libexpat1-dev libfltk1.1 libfltk1.1-dev
libfontconfig1 libfontconfig1-dev libfreetype6 libfreetype6-dev
libgl1-mesa-dev libgl1-mesa-glx libglib2.0-0 libglu1-mesa libglu1-mesa-dev
libice-dev libice6 libjpeg62 libmagic1 libnewt0.52 libpcre3 libpng12-0
libpopt0 libpthread-stubs0 libpthread-stubs0-dev libslang2 libsm-dev libsm6
libx11-6 libx11-data libx11-dev libxau-dev libxau6 libxcb1 libxcb1-dev
libxdamage1 libxdmcp-dev libxdmcp6 libxext-dev libxext6 libxfixes3
libxft-dev libxft2 libxinerama-dev libxinerama1 libxml2 libxpm-dev libxpm4
libxrender-dev libxrender1 libxt-dev libxt6 libxxf86vm1 man-db
mesa-common-dev pkg-config po-debconf ttf-dejavu ttf-dejavu-core
ttf-dejavu-extra ucf whiptail x11-common x11proto-core-dev
x11proto-input-dev x11proto-kb-dev x11proto-render-dev x11proto-xext-dev
x11proto-xinerama-dev xtrans-dev zlib1g-dev
0 upgraded, 84 newly installed, 0 to remove and 0 not upgraded.
Need to get 29.1MB of archives.
After this operation, 79.7MB of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
x11-common libice6 x11proto-core-dev libice-dev libxau6 libxdmcp6 libxcb1
libx11-data libx11-6 libxau-dev libxdmcp-dev x11proto-input-dev
x11proto-kb-dev xtrans-dev libpthread-stubs0 libpthread-stubs0-dev
libxcb1-dev libx11-dev libxext6 x11proto-xext-dev libxext-dev libxinerama1
x11proto-xinerama-dev libxinerama-dev libxpm4 libxpm-dev bsdmainutils
groff-base libslang2 libnewt0.52 libpopt0 man-db whiptail libmagic1 file
gettext-base libpcre3 libxml2 ucf html2text libglib2.0-0 libcroco3 gettext
intltool-debian po-debconf debhelper defoma dpatch ttf-dejavu-core
ttf-dejavu-extra ttf-dejavu fontconfig-config libdrm2 libxfixes3 libxdamage1
libxxf86vm1 libgl1-mesa-glx libglu1-mesa freeglut3 mesa-common-dev
libgl1-mesa-dev libglu1-mesa-dev libsm6 libxt6 libsm-dev libxt-dev
freeglut3-dev libexpat1 libexpat1-dev libfreetype6 libfontconfig1 libjpeg62
libpng12-0 libxrender1 libxft2 libfltk1.1 libfltk1.1-dev zlib1g-dev
libfreetype6-dev pkg-config libfontconfig1-dev x11proto-render-dev
libxrender-dev libxft-dev
Authentication warning overridden.
Get:1 http://localhost sid/main x11-common 1:7.4+4 [287kB]
Get:2 http://localhost sid/main libice6 2:1.0.6-1 [53.8kB]
Get:3 http://localhost sid/main x11proto-core-dev 7.0.16-1 [92.2kB]
Get:4 http://localhost sid/main libice-dev 2:1.0.6-1 [66.7kB]
Get:5 http://localhost sid/main libxau6 1:1.0.5-1 [14.2kB]
Get:6 http://localhost sid/main libxdmcp6 1:1.0.3-1 [18.9kB]
Get:7 http://localhost sid/main libxcb1 1.5-2 [43.4kB]
Get:8 http://localhost sid/main libx11-data 2:1.3.2-1 [219kB]
Get:9 http://localhost sid/main libx11-6 2:1.3.2-1 [844kB]
Get:10 http://localhost sid/main libxau-dev 1:1.0.5-1 [18.3kB]
Get:11 http://localhost sid/main libxdmcp-dev 1:1.0.3-1 [22.3kB]
Get:12 http://localhost sid/main x11proto-input-dev 1.5.0-2 [17.5kB]
Get:13 http://localhost sid/main x11proto-kb-dev 1.0.4-1 [27.3kB]
Get:14 http://localhost sid/main xtrans-dev 1.2.5-1 [68.4kB]
Get:15 http://localhost sid/main libpthread-stubs0 0.3-2 [3172B]
Get:16 http://localhost sid/main libpthread-stubs0-dev 0.3-2 [3504B]
Get:17 http://localhost sid/main libxcb1-dev 1.5-2 [80.2kB]
Get:18 http://localhost sid/main libx11-dev 2:1.3.2-1 [3560kB]
Get:19 http://localhost sid/main libxext6 2:1.0.4-1 [36.6kB]
Get:20 http://localhost sid/main x11proto-xext-dev 7.0.4-2 [44.6kB]
Get:21 http://localhost sid/main libxext-dev 2:1.0.4-1 [88.7kB]
Get:22 http://localhost sid/main libxinerama1 2:1.0.3-2 [10.5kB]
Get:23 http://localhost sid/main x11proto-xinerama-dev 1.1.2-5 [5334B]
Get:24 http://localhost sid/main libxinerama-dev 2:1.0.3-2 [12.0kB]
Get:25 http://localhost sid/main libxpm4 1:3.5.8-1 [44.2kB]
Get:26 http://localhost sid/main libxpm-dev 1:3.5.8-1 [101kB]
Get:27 http://localhost sid/main bsdmainutils 8.0.3 [198kB]
Get:28 http://localhost sid/main groff-base 1.20.1-6 [1156kB]
Get:29 http://localhost sid/main libslang2 2.2.2-1 [539kB]
Get:30 http://localhost sid/main libnewt0.52 0.52.10-4.1 [67.9kB]
Get:31 http://localhost sid/main libpopt0 1.15-1 [51.6kB]
Get:32 http://localhost sid/main man-db 2.5.6-4 [1477kB]
Get:33 http://localhost sid/main whiptail 0.52.10-4.1 [39.1kB]
Get:34 http://localhost sid/main libmagic1 5.03-4 [392kB]
Get:35 http://localhost sid/main file 5.03-4 [47.5kB]
Get:36 http://localhost sid/main gettext-base 0.17-8 [133kB]
Get:37 http://localhost sid/main libpcre3 7.8-3 [215kB]
Get:38 http://localhost sid/main libxml2 2.7.6.dfsg-1 [876kB]
Get:39 http://localhost sid/main ucf 3.0025 [66.0kB]
Get:40 http://localhost sid/main html2text 1.3.2a-14 [103kB]
Get:41 http://localhost sid/main libglib2.0-0 2.22.3-1 [988kB]
Get:42 http://localhost sid/main libcroco3 0.6.2-1 [125kB]
Get:43 http://localhost sid/main gettext 0.17-8 [2503kB]
Get:44 http://localhost sid/main intltool-debian 0.35.0+20060710.1 [30.8kB]
Get:45 http://localhost sid/main po-debconf 1.0.16 [224kB]
Get:46 http://localhost sid/main debhelper 7.4.10 [458kB]
Get:47 http://localhost sid/main defoma 0.11.10-3 [99.0kB]
Get:48 http://localhost sid/main dpatch 2.0.31 [92.3kB]
Get:49 http://localhost sid/main ttf-dejavu-core 2.30-1 [1437kB]
Get:50 http://localhost sid/main ttf-dejavu-extra 2.30-1 [3180kB]
Get:51 http://localhost sid/main ttf-dejavu 2.30-1 [28.7kB]
Get:52 http://localhost sid/main fontconfig-config 2.6.0-4 [184kB]
Get:53 http://localhost sid/main libdrm2 2.4.15-1 [394kB]
Get:54 http://localhost sid/main libxfixes3 1:4.0.4-1 [16.2kB]
Get:55 http://localhost sid/main libxdamage1 1:1.1.2-1 [12.2kB]
Get:56 http://localhost sid/main libxxf86vm1 1:1.0.2-1 [15.0kB]
Get:57 http://localhost sid/main libgl1-mesa-glx 7.6.1~rc2-1 [180kB]
Get:58 http://localhost sid/main libglu1-mesa 7.6.1~rc2-1 [214kB]
Get:59 http://localhost sid/main freeglut3 2.4.0-8 [99.2kB]
Get:60 http://localhost sid/main mesa-common-dev 7.6.1~rc2-1 [2157kB]
Get:61 http://localhost sid/main libgl1-mesa-dev 7.6.1~rc2-1 [23.3kB]
Get:62 http://localhost sid/main libglu1-mesa-dev 7.6.1~rc2-1 [291kB]
Get:63 http://localhost sid/main libsm6 2:1.1.1-1 [25.0kB]
Get:64 http://localhost sid/main libxt6 1:1.0.7-1 [192kB]
Get:65 http://localhost sid/main libsm-dev 2:1.1.1-1 [27.9kB]
Get:66 http://localhost sid/main libxt-dev 1:1.0.7-1 [519kB]
Get:67 http://localhost sid/main freeglut3-dev 2.4.0-8 [171kB]
Get:68 http://localhost sid/main libexpat1 2.0.1-5 [135kB]
Get:69 http://localhost sid/main libexpat1-dev 2.0.1-5 [223kB]
Get:70 http://localhost sid/main libfreetype6 2.3.11-1 [432kB]
Get:71 http://localhost sid/main libfontconfig1 2.6.0-4 [240kB]
Get:72 http://localhost sid/main libjpeg62 6b-15 [92.2kB]
Get:73 http://localhost sid/main libpng12-0 1.2.41-1 [178kB]
Get:74 http://localhost sid/main libxrender1 1:0.9.5-1 [28.2kB]
Get:75 http://localhost sid/main libxft2 2.1.14-1 [54.7kB]
Get:76 http://localhost sid/main libfltk1.1 1.1.10~rc3-1 [462kB]
Get:77 http://localhost sid/main libfltk1.1-dev 1.1.10~rc3-1 [643kB]
Get:78 http://localhost sid/main zlib1g-dev 1:1.2.3.3.dfsg-15 [164kB]
Get:79 http://localhost sid/main libfreetype6-dev 2.3.11-1 [739kB]
Get:80 http://localhost sid/main pkg-config 0.22-1 [55.0kB]
Get:81 http://localhost sid/main libfontconfig1-dev 2.6.0-4 [733kB]
Get:82 http://localhost sid/main x11proto-render-dev 2:0.11-1 [7368B]
Get:83 http://localhost sid/main libxrender-dev 1:0.9.5-1 [36.3kB]
Get:84 http://localhost sid/main libxft-dev 2.1.14-1 [69.6kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 29.1MB in 0s (57.5MB/s)
Selecting previously deselected package x11-common.
(Reading database ... 9973 files and directories currently installed.)
Unpacking x11-common (from .../x11-common_1%3a7.4+4_all.deb) ...
Selecting previously deselected package libice6.
Unpacking libice6 (from .../libice6_2%3a1.0.6-1_amd64.deb) ...
Selecting previously deselected package x11proto-core-dev.
Unpacking x11proto-core-dev (from .../x11proto-core-dev_7.0.16-1_all.deb) ...
Setting up x11-common (1:7.4+4) ...
Selecting previously deselected package libice-dev.
(Reading database ... 10039 files and directories currently installed.)
Unpacking libice-dev (from .../libice-dev_2%3a1.0.6-1_amd64.deb) ...
Selecting previously deselected package libxau6.
Unpacking libxau6 (from .../libxau6_1%3a1.0.5-1_amd64.deb) ...
Selecting previously deselected package libxdmcp6.
Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.0.3-1_amd64.deb) ...
Selecting previously deselected package libxcb1.
Unpacking libxcb1 (from .../libxcb1_1.5-2_amd64.deb) ...
Selecting previously deselected package libx11-data.
Unpacking libx11-data (from .../libx11-data_2%3a1.3.2-1_all.deb) ...
Selecting previously deselected package libx11-6.
Unpacking libx11-6 (from .../libx11-6_2%3a1.3.2-1_amd64.deb) ...
Selecting previously deselected package libxau-dev.
Unpacking libxau-dev (from .../libxau-dev_1%3a1.0.5-1_amd64.deb) ...
Selecting previously deselected package libxdmcp-dev.
Unpacking libxdmcp-dev (from .../libxdmcp-dev_1%3a1.0.3-1_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.4-1_all.deb) ...
Selecting previously deselected package xtrans-dev.
Unpacking xtrans-dev (from .../xtrans-dev_1.2.5-1_all.deb) ...
Selecting previously deselected package libpthread-stubs0.
Unpacking libpthread-stubs0 (from .../libpthread-stubs0_0.3-2_amd64.deb) ...
Selecting previously deselected package libpthread-stubs0-dev.
Unpacking libpthread-stubs0-dev (from .../libpthread-stubs0-dev_0.3-2_amd64.deb) ...
Selecting previously deselected package libxcb1-dev.
Unpacking libxcb1-dev (from .../libxcb1-dev_1.5-2_amd64.deb) ...
Selecting previously deselected package libx11-dev.
Unpacking libx11-dev (from .../libx11-dev_2%3a1.3.2-1_amd64.deb) ...
Selecting previously deselected package libxext6.
Unpacking libxext6 (from .../libxext6_2%3a1.0.4-1_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 libxinerama1.
Unpacking libxinerama1 (from .../libxinerama1_2%3a1.0.3-2_amd64.deb) ...
Selecting previously deselected package x11proto-xinerama-dev.
Unpacking x11proto-xinerama-dev (from .../x11proto-xinerama-dev_1.1.2-5_all.deb) ...
Selecting previously deselected package libxinerama-dev.
Unpacking libxinerama-dev (from .../libxinerama-dev_2%3a1.0.3-2_amd64.deb) ...
Selecting previously deselected package libxpm4.
Unpacking libxpm4 (from .../libxpm4_1%3a3.5.8-1_amd64.deb) ...
Selecting previously deselected package libxpm-dev.
Unpacking libxpm-dev (from .../libxpm-dev_1%3a3.5.8-1_amd64.deb) ...
Selecting previously deselected package bsdmainutils.
Unpacking bsdmainutils (from .../bsdmainutils_8.0.3_amd64.deb) ...
Selecting previously deselected package groff-base.
Unpacking groff-base (from .../groff-base_1.20.1-6_amd64.deb) ...
Selecting previously deselected package libslang2.
Unpacking libslang2 (from .../libslang2_2.2.2-1_amd64.deb) ...
Selecting previously deselected package libnewt0.52.
Unpacking libnewt0.52 (from .../libnewt0.52_0.52.10-4.1_amd64.deb) ...
Selecting previously deselected package libpopt0.
Unpacking libpopt0 (from .../libpopt0_1.15-1_amd64.deb) ...
Selecting previously deselected package man-db.
Unpacking man-db (from .../man-db_2.5.6-4_amd64.deb) ...
Selecting previously deselected package whiptail.
Unpacking whiptail (from .../whiptail_0.52.10-4.1_amd64.deb) ...
Selecting previously deselected package libmagic1.
Unpacking libmagic1 (from .../libmagic1_5.03-4_amd64.deb) ...
Selecting previously deselected package file.
Unpacking file (from .../archives/file_5.03-4_amd64.deb) ...
Selecting previously deselected package gettext-base.
Unpacking gettext-base (from .../gettext-base_0.17-8_amd64.deb) ...
Selecting previously deselected package libpcre3.
Unpacking libpcre3 (from .../libpcre3_7.8-3_amd64.deb) ...
Selecting previously deselected package libxml2.
Unpacking libxml2 (from .../libxml2_2.7.6.dfsg-1_amd64.deb) ...
Selecting previously deselected package ucf.
Unpacking ucf (from .../archives/ucf_3.0025_all.deb) ...
Moving old data out of the way
Selecting previously deselected package html2text.
Unpacking html2text (from .../html2text_1.3.2a-14_amd64.deb) ...
Selecting previously deselected package libglib2.0-0.
Unpacking libglib2.0-0 (from .../libglib2.0-0_2.22.3-1_amd64.deb) ...
Selecting previously deselected package libcroco3.
Unpacking libcroco3 (from .../libcroco3_0.6.2-1_amd64.deb) ...
Selecting previously deselected package gettext.
Unpacking gettext (from .../gettext_0.17-8_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.4.10_all.deb) ...
Selecting previously deselected package defoma.
Unpacking defoma (from .../defoma_0.11.10-3_all.deb) ...
Selecting previously deselected package dpatch.
Unpacking dpatch (from .../archives/dpatch_2.0.31_all.deb) ...
Selecting previously deselected package ttf-dejavu-core.
Unpacking ttf-dejavu-core (from .../ttf-dejavu-core_2.30-1_all.deb) ...
Selecting previously deselected package ttf-dejavu-extra.
Unpacking ttf-dejavu-extra (from .../ttf-dejavu-extra_2.30-1_all.deb) ...
Selecting previously deselected package ttf-dejavu.
Unpacking ttf-dejavu (from .../ttf-dejavu_2.30-1_all.deb) ...
Selecting previously deselected package fontconfig-config.
Unpacking fontconfig-config (from .../fontconfig-config_2.6.0-4_all.deb) ...
Selecting previously deselected package libdrm2.
Unpacking libdrm2 (from .../libdrm2_2.4.15-1_amd64.deb) ...
Selecting previously deselected package libxfixes3.
Unpacking libxfixes3 (from .../libxfixes3_1%3a4.0.4-1_amd64.deb) ...
Selecting previously deselected package libxdamage1.
Unpacking libxdamage1 (from .../libxdamage1_1%3a1.1.2-1_amd64.deb) ...
Selecting previously deselected package libxxf86vm1.
Unpacking libxxf86vm1 (from .../libxxf86vm1_1%3a1.0.2-1_amd64.deb) ...
Selecting previously deselected package libgl1-mesa-glx.
Unpacking libgl1-mesa-glx (from .../libgl1-mesa-glx_7.6.1~rc2-1_amd64.deb) ...
Selecting previously deselected package libglu1-mesa.
Unpacking libglu1-mesa (from .../libglu1-mesa_7.6.1~rc2-1_amd64.deb) ...
Selecting previously deselected package freeglut3.
Unpacking freeglut3 (from .../freeglut3_2.4.0-8_amd64.deb) ...
Selecting previously deselected package mesa-common-dev.
Unpacking mesa-common-dev (from .../mesa-common-dev_7.6.1~rc2-1_amd64.deb) ...
Selecting previously deselected package libgl1-mesa-dev.
Unpacking libgl1-mesa-dev (from .../libgl1-mesa-dev_7.6.1~rc2-1_amd64.deb) ...
Selecting previously deselected package libglu1-mesa-dev.
Unpacking libglu1-mesa-dev (from .../libglu1-mesa-dev_7.6.1~rc2-1_amd64.deb) ...
Selecting previously deselected package libsm6.
Unpacking libsm6 (from .../libsm6_2%3a1.1.1-1_amd64.deb) ...
Selecting previously deselected package libxt6.
Unpacking libxt6 (from .../libxt6_1%3a1.0.7-1_amd64.deb) ...
Selecting previously deselected package libsm-dev.
Unpacking libsm-dev (from .../libsm-dev_2%3a1.1.1-1_amd64.deb) ...
Selecting previously deselected package libxt-dev.
Unpacking libxt-dev (from .../libxt-dev_1%3a1.0.7-1_amd64.deb) ...
Selecting previously deselected package freeglut3-dev.
Unpacking freeglut3-dev (from .../freeglut3-dev_2.4.0-8_amd64.deb) ...
Selecting previously deselected package libexpat1.
Unpacking libexpat1 (from .../libexpat1_2.0.1-5_amd64.deb) ...
Selecting previously deselected package libexpat1-dev.
Unpacking libexpat1-dev (from .../libexpat1-dev_2.0.1-5_amd64.deb) ...
Selecting previously deselected package libfreetype6.
Unpacking libfreetype6 (from .../libfreetype6_2.3.11-1_amd64.deb) ...
Selecting previously deselected package libfontconfig1.
Unpacking libfontconfig1 (from .../libfontconfig1_2.6.0-4_amd64.deb) ...
Selecting previously deselected package libjpeg62.
Unpacking libjpeg62 (from .../libjpeg62_6b-15_amd64.deb) ...
Selecting previously deselected package libpng12-0.
Unpacking libpng12-0 (from .../libpng12-0_1.2.41-1_amd64.deb) ...
Selecting previously deselected package libxrender1.
Unpacking libxrender1 (from .../libxrender1_1%3a0.9.5-1_amd64.deb) ...
Selecting previously deselected package libxft2.
Unpacking libxft2 (from .../libxft2_2.1.14-1_amd64.deb) ...
Selecting previously deselected package libfltk1.1.
Unpacking libfltk1.1 (from .../libfltk1.1_1.1.10~rc3-1_amd64.deb) ...
Selecting previously deselected package libfltk1.1-dev.
Unpacking libfltk1.1-dev (from .../libfltk1.1-dev_1.1.10~rc3-1_amd64.deb) ...
Selecting previously deselected package zlib1g-dev.
Unpacking zlib1g-dev (from .../zlib1g-dev_1%3a1.2.3.3.dfsg-15_amd64.deb) ...
Selecting previously deselected package libfreetype6-dev.
Unpacking libfreetype6-dev (from .../libfreetype6-dev_2.3.11-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.11-1_all.deb) ...
Selecting previously deselected package libxrender-dev.
Unpacking libxrender-dev (from .../libxrender-dev_1%3a0.9.5-1_amd64.deb) ...
Selecting previously deselected package libxft-dev.
Unpacking libxft-dev (from .../libxft-dev_2.1.14-1_amd64.deb) ...
Setting up libice6 (2:1.0.6-1) ...
Setting up x11proto-core-dev (7.0.16-1) ...
Setting up libice-dev (2:1.0.6-1) ...
Setting up libxau6 (1:1.0.5-1) ...
Setting up libxdmcp6 (1:1.0.3-1) ...
Setting up libxcb1 (1.5-2) ...
Setting up libx11-data (2:1.3.2-1) ...
Setting up libx11-6 (2:1.3.2-1) ...
Setting up libxau-dev (1:1.0.5-1) ...
Setting up libxdmcp-dev (1:1.0.3-1) ...
Setting up x11proto-input-dev (1.5.0-2) ...
Setting up x11proto-kb-dev (1.0.4-1) ...
Setting up xtrans-dev (1.2.5-1) ...
Setting up libpthread-stubs0 (0.3-2) ...
Setting up libpthread-stubs0-dev (0.3-2) ...
Setting up libxcb1-dev (1.5-2) ...
Setting up libx11-dev (2:1.3.2-1) ...
Setting up libxext6 (2:1.0.4-1) ...
Setting up x11proto-xext-dev (7.0.4-2) ...
Setting up libxext-dev (2:1.0.4-1) ...
Setting up libxinerama1 (2:1.0.3-2) ...
Setting up x11proto-xinerama-dev (1.1.2-5) ...
Setting up libxinerama-dev (2:1.0.3-2) ...
Setting up libxpm4 (1:3.5.8-1) ...
Setting up libxpm-dev (1:3.5.8-1) ...
Setting up bsdmainutils (8.0.3) ...
update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode.
Setting up groff-base (1.20.1-6) ...
Setting up libslang2 (2.2.2-1) ...
Setting up libnewt0.52 (0.52.10-4.1) ...
Setting up libpopt0 (1.15-1) ...
Setting up man-db (2.5.6-4) ...
Building database of manual pages ...
Setting up whiptail (0.52.10-4.1) ...
Setting up libmagic1 (5.03-4) ...
Setting up file (5.03-4) ...
Setting up gettext-base (0.17-8) ...
Setting up libpcre3 (7.8-3) ...
Setting up libxml2 (2.7.6.dfsg-1) ...
Setting up ucf (3.0025) ...
Setting up html2text (1.3.2a-14) ...
Setting up libglib2.0-0 (2.22.3-1) ...
Setting up libcroco3 (0.6.2-1) ...
Setting up gettext (0.17-8) ...
Setting up intltool-debian (0.35.0+20060710.1) ...
Setting up po-debconf (1.0.16) ...
Setting up debhelper (7.4.10) ...
Setting up defoma (0.11.10-3) ...
Setting up dpatch (2.0.31) ...
Setting up ttf-dejavu-core (2.30-1) ...
Setting up ttf-dejavu-extra (2.30-1) ...
Setting up ttf-dejavu (2.30-1) ...
Setting up fontconfig-config (2.6.0-4) ...
Setting up libdrm2 (2.4.15-1) ...
Setting up libxfixes3 (1:4.0.4-1) ...
Setting up libxdamage1 (1:1.1.2-1) ...
Setting up libxxf86vm1 (1:1.0.2-1) ...
Setting up libgl1-mesa-glx (7.6.1~rc2-1) ...
Setting up libglu1-mesa (7.6.1~rc2-1) ...
Setting up freeglut3 (2.4.0-8) ...
Setting up mesa-common-dev (7.6.1~rc2-1) ...
Setting up libgl1-mesa-dev (7.6.1~rc2-1) ...
Setting up libglu1-mesa-dev (7.6.1~rc2-1) ...
Setting up libsm6 (2:1.1.1-1) ...
Setting up libxt6 (1:1.0.7-1) ...
Setting up libsm-dev (2:1.1.1-1) ...
Setting up libxt-dev (1:1.0.7-1) ...
Setting up freeglut3-dev (2.4.0-8) ...
Setting up libexpat1 (2.0.1-5) ...
Setting up libexpat1-dev (2.0.1-5) ...
Setting up libfreetype6 (2.3.11-1) ...
Setting up libfontconfig1 (2.6.0-4) ...
Setting up libjpeg62 (6b-15) ...
Setting up libpng12-0 (1.2.41-1) ...
Setting up libxrender1 (1:0.9.5-1) ...
Setting up libxft2 (2.1.14-1) ...
Setting up libfltk1.1 (1.1.10~rc3-1) ...
Setting up libfltk1.1-dev (1.1.10~rc3-1) ...
Setting up zlib1g-dev (1:1.2.3.3.dfsg-15) ...
Setting up libfreetype6-dev (2.3.11-1) ...
Setting up pkg-config (0.22-1) ...
Setting up libfontconfig1-dev (2.6.0-4) ...
Setting up x11proto-render-dev (2:0.11-1) ...
Setting up libxrender-dev (1:0.9.5-1) ...
Setting up libxft-dev (2.1.14-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.10.2-2 linux-libc-dev_2.6.32-1 g++-4.4_4.4.2-3 gcc-4.4_4.4.2-3 binutils_2.20-4 libstdc++6_4.4.2-3 libstdc++6-4.4-dev_4.4.2-3
┌──────────────────────────────────────────────────────────────────────────────┐
│ Build │
└──────────────────────────────────────────────────────────────────────────────┘
Unpack source
─────────────
gpgv: keyblock resource `/home/user/.gnupg/trustedkeys.gpg': file open error
gpgv: Signature made Thu Nov 19 01:48:12 2009 CET using DSA key ID 088F6B8C
gpgv: Can't check signature: public key not found
dpkg-source: warning: failed to verify signature on ./drawxtl_5.4+dfsg-3.dsc
dpkg-source: info: extracting drawxtl in drawxtl-5.4+dfsg
dpkg-source: info: unpacking drawxtl_5.4+dfsg.orig.tar.gz
dpkg-source: info: applying drawxtl_5.4+dfsg-3.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 drawxtl
dpkg-buildpackage: source version 5.4+dfsg-3
dpkg-buildpackage: source changed by Daniel Leidert (dale) <daniel.leidert@wgdd.de>
dpkg-buildpackage: host architecture amd64
/usr/bin/fakeroot debian/rules clean
dpatch deapply-all
arch_with_unsigned_char_fix not applied to ./ .
povray_default_location not applied to ./ .
rm -rf patch-stamp patch-stampT debian/patched
dh_testdir
dh_testroot
rm -f build-stamp patch-stamp
# Add here commands to clean up after the build process.
/usr/bin/make -C source/DRAWxtl54/ clean
make[1]: Entering directory `/build/user-drawxtl_5.4+dfsg-3-amd64-2StTCB/drawxtl-5.4+dfsg/source/DRAWxtl54'
Building dependencies...
make[1]: Leaving directory `/build/user-drawxtl_5.4+dfsg-3-amd64-2StTCB/drawxtl-5.4+dfsg/source/DRAWxtl54'
make[1]: Entering directory `/build/user-drawxtl_5.4+dfsg-3-amd64-2StTCB/drawxtl-5.4+dfsg/source/DRAWxtl54'
make[1]: Leaving directory `/build/user-drawxtl_5.4+dfsg-3-amd64-2StTCB/drawxtl-5.4+dfsg/source/DRAWxtl54'
dh_clean
dpkg-source -b drawxtl-5.4+dfsg
dpkg-source: info: using source format `1.0'
dpkg-source: info: building drawxtl using existing drawxtl_5.4+dfsg.orig.tar.gz
dpkg-source: info: building drawxtl in drawxtl_5.4+dfsg-3.diff.gz
dpkg-source: warning: executable mode 0755 of 'debian/patches/povray_default_location.dpatch' will not be represented in diff
dpkg-source: warning: executable mode 0755 of 'debian/patches/arch_with_unsigned_char_fix.dpatch' will not be represented in diff
dpkg-source: info: building drawxtl in drawxtl_5.4+dfsg-3.dsc
debian/rules build
test -d debian/patched || install -d debian/patched
dpatch apply-all
applying patch povray_default_location to ./ ... ok.
applying patch arch_with_unsigned_char_fix to ./ ... ok.
dpatch cat-all >>patch-stampT
mv -f patch-stampT patch-stamp
dh_testdir
/usr/bin/make -C source/DRAWxtl54/ \
OS=Linux \
prefix=/usr \
libdir=/usr/lib/ \
LINKFLTKGL="-lfltk_gl -lfltk" \
OPTIM="-Wall -g -O2 -Wunused -fno-exceptions"
make[1]: Entering directory `/build/user-drawxtl_5.4+dfsg-3-amd64-2StTCB/drawxtl-5.4+dfsg/source/DRAWxtl54'
Building dependencies...
make[1]: Leaving directory `/build/user-drawxtl_5.4+dfsg-3-amd64-2StTCB/drawxtl-5.4+dfsg/source/DRAWxtl54'
make[1]: Entering directory `/build/user-drawxtl_5.4+dfsg-3-amd64-2StTCB/drawxtl-5.4+dfsg/source/DRAWxtl54'
Compiling CrystalView.cxx ...
CrystalView.cxx: In function 'void ImportDataFile_cb(Fl_Widget*, void*)':
CrystalView.cxx:998: error: invalid conversion from 'const char*' to 'char*'
CrystalView.cxx:1000: error: invalid conversion from 'const char*' to 'char*'
make[1]: *** [CrystalView.o] Error 1
make[1]: Leaving directory `/build/user-drawxtl_5.4+dfsg-3-amd64-2StTCB/drawxtl-5.4+dfsg/source/DRAWxtl54'
make: *** [build-stamp] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2
────────────────────────────────────────────────────────────────────────────────
Build finished at 20091210-2252
FAILED [dpkg-buildpackage died]
Purging /var/lib/schroot/mount/lsid64-c5c82c62-8961-4f20-acf3-df9f3284a01b/build/user-drawxtl_5.4+dfsg-3-amd64-2StTCB
────────────────────────────────────────────────────────────────────────────────
Not removing build depends: cloned chroot in use
────────────────────────────────────────────────────────────────────────────────
Finished at 20091210-2252
Build needed 00:00:17, 8512k disc space
DC-Build-Status: Failed 837.159753s
### Content of /var/log/daemon.log ###
Dec 10 21:21:28 griffon-33 approx: Concurrent download of debian/pool/main/g/gnome-icon-theme-blankon/gnome-icon-theme-blankon_1.0-3.dsc is taking too long
Dec 10 21:21:46 griffon-33 approx: Concurrent download of debian/pool/main/l/ldaptor/ldaptor_0.0.43+debian1.orig.tar.gz is taking too long
Dec 10 21:21:47 griffon-33 approx: Concurrent download of debian/pool/main/k/kgb-bot/kgb-bot_1.01-1.diff.gz is taking too long
### End of content of /var/log/daemon.log ###
DC-Time-Estimation: 837.159753 versus expected 387 (r/m: 1.16320349612403 ; m: 387.0)
DC-Build-Network: USED. See /tmp/rulesafter.UMzqtg !
************************************************************
# Generated by iptables-save v1.4.2 on Thu Dec 10 22:52:27 2009
*filter
:INPUT ACCEPT [1336010:5859453744]
:FORWARD ACCEPT [0:0]
:OUTPUT DROP [0:0]
:LD - [0:0]
[416407:4573014756] -A OUTPUT -o lo -j ACCEPT
[0:0] -A OUTPUT -d 129.88.0.0/16 -j ACCEPT
[0:0] -A OUTPUT -d 10.0.0.0/8 -j ACCEPT
[0:0] -A OUTPUT -d 192.168.133.0/24 -j ACCEPT
[0:0] -A OUTPUT -d 192.168.159.0/24 -j ACCEPT
[0:0] -A OUTPUT -d 192.168.160.0/24 -j ACCEPT
[0:0] -A OUTPUT -d 10.69.0.0/17 -j ACCEPT
[382488:22962888] -A OUTPUT -d 172.28.52.0/22 -j ACCEPT
[0:0] -A OUTPUT -d 172.24.0.0/16 -j ACCEPT
[0:0] -A OUTPUT -d 131.254.202.0/23 -j ACCEPT
[0:0] -A OUTPUT -d 138.96.20.0/22 -j ACCEPT
[0:0] -A OUTPUT -d 192.168.22.0/24 -j ACCEPT
[41696:33432932] -A OUTPUT -d 172.16.0.0/16 -j ACCEPT
[2:120] -A OUTPUT -j LD
[2:120] -A LD -j LOG
[2:120] -A LD -j REJECT --reject-with icmp-port-unreachable
COMMIT
# Completed on Thu Dec 10 22:52:27 2009
************************************************************
--- /tmp/rulesbefore.dfceID 2009-12-10 22:38:30.145581223 +0100
+++ /tmp/rulesafter.UMzqtg 2009-12-10 22:52:27.332586224 +0100
@@ -1,24 +1,24 @@
-# Generated by iptables-save v1.4.2 on Thu Dec 10 22:38:30 2009
+# Generated by iptables-save v1.4.2 on Thu Dec 10 22:52:27 2009
*filter
-:INPUT ACCEPT [1286558:5597569211]
+:INPUT ACCEPT [1336010:5859453744]
:FORWARD ACCEPT [0:0]
:OUTPUT DROP [0:0]
:LD - [0:0]
-[390660:4334032847] -A OUTPUT -o lo -j ACCEPT
+[416407:4573014756] -A OUTPUT -o lo -j ACCEPT
[0:0] -A OUTPUT -d 129.88.0.0/16 -j ACCEPT
[0:0] -A OUTPUT -d 10.0.0.0/8 -j ACCEPT
[0:0] -A OUTPUT -d 192.168.133.0/24 -j ACCEPT
[0:0] -A OUTPUT -d 192.168.159.0/24 -j ACCEPT
[0:0] -A OUTPUT -d 192.168.160.0/24 -j ACCEPT
[0:0] -A OUTPUT -d 10.69.0.0/17 -j ACCEPT
-[371683:21969578] -A OUTPUT -d 172.28.52.0/22 -j ACCEPT
+[382488:22962888] -A OUTPUT -d 172.28.52.0/22 -j ACCEPT
[0:0] -A OUTPUT -d 172.24.0.0/16 -j ACCEPT
[0:0] -A OUTPUT -d 131.254.202.0/23 -j ACCEPT
[0:0] -A OUTPUT -d 138.96.20.0/22 -j ACCEPT
[0:0] -A OUTPUT -d 192.168.22.0/24 -j ACCEPT
-[39169:22932916] -A OUTPUT -d 172.16.0.0/16 -j ACCEPT
+[41696:33432932] -A OUTPUT -d 172.16.0.0/16 -j ACCEPT
[2:120] -A OUTPUT -j LD
[2:120] -A LD -j LOG
[2:120] -A LD -j REJECT --reject-with icmp-port-unreachable
COMMIT
-# Completed on Thu Dec 10 22:38:30 2009
+# Completed on Thu Dec 10 22:52:27 2009
************************************************************
[ 21.422664] usb usb5: SerialNumber: 0000:00:1d.7
[ 21.450334] ESB2: IDE controller (0x8086:0x269e rev 0x09) at PCI slot 0000:00:1f.1
[ 21.639619] ACPI: PCI Interrupt 0000:00:1f.1[A] -> GSI 20 (level, low) -> IRQ 20
[ 21.688072] PCI: Unable to reserve I/O region #1:8@1f0 for device 0000:00:1f.1
[ 21.747371] ESB2: can't reserve resources
[ 21.771428] PIIX_IDE: probe of 0000:00:1f.1 failed with error -16
[ 21.875320] PM: Starting manual resume from disk
[ 21.973139] kjournald starting. Commit interval 5 seconds
[ 21.977140] EXT3-fs: mounted filesystem with ordered data mode.
[ 23.218097] udevd version 125 started
[ 23.583770] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 23.831294] input: Power Button (FF) as /class/input/input1
[ 23.953889] ACPI: Power Button (FF) [PWRF]
[ 23.986539] input: Power Button (CM) as /class/input/input2
[ 24.068067] ACPI: Power Button (CM) [PWRB]
[ 24.145028] input: PC Speaker as /class/input/input3
[ 24.253475] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.03 (30-Apr-2008)
[ 24.311096] iTCO_wdt: Found a 631xESB/632xESB TCO device (Version=2, TCOBASE=0x1060)
[ 24.380904] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[ 24.459007] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 24.528272] ACPI: PCI Interrupt 0000:00:1f.3[B] -> GSI 23 (level, low) -> IRQ 23
[ 24.576271] intel_rng: FWH not detected
[ 24.616134] Error: Driver 'pcspkr' is already registered, aborting...
[ 25.471778] Adding 3911788k swap on /dev/sda1. Priority:-1 extents:1 across:3911788k
[ 25.536841] EXT3 FS on sda3, internal journal
[ 26.617477] mlx4_ib: Mellanox ConnectX InfiniBand driver v1.0 (April 4, 2008)
[ 26.782542] device-mapper: uevent: version 1.0.3
[ 26.839842] device-mapper: ioctl: 4.13.0-ioctl (2007-10-18) initialised: dm-devel@redhat.com
[ 27.065313] kjournald starting. Commit interval 5 seconds
[ 27.067608] EXT3 FS on sda5, internal journal
[ 27.067608] EXT3-fs: recovery complete.
[ 27.149039] EXT3-fs: mounted filesystem with ordered data mode.
[ 32.779691] eth0: Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
[ 38.883679] NET: Registered protocol family 10
[ 38.941645] lo: Disabled Privacy Extensions
[ 44.257290] mx_mcp: module license 'Myricom' taints kernel.
[ 44.408911] mx INFO: On x86_64, kernel version: 2.6.26-2-amd64 #1 SMP Sun Jul 26 20:35:48 UTC 2009
[ 44.497509] mx INFO: Memory available for registration: 3604013 pages (14078 MBytes)
[ 44.586092] mx INFO: Version 1.2.9
[ 44.617426] mx INFO: Build root@griffon-27.nancy.grid5000.fr:/usr/local/src/mx-1.2.9 Wed Apr 29 15:01:24 CEST 2009
[ 44.698332] mx INFO: Debug OFF
[ 44.724326] mx INFO: 0 Myrinet boards found and initialized
[ 46.260270] warning: `ntpd' uses 32-bit capabilities (legacy support in use)
[ 51.810549] eth0: no IPv6 routers present
[ 399.585870] RPC: Registered udp transport module.
[ 399.614835] RPC: Registered tcp transport module.
[ 487.721911] Adding 296929352k swap on /dev/sda5. Priority:-2 extents:1 across:296929352k
[ 498.580726] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 3761.499887] IN= OUT=eth0 SRC=172.28.54.33 DST=217.196.43.134 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=11385 DF PROTO=TCP SPT=42967 DPT=80 WINDOW=5840 RES=0x00 SYN URGP=0
[ 3764.778602] IN= OUT=eth0 SRC=172.28.54.33 DST=217.196.43.134 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=11386 DF PROTO=TCP SPT=42967 DPT=80 WINDOW=5840 RES=0x00 SYN URGP=0
************************************************************
|