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
|
dans-gdal-scripts 0.18-1.1 Failed 140.108169
Reason: BUILDDEPS
1-line summary:
Errors while processing: /var/cache/apt/archives/libdap10_3.10.2-2_amd64.deb
multi-line summary:
┌──────────────────────────────────────────────────────────────────────────────┐
│ Install dans-gdal-scripts build dependencies (apt-based resolver) │
└──────────────────────────────────────────────────────────────────────────────┘
Installing build dependencies
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
autotools-dev bsdmainutils ca-certificates comerr-dev debhelper file
fontconfig fontconfig-config gettext gettext-base groff-base html2text
intltool-debian krb5-multidev libaudio2 libboost-dev libboost1.46-dev
libcroco3 libcurl3-gnutls libcurl4-gnutls-dev libdap-dev libdap10 libdap11
libepsilon0 libexpat1 libfontconfig1 libfreetype6 libgcrypt11
libgcrypt11-dev libgdal1-1.7.0 libgdal1-dev libgeos-3.2.2 libgeos-c1
libgeos-dev libgfortran3 libgif-dev libgif4 libglib2.0-0 libgnutls-dev
libgnutls-openssl27 libgnutls26 libgnutlsxx27 libgpg-error-dev libgpg-error0
libgssapi-krb5-2 libgssrpc4 libhdf4-0-alt libhdf4-alt-dev
libhdf5-serial-1.8.4 libhdf5-serial-dev libice6 libicu44 libidn11
libidn11-dev libjasper-dev libjasper1 libjpeg62 libjpeg8 libjpeg8-dev
libk5crypto3 libkadm5clnt-mit8 libkadm5srv-mit8 libkdb5-5 libkeyutils1
libkrb5-3 libkrb5-dev libkrb5support0 liblcms1 libldap-2.4-2 libldap2-dev
libltdl-dev libltdl7 libmagic1 libmng1 libmysqlclient-dev libmysqlclient16
libnetcdf-dev libnetcdf6 libodbcinstq1c2 libogdi3.2 libpcre3 libpipeline1
libpng12-0 libpng12-dev libpopt0 libpq-dev libpq5 libproj-dev libproj0
libqt3-mt librtmp0 libsasl2-2 libsm6 libspatialite-dev libspatialite2
libsqlite3-0 libsqlite3-dev libssl-dev libssl1.0.0 libtasn1-3 libtasn1-3-dev
libunistring0 libx11-6 libx11-data libxau6 libxcb1 libxcursor1 libxdmcp6
libxerces-c2-dev libxerces-c28 libxext6 libxfixes3 libxft2 libxi6
libxinerama1 libxml2 libxrandr2 libxrender1 libxt6 man-db mysql-common
odbcinst odbcinst1debian2 openssl pkg-config po-debconf proj-data
ttf-dejavu-core ucf unixodbc unixodbc-dev x11-common zlib1g-dev
Suggested packages:
wamerican wordlist whois vacation doc-base dh-make defoma gettext-doc groff
krb5-doc nas libboost1.46-doc libboost-date-time1.46-dev
libboost-filesystem1.46-dev libboost-graph-parallel1.46-dev
libboost-graph1.46-dev libboost-iostreams1.46-dev libboost-math1.46-dev
libboost-mpi1.46-dev libboost-program-options1.46-dev
libboost-python1.46-dev libboost-random1.46-dev libboost-regex1.46-dev
libboost-serialization1.46-dev libboost-signals1.46-dev
libboost-system1.46-dev libboost-test1.46-dev libboost-thread1.46-dev
libboost-wave1.46-dev xsltproc doxygen docbook-xml docbook-xsl default-jdk
fop libcurl3-dbg rng-tools libgcrypt11-doc libgdal-doc gnutls-doc gnutls-bin
guile-gnutls krb5-user libhdf4-doc hdf4-tools libnetcdf4 libhdf5-doc
libjasper-runtime liblcms-utils libtool-doc netcdf-bin netcdf-doc ogdi-bin
postgresql-doc-9.0 libqt3-mt-psql libqt3-mt-mysql libqt3-mt-odbc sqlite3-doc
libxerces-c2-doc www-browser libmail-box-perl libmyodbc odbc-postgresql
tdsodbc unixodbc-bin libqt3-mt-dev
Recommended packages:
curl wget lynx-cur autopoint libxml2-dev proj-bin libglib2.0-data
shared-mime-info libtool libgl1-mesa-glx libgl1 libglu1-mesa libglu1 libxmu6
libsasl2-modules libssl-doc xml-core libmail-sendmail-perl
The following NEW packages will be installed:
autotools-dev bsdmainutils ca-certificates comerr-dev debhelper file
fontconfig fontconfig-config gettext gettext-base groff-base html2text
intltool-debian krb5-multidev libaudio2 libboost-dev libboost1.46-dev
libcroco3 libcurl3-gnutls libcurl4-gnutls-dev libdap-dev libdap10 libdap11
libepsilon0 libexpat1 libfontconfig1 libfreetype6 libgcrypt11
libgcrypt11-dev libgdal1-1.7.0 libgdal1-dev libgeos-3.2.2 libgeos-c1
libgeos-dev libgfortran3 libgif-dev libgif4 libglib2.0-0 libgnutls-dev
libgnutls-openssl27 libgnutls26 libgnutlsxx27 libgpg-error-dev libgpg-error0
libgssapi-krb5-2 libgssrpc4 libhdf4-0-alt libhdf4-alt-dev
libhdf5-serial-1.8.4 libhdf5-serial-dev libice6 libicu44 libidn11
libidn11-dev libjasper-dev libjasper1 libjpeg62 libjpeg8 libjpeg8-dev
libk5crypto3 libkadm5clnt-mit8 libkadm5srv-mit8 libkdb5-5 libkeyutils1
libkrb5-3 libkrb5-dev libkrb5support0 liblcms1 libldap-2.4-2 libldap2-dev
libltdl-dev libltdl7 libmagic1 libmng1 libmysqlclient-dev libmysqlclient16
libnetcdf-dev libnetcdf6 libodbcinstq1c2 libogdi3.2 libpcre3 libpipeline1
libpng12-0 libpng12-dev libpopt0 libpq-dev libpq5 libproj-dev libproj0
libqt3-mt librtmp0 libsasl2-2 libsm6 libspatialite-dev libspatialite2
libsqlite3-0 libsqlite3-dev libssl-dev libssl1.0.0 libtasn1-3 libtasn1-3-dev
libunistring0 libx11-6 libx11-data libxau6 libxcb1 libxcursor1 libxdmcp6
libxerces-c2-dev libxerces-c28 libxext6 libxfixes3 libxft2 libxi6
libxinerama1 libxml2 libxrandr2 libxrender1 libxt6 man-db mysql-common
odbcinst odbcinst1debian2 openssl pkg-config po-debconf proj-data
sbuild-build-depends-dans-gdal-scripts-dummy ttf-dejavu-core ucf unixodbc
unixodbc-dev x11-common zlib1g-dev
0 upgraded, 134 newly installed, 0 to remove and 0 not upgraded.
Need to get 80.6 MB/80.6 MB of archives.
After this operation, 303 MB of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
libpipeline1 libgpg-error0 libgcrypt11 libtasn1-3 libgnutls26
libgnutls-openssl27 libkeyutils1 libkrb5support0 libk5crypto3 libkrb5-3
libgssapi-krb5-2 libgssrpc4 libidn11 libkadm5clnt-mit8 libkdb5-5
libkadm5srv-mit8 libsasl2-2 libldap-2.4-2 libpcre3 libxau6 x11-common
libice6 libsm6 libxdmcp6 libxcb1 libx11-data libx11-6 libxt6 libaudio2
librtmp0 libssl1.0.0 openssl ca-certificates libcurl3-gnutls libexpat1
libfreetype6 ucf ttf-dejavu-core fontconfig-config libfontconfig1
libgfortran3 libjpeg62 liblcms1 libmng1 libpng12-0 libxfixes3 libxrender1
libxcursor1 libxext6 libxft2 libxi6 libxinerama1 libxrandr2 libgnutlsxx27
bsdmainutils groff-base libpopt0 man-db libmagic1 file gettext-base
libsqlite3-0 libxml2 autotools-dev html2text libglib2.0-0 libcroco3
libunistring0 gettext intltool-debian po-debconf debhelper fontconfig
comerr-dev krb5-multidev libicu44 libboost1.46-dev libboost-dev
libgpg-error-dev libgcrypt11-dev zlib1g-dev libtasn1-3-dev libgnutls-dev
pkg-config libidn11-dev libkrb5-dev libldap2-dev libcurl4-gnutls-dev
libdap11 libdap-dev libdap10 libgeos-3.2.2 libgeos-c1 libgeos-dev libgif4
libgif-dev libhdf5-serial-1.8.4 libjpeg8 libjpeg8-dev libhdf5-serial-dev
libjasper1 libjasper-dev libltdl7 libltdl-dev mysql-common libmysqlclient16
libmysqlclient-dev libnetcdf6 libnetcdf-dev libqt3-mt odbcinst
odbcinst1debian2 unixodbc libodbcinstq1c2 libpng12-dev libpq5 libssl-dev
libpq-dev libsqlite3-dev libxerces-c28 libxerces-c2-dev libepsilon0
libhdf4-0-alt proj-data libproj0 libogdi3.2 libspatialite2 libgdal1-1.7.0
libhdf4-alt-dev unixodbc-dev libspatialite-dev libgdal1-dev libproj-dev
sbuild-build-depends-dans-gdal-scripts-dummy
Authentication warning overridden.
Get:1 http://localhost/debian/ sid/main libpipeline1 amd64 1.2.0-3 [37.9 kB]
Get:2 http://localhost/debian/ sid/main libgpg-error0 amd64 1.10-0.3 [68.7 kB]
Get:3 http://localhost/debian/ sid/main libgcrypt11 amd64 1.4.6-9 [285 kB]
Get:4 http://localhost/debian/ sid/main libtasn1-3 amd64 2.9-4 [63.9 kB]
Get:5 http://localhost/debian/ sid/main libgnutls26 amd64 2.12.7-6 [785 kB]
Get:6 http://localhost/debian/ sid/main libgnutls-openssl27 amd64 2.12.7-6 [390 kB]
Get:7 http://localhost/debian/ sid/main libkeyutils1 amd64 1.5.2-1 [8772 B]
Get:8 http://localhost/debian/ sid/main libkrb5support0 amd64 1.9.1+dfsg-2 [47.1 kB]
Get:9 http://localhost/debian/ sid/main libk5crypto3 amd64 1.9.1+dfsg-2 [111 kB]
Get:10 http://localhost/debian/ sid/main libkrb5-3 amd64 1.9.1+dfsg-2 [381 kB]
Get:11 http://localhost/debian/ sid/main libgssapi-krb5-2 amd64 1.9.1+dfsg-2 [147 kB]
Get:12 http://localhost/debian/ sid/main libgssrpc4 amd64 1.9.1+dfsg-2 [85.4 kB]
Get:13 http://localhost/debian/ sid/main libidn11 amd64 1.22-3 [165 kB]
Get:14 http://localhost/debian/ sid/main libkadm5clnt-mit8 amd64 1.9.1+dfsg-2 [64.9 kB]
Get:15 http://localhost/debian/ sid/main libkdb5-5 amd64 1.9.1+dfsg-2 [63.0 kB]
Get:16 http://localhost/debian/ sid/main libkadm5srv-mit8 amd64 1.9.1+dfsg-2 [81.1 kB]
Get:17 http://localhost/debian/ sid/main libsasl2-2 amd64 2.1.24~rc1.dfsg1+cvs2011-05-23-6 [119 kB]
Get:18 http://localhost/debian/ sid/main libldap-2.4-2 amd64 2.4.25-3 [235 kB]
Get:19 http://localhost/debian/ sid/main libpcre3 amd64 8.12-4 [225 kB]
Get:20 http://localhost/debian/ sid/main libxau6 amd64 1:1.0.6-3 [17.0 kB]
Get:21 http://localhost/debian/ sid/main x11-common all 1:7.6+8 [276 kB]
Get:22 http://localhost/debian/ sid/main libice6 amd64 2:1.0.7-2 [56.5 kB]
Get:23 http://localhost/debian/ sid/main libsm6 amd64 2:1.2.0-2 [29.8 kB]
Get:24 http://localhost/debian/ sid/main libxdmcp6 amd64 1:1.1.0-3 [22.9 kB]
Get:25 http://localhost/debian/ sid/main libxcb1 amd64 1.7-3 [45.4 kB]
Get:26 http://localhost/debian/ sid/main libx11-data all 2:1.4.4-1 [183 kB]
Get:27 http://localhost/debian/ sid/main libx11-6 amd64 2:1.4.4-1 [889 kB]
Get:28 http://localhost/debian/ sid/main libxt6 amd64 1:1.1.1-2 [207 kB]
Get:29 http://localhost/debian/ sid/main libaudio2 amd64 1.9.2-9 [85.4 kB]
Get:30 http://localhost/debian/ sid/main librtmp0 amd64 2.4~20110711.gitc28f1bab-1 [61.4 kB]
Get:31 http://localhost/debian/ sid/main libssl1.0.0 amd64 1.0.0d-3 [1141 kB]
Get:32 http://localhost/debian/ sid/main openssl amd64 1.0.0d-3 [678 kB]
Get:33 http://localhost/debian/ sid/main ca-certificates all 20110502 [176 kB]
Get:34 http://localhost/debian/ sid/main libcurl3-gnutls amd64 7.21.7-1 [297 kB]
Get:35 http://localhost/debian/ sid/main libexpat1 amd64 2.0.1-7 [137 kB]
Get:36 http://localhost/debian/ sid/main libfreetype6 amd64 2.4.6-2 [435 kB]
Get:37 http://localhost/debian/ sid/main ucf all 3.0025+nmu2 [70.6 kB]
Get:38 http://localhost/debian/ sid/main ttf-dejavu-core all 2.33-2 [1552 kB]
Get:39 http://localhost/debian/ sid/main fontconfig-config all 2.8.0-3 [221 kB]
Get:40 http://localhost/debian/ sid/main libfontconfig1 amd64 2.8.0-3 [282 kB]
Get:41 http://localhost/debian/ sid/main libgfortran3 amd64 4.6.1-7 [358 kB]
Get:42 http://localhost/debian/ sid/main libjpeg62 amd64 6b1-2 [94.1 kB]
Get:43 http://localhost/debian/ sid/main liblcms1 amd64 1.19.dfsg-1 [111 kB]
Get:44 http://localhost/debian/ sid/main libmng1 amd64 1.0.10-2 [235 kB]
Get:45 http://localhost/debian/ sid/main libpng12-0 amd64 1.2.46-3 [188 kB]
Get:46 http://localhost/debian/ sid/main libxfixes3 amd64 1:5.0-4 [21.5 kB]
Get:47 http://localhost/debian/ sid/main libxrender1 amd64 1:0.9.6-2 [31.5 kB]
Get:48 http://localhost/debian/ sid/main libxcursor1 amd64 1:1.1.12-1 [26.8 kB]
Get:49 http://localhost/debian/ sid/main libxext6 amd64 2:1.3.0-3 [52.3 kB]
Get:50 http://localhost/debian/ sid/main libxft2 amd64 2.2.0-3 [58.1 kB]
Get:51 http://localhost/debian/ sid/main libxi6 amd64 2:1.4.3-3 [66.2 kB]
Get:52 http://localhost/debian/ sid/main libxinerama1 amd64 2:1.1.1-3 [15.9 kB]
Get:53 http://localhost/debian/ sid/main libxrandr2 amd64 2:1.3.2-2 [33.5 kB]
Get:54 http://localhost/debian/ sid/main libgnutlsxx27 amd64 2.12.7-6 [391 kB]
Get:55 http://localhost/debian/ sid/main bsdmainutils amd64 8.2.3 [208 kB]
Get:56 http://localhost/debian/ sid/main groff-base amd64 1.21-6 [1150 kB]
Get:57 http://localhost/debian/ sid/main libpopt0 amd64 1.16-1 [54.1 kB]
Get:58 http://localhost/debian/ sid/main man-db amd64 2.6.0.2-2 [1023 kB]
Get:59 http://localhost/debian/ sid/main libmagic1 amd64 5.04-5+b1 [233 kB]
Get:60 http://localhost/debian/ sid/main file amd64 5.04-5+b1 [49.8 kB]
Get:61 http://localhost/debian/ sid/main gettext-base amd64 0.18.1.1-4 [154 kB]
Get:62 http://localhost/debian/ sid/main libsqlite3-0 amd64 3.7.7-2 [420 kB]
Get:63 http://localhost/debian/ sid/main libxml2 amd64 2.7.8.dfsg-4 [892 kB]
Get:64 http://localhost/debian/ sid/main autotools-dev all 20110511.1 [73.8 kB]
Get:65 http://localhost/debian/ sid/main html2text amd64 1.3.2a-15 [103 kB]
Get:66 http://localhost/debian/ sid/main libglib2.0-0 amd64 2.28.6-1 [1648 kB]
Get:67 http://localhost/debian/ sid/main libcroco3 amd64 0.6.2-1 [125 kB]
Get:68 http://localhost/debian/ sid/main libunistring0 amd64 0.9.3-4 [437 kB]
Get:69 http://localhost/debian/ sid/main gettext amd64 0.18.1.1-4 [2079 kB]
Get:70 http://localhost/debian/ sid/main intltool-debian all 0.35.0+20060710.1 [30.8 kB]
Get:71 http://localhost/debian/ sid/main po-debconf all 1.0.16+nmu1 [223 kB]
Get:72 http://localhost/debian/ sid/main debhelper all 8.9.4 [561 kB]
Get:73 http://localhost/debian/ sid/main fontconfig amd64 2.8.0-3 [334 kB]
Get:74 http://localhost/debian/ sid/main comerr-dev amd64 2.1-1.42~WIP-2011-07-02-1 [42.4 kB]
Get:75 http://localhost/debian/ sid/main krb5-multidev amd64 1.9.1+dfsg-2 [115 kB]
Get:76 http://localhost/debian/ sid/main libicu44 amd64 4.4.2-2 [7065 kB]
Get:77 http://localhost/debian/ sid/main libboost1.46-dev amd64 1.46.1-7 [7832 kB]
Get:78 http://localhost/debian/ sid/main libboost-dev amd64 1.46.1.1 [2610 B]
Get:79 http://localhost/debian/ sid/main libgpg-error-dev amd64 1.10-0.3 [31.6 kB]
Get:80 http://localhost/debian/ sid/main libgcrypt11-dev amd64 1.4.6-9 [386 kB]
Get:81 http://localhost/debian/ sid/main zlib1g-dev amd64 1:1.2.3.4.dfsg-3 [192 kB]
Get:82 http://localhost/debian/ sid/main libtasn1-3-dev amd64 2.9-4 [384 kB]
Get:83 http://localhost/debian/ sid/main libgnutls-dev amd64 2.12.7-6 [916 kB]
Get:84 http://localhost/debian/ sid/main pkg-config amd64 0.26-1 [59.5 kB]
Get:85 http://localhost/debian/ sid/main libidn11-dev amd64 1.22-3 [731 kB]
Get:86 http://localhost/debian/ sid/main libkrb5-dev amd64 1.9.1+dfsg-2 [38.4 kB]
Get:87 http://localhost/debian/ sid/main libldap2-dev amd64 2.4.25-3 [1091 kB]
Get:88 http://localhost/debian/ sid/main libcurl4-gnutls-dev amd64 7.21.7-1 [1176 kB]
Get:89 http://localhost/debian/ sid/main libdap11 amd64 3.11.1-1 [549 kB]
Get:90 http://localhost/debian/ sid/main libdap-dev amd64 3.11.1-1 [783 kB]
Get:91 http://localhost/debian/ sid/main libdap10 amd64 3.10.2-2 [574 kB]
Get:92 http://localhost/debian/ sid/main libgeos-3.2.2 amd64 3.2.2-3 [595 kB]
Get:93 http://localhost/debian/ sid/main libgeos-c1 amd64 3.2.2-3 [136 kB]
Get:94 http://localhost/debian/ sid/main libgeos-dev amd64 3.2.2-3 [1328 kB]
Get:95 http://localhost/debian/ sid/main libgif4 amd64 4.1.6-9 [41.7 kB]
Get:96 http://localhost/debian/ sid/main libgif-dev amd64 4.1.6-9 [45.4 kB]
Get:97 http://localhost/debian/ sid/main libhdf5-serial-1.8.4 amd64 1.8.4-patch1-3 [1466 kB]
Get:98 http://localhost/debian/ sid/main libjpeg8 amd64 8c-2 [132 kB]
Get:99 http://localhost/debian/ sid/main libjpeg8-dev amd64 8c-2 [241 kB]
Get:100 http://localhost/debian/ sid/main libhdf5-serial-dev amd64 1.8.4-patch1-3 [2300 kB]
Get:101 http://localhost/debian/ sid/main libjasper1 amd64 1.900.1-10 [159 kB]
Get:102 http://localhost/debian/ sid/main libjasper-dev amd64 1.900.1-10 [568 kB]
Get:103 http://localhost/debian/ sid/main libltdl7 amd64 2.4-3 [345 kB]
Get:104 http://localhost/debian/ sid/main libltdl-dev amd64 2.4-3 [204 kB]
Get:105 http://localhost/debian/ sid/main mysql-common all 5.1.58-1 [75.0 kB]
Get:106 http://localhost/debian/ sid/main libmysqlclient16 amd64 5.1.58-1 [1983 kB]
Get:107 http://localhost/debian/ sid/main libmysqlclient-dev amd64 5.1.58-1 [3255 kB]
Get:108 http://localhost/debian/ sid/main libnetcdf6 amd64 1:4.1.1-5 [520 kB]
Get:109 http://localhost/debian/ sid/main libnetcdf-dev amd64 1:4.1.1-5 [660 kB]
Get:110 http://localhost/debian/ sid/main libqt3-mt amd64 3:3.3.8b-10 [3378 kB]
Get:111 http://localhost/debian/ sid/main odbcinst amd64 2.2.14p2-2 [39.1 kB]
Get:112 http://localhost/debian/ sid/main odbcinst1debian2 amd64 2.2.14p2-2 [78.6 kB]
Get:113 http://localhost/debian/ sid/main unixodbc amd64 2.2.14p2-2 [266 kB]
Get:114 http://localhost/debian/ sid/main libodbcinstq1c2 amd64 2.2.14p2-2 [187 kB]
Get:115 http://localhost/debian/ sid/main libpng12-dev amd64 1.2.46-3 [265 kB]
Get:116 http://localhost/debian/ sid/main libpq5 amd64 9.0.4-1+b1 [456 kB]
Get:117 http://localhost/debian/ sid/main libssl-dev amd64 1.0.0d-3 [1628 kB]
Get:118 http://localhost/debian/ sid/main libpq-dev amd64 9.0.4-1+b1 [539 kB]
Get:119 http://localhost/debian/ sid/main libsqlite3-dev amd64 3.7.7-2 [528 kB]
Get:120 http://localhost/debian/ sid/main libxerces-c28 amd64 2.8.0+deb1-2+b1 [1391 kB]
Get:121 http://localhost/debian/ sid/main libxerces-c2-dev amd64 2.8.0+deb1-2+b1 [773 kB]
Get:122 http://localhost/debian/ sid/main libepsilon0 amd64 0.9.1-2 [46.9 kB]
Get:123 http://localhost/debian/ sid/main libhdf4-0-alt amd64 4.2r4-12 [307 kB]
Get:124 http://localhost/debian/ sid/main proj-data amd64 4.7.0-1 [2936 kB]
Get:125 http://localhost/debian/ sid/main libproj0 amd64 4.7.0-1 [135 kB]
Get:126 http://localhost/debian/ sid/main libogdi3.2 amd64 3.2.0~beta2-7 [272 kB]
Get:127 http://localhost/debian/ sid/main libspatialite2 amd64 2.4.0~rc2-5+b1 [198 kB]
Get:128 http://localhost/debian/ sid/main libgdal1-1.7.0 amd64 1.7.3-5 [3384 kB]
Get:129 http://localhost/debian/ sid/main libhdf4-alt-dev amd64 4.2r4-12 [475 kB]
Get:130 http://localhost/debian/ sid/main unixodbc-dev amd64 2.2.14p2-2 [580 kB]
Get:131 http://localhost/debian/ sid/main libspatialite-dev amd64 2.4.0~rc2-5+b1 [211 kB]
Get:132 http://localhost/debian/ sid/main libgdal1-dev amd64 1.7.3-5 [4627 kB]
Get:133 http://localhost/debian/ sid/main libproj-dev amd64 4.7.0-1 [191 kB]
Extracting templates from packages: 22%
Extracting templates from packages: 44%
Extracting templates from packages: 67%
Extracting templates from packages: 89%
Extracting templates from packages: 100%
Preconfiguring packages ...
Fetched 80.6 MB in 1s (63.6 MB/s)
Selecting previously deselected package libpipeline1.
(Reading database ... 10769 files and directories currently installed.)
Unpacking libpipeline1 (from .../libpipeline1_1.2.0-3_amd64.deb) ...
Selecting previously deselected package libgpg-error0.
Unpacking libgpg-error0 (from .../libgpg-error0_1.10-0.3_amd64.deb) ...
Selecting previously deselected package libgcrypt11.
Unpacking libgcrypt11 (from .../libgcrypt11_1.4.6-9_amd64.deb) ...
Selecting previously deselected package libtasn1-3.
Unpacking libtasn1-3 (from .../libtasn1-3_2.9-4_amd64.deb) ...
Selecting previously deselected package libgnutls26.
Unpacking libgnutls26 (from .../libgnutls26_2.12.7-6_amd64.deb) ...
Selecting previously deselected package libgnutls-openssl27.
Unpacking libgnutls-openssl27 (from .../libgnutls-openssl27_2.12.7-6_amd64.deb) ...
Selecting previously deselected package libkeyutils1.
Unpacking libkeyutils1 (from .../libkeyutils1_1.5.2-1_amd64.deb) ...
Selecting previously deselected package libkrb5support0.
Unpacking libkrb5support0 (from .../libkrb5support0_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libk5crypto3.
Unpacking libk5crypto3 (from .../libk5crypto3_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libkrb5-3.
Unpacking libkrb5-3 (from .../libkrb5-3_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libgssapi-krb5-2.
Unpacking libgssapi-krb5-2 (from .../libgssapi-krb5-2_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libgssrpc4.
Unpacking libgssrpc4 (from .../libgssrpc4_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libidn11.
Unpacking libidn11 (from .../libidn11_1.22-3_amd64.deb) ...
Selecting previously deselected package libkadm5clnt-mit8.
Unpacking libkadm5clnt-mit8 (from .../libkadm5clnt-mit8_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libkdb5-5.
Unpacking libkdb5-5 (from .../libkdb5-5_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libkadm5srv-mit8.
Unpacking libkadm5srv-mit8 (from .../libkadm5srv-mit8_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libsasl2-2.
Unpacking libsasl2-2 (from .../libsasl2-2_2.1.24~rc1.dfsg1+cvs2011-05-23-6_amd64.deb) ...
Selecting previously deselected package libldap-2.4-2.
Unpacking libldap-2.4-2 (from .../libldap-2.4-2_2.4.25-3_amd64.deb) ...
Selecting previously deselected package libpcre3.
Unpacking libpcre3 (from .../libpcre3_8.12-4_amd64.deb) ...
Selecting previously deselected package libxau6.
Unpacking libxau6 (from .../libxau6_1%3a1.0.6-3_amd64.deb) ...
Selecting previously deselected package x11-common.
Unpacking x11-common (from .../x11-common_1%3a7.6+8_all.deb) ...
Selecting previously deselected package libice6.
Unpacking libice6 (from .../libice6_2%3a1.0.7-2_amd64.deb) ...
Selecting previously deselected package libsm6.
Unpacking libsm6 (from .../libsm6_2%3a1.2.0-2_amd64.deb) ...
Selecting previously deselected package libxdmcp6.
Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.1.0-3_amd64.deb) ...
Selecting previously deselected package libxcb1.
Unpacking libxcb1 (from .../libxcb1_1.7-3_amd64.deb) ...
Selecting previously deselected package libx11-data.
Unpacking libx11-data (from .../libx11-data_2%3a1.4.4-1_all.deb) ...
Selecting previously deselected package libx11-6.
Unpacking libx11-6 (from .../libx11-6_2%3a1.4.4-1_amd64.deb) ...
Selecting previously deselected package libxt6.
Unpacking libxt6 (from .../libxt6_1%3a1.1.1-2_amd64.deb) ...
Selecting previously deselected package libaudio2.
Unpacking libaudio2 (from .../libaudio2_1.9.2-9_amd64.deb) ...
Selecting previously deselected package librtmp0.
Unpacking librtmp0 (from .../librtmp0_2.4~20110711.gitc28f1bab-1_amd64.deb) ...
Selecting previously deselected package libssl1.0.0.
Unpacking libssl1.0.0 (from .../libssl1.0.0_1.0.0d-3_amd64.deb) ...
Selecting previously deselected package openssl.
Unpacking openssl (from .../openssl_1.0.0d-3_amd64.deb) ...
Selecting previously deselected package ca-certificates.
Unpacking ca-certificates (from .../ca-certificates_20110502_all.deb) ...
Selecting previously deselected package libcurl3-gnutls.
Unpacking libcurl3-gnutls (from .../libcurl3-gnutls_7.21.7-1_amd64.deb) ...
Selecting previously deselected package libexpat1.
Unpacking libexpat1 (from .../libexpat1_2.0.1-7_amd64.deb) ...
Selecting previously deselected package libfreetype6.
Unpacking libfreetype6 (from .../libfreetype6_2.4.6-2_amd64.deb) ...
Selecting previously deselected package ucf.
Unpacking ucf (from .../ucf_3.0025+nmu2_all.deb) ...
Moving old data out of the way
Selecting previously deselected package ttf-dejavu-core.
Unpacking ttf-dejavu-core (from .../ttf-dejavu-core_2.33-2_all.deb) ...
Selecting previously deselected package fontconfig-config.
Unpacking fontconfig-config (from .../fontconfig-config_2.8.0-3_all.deb) ...
Selecting previously deselected package libfontconfig1.
Unpacking libfontconfig1 (from .../libfontconfig1_2.8.0-3_amd64.deb) ...
Selecting previously deselected package libgfortran3.
Unpacking libgfortran3 (from .../libgfortran3_4.6.1-7_amd64.deb) ...
Selecting previously deselected package libjpeg62.
Unpacking libjpeg62 (from .../libjpeg62_6b1-2_amd64.deb) ...
Selecting previously deselected package liblcms1.
Unpacking liblcms1 (from .../liblcms1_1.19.dfsg-1_amd64.deb) ...
Selecting previously deselected package libmng1.
Unpacking libmng1 (from .../libmng1_1.0.10-2_amd64.deb) ...
Selecting previously deselected package libpng12-0.
Unpacking libpng12-0 (from .../libpng12-0_1.2.46-3_amd64.deb) ...
Selecting previously deselected package libxfixes3.
Unpacking libxfixes3 (from .../libxfixes3_1%3a5.0-4_amd64.deb) ...
Selecting previously deselected package libxrender1.
Unpacking libxrender1 (from .../libxrender1_1%3a0.9.6-2_amd64.deb) ...
Selecting previously deselected package libxcursor1.
Unpacking libxcursor1 (from .../libxcursor1_1%3a1.1.12-1_amd64.deb) ...
Selecting previously deselected package libxext6.
Unpacking libxext6 (from .../libxext6_2%3a1.3.0-3_amd64.deb) ...
Selecting previously deselected package libxft2.
Unpacking libxft2 (from .../libxft2_2.2.0-3_amd64.deb) ...
Selecting previously deselected package libxi6.
Unpacking libxi6 (from .../libxi6_2%3a1.4.3-3_amd64.deb) ...
Selecting previously deselected package libxinerama1.
Unpacking libxinerama1 (from .../libxinerama1_2%3a1.1.1-3_amd64.deb) ...
Selecting previously deselected package libxrandr2.
Unpacking libxrandr2 (from .../libxrandr2_2%3a1.3.2-2_amd64.deb) ...
Selecting previously deselected package libgnutlsxx27.
Unpacking libgnutlsxx27 (from .../libgnutlsxx27_2.12.7-6_amd64.deb) ...
Selecting previously deselected package bsdmainutils.
Unpacking bsdmainutils (from .../bsdmainutils_8.2.3_amd64.deb) ...
Selecting previously deselected package groff-base.
Unpacking groff-base (from .../groff-base_1.21-6_amd64.deb) ...
Selecting previously deselected package libpopt0.
Unpacking libpopt0 (from .../libpopt0_1.16-1_amd64.deb) ...
Selecting previously deselected package man-db.
Unpacking man-db (from .../man-db_2.6.0.2-2_amd64.deb) ...
Selecting previously deselected package libmagic1.
Unpacking libmagic1 (from .../libmagic1_5.04-5+b1_amd64.deb) ...
Selecting previously deselected package file.
Unpacking file (from .../file_5.04-5+b1_amd64.deb) ...
Selecting previously deselected package gettext-base.
Unpacking gettext-base (from .../gettext-base_0.18.1.1-4_amd64.deb) ...
Selecting previously deselected package libsqlite3-0.
Unpacking libsqlite3-0 (from .../libsqlite3-0_3.7.7-2_amd64.deb) ...
Selecting previously deselected package libxml2.
Unpacking libxml2 (from .../libxml2_2.7.8.dfsg-4_amd64.deb) ...
Selecting previously deselected package autotools-dev.
Unpacking autotools-dev (from .../autotools-dev_20110511.1_all.deb) ...
Selecting previously deselected package html2text.
Unpacking html2text (from .../html2text_1.3.2a-15_amd64.deb) ...
Selecting previously deselected package libglib2.0-0.
Unpacking libglib2.0-0 (from .../libglib2.0-0_2.28.6-1_amd64.deb) ...
Selecting previously deselected package libcroco3.
Unpacking libcroco3 (from .../libcroco3_0.6.2-1_amd64.deb) ...
Selecting previously deselected package libunistring0.
Unpacking libunistring0 (from .../libunistring0_0.9.3-4_amd64.deb) ...
Selecting previously deselected package gettext.
Unpacking gettext (from .../gettext_0.18.1.1-4_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+nmu1_all.deb) ...
Selecting previously deselected package debhelper.
Unpacking debhelper (from .../debhelper_8.9.4_all.deb) ...
Selecting previously deselected package fontconfig.
Unpacking fontconfig (from .../fontconfig_2.8.0-3_amd64.deb) ...
Selecting previously deselected package comerr-dev.
Unpacking comerr-dev (from .../comerr-dev_2.1-1.42~WIP-2011-07-02-1_amd64.deb) ...
Selecting previously deselected package krb5-multidev.
Unpacking krb5-multidev (from .../krb5-multidev_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libicu44.
Unpacking libicu44 (from .../libicu44_4.4.2-2_amd64.deb) ...
Selecting previously deselected package libboost1.46-dev.
Unpacking libboost1.46-dev (from .../libboost1.46-dev_1.46.1-7_amd64.deb) ...
Selecting previously deselected package libboost-dev.
Unpacking libboost-dev (from .../libboost-dev_1.46.1.1_amd64.deb) ...
Selecting previously deselected package libgpg-error-dev.
Unpacking libgpg-error-dev (from .../libgpg-error-dev_1.10-0.3_amd64.deb) ...
Selecting previously deselected package libgcrypt11-dev.
Unpacking libgcrypt11-dev (from .../libgcrypt11-dev_1.4.6-9_amd64.deb) ...
Selecting previously deselected package zlib1g-dev.
Unpacking zlib1g-dev (from .../zlib1g-dev_1%3a1.2.3.4.dfsg-3_amd64.deb) ...
Selecting previously deselected package libtasn1-3-dev.
Unpacking libtasn1-3-dev (from .../libtasn1-3-dev_2.9-4_amd64.deb) ...
Selecting previously deselected package libgnutls-dev.
Unpacking libgnutls-dev (from .../libgnutls-dev_2.12.7-6_amd64.deb) ...
Selecting previously deselected package pkg-config.
Unpacking pkg-config (from .../pkg-config_0.26-1_amd64.deb) ...
Selecting previously deselected package libidn11-dev.
Unpacking libidn11-dev (from .../libidn11-dev_1.22-3_amd64.deb) ...
Selecting previously deselected package libkrb5-dev.
Unpacking libkrb5-dev (from .../libkrb5-dev_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libldap2-dev.
Unpacking libldap2-dev (from .../libldap2-dev_2.4.25-3_amd64.deb) ...
Selecting previously deselected package libcurl4-gnutls-dev.
Unpacking libcurl4-gnutls-dev (from .../libcurl4-gnutls-dev_7.21.7-1_amd64.deb) ...
Selecting previously deselected package libdap11.
Unpacking libdap11 (from .../libdap11_3.11.1-1_amd64.deb) ...
Selecting previously deselected package libdap-dev.
Unpacking libdap-dev (from .../libdap-dev_3.11.1-1_amd64.deb) ...
Selecting previously deselected package libdap10.
Unpacking libdap10 (from .../libdap10_3.10.2-2_amd64.deb) ...
dpkg: error processing /var/cache/apt/archives/libdap10_3.10.2-2_amd64.deb (--unpack):
trying to overwrite '/usr/lib/libdapclient.so.3.1.0', which is also in package libdap11 3.11.1-1
configured to not write apport reports
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
Selecting previously deselected package libgeos-3.2.2.
Unpacking libgeos-3.2.2 (from .../libgeos-3.2.2_3.2.2-3_amd64.deb) ...
Selecting previously deselected package libgeos-c1.
Unpacking libgeos-c1 (from .../libgeos-c1_3.2.2-3_amd64.deb) ...
Selecting previously deselected package libgeos-dev.
Unpacking libgeos-dev (from .../libgeos-dev_3.2.2-3_amd64.deb) ...
Selecting previously deselected package libgif4.
Unpacking libgif4 (from .../libgif4_4.1.6-9_amd64.deb) ...
Selecting previously deselected package libgif-dev.
Unpacking libgif-dev (from .../libgif-dev_4.1.6-9_amd64.deb) ...
Selecting previously deselected package libhdf5-serial-1.8.4.
Unpacking libhdf5-serial-1.8.4 (from .../libhdf5-serial-1.8.4_1.8.4-patch1-3_amd64.deb) ...
Selecting previously deselected package libjpeg8.
Unpacking libjpeg8 (from .../libjpeg8_8c-2_amd64.deb) ...
Selecting previously deselected package libjpeg8-dev.
Unpacking libjpeg8-dev (from .../libjpeg8-dev_8c-2_amd64.deb) ...
Selecting previously deselected package libhdf5-serial-dev.
Unpacking libhdf5-serial-dev (from .../libhdf5-serial-dev_1.8.4-patch1-3_amd64.deb) ...
Selecting previously deselected package libjasper1.
Unpacking libjasper1 (from .../libjasper1_1.900.1-10_amd64.deb) ...
Selecting previously deselected package libjasper-dev.
Unpacking libjasper-dev (from .../libjasper-dev_1.900.1-10_amd64.deb) ...
Selecting previously deselected package libltdl7.
Unpacking libltdl7 (from .../libltdl7_2.4-3_amd64.deb) ...
Selecting previously deselected package libltdl-dev.
Unpacking libltdl-dev (from .../libltdl-dev_2.4-3_amd64.deb) ...
Selecting previously deselected package mysql-common.
Unpacking mysql-common (from .../mysql-common_5.1.58-1_all.deb) ...
Selecting previously deselected package libmysqlclient16.
Unpacking libmysqlclient16 (from .../libmysqlclient16_5.1.58-1_amd64.deb) ...
Selecting previously deselected package libmysqlclient-dev.
Unpacking libmysqlclient-dev (from .../libmysqlclient-dev_5.1.58-1_amd64.deb) ...
Selecting previously deselected package libnetcdf6.
Unpacking libnetcdf6 (from .../libnetcdf6_1%3a4.1.1-5_amd64.deb) ...
Selecting previously deselected package libnetcdf-dev.
Unpacking libnetcdf-dev (from .../libnetcdf-dev_1%3a4.1.1-5_amd64.deb) ...
Selecting previously deselected package libqt3-mt.
Unpacking libqt3-mt (from .../libqt3-mt_3%3a3.3.8b-10_amd64.deb) ...
Selecting previously deselected package odbcinst.
Unpacking odbcinst (from .../odbcinst_2.2.14p2-2_amd64.deb) ...
Selecting previously deselected package odbcinst1debian2.
Unpacking odbcinst1debian2 (from .../odbcinst1debian2_2.2.14p2-2_amd64.deb) ...
Selecting previously deselected package unixodbc.
Unpacking unixodbc (from .../unixodbc_2.2.14p2-2_amd64.deb) ...
Selecting previously deselected package libodbcinstq1c2.
Unpacking libodbcinstq1c2 (from .../libodbcinstq1c2_2.2.14p2-2_amd64.deb) ...
Selecting previously deselected package libpng12-dev.
Unpacking libpng12-dev (from .../libpng12-dev_1.2.46-3_amd64.deb) ...
Selecting previously deselected package libpq5.
Unpacking libpq5 (from .../libpq5_9.0.4-1+b1_amd64.deb) ...
Selecting previously deselected package libssl-dev.
Unpacking libssl-dev (from .../libssl-dev_1.0.0d-3_amd64.deb) ...
Selecting previously deselected package libpq-dev.
Unpacking libpq-dev (from .../libpq-dev_9.0.4-1+b1_amd64.deb) ...
Selecting previously deselected package libsqlite3-dev.
Unpacking libsqlite3-dev (from .../libsqlite3-dev_3.7.7-2_amd64.deb) ...
Selecting previously deselected package libxerces-c28.
Unpacking libxerces-c28 (from .../libxerces-c28_2.8.0+deb1-2+b1_amd64.deb) ...
Selecting previously deselected package libxerces-c2-dev.
Unpacking libxerces-c2-dev (from .../libxerces-c2-dev_2.8.0+deb1-2+b1_amd64.deb) ...
Selecting previously deselected package libepsilon0.
Unpacking libepsilon0 (from .../libepsilon0_0.9.1-2_amd64.deb) ...
Selecting previously deselected package libhdf4-0-alt.
Unpacking libhdf4-0-alt (from .../libhdf4-0-alt_4.2r4-12_amd64.deb) ...
Selecting previously deselected package proj-data.
Unpacking proj-data (from .../proj-data_4.7.0-1_amd64.deb) ...
Selecting previously deselected package libproj0.
Unpacking libproj0 (from .../libproj0_4.7.0-1_amd64.deb) ...
Selecting previously deselected package libogdi3.2.
Unpacking libogdi3.2 (from .../libogdi3.2_3.2.0~beta2-7_amd64.deb) ...
Selecting previously deselected package libspatialite2.
Unpacking libspatialite2 (from .../libspatialite2_2.4.0~rc2-5+b1_amd64.deb) ...
Selecting previously deselected package libgdal1-1.7.0.
Unpacking libgdal1-1.7.0 (from .../libgdal1-1.7.0_1.7.3-5_amd64.deb) ...
Selecting previously deselected package libhdf4-alt-dev.
Unpacking libhdf4-alt-dev (from .../libhdf4-alt-dev_4.2r4-12_amd64.deb) ...
Selecting previously deselected package unixodbc-dev.
Unpacking unixodbc-dev (from .../unixodbc-dev_2.2.14p2-2_amd64.deb) ...
Selecting previously deselected package libspatialite-dev.
Unpacking libspatialite-dev (from .../libspatialite-dev_2.4.0~rc2-5+b1_amd64.deb) ...
Selecting previously deselected package libgdal1-dev.
Unpacking libgdal1-dev (from .../libgdal1-dev_1.7.3-5_amd64.deb) ...
Selecting previously deselected package libproj-dev.
Unpacking libproj-dev (from .../libproj-dev_4.7.0-1_amd64.deb) ...
Selecting previously deselected package sbuild-build-depends-dans-gdal-scripts-dummy.
Unpacking sbuild-build-depends-dans-gdal-scripts-dummy (from .../sbuild-build-depends-dans-gdal-scripts-dummy.deb) ...
Processing triggers for install-info ...
Errors were encountered while processing:
/var/cache/apt/archives/libdap10_3.10.2-2_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
apt-get failed.
excerpt for mail:
┌──────────────────────────────────────────────────────────────────────────────┐
│ Install dans-gdal-scripts build dependencies (apt-based resolver) │
└──────────────────────────────────────────────────────────────────────────────┘
Installing build dependencies
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
autotools-dev bsdmainutils ca-certificates comerr-dev debhelper file
fontconfig fontconfig-config gettext gettext-base groff-base html2text
intltool-debian krb5-multidev libaudio2 libboost-dev libboost1.46-dev
libcroco3 libcurl3-gnutls libcurl4-gnutls-dev libdap-dev libdap10 libdap11
libepsilon0 libexpat1 libfontconfig1 libfreetype6 libgcrypt11
libgcrypt11-dev libgdal1-1.7.0 libgdal1-dev libgeos-3.2.2 libgeos-c1
libgeos-dev libgfortran3 libgif-dev libgif4 libglib2.0-0 libgnutls-dev
libgnutls-openssl27 libgnutls26 libgnutlsxx27 libgpg-error-dev libgpg-error0
libgssapi-krb5-2 libgssrpc4 libhdf4-0-alt libhdf4-alt-dev
libhdf5-serial-1.8.4 libhdf5-serial-dev libice6 libicu44 libidn11
libidn11-dev libjasper-dev libjasper1 libjpeg62 libjpeg8 libjpeg8-dev
libk5crypto3 libkadm5clnt-mit8 libkadm5srv-mit8 libkdb5-5 libkeyutils1
libkrb5-3 libkrb5-dev libkrb5support0 liblcms1 libldap-2.4-2 libldap2-dev
libltdl-dev libltdl7 libmagic1 libmng1 libmysqlclient-dev libmysqlclient16
libnetcdf-dev libnetcdf6 libodbcinstq1c2 libogdi3.2 libpcre3 libpipeline1
libpng12-0 libpng12-dev libpopt0 libpq-dev libpq5 libproj-dev libproj0
libqt3-mt librtmp0 libsasl2-2 libsm6 libspatialite-dev libspatialite2
libsqlite3-0 libsqlite3-dev libssl-dev libssl1.0.0 libtasn1-3 libtasn1-3-dev
libunistring0 libx11-6 libx11-data libxau6 libxcb1 libxcursor1 libxdmcp6
libxerces-c2-dev libxerces-c28 libxext6 libxfixes3 libxft2 libxi6
libxinerama1 libxml2 libxrandr2 libxrender1 libxt6 man-db mysql-common
odbcinst odbcinst1debian2 openssl pkg-config po-debconf proj-data
ttf-dejavu-core ucf unixodbc unixodbc-dev x11-common zlib1g-dev
Suggested packages:
wamerican wordlist whois vacation doc-base dh-make defoma gettext-doc groff
krb5-doc nas libboost1.46-doc libboost-date-time1.46-dev
libboost-filesystem1.46-dev libboost-graph-parallel1.46-dev
libboost-graph1.46-dev libboost-iostreams1.46-dev libboost-math1.46-dev
libboost-mpi1.46-dev libboost-program-options1.46-dev
libboost-python1.46-dev libboost-random1.46-dev libboost-regex1.46-dev
libboost-serialization1.46-dev libboost-signals1.46-dev
libboost-system1.46-dev libboost-test1.46-dev libboost-thread1.46-dev
libboost-wave1.46-dev xsltproc doxygen docbook-xml docbook-xsl default-jdk
fop libcurl3-dbg rng-tools libgcrypt11-doc libgdal-doc gnutls-doc gnutls-bin
guile-gnutls krb5-user libhdf4-doc hdf4-tools libnetcdf4 libhdf5-doc
libjasper-runtime liblcms-utils libtool-doc netcdf-bin netcdf-doc ogdi-bin
postgresql-doc-9.0 libqt3-mt-psql libqt3-mt-mysql libqt3-mt-odbc sqlite3-doc
libxerces-c2-doc www-browser libmail-box-perl libmyodbc odbc-postgresql
tdsodbc unixodbc-bin libqt3-mt-dev
Recommended packages:
curl wget lynx-cur autopoint libxml2-dev proj-bin libglib2.0-data
shared-mime-info libtool libgl1-mesa-glx libgl1 libglu1-mesa libglu1 libxmu6
libsasl2-modules libssl-doc xml-core libmail-sendmail-perl
The following NEW packages will be installed:
autotools-dev bsdmainutils ca-certificates comerr-dev debhelper file
fontconfig fontconfig-config gettext gettext-base groff-base html2text
intltool-debian krb5-multidev libaudio2 libboost-dev libboost1.46-dev
libcroco3 libcurl3-gnutls libcurl4-gnutls-dev libdap-dev libdap10 libdap11
libepsilon0 libexpat1 libfontconfig1 libfreetype6 libgcrypt11
libgcrypt11-dev libgdal1-1.7.0 libgdal1-dev libgeos-3.2.2 libgeos-c1
libgeos-dev libgfortran3 libgif-dev libgif4 libglib2.0-0 libgnutls-dev
libgnutls-openssl27 libgnutls26 libgnutlsxx27 libgpg-error-dev libgpg-error0
libgssapi-krb5-2 libgssrpc4 libhdf4-0-alt libhdf4-alt-dev
libhdf5-serial-1.8.4 libhdf5-serial-dev libice6 libicu44 libidn11
libidn11-dev libjasper-dev libjasper1 libjpeg62 libjpeg8 libjpeg8-dev
libk5crypto3 libkadm5clnt-mit8 libkadm5srv-mit8 libkdb5-5 libkeyutils1
libkrb5-3 libkrb5-dev libkrb5support0 liblcms1 libldap-2.4-2 libldap2-dev
libltdl-dev libltdl7 libmagic1 libmng1 libmysqlclient-dev libmysqlclient16
libnetcdf-dev libnetcdf6 libodbcinstq1c2 libogdi3.2 libpcre3 libpipeline1
libpng12-0 libpng12-dev libpopt0 libpq-dev libpq5 libproj-dev libproj0
libqt3-mt librtmp0 libsasl2-2 libsm6 libspatialite-dev libspatialite2
libsqlite3-0 libsqlite3-dev libssl-dev libssl1.0.0 libtasn1-3 libtasn1-3-dev
libunistring0 libx11-6 libx11-data libxau6 libxcb1 libxcursor1 libxdmcp6
libxerces-c2-dev libxerces-c28 libxext6 libxfixes3 libxft2 libxi6
libxinerama1 libxml2 libxrandr2 libxrender1 libxt6 man-db mysql-common
odbcinst odbcinst1debian2 openssl pkg-config po-debconf proj-data
sbuild-build-depends-dans-gdal-scripts-dummy ttf-dejavu-core ucf unixodbc
unixodbc-dev x11-common zlib1g-dev
0 upgraded, 134 newly installed, 0 to remove and 0 not upgraded.
Need to get 80.6 MB/80.6 MB of archives.
After this operation, 303 MB of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
libpipeline1 libgpg-error0 libgcrypt11 libtasn1-3 libgnutls26
libgnutls-openssl27 libkeyutils1 libkrb5support0 libk5crypto3 libkrb5-3
libgssapi-krb5-2 libgssrpc4 libidn11 libkadm5clnt-mit8 libkdb5-5
libkadm5srv-mit8 libsasl2-2 libldap-2.4-2 libpcre3 libxau6 x11-common
libice6 libsm6 libxdmcp6 libxcb1 libx11-data libx11-6 libxt6 libaudio2
librtmp0 libssl1.0.0 openssl ca-certificates libcurl3-gnutls libexpat1
libfreetype6 ucf ttf-dejavu-core fontconfig-config libfontconfig1
libgfortran3 libjpeg62 liblcms1 libmng1 libpng12-0 libxfixes3 libxrender1
libxcursor1 libxext6 libxft2 libxi6 libxinerama1 libxrandr2 libgnutlsxx27
bsdmainutils groff-base libpopt0 man-db libmagic1 file gettext-base
libsqlite3-0 libxml2 autotools-dev html2text libglib2.0-0 libcroco3
libunistring0 gettext intltool-debian po-debconf debhelper fontconfig
comerr-dev krb5-multidev libicu44 libboost1.46-dev libboost-dev
libgpg-error-dev libgcrypt11-dev zlib1g-dev libtasn1-3-dev libgnutls-dev
pkg-config libidn11-dev libkrb5-dev libldap2-dev libcurl4-gnutls-dev
libdap11 libdap-dev libdap10 libgeos-3.2.2 libgeos-c1 libgeos-dev libgif4
libgif-dev libhdf5-serial-1.8.4 libjpeg8 libjpeg8-dev libhdf5-serial-dev
libjasper1 libjasper-dev libltdl7 libltdl-dev mysql-common libmysqlclient16
libmysqlclient-dev libnetcdf6 libnetcdf-dev libqt3-mt odbcinst
odbcinst1debian2 unixodbc libodbcinstq1c2 libpng12-dev libpq5 libssl-dev
libpq-dev libsqlite3-dev libxerces-c28 libxerces-c2-dev libepsilon0
libhdf4-0-alt proj-data libproj0 libogdi3.2 libspatialite2 libgdal1-1.7.0
libhdf4-alt-dev unixodbc-dev libspatialite-dev libgdal1-dev libproj-dev
sbuild-build-depends-dans-gdal-scripts-dummy
Authentication warning overridden.
Get:1 http://localhost/debian/ sid/main libpipeline1 amd64 1.2.0-3 [37.9 kB]
Get:2 http://localhost/debian/ sid/main libgpg-error0 amd64 1.10-0.3 [68.7 kB]
Get:3 http://localhost/debian/ sid/main libgcrypt11 amd64 1.4.6-9 [285 kB]
Get:4 http://localhost/debian/ sid/main libtasn1-3 amd64 2.9-4 [63.9 kB]
Get:5 http://localhost/debian/ sid/main libgnutls26 amd64 2.12.7-6 [785 kB]
Get:6 http://localhost/debian/ sid/main libgnutls-openssl27 amd64 2.12.7-6 [390 kB]
Get:7 http://localhost/debian/ sid/main libkeyutils1 amd64 1.5.2-1 [8772 B]
Get:8 http://localhost/debian/ sid/main libkrb5support0 amd64 1.9.1+dfsg-2 [47.1 kB]
Get:9 http://localhost/debian/ sid/main libk5crypto3 amd64 1.9.1+dfsg-2 [111 kB]
Get:10 http://localhost/debian/ sid/main libkrb5-3 amd64 1.9.1+dfsg-2 [381 kB]
Get:11 http://localhost/debian/ sid/main libgssapi-krb5-2 amd64 1.9.1+dfsg-2 [147 kB]
Get:12 http://localhost/debian/ sid/main libgssrpc4 amd64 1.9.1+dfsg-2 [85.4 kB]
Get:13 http://localhost/debian/ sid/main libidn11 amd64 1.22-3 [165 kB]
Get:14 http://localhost/debian/ sid/main libkadm5clnt-mit8 amd64 1.9.1+dfsg-2 [64.9 kB]
Get:15 http://localhost/debian/ sid/main libkdb5-5 amd64 1.9.1+dfsg-2 [63.0 kB]
Get:16 http://localhost/debian/ sid/main libkadm5srv-mit8 amd64 1.9.1+dfsg-2 [81.1 kB]
Get:17 http://localhost/debian/ sid/main libsasl2-2 amd64 2.1.24~rc1.dfsg1+cvs2011-05-23-6 [119 kB]
Get:18 http://localhost/debian/ sid/main libldap-2.4-2 amd64 2.4.25-3 [235 kB]
Get:19 http://localhost/debian/ sid/main libpcre3 amd64 8.12-4 [225 kB]
Get:20 http://localhost/debian/ sid/main libxau6 amd64 1:1.0.6-3 [17.0 kB]
Get:21 http://localhost/debian/ sid/main x11-common all 1:7.6+8 [276 kB]
Get:22 http://localhost/debian/ sid/main libice6 amd64 2:1.0.7-2 [56.5 kB]
Get:23 http://localhost/debian/ sid/main libsm6 amd64 2:1.2.0-2 [29.8 kB]
Get:24 http://localhost/debian/ sid/main libxdmcp6 amd64 1:1.1.0-3 [22.9 kB]
Get:25 http://localhost/debian/ sid/main libxcb1 amd64 1.7-3 [45.4 kB]
Get:26 http://localhost/debian/ sid/main libx11-data all 2:1.4.4-1 [183 kB]
Get:27 http://localhost/debian/ sid/main libx11-6 amd64 2:1.4.4-1 [889 kB]
Get:28 http://localhost/debian/ sid/main libxt6 amd64 1:1.1.1-2 [207 kB]
Get:29 http://localhost/debian/ sid/main libaudio2 amd64 1.9.2-9 [85.4 kB]
Get:30 http://localhost/debian/ sid/main librtmp0 amd64 2.4~20110711.gitc28f1bab-1 [61.4 kB]
Get:31 http://localhost/debian/ sid/main libssl1.0.0 amd64 1.0.0d-3 [1141 kB]
Get:32 http://localhost/debian/ sid/main openssl amd64 1.0.0d-3 [678 kB]
Get:33 http://localhost/debian/ sid/main ca-certificates all 20110502 [176 kB]
Get:34 http://localhost/debian/ sid/main libcurl3-gnutls amd64 7.21.7-1 [297 kB]
Get:35 http://localhost/debian/ sid/main libexpat1 amd64 2.0.1-7 [137 kB]
Get:36 http://localhost/debian/ sid/main libfreetype6 amd64 2.4.6-2 [435 kB]
Get:37 http://localhost/debian/ sid/main ucf all 3.0025+nmu2 [70.6 kB]
Get:38 http://localhost/debian/ sid/main ttf-dejavu-core all 2.33-2 [1552 kB]
Get:39 http://localhost/debian/ sid/main fontconfig-config all 2.8.0-3 [221 kB]
Get:40 http://localhost/debian/ sid/main libfontconfig1 amd64 2.8.0-3 [282 kB]
Get:41 http://localhost/debian/ sid/main libgfortran3 amd64 4.6.1-7 [358 kB]
Get:42 http://localhost/debian/ sid/main libjpeg62 amd64 6b1-2 [94.1 kB]
Get:43 http://localhost/debian/ sid/main liblcms1 amd64 1.19.dfsg-1 [111 kB]
Get:44 http://localhost/debian/ sid/main libmng1 amd64 1.0.10-2 [235 kB]
Get:45 http://localhost/debian/ sid/main libpng12-0 amd64 1.2.46-3 [188 kB]
Get:46 http://localhost/debian/ sid/main libxfixes3 amd64 1:5.0-4 [21.5 kB]
Get:47 http://localhost/debian/ sid/main libxrender1 amd64 1:0.9.6-2 [31.5 kB]
Get:48 http://localhost/debian/ sid/main libxcursor1 amd64 1:1.1.12-1 [26.8 kB]
Get:49 http://localhost/debian/ sid/main libxext6 amd64 2:1.3.0-3 [52.3 kB]
Get:50 http://localhost/debian/ sid/main libxft2 amd64 2.2.0-3 [58.1 kB]
Get:51 http://localhost/debian/ sid/main libxi6 amd64 2:1.4.3-3 [66.2 kB]
Get:52 http://localhost/debian/ sid/main libxinerama1 amd64 2:1.1.1-3 [15.9 kB]
Get:53 http://localhost/debian/ sid/main libxrandr2 amd64 2:1.3.2-2 [33.5 kB]
Get:54 http://localhost/debian/ sid/main libgnutlsxx27 amd64 2.12.7-6 [391 kB]
Get:55 http://localhost/debian/ sid/main bsdmainutils amd64 8.2.3 [208 kB]
Get:56 http://localhost/debian/ sid/main groff-base amd64 1.21-6 [1150 kB]
Get:57 http://localhost/debian/ sid/main libpopt0 amd64 1.16-1 [54.1 kB]
Get:58 http://localhost/debian/ sid/main man-db amd64 2.6.0.2-2 [1023 kB]
Get:59 http://localhost/debian/ sid/main libmagic1 amd64 5.04-5+b1 [233 kB]
Get:60 http://localhost/debian/ sid/main file amd64 5.04-5+b1 [49.8 kB]
Get:61 http://localhost/debian/ sid/main gettext-base amd64 0.18.1.1-4 [154 kB]
Get:62 http://localhost/debian/ sid/main libsqlite3-0 amd64 3.7.7-2 [420 kB]
Get:63 http://localhost/debian/ sid/main libxml2 amd64 2.7.8.dfsg-4 [892 kB]
Get:64 http://localhost/debian/ sid/main autotools-dev all 20110511.1 [73.8 kB]
Get:65 http://localhost/debian/ sid/main html2text amd64 1.3.2a-15 [103 kB]
Get:66 http://localhost/debian/ sid/main libglib2.0-0 amd64 2.28.6-1 [1648 kB]
Get:67 http://localhost/debian/ sid/main libcroco3 amd64 0.6.2-1 [125 kB]
Get:68 http://localhost/debian/ sid/main libunistring0 amd64 0.9.3-4 [437 kB]
Get:69 http://localhost/debian/ sid/main gettext amd64 0.18.1.1-4 [2079 kB]
Get:70 http://localhost/debian/ sid/main intltool-debian all 0.35.0+20060710.1 [30.8 kB]
Get:71 http://localhost/debian/ sid/main po-debconf all 1.0.16+nmu1 [223 kB]
Get:72 http://localhost/debian/ sid/main debhelper all 8.9.4 [561 kB]
Get:73 http://localhost/debian/ sid/main fontconfig amd64 2.8.0-3 [334 kB]
Get:74 http://localhost/debian/ sid/main comerr-dev amd64 2.1-1.42~WIP-2011-07-02-1 [42.4 kB]
Get:75 http://localhost/debian/ sid/main krb5-multidev amd64 1.9.1+dfsg-2 [115 kB]
Get:76 http://localhost/debian/ sid/main libicu44 amd64 4.4.2-2 [7065 kB]
Get:77 http://localhost/debian/ sid/main libboost1.46-dev amd64 1.46.1-7 [7832 kB]
Get:78 http://localhost/debian/ sid/main libboost-dev amd64 1.46.1.1 [2610 B]
Get:79 http://localhost/debian/ sid/main libgpg-error-dev amd64 1.10-0.3 [31.6 kB]
Get:80 http://localhost/debian/ sid/main libgcrypt11-dev amd64 1.4.6-9 [386 kB]
Get:81 http://localhost/debian/ sid/main zlib1g-dev amd64 1:1.2.3.4.dfsg-3 [192 kB]
Get:82 http://localhost/debian/ sid/main libtasn1-3-dev amd64 2.9-4 [384 kB]
Get:83 http://localhost/debian/ sid/main libgnutls-dev amd64 2.12.7-6 [916 kB]
Get:84 http://localhost/debian/ sid/main pkg-config amd64 0.26-1 [59.5 kB]
Get:85 http://localhost/debian/ sid/main libidn11-dev amd64 1.22-3 [731 kB]
Get:86 http://localhost/debian/ sid/main libkrb5-dev amd64 1.9.1+dfsg-2 [38.4 kB]
Get:87 http://localhost/debian/ sid/main libldap2-dev amd64 2.4.25-3 [1091 kB]
Get:88 http://localhost/debian/ sid/main libcurl4-gnutls-dev amd64 7.21.7-1 [1176 kB]
Get:89 http://localhost/debian/ sid/main libdap11 amd64 3.11.1-1 [549 kB]
Get:90 http://localhost/debian/ sid/main libdap-dev amd64 3.11.1-1 [783 kB]
Get:91 http://localhost/debian/ sid/main libdap10 amd64 3.10.2-2 [574 kB]
Get:92 http://localhost/debian/ sid/main libgeos-3.2.2 amd64 3.2.2-3 [595 kB]
Get:93 http://localhost/debian/ sid/main libgeos-c1 amd64 3.2.2-3 [136 kB]
Get:94 http://localhost/debian/ sid/main libgeos-dev amd64 3.2.2-3 [1328 kB]
Get:95 http://localhost/debian/ sid/main libgif4 amd64 4.1.6-9 [41.7 kB]
Get:96 http://localhost/debian/ sid/main libgif-dev amd64 4.1.6-9 [45.4 kB]
Get:97 http://localhost/debian/ sid/main libhdf5-serial-1.8.4 amd64 1.8.4-patch1-3 [1466 kB]
Get:98 http://localhost/debian/ sid/main libjpeg8 amd64 8c-2 [132 kB]
Get:99 http://localhost/debian/ sid/main libjpeg8-dev amd64 8c-2 [241 kB]
Get:100 http://localhost/debian/ sid/main libhdf5-serial-dev amd64 1.8.4-patch1-3 [2300 kB]
Get:101 http://localhost/debian/ sid/main libjasper1 amd64 1.900.1-10 [159 kB]
Get:102 http://localhost/debian/ sid/main libjasper-dev amd64 1.900.1-10 [568 kB]
Get:103 http://localhost/debian/ sid/main libltdl7 amd64 2.4-3 [345 kB]
Get:104 http://localhost/debian/ sid/main libltdl-dev amd64 2.4-3 [204 kB]
Get:105 http://localhost/debian/ sid/main mysql-common all 5.1.58-1 [75.0 kB]
Get:106 http://localhost/debian/ sid/main libmysqlclient16 amd64 5.1.58-1 [1983 kB]
Get:107 http://localhost/debian/ sid/main libmysqlclient-dev amd64 5.1.58-1 [3255 kB]
Get:108 http://localhost/debian/ sid/main libnetcdf6 amd64 1:4.1.1-5 [520 kB]
Get:109 http://localhost/debian/ sid/main libnetcdf-dev amd64 1:4.1.1-5 [660 kB]
Get:110 http://localhost/debian/ sid/main libqt3-mt amd64 3:3.3.8b-10 [3378 kB]
Get:111 http://localhost/debian/ sid/main odbcinst amd64 2.2.14p2-2 [39.1 kB]
Get:112 http://localhost/debian/ sid/main odbcinst1debian2 amd64 2.2.14p2-2 [78.6 kB]
Get:113 http://localhost/debian/ sid/main unixodbc amd64 2.2.14p2-2 [266 kB]
Get:114 http://localhost/debian/ sid/main libodbcinstq1c2 amd64 2.2.14p2-2 [187 kB]
Get:115 http://localhost/debian/ sid/main libpng12-dev amd64 1.2.46-3 [265 kB]
Get:116 http://localhost/debian/ sid/main libpq5 amd64 9.0.4-1+b1 [456 kB]
Get:117 http://localhost/debian/ sid/main libssl-dev amd64 1.0.0d-3 [1628 kB]
Get:118 http://localhost/debian/ sid/main libpq-dev amd64 9.0.4-1+b1 [539 kB]
Get:119 http://localhost/debian/ sid/main libsqlite3-dev amd64 3.7.7-2 [528 kB]
Get:120 http://localhost/debian/ sid/main libxerces-c28 amd64 2.8.0+deb1-2+b1 [1391 kB]
Get:121 http://localhost/debian/ sid/main libxerces-c2-dev amd64 2.8.0+deb1-2+b1 [773 kB]
Get:122 http://localhost/debian/ sid/main libepsilon0 amd64 0.9.1-2 [46.9 kB]
Get:123 http://localhost/debian/ sid/main libhdf4-0-alt amd64 4.2r4-12 [307 kB]
Get:124 http://localhost/debian/ sid/main proj-data amd64 4.7.0-1 [2936 kB]
Get:125 http://localhost/debian/ sid/main libproj0 amd64 4.7.0-1 [135 kB]
Get:126 http://localhost/debian/ sid/main libogdi3.2 amd64 3.2.0~beta2-7 [272 kB]
Get:127 http://localhost/debian/ sid/main libspatialite2 amd64 2.4.0~rc2-5+b1 [198 kB]
Get:128 http://localhost/debian/ sid/main libgdal1-1.7.0 amd64 1.7.3-5 [3384 kB]
Get:129 http://localhost/debian/ sid/main libhdf4-alt-dev amd64 4.2r4-12 [475 kB]
Get:130 http://localhost/debian/ sid/main unixodbc-dev amd64 2.2.14p2-2 [580 kB]
Get:131 http://localhost/debian/ sid/main libspatialite-dev amd64 2.4.0~rc2-5+b1 [211 kB]
Get:132 http://localhost/debian/ sid/main libgdal1-dev amd64 1.7.3-5 [4627 kB]
Get:133 http://localhost/debian/ sid/main libproj-dev amd64 4.7.0-1 [191 kB]
Extracting templates from packages: 22%
Extracting templates from packages: 44%
Extracting templates from packages: 67%
Extracting templates from packages: 89%
Extracting templates from packages: 100%
Preconfiguring packages ...
Fetched 80.6 MB in 1s (63.6 MB/s)
Selecting previously deselected package libpipeline1.
(Reading database ... 10769 files and directories currently installed.)
Unpacking libpipeline1 (from .../libpipeline1_1.2.0-3_amd64.deb) ...
Selecting previously deselected package libgpg-error0.
Unpacking libgpg-error0 (from .../libgpg-error0_1.10-0.3_amd64.deb) ...
Selecting previously deselected package libgcrypt11.
Unpacking libgcrypt11 (from .../libgcrypt11_1.4.6-9_amd64.deb) ...
Selecting previously deselected package libtasn1-3.
Unpacking libtasn1-3 (from .../libtasn1-3_2.9-4_amd64.deb) ...
Selecting previously deselected package libgnutls26.
Unpacking libgnutls26 (from .../libgnutls26_2.12.7-6_amd64.deb) ...
Selecting previously deselected package libgnutls-openssl27.
Unpacking libgnutls-openssl27 (from .../libgnutls-openssl27_2.12.7-6_amd64.deb) ...
Selecting previously deselected package libkeyutils1.
Unpacking libkeyutils1 (from .../libkeyutils1_1.5.2-1_amd64.deb) ...
Selecting previously deselected package libkrb5support0.
Unpacking libkrb5support0 (from .../libkrb5support0_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libk5crypto3.
Unpacking libk5crypto3 (from .../libk5crypto3_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libkrb5-3.
Unpacking libkrb5-3 (from .../libkrb5-3_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libgssapi-krb5-2.
Unpacking libgssapi-krb5-2 (from .../libgssapi-krb5-2_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libgssrpc4.
Unpacking libgssrpc4 (from .../libgssrpc4_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libidn11.
Unpacking libidn11 (from .../libidn11_1.22-3_amd64.deb) ...
Selecting previously deselected package libkadm5clnt-mit8.
Unpacking libkadm5clnt-mit8 (from .../libkadm5clnt-mit8_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libkdb5-5.
Unpacking libkdb5-5 (from .../libkdb5-5_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libkadm5srv-mit8.
Unpacking libkadm5srv-mit8 (from .../libkadm5srv-mit8_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libsasl2-2.
Unpacking libsasl2-2 (from .../libsasl2-2_2.1.24~rc1.dfsg1+cvs2011-05-23-6_amd64.deb) ...
Selecting previously deselected package libldap-2.4-2.
Unpacking libldap-2.4-2 (from .../libldap-2.4-2_2.4.25-3_amd64.deb) ...
Selecting previously deselected package libpcre3.
Unpacking libpcre3 (from .../libpcre3_8.12-4_amd64.deb) ...
Selecting previously deselected package libxau6.
Unpacking libxau6 (from .../libxau6_1%3a1.0.6-3_amd64.deb) ...
Selecting previously deselected package x11-common.
Unpacking x11-common (from .../x11-common_1%3a7.6+8_all.deb) ...
Selecting previously deselected package libice6.
Unpacking libice6 (from .../libice6_2%3a1.0.7-2_amd64.deb) ...
Selecting previously deselected package libsm6.
Unpacking libsm6 (from .../libsm6_2%3a1.2.0-2_amd64.deb) ...
Selecting previously deselected package libxdmcp6.
Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.1.0-3_amd64.deb) ...
Selecting previously deselected package libxcb1.
Unpacking libxcb1 (from .../libxcb1_1.7-3_amd64.deb) ...
Selecting previously deselected package libx11-data.
Unpacking libx11-data (from .../libx11-data_2%3a1.4.4-1_all.deb) ...
Selecting previously deselected package libx11-6.
Unpacking libx11-6 (from .../libx11-6_2%3a1.4.4-1_amd64.deb) ...
Selecting previously deselected package libxt6.
Unpacking libxt6 (from .../libxt6_1%3a1.1.1-2_amd64.deb) ...
Selecting previously deselected package libaudio2.
Unpacking libaudio2 (from .../libaudio2_1.9.2-9_amd64.deb) ...
Selecting previously deselected package librtmp0.
Unpacking librtmp0 (from .../librtmp0_2.4~20110711.gitc28f1bab-1_amd64.deb) ...
Selecting previously deselected package libssl1.0.0.
Unpacking libssl1.0.0 (from .../libssl1.0.0_1.0.0d-3_amd64.deb) ...
Selecting previously deselected package openssl.
Unpacking openssl (from .../openssl_1.0.0d-3_amd64.deb) ...
Selecting previously deselected package ca-certificates.
Unpacking ca-certificates (from .../ca-certificates_20110502_all.deb) ...
Selecting previously deselected package libcurl3-gnutls.
Unpacking libcurl3-gnutls (from .../libcurl3-gnutls_7.21.7-1_amd64.deb) ...
Selecting previously deselected package libexpat1.
Unpacking libexpat1 (from .../libexpat1_2.0.1-7_amd64.deb) ...
Selecting previously deselected package libfreetype6.
Unpacking libfreetype6 (from .../libfreetype6_2.4.6-2_amd64.deb) ...
Selecting previously deselected package ucf.
Unpacking ucf (from .../ucf_3.0025+nmu2_all.deb) ...
Moving old data out of the way
Selecting previously deselected package ttf-dejavu-core.
Unpacking ttf-dejavu-core (from .../ttf-dejavu-core_2.33-2_all.deb) ...
Selecting previously deselected package fontconfig-config.
Unpacking fontconfig-config (from .../fontconfig-config_2.8.0-3_all.deb) ...
Selecting previously deselected package libfontconfig1.
Unpacking libfontconfig1 (from .../libfontconfig1_2.8.0-3_amd64.deb) ...
Selecting previously deselected package libgfortran3.
Unpacking libgfortran3 (from .../libgfortran3_4.6.1-7_amd64.deb) ...
Selecting previously deselected package libjpeg62.
Unpacking libjpeg62 (from .../libjpeg62_6b1-2_amd64.deb) ...
Selecting previously deselected package liblcms1.
Unpacking liblcms1 (from .../liblcms1_1.19.dfsg-1_amd64.deb) ...
Selecting previously deselected package libmng1.
Unpacking libmng1 (from .../libmng1_1.0.10-2_amd64.deb) ...
Selecting previously deselected package libpng12-0.
Unpacking libpng12-0 (from .../libpng12-0_1.2.46-3_amd64.deb) ...
Selecting previously deselected package libxfixes3.
Unpacking libxfixes3 (from .../libxfixes3_1%3a5.0-4_amd64.deb) ...
Selecting previously deselected package libxrender1.
Unpacking libxrender1 (from .../libxrender1_1%3a0.9.6-2_amd64.deb) ...
Selecting previously deselected package libxcursor1.
Unpacking libxcursor1 (from .../libxcursor1_1%3a1.1.12-1_amd64.deb) ...
Selecting previously deselected package libxext6.
Unpacking libxext6 (from .../libxext6_2%3a1.3.0-3_amd64.deb) ...
Selecting previously deselected package libxft2.
Unpacking libxft2 (from .../libxft2_2.2.0-3_amd64.deb) ...
Selecting previously deselected package libxi6.
Unpacking libxi6 (from .../libxi6_2%3a1.4.3-3_amd64.deb) ...
Selecting previously deselected package libxinerama1.
Unpacking libxinerama1 (from .../libxinerama1_2%3a1.1.1-3_amd64.deb) ...
Selecting previously deselected package libxrandr2.
Unpacking libxrandr2 (from .../libxrandr2_2%3a1.3.2-2_amd64.deb) ...
Selecting previously deselected package libgnutlsxx27.
Unpacking libgnutlsxx27 (from .../libgnutlsxx27_2.12.7-6_amd64.deb) ...
Selecting previously deselected package bsdmainutils.
Unpacking bsdmainutils (from .../bsdmainutils_8.2.3_amd64.deb) ...
Selecting previously deselected package groff-base.
Unpacking groff-base (from .../groff-base_1.21-6_amd64.deb) ...
Selecting previously deselected package libpopt0.
Unpacking libpopt0 (from .../libpopt0_1.16-1_amd64.deb) ...
Selecting previously deselected package man-db.
Unpacking man-db (from .../man-db_2.6.0.2-2_amd64.deb) ...
Selecting previously deselected package libmagic1.
Unpacking libmagic1 (from .../libmagic1_5.04-5+b1_amd64.deb) ...
Selecting previously deselected package file.
Unpacking file (from .../file_5.04-5+b1_amd64.deb) ...
Selecting previously deselected package gettext-base.
Unpacking gettext-base (from .../gettext-base_0.18.1.1-4_amd64.deb) ...
Selecting previously deselected package libsqlite3-0.
Unpacking libsqlite3-0 (from .../libsqlite3-0_3.7.7-2_amd64.deb) ...
Selecting previously deselected package libxml2.
Unpacking libxml2 (from .../libxml2_2.7.8.dfsg-4_amd64.deb) ...
Selecting previously deselected package autotools-dev.
Unpacking autotools-dev (from .../autotools-dev_20110511.1_all.deb) ...
Selecting previously deselected package html2text.
Unpacking html2text (from .../html2text_1.3.2a-15_amd64.deb) ...
Selecting previously deselected package libglib2.0-0.
Unpacking libglib2.0-0 (from .../libglib2.0-0_2.28.6-1_amd64.deb) ...
Selecting previously deselected package libcroco3.
Unpacking libcroco3 (from .../libcroco3_0.6.2-1_amd64.deb) ...
Selecting previously deselected package libunistring0.
Unpacking libunistring0 (from .../libunistring0_0.9.3-4_amd64.deb) ...
Selecting previously deselected package gettext.
Unpacking gettext (from .../gettext_0.18.1.1-4_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+nmu1_all.deb) ...
Selecting previously deselected package debhelper.
Unpacking debhelper (from .../debhelper_8.9.4_all.deb) ...
Selecting previously deselected package fontconfig.
Unpacking fontconfig (from .../fontconfig_2.8.0-3_amd64.deb) ...
Selecting previously deselected package comerr-dev.
Unpacking comerr-dev (from .../comerr-dev_2.1-1.42~WIP-2011-07-02-1_amd64.deb) ...
Selecting previously deselected package krb5-multidev.
Unpacking krb5-multidev (from .../krb5-multidev_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libicu44.
Unpacking libicu44 (from .../libicu44_4.4.2-2_amd64.deb) ...
Selecting previously deselected package libboost1.46-dev.
Unpacking libboost1.46-dev (from .../libboost1.46-dev_1.46.1-7_amd64.deb) ...
Selecting previously deselected package libboost-dev.
Unpacking libboost-dev (from .../libboost-dev_1.46.1.1_amd64.deb) ...
Selecting previously deselected package libgpg-error-dev.
Unpacking libgpg-error-dev (from .../libgpg-error-dev_1.10-0.3_amd64.deb) ...
Selecting previously deselected package libgcrypt11-dev.
Unpacking libgcrypt11-dev (from .../libgcrypt11-dev_1.4.6-9_amd64.deb) ...
Selecting previously deselected package zlib1g-dev.
Unpacking zlib1g-dev (from .../zlib1g-dev_1%3a1.2.3.4.dfsg-3_amd64.deb) ...
Selecting previously deselected package libtasn1-3-dev.
Unpacking libtasn1-3-dev (from .../libtasn1-3-dev_2.9-4_amd64.deb) ...
Selecting previously deselected package libgnutls-dev.
Unpacking libgnutls-dev (from .../libgnutls-dev_2.12.7-6_amd64.deb) ...
Selecting previously deselected package pkg-config.
Unpacking pkg-config (from .../pkg-config_0.26-1_amd64.deb) ...
Selecting previously deselected package libidn11-dev.
Unpacking libidn11-dev (from .../libidn11-dev_1.22-3_amd64.deb) ...
Selecting previously deselected package libkrb5-dev.
Unpacking libkrb5-dev (from .../libkrb5-dev_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libldap2-dev.
Unpacking libldap2-dev (from .../libldap2-dev_2.4.25-3_amd64.deb) ...
Selecting previously deselected package libcurl4-gnutls-dev.
Unpacking libcurl4-gnutls-dev (from .../libcurl4-gnutls-dev_7.21.7-1_amd64.deb) ...
Selecting previously deselected package libdap11.
Unpacking libdap11 (from .../libdap11_3.11.1-1_amd64.deb) ...
Selecting previously deselected package libdap-dev.
Unpacking libdap-dev (from .../libdap-dev_3.11.1-1_amd64.deb) ...
Selecting previously deselected package libdap10.
Unpacking libdap10 (from .../libdap10_3.10.2-2_amd64.deb) ...
dpkg: error processing /var/cache/apt/archives/libdap10_3.10.2-2_amd64.deb (--unpack):
trying to overwrite '/usr/lib/libdapclient.so.3.1.0', which is also in package libdap11 3.11.1-1
configured to not write apport reports
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
Selecting previously deselected package libgeos-3.2.2.
Unpacking libgeos-3.2.2 (from .../libgeos-3.2.2_3.2.2-3_amd64.deb) ...
Selecting previously deselected package libgeos-c1.
Unpacking libgeos-c1 (from .../libgeos-c1_3.2.2-3_amd64.deb) ...
Selecting previously deselected package libgeos-dev.
Unpacking libgeos-dev (from .../libgeos-dev_3.2.2-3_amd64.deb) ...
Selecting previously deselected package libgif4.
Unpacking libgif4 (from .../libgif4_4.1.6-9_amd64.deb) ...
Selecting previously deselected package libgif-dev.
Unpacking libgif-dev (from .../libgif-dev_4.1.6-9_amd64.deb) ...
Selecting previously deselected package libhdf5-serial-1.8.4.
Unpacking libhdf5-serial-1.8.4 (from .../libhdf5-serial-1.8.4_1.8.4-patch1-3_amd64.deb) ...
Selecting previously deselected package libjpeg8.
Unpacking libjpeg8 (from .../libjpeg8_8c-2_amd64.deb) ...
Selecting previously deselected package libjpeg8-dev.
Unpacking libjpeg8-dev (from .../libjpeg8-dev_8c-2_amd64.deb) ...
Selecting previously deselected package libhdf5-serial-dev.
Unpacking libhdf5-serial-dev (from .../libhdf5-serial-dev_1.8.4-patch1-3_amd64.deb) ...
Selecting previously deselected package libjasper1.
Unpacking libjasper1 (from .../libjasper1_1.900.1-10_amd64.deb) ...
Selecting previously deselected package libjasper-dev.
Unpacking libjasper-dev (from .../libjasper-dev_1.900.1-10_amd64.deb) ...
Selecting previously deselected package libltdl7.
Unpacking libltdl7 (from .../libltdl7_2.4-3_amd64.deb) ...
Selecting previously deselected package libltdl-dev.
Unpacking libltdl-dev (from .../libltdl-dev_2.4-3_amd64.deb) ...
Selecting previously deselected package mysql-common.
Unpacking mysql-common (from .../mysql-common_5.1.58-1_all.deb) ...
Selecting previously deselected package libmysqlclient16.
Unpacking libmysqlclient16 (from .../libmysqlclient16_5.1.58-1_amd64.deb) ...
Selecting previously deselected package libmysqlclient-dev.
Unpacking libmysqlclient-dev (from .../libmysqlclient-dev_5.1.58-1_amd64.deb) ...
Selecting previously deselected package libnetcdf6.
Unpacking libnetcdf6 (from .../libnetcdf6_1%3a4.1.1-5_amd64.deb) ...
Selecting previously deselected package libnetcdf-dev.
Unpacking libnetcdf-dev (from .../libnetcdf-dev_1%3a4.1.1-5_amd64.deb) ...
Selecting previously deselected package libqt3-mt.
Unpacking libqt3-mt (from .../libqt3-mt_3%3a3.3.8b-10_amd64.deb) ...
Selecting previously deselected package odbcinst.
Unpacking odbcinst (from .../odbcinst_2.2.14p2-2_amd64.deb) ...
Selecting previously deselected package odbcinst1debian2.
Unpacking odbcinst1debian2 (from .../odbcinst1debian2_2.2.14p2-2_amd64.deb) ...
Selecting previously deselected package unixodbc.
Unpacking unixodbc (from .../unixodbc_2.2.14p2-2_amd64.deb) ...
Selecting previously deselected package libodbcinstq1c2.
Unpacking libodbcinstq1c2 (from .../libodbcinstq1c2_2.2.14p2-2_amd64.deb) ...
Selecting previously deselected package libpng12-dev.
Unpacking libpng12-dev (from .../libpng12-dev_1.2.46-3_amd64.deb) ...
Selecting previously deselected package libpq5.
Unpacking libpq5 (from .../libpq5_9.0.4-1+b1_amd64.deb) ...
Selecting previously deselected package libssl-dev.
Unpacking libssl-dev (from .../libssl-dev_1.0.0d-3_amd64.deb) ...
Selecting previously deselected package libpq-dev.
Unpacking libpq-dev (from .../libpq-dev_9.0.4-1+b1_amd64.deb) ...
Selecting previously deselected package libsqlite3-dev.
Unpacking libsqlite3-dev (from .../libsqlite3-dev_3.7.7-2_amd64.deb) ...
Selecting previously deselected package libxerces-c28.
Unpacking libxerces-c28 (from .../libxerces-c28_2.8.0+deb1-2+b1_amd64.deb) ...
Selecting previously deselected package libxerces-c2-dev.
Unpacking libxerces-c2-dev (from .../libxerces-c2-dev_2.8.0+deb1-2+b1_amd64.deb) ...
Selecting previously deselected package libepsilon0.
Unpacking libepsilon0 (from .../libepsilon0_0.9.1-2_amd64.deb) ...
Selecting previously deselected package libhdf4-0-alt.
Unpacking libhdf4-0-alt (from .../libhdf4-0-alt_4.2r4-12_amd64.deb) ...
Selecting previously deselected package proj-data.
Unpacking proj-data (from .../proj-data_4.7.0-1_amd64.deb) ...
Selecting previously deselected package libproj0.
Unpacking libproj0 (from .../libproj0_4.7.0-1_amd64.deb) ...
Selecting previously deselected package libogdi3.2.
Unpacking libogdi3.2 (from .../libogdi3.2_3.2.0~beta2-7_amd64.deb) ...
Selecting previously deselected package libspatialite2.
Unpacking libspatialite2 (from .../libspatialite2_2.4.0~rc2-5+b1_amd64.deb) ...
Selecting previously deselected package libgdal1-1.7.0.
Unpacking libgdal1-1.7.0 (from .../libgdal1-1.7.0_1.7.3-5_amd64.deb) ...
Selecting previously deselected package libhdf4-alt-dev.
Unpacking libhdf4-alt-dev (from .../libhdf4-alt-dev_4.2r4-12_amd64.deb) ...
Selecting previously deselected package unixodbc-dev.
Unpacking unixodbc-dev (from .../unixodbc-dev_2.2.14p2-2_amd64.deb) ...
Selecting previously deselected package libspatialite-dev.
Unpacking libspatialite-dev (from .../libspatialite-dev_2.4.0~rc2-5+b1_amd64.deb) ...
Selecting previously deselected package libgdal1-dev.
Unpacking libgdal1-dev (from .../libgdal1-dev_1.7.3-5_amd64.deb) ...
Selecting previously deselected package libproj-dev.
Unpacking libproj-dev (from .../libproj-dev_4.7.0-1_amd64.deb) ...
Selecting previously deselected package sbuild-build-depends-dans-gdal-scripts-dummy.
Unpacking sbuild-build-depends-dans-gdal-scripts-dummy (from .../sbuild-build-depends-dans-gdal-scripts-dummy.deb) ...
Processing triggers for install-info ...
Errors were encountered while processing:
/var/cache/apt/archives/libdap10_3.10.2-2_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
apt-get failed.
|