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
|
DC-Build-Header: python-wrapt 1.8.0-4 / 2014-07-19 05:44:17 +0000
DC-Task: source:python-wrapt version:1.8.0-4 architecture:any chroot:unstable esttime: logfile:/tmp/python-wrapt_1.8.0-4_unstable.log modes:
DC-Sbuild-call: su user -c 'sbuild -n -A -s --force-orig-source --apt-update -d unstable -v python-wrapt_1.8.0-4'
sbuild (Debian sbuild) 0.63.2 (18 Aug 2012) on ip-172-31-15-114.us-west-2.compute.internal
╔══════════════════════════════════════════════════════════════════════════════╗
║ python-wrapt 1.8.0-4 (amd64) 19 Jul 2014 05:44 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Package: python-wrapt
Version: 1.8.0-4
Source Version: 1.8.0-4
Distribution: unstable
Machine Architecture: amd64
Host Architecture: amd64
Build Architecture: amd64
I: NOTICE: Log filtering will replace 'build/python-wrapt-wPMz8_/python-wrapt-1.8.0' with '«PKGBUILDDIR»'
I: NOTICE: Log filtering will replace 'build/python-wrapt-wPMz8_' with '«BUILDDIR»'
I: NOTICE: Log filtering will replace 'var/lib/schroot/mount/unstable-amd64-sbuild-a6e4a098-555c-4838-a838-87b5b009e2e4' with '«CHROOT»'
┌──────────────────────────────────────────────────────────────────────────────┐
│ Update chroot │
└──────────────────────────────────────────────────────────────────────────────┘
Get:1 http://localhost:9999 unstable InRelease [206 kB]
Get:2 http://localhost:9999 unstable/main Sources/DiffIndex [7876 B]
Get:3 http://localhost:9999 unstable/main amd64 Packages/DiffIndex [7876 B]
Get:4 http://localhost:9999 unstable/main Translation-en/DiffIndex [7876 B]
Get:5 http://localhost:9999 unstable/main 2014-07-18-2054.40.pdiff [10.7 kB]
Get:6 http://localhost:9999 unstable/main 2014-07-19-0239.27.pdiff [1962 B]
Get:7 http://localhost:9999 unstable/main 2014-07-19-0239.27.pdiff [1962 B]
Get:8 http://localhost:9999 unstable/main amd64 2014-07-18-2054.40.pdiff [12.1 kB]
Get:9 http://localhost:9999 unstable/main amd64 2014-07-19-0239.27.pdiff [2840 B]
Get:10 http://localhost:9999 unstable/main 2014-07-18-2054.40.pdiff [735 B]
Get:11 http://localhost:9999 unstable/main amd64 2014-07-19-0239.27.pdiff [2840 B]
Get:12 http://localhost:9999 unstable/main 2014-07-18-2054.40.pdiff [735 B]
Fetched 258 kB in 6s (38.7 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
┌──────────────────────────────────────────────────────────────────────────────┐
│ Fetch source files │
└──────────────────────────────────────────────────────────────────────────────┘
Check APT
─────────
Checking available source versions...
Download source files with APT
──────────────────────────────
Reading package lists...
Building dependency tree...
Reading state information...
NOTICE: 'python-wrapt' packaging is maintained in the 'Git' version control system at:
git://anonscm.debian.org/openstack/python-wrapt.git
Need to get 93.4 kB of source archives.
Get:1 http://localhost:9999/debian/ unstable/main python-wrapt 1.8.0-4 (dsc) [2365 B]
Get:2 http://localhost:9999/debian/ unstable/main python-wrapt 1.8.0-4 (tar) [81.1 kB]
Get:3 http://localhost:9999/debian/ unstable/main python-wrapt 1.8.0-4 (diff) [9916 B]
Fetched 93.4 kB in 1s (88.1 kB/s)
Download complete and in download only mode
Check arch
──────────
Merged Build-Depends: build-essential, fakeroot
Filtered Build-Depends: build-essential, fakeroot
dpkg-deb: building package `sbuild-build-depends-core-dummy' in `/«BUILDDIR»/resolver-cRJRuq/apt_archive/sbuild-build-depends-core-dummy.deb'.
OK
Reading package lists...
┌──────────────────────────────────────────────────────────────────────────────┐
│ Install core build dependencies (apt-based resolver) │
└──────────────────────────────────────────────────────────────────────────────┘
Installing build dependencies
Reading package lists...
Building dependency tree...
Reading state information...
The following NEW packages will be installed:
sbuild-build-depends-core-dummy
debconf: delaying package configuration, since apt-utils is not installed
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/816 B of archives.
After this operation, 0 B of additional disk space will be used.
Selecting previously unselected package sbuild-build-depends-core-dummy.
(Reading database ... 14230 files and directories currently installed.)
Preparing to unpack .../sbuild-build-depends-core-dummy.deb ...
Unpacking sbuild-build-depends-core-dummy (0.invalid.0) ...
Setting up sbuild-build-depends-core-dummy (0.invalid.0) ...
Merged Build-Depends: base-files, base-passwd, bash, bsdutils, coreutils, dash, debianutils, diffutils, dpkg, e2fsprogs, findutils, grep, gzip, hostname, libc-bin, login, mount, ncurses-base, ncurses-bin, perl-base, sed, sysvinit, sysvinit-utils, tar, util-linux, libc6-dev | libc-dev, gcc (>= 4:4.4.3), g++ (>= 4:4.4.3), make, dpkg-dev (>= 1.13.5), debhelper (>= 9), python-all (>= 2.6.6-3~), python-all-dev (>= 2.6.6-3~), python-pytest, python-setuptools, python-six, python-sphinx, python3-all, python3-all-dev, python3-pytest, python3-setuptools, python3-six
Filtered Build-Depends: base-files, base-passwd, bash, bsdutils, coreutils, dash, debianutils, diffutils, dpkg, e2fsprogs, findutils, grep, gzip, hostname, libc-bin, login, mount, ncurses-base, ncurses-bin, perl-base, sed, sysvinit, sysvinit-utils, tar, util-linux, libc6-dev, gcc (>= 4:4.4.3), g++ (>= 4:4.4.3), make, dpkg-dev (>= 1.13.5), debhelper (>= 9), python-all (>= 2.6.6-3~), python-all-dev (>= 2.6.6-3~), python-pytest, python-setuptools, python-six, python-sphinx, python3-all, python3-all-dev, python3-pytest, python3-setuptools, python3-six
dpkg-deb: building package `sbuild-build-depends-python-wrapt-dummy' in `/«BUILDDIR»/resolver-m8Ph4g/apt_archive/sbuild-build-depends-python-wrapt-dummy.deb'.
OK
Reading package lists...
┌──────────────────────────────────────────────────────────────────────────────┐
│ Install python-wrapt build dependencies (apt-based resolver) │
└──────────────────────────────────────────────────────────────────────────────┘
Installing build dependencies
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
bsdmainutils debhelper dh-python docutils-common file gettext gettext-base
groff-base intltool-debian libasprintf0c2 libcroco3 libexpat1 libexpat1-dev
libffi6 libglib2.0-0 libjs-jquery libjs-sphinxdoc libjs-underscore libmagic1
libmpdec2 libncursesw5 libpipeline1 libpython-all-dev libpython-dev
libpython-stdlib libpython2.7 libpython2.7-dev libpython2.7-minimal
libpython2.7-stdlib libpython3-all-dev libpython3-dev libpython3-stdlib
libpython3.4 libpython3.4-dev libpython3.4-minimal libpython3.4-stdlib
libsqlite3-0 libssl1.0.0 libunistring0 libxml2 man-db mime-support
po-debconf python python-all python-all-dev python-dev python-docutils
python-jinja2 python-markupsafe python-minimal python-pkg-resources
python-py python-pygments python-pytest python-roman python-setuptools
python-six python-sphinx python2.7 python2.7-dev python2.7-minimal python3
python3-all python3-all-dev python3-dev python3-minimal
python3-pkg-resources python3-py python3-pytest python3-setuptools
python3-six python3.4 python3.4-dev python3.4-minimal sgml-base
sphinx-common xml-core
Suggested packages:
wamerican wordlist whois vacation dh-make gettext-doc groff less www-browser
libmail-box-perl python-doc python-tk texlive-latex-recommended
texlive-latex-base texlive-lang-french fonts-linuxlibertine
ttf-linux-libertine python-jinja2-doc python-distribute
python-distribute-doc subversion python-pytest-xdist ttf-bitstream-vera
python-mock jsmath libjs-mathjax dvipng texlive-latex-extra
texlive-fonts-recommended python2.7-doc binfmt-support python3-doc
python3-tk python3-venv python3.4-venv python3.4-doc sgml-base-doc
Recommended packages:
curl wget lynx-cur autopoint libasprintf-dev libgettextpo-dev
libglib2.0-data shared-mime-info javascript-common libmail-sendmail-perl
python-pil libpaper-utils docutils-doc python-chardet sphinx-doc
The following NEW packages will be installed:
bsdmainutils debhelper dh-python docutils-common file gettext gettext-base
groff-base intltool-debian libasprintf0c2 libcroco3 libexpat1 libexpat1-dev
libffi6 libglib2.0-0 libjs-jquery libjs-sphinxdoc libjs-underscore libmagic1
libmpdec2 libncursesw5 libpipeline1 libpython-all-dev libpython-dev
libpython-stdlib libpython2.7 libpython2.7-dev libpython2.7-minimal
libpython2.7-stdlib libpython3-all-dev libpython3-dev libpython3-stdlib
libpython3.4 libpython3.4-dev libpython3.4-minimal libpython3.4-stdlib
libsqlite3-0 libssl1.0.0 libunistring0 libxml2 man-db mime-support
po-debconf python python-all python-all-dev python-dev python-docutils
python-jinja2 python-markupsafe python-minimal python-pkg-resources
python-py python-pygments python-pytest python-roman python-setuptools
python-six python-sphinx python2.7 python2.7-dev python2.7-minimal python3
python3-all python3-all-dev python3-dev python3-minimal
python3-pkg-resources python3-py python3-pytest python3-setuptools
python3-six python3.4 python3.4-dev python3.4-minimal
sbuild-build-depends-python-wrapt-dummy sgml-base sphinx-common xml-core
0 upgraded, 79 newly installed, 0 to remove and 0 not upgraded.
Need to get 93.7 MB/93.7 MB of archives.
After this operation, 176 MB of additional disk space will be used.
Get:1 http://localhost:9999/debian/ unstable/main libncursesw5 amd64 5.9+20140118-1 [120 kB]
Get:2 http://localhost:9999/debian/ unstable/main libpipeline1 amd64 1.3.0-1 [25.8 kB]
Get:3 http://localhost:9999/debian/ unstable/main libssl1.0.0 amd64 1.0.1h-3 [1011 kB]
Get:4 http://localhost:9999/debian/ unstable/main groff-base amd64 1.22.2-6 [1088 kB]
Get:5 http://localhost:9999/debian/ unstable/main bsdmainutils amd64 9.0.5 [211 kB]
Get:6 http://localhost:9999/debian/ unstable/main man-db amd64 2.6.7.1-1 [990 kB]
Get:7 http://localhost:9999/debian/ unstable/main libasprintf0c2 amd64 0.18.3.2-4 [29.6 kB]
Get:8 http://localhost:9999/debian/ unstable/main libmagic1 amd64 1:5.19-1 [237 kB]
Get:9 http://localhost:9999/debian/ unstable/main libsqlite3-0 amd64 3.8.5-2 [420 kB]
Get:10 http://localhost:9999/debian/ unstable/main libxml2 amd64 2.9.1+dfsg1-4 [797 kB]
Get:11 http://localhost:9999/debian/ unstable/main libffi6 amd64 3.1-2 [19.8 kB]
Get:12 http://localhost:9999/debian/ unstable/main libglib2.0-0 amd64 2.40.0-3 [2405 kB]
Get:13 http://localhost:9999/debian/ unstable/main libcroco3 amd64 0.6.8-2 [133 kB]
Get:14 http://localhost:9999/debian/ unstable/main libexpat1 amd64 2.1.0-6 [80.6 kB]
Get:15 http://localhost:9999/debian/ unstable/main libmpdec2 amd64 2.4.0-6 [82.0 kB]
Get:16 http://localhost:9999/debian/ unstable/main libpython2.7-minimal amd64 2.7.8-1 [349 kB]
Get:17 http://localhost:9999/debian/ unstable/main mime-support all 3.56 [35.5 kB]
Get:18 http://localhost:9999/debian/ unstable/main libpython2.7-stdlib amd64 2.7.8-1 [1876 kB]
Get:19 http://localhost:9999/debian/ unstable/main libpython2.7 amd64 2.7.8-1 [1046 kB]
Get:20 http://localhost:9999/debian/ unstable/main libexpat1-dev amd64 2.1.0-6 [126 kB]
Get:21 http://localhost:9999/debian/ unstable/main libpython2.7-dev amd64 2.7.8-1 [29.0 MB]
Get:22 http://localhost:9999/debian/ unstable/main libpython3.4-minimal amd64 3.4.1-7 [490 kB]
Get:23 http://localhost:9999/debian/ unstable/main libpython3.4-stdlib amd64 3.4.1-7 [2073 kB]
Get:24 http://localhost:9999/debian/ unstable/main libpython3.4 amd64 3.4.1-7 [1305 kB]
Get:25 http://localhost:9999/debian/ unstable/main libpython3.4-dev amd64 3.4.1-7 [39.5 MB]
Get:26 http://localhost:9999/debian/ unstable/main libunistring0 amd64 0.9.3-5 [434 kB]
Get:27 http://localhost:9999/debian/ unstable/main python2.7-minimal amd64 2.7.8-1 [1357 kB]
Get:28 http://localhost:9999/debian/ unstable/main python3.4-minimal amd64 3.4.1-7 [1627 kB]
Get:29 http://localhost:9999/debian/ unstable/main sgml-base all 1.26+nmu4 [14.6 kB]
Get:30 http://localhost:9999/debian/ unstable/main file amd64 1:5.19-1 [58.0 kB]
Get:31 http://localhost:9999/debian/ unstable/main gettext-base amd64 0.18.3.2-4 [116 kB]
Get:32 http://localhost:9999/debian/ unstable/main python2.7 amd64 2.7.8-1 [243 kB]
Get:33 http://localhost:9999/debian/ unstable/main python-minimal amd64 2.7.8-1 [39.7 kB]
Get:34 http://localhost:9999/debian/ unstable/main libpython-stdlib amd64 2.7.8-1 [19.2 kB]
Get:35 http://localhost:9999/debian/ unstable/main python amd64 2.7.8-1 [151 kB]
Get:36 http://localhost:9999/debian/ unstable/main gettext amd64 0.18.3.2-4 [1208 kB]
Get:37 http://localhost:9999/debian/ unstable/main intltool-debian all 0.35.0+20060710.1 [30.8 kB]
Get:38 http://localhost:9999/debian/ unstable/main po-debconf all 1.0.16+nmu3 [220 kB]
Get:39 http://localhost:9999/debian/ unstable/main debhelper all 9.20140613 [692 kB]
Get:40 http://localhost:9999/debian/ unstable/main python3.4 amd64 3.4.1-7 [199 kB]
Get:41 http://localhost:9999/debian/ unstable/main python3-minimal amd64 3.4.1-1 [34.2 kB]
Get:42 http://localhost:9999/debian/ unstable/main libpython3-stdlib amd64 3.4.1-1 [17.9 kB]
Get:43 http://localhost:9999/debian/ unstable/main python3 amd64 3.4.1-1 [20.9 kB]
Get:44 http://localhost:9999/debian/ unstable/main dh-python all 1.20140511-1 [52.8 kB]
Get:45 http://localhost:9999/debian/ unstable/main xml-core all 0.13+nmu2 [24.2 kB]
Get:46 http://localhost:9999/debian/ unstable/main docutils-common all 0.11-3 [186 kB]
Get:47 http://localhost:9999/debian/ unstable/main libjs-jquery all 1.7.2+dfsg-3 [96.9 kB]
Get:48 http://localhost:9999/debian/ unstable/main libjs-underscore all 1.4.4-2 [49.1 kB]
Get:49 http://localhost:9999/debian/ unstable/main libjs-sphinxdoc all 1.2.2+dfsg-2 [39.7 kB]
Get:50 http://localhost:9999/debian/ unstable/main libpython-dev amd64 2.7.8-1 [19.3 kB]
Get:51 http://localhost:9999/debian/ unstable/main libpython-all-dev amd64 2.7.8-1 [1008 B]
Get:52 http://localhost:9999/debian/ unstable/main libpython3-dev amd64 3.4.1-1 [18.0 kB]
Get:53 http://localhost:9999/debian/ unstable/main libpython3-all-dev amd64 3.4.1-1 [1006 B]
Get:54 http://localhost:9999/debian/ unstable/main python-all amd64 2.7.8-1 [992 B]
Get:55 http://localhost:9999/debian/ unstable/main python2.7-dev amd64 2.7.8-1 [277 kB]
Get:56 http://localhost:9999/debian/ unstable/main python-dev amd64 2.7.8-1 [1180 B]
Get:57 http://localhost:9999/debian/ unstable/main python-all-dev amd64 2.7.8-1 [1022 B]
Get:58 http://localhost:9999/debian/ unstable/main python-roman all 2.0.0-1 [7898 B]
Get:59 http://localhost:9999/debian/ unstable/main python-docutils all 0.11-3 [362 kB]
Get:60 http://localhost:9999/debian/ unstable/main python-markupsafe amd64 0.23-1+b1 [15.9 kB]
Get:61 http://localhost:9999/debian/ unstable/main python-jinja2 all 2.7.3-1 [170 kB]
Get:62 http://localhost:9999/debian/ unstable/main python-pkg-resources all 5.4.1-1 [64.4 kB]
Get:63 http://localhost:9999/debian/ unstable/main python-py all 1.4.20-1 [66.2 kB]
Get:64 http://localhost:9999/debian/ unstable/main python-pygments all 1.6+dfsg-1 [547 kB]
Get:65 http://localhost:9999/debian/ unstable/main python-pytest all 2.5.2-1 [123 kB]
Get:66 http://localhost:9999/debian/ unstable/main python-setuptools all 5.4.1-1 [241 kB]
Get:67 http://localhost:9999/debian/ unstable/main python-six all 1.7.3-1 [12.0 kB]
Get:68 http://localhost:9999/debian/ unstable/main sphinx-common all 1.2.2+dfsg-2 [390 kB]
Get:69 http://localhost:9999/debian/ unstable/main python-sphinx all 1.2.2+dfsg-2 [269 kB]
Get:70 http://localhost:9999/debian/ unstable/main python3-all amd64 3.4.1-1 [986 B]
Get:71 http://localhost:9999/debian/ unstable/main python3.4-dev amd64 3.4.1-7 [418 kB]
Get:72 http://localhost:9999/debian/ unstable/main python3-dev amd64 3.4.1-1 [1188 B]
Get:73 http://localhost:9999/debian/ unstable/main python3-all-dev amd64 3.4.1-1 [1012 B]
Get:74 http://localhost:9999/debian/ unstable/main python3-pkg-resources all 5.4.1-1 [34.2 kB]
Get:75 http://localhost:9999/debian/ unstable/main python3-py all 1.4.20-1 [65.7 kB]
Get:76 http://localhost:9999/debian/ unstable/main python3-pytest all 2.5.2-1 [120 kB]
Get:77 http://localhost:9999/debian/ unstable/main python3-setuptools all 5.4.1-1 [133 kB]
Get:78 http://localhost:9999/debian/ unstable/main python3-six all 1.7.3-1 [12.1 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 93.7 MB in 3s (28.0 MB/s)
Selecting previously unselected package libncursesw5:amd64.
(Reading database ... 14230 files and directories currently installed.)
Preparing to unpack .../libncursesw5_5.9+20140118-1_amd64.deb ...
Unpacking libncursesw5:amd64 (5.9+20140118-1) ...
Selecting previously unselected package libpipeline1:amd64.
Preparing to unpack .../libpipeline1_1.3.0-1_amd64.deb ...
Unpacking libpipeline1:amd64 (1.3.0-1) ...
Selecting previously unselected package libssl1.0.0:amd64.
Preparing to unpack .../libssl1.0.0_1.0.1h-3_amd64.deb ...
Unpacking libssl1.0.0:amd64 (1.0.1h-3) ...
Selecting previously unselected package groff-base.
Preparing to unpack .../groff-base_1.22.2-6_amd64.deb ...
Unpacking groff-base (1.22.2-6) ...
Selecting previously unselected package bsdmainutils.
Preparing to unpack .../bsdmainutils_9.0.5_amd64.deb ...
Unpacking bsdmainutils (9.0.5) ...
Selecting previously unselected package man-db.
Preparing to unpack .../man-db_2.6.7.1-1_amd64.deb ...
Unpacking man-db (2.6.7.1-1) ...
Selecting previously unselected package libasprintf0c2:amd64.
Preparing to unpack .../libasprintf0c2_0.18.3.2-4_amd64.deb ...
Unpacking libasprintf0c2:amd64 (0.18.3.2-4) ...
Selecting previously unselected package libmagic1:amd64.
Preparing to unpack .../libmagic1_1%3a5.19-1_amd64.deb ...
Unpacking libmagic1:amd64 (1:5.19-1) ...
Selecting previously unselected package libsqlite3-0:amd64.
Preparing to unpack .../libsqlite3-0_3.8.5-2_amd64.deb ...
Unpacking libsqlite3-0:amd64 (3.8.5-2) ...
Selecting previously unselected package libxml2:amd64.
Preparing to unpack .../libxml2_2.9.1+dfsg1-4_amd64.deb ...
Unpacking libxml2:amd64 (2.9.1+dfsg1-4) ...
Selecting previously unselected package libffi6:amd64.
Preparing to unpack .../libffi6_3.1-2_amd64.deb ...
Unpacking libffi6:amd64 (3.1-2) ...
Selecting previously unselected package libglib2.0-0:amd64.
Preparing to unpack .../libglib2.0-0_2.40.0-3_amd64.deb ...
Unpacking libglib2.0-0:amd64 (2.40.0-3) ...
Selecting previously unselected package libcroco3:amd64.
Preparing to unpack .../libcroco3_0.6.8-2_amd64.deb ...
Unpacking libcroco3:amd64 (0.6.8-2) ...
Selecting previously unselected package libexpat1:amd64.
Preparing to unpack .../libexpat1_2.1.0-6_amd64.deb ...
Unpacking libexpat1:amd64 (2.1.0-6) ...
Selecting previously unselected package libmpdec2:amd64.
Preparing to unpack .../libmpdec2_2.4.0-6_amd64.deb ...
Unpacking libmpdec2:amd64 (2.4.0-6) ...
Selecting previously unselected package libpython2.7-minimal:amd64.
Preparing to unpack .../libpython2.7-minimal_2.7.8-1_amd64.deb ...
Unpacking libpython2.7-minimal:amd64 (2.7.8-1) ...
Selecting previously unselected package mime-support.
Preparing to unpack .../mime-support_3.56_all.deb ...
Unpacking mime-support (3.56) ...
Selecting previously unselected package libpython2.7-stdlib:amd64.
Preparing to unpack .../libpython2.7-stdlib_2.7.8-1_amd64.deb ...
Unpacking libpython2.7-stdlib:amd64 (2.7.8-1) ...
Selecting previously unselected package libpython2.7:amd64.
Preparing to unpack .../libpython2.7_2.7.8-1_amd64.deb ...
Unpacking libpython2.7:amd64 (2.7.8-1) ...
Selecting previously unselected package libexpat1-dev:amd64.
Preparing to unpack .../libexpat1-dev_2.1.0-6_amd64.deb ...
Unpacking libexpat1-dev:amd64 (2.1.0-6) ...
Selecting previously unselected package libpython2.7-dev:amd64.
Preparing to unpack .../libpython2.7-dev_2.7.8-1_amd64.deb ...
Unpacking libpython2.7-dev:amd64 (2.7.8-1) ...
Selecting previously unselected package libpython3.4-minimal:amd64.
Preparing to unpack .../libpython3.4-minimal_3.4.1-7_amd64.deb ...
Unpacking libpython3.4-minimal:amd64 (3.4.1-7) ...
Selecting previously unselected package libpython3.4-stdlib:amd64.
Preparing to unpack .../libpython3.4-stdlib_3.4.1-7_amd64.deb ...
Unpacking libpython3.4-stdlib:amd64 (3.4.1-7) ...
Selecting previously unselected package libpython3.4:amd64.
Preparing to unpack .../libpython3.4_3.4.1-7_amd64.deb ...
Unpacking libpython3.4:amd64 (3.4.1-7) ...
Selecting previously unselected package libpython3.4-dev:amd64.
Preparing to unpack .../libpython3.4-dev_3.4.1-7_amd64.deb ...
Unpacking libpython3.4-dev:amd64 (3.4.1-7) ...
Selecting previously unselected package libunistring0:amd64.
Preparing to unpack .../libunistring0_0.9.3-5_amd64.deb ...
Unpacking libunistring0:amd64 (0.9.3-5) ...
Selecting previously unselected package python2.7-minimal.
Preparing to unpack .../python2.7-minimal_2.7.8-1_amd64.deb ...
Unpacking python2.7-minimal (2.7.8-1) ...
Selecting previously unselected package python3.4-minimal.
Preparing to unpack .../python3.4-minimal_3.4.1-7_amd64.deb ...
Unpacking python3.4-minimal (3.4.1-7) ...
Selecting previously unselected package sgml-base.
Preparing to unpack .../sgml-base_1.26+nmu4_all.deb ...
Unpacking sgml-base (1.26+nmu4) ...
Selecting previously unselected package file.
Preparing to unpack .../file_1%3a5.19-1_amd64.deb ...
Unpacking file (1:5.19-1) ...
Selecting previously unselected package gettext-base.
Preparing to unpack .../gettext-base_0.18.3.2-4_amd64.deb ...
Unpacking gettext-base (0.18.3.2-4) ...
Selecting previously unselected package python2.7.
Preparing to unpack .../python2.7_2.7.8-1_amd64.deb ...
Unpacking python2.7 (2.7.8-1) ...
Selecting previously unselected package python-minimal.
Preparing to unpack .../python-minimal_2.7.8-1_amd64.deb ...
Unpacking python-minimal (2.7.8-1) ...
Selecting previously unselected package libpython-stdlib:amd64.
Preparing to unpack .../libpython-stdlib_2.7.8-1_amd64.deb ...
Unpacking libpython-stdlib:amd64 (2.7.8-1) ...
Selecting previously unselected package python.
Preparing to unpack .../python_2.7.8-1_amd64.deb ...
Unpacking python (2.7.8-1) ...
Selecting previously unselected package gettext.
Preparing to unpack .../gettext_0.18.3.2-4_amd64.deb ...
Unpacking gettext (0.18.3.2-4) ...
Selecting previously unselected package intltool-debian.
Preparing to unpack .../intltool-debian_0.35.0+20060710.1_all.deb ...
Unpacking intltool-debian (0.35.0+20060710.1) ...
Selecting previously unselected package po-debconf.
Preparing to unpack .../po-debconf_1.0.16+nmu3_all.deb ...
Unpacking po-debconf (1.0.16+nmu3) ...
Selecting previously unselected package debhelper.
Preparing to unpack .../debhelper_9.20140613_all.deb ...
Unpacking debhelper (9.20140613) ...
Selecting previously unselected package python3.4.
Preparing to unpack .../python3.4_3.4.1-7_amd64.deb ...
Unpacking python3.4 (3.4.1-7) ...
Selecting previously unselected package python3-minimal.
Preparing to unpack .../python3-minimal_3.4.1-1_amd64.deb ...
Unpacking python3-minimal (3.4.1-1) ...
Selecting previously unselected package libpython3-stdlib:amd64.
Preparing to unpack .../libpython3-stdlib_3.4.1-1_amd64.deb ...
Unpacking libpython3-stdlib:amd64 (3.4.1-1) ...
Selecting previously unselected package python3.
Preparing to unpack .../python3_3.4.1-1_amd64.deb ...
Unpacking python3 (3.4.1-1) ...
Selecting previously unselected package dh-python.
Preparing to unpack .../dh-python_1.20140511-1_all.deb ...
Unpacking dh-python (1.20140511-1) ...
Selecting previously unselected package xml-core.
Preparing to unpack .../xml-core_0.13+nmu2_all.deb ...
Unpacking xml-core (0.13+nmu2) ...
Selecting previously unselected package docutils-common.
Preparing to unpack .../docutils-common_0.11-3_all.deb ...
Unpacking docutils-common (0.11-3) ...
Selecting previously unselected package libjs-jquery.
Preparing to unpack .../libjs-jquery_1.7.2+dfsg-3_all.deb ...
Unpacking libjs-jquery (1.7.2+dfsg-3) ...
Selecting previously unselected package libjs-underscore.
Preparing to unpack .../libjs-underscore_1.4.4-2_all.deb ...
Unpacking libjs-underscore (1.4.4-2) ...
Selecting previously unselected package libjs-sphinxdoc.
Preparing to unpack .../libjs-sphinxdoc_1.2.2+dfsg-2_all.deb ...
Unpacking libjs-sphinxdoc (1.2.2+dfsg-2) ...
Selecting previously unselected package libpython-dev:amd64.
Preparing to unpack .../libpython-dev_2.7.8-1_amd64.deb ...
Unpacking libpython-dev:amd64 (2.7.8-1) ...
Selecting previously unselected package libpython-all-dev:amd64.
Preparing to unpack .../libpython-all-dev_2.7.8-1_amd64.deb ...
Unpacking libpython-all-dev:amd64 (2.7.8-1) ...
Selecting previously unselected package libpython3-dev:amd64.
Preparing to unpack .../libpython3-dev_3.4.1-1_amd64.deb ...
Unpacking libpython3-dev:amd64 (3.4.1-1) ...
Selecting previously unselected package libpython3-all-dev:amd64.
Preparing to unpack .../libpython3-all-dev_3.4.1-1_amd64.deb ...
Unpacking libpython3-all-dev:amd64 (3.4.1-1) ...
Selecting previously unselected package python-all.
Preparing to unpack .../python-all_2.7.8-1_amd64.deb ...
Unpacking python-all (2.7.8-1) ...
Selecting previously unselected package python2.7-dev.
Preparing to unpack .../python2.7-dev_2.7.8-1_amd64.deb ...
Unpacking python2.7-dev (2.7.8-1) ...
Selecting previously unselected package python-dev.
Preparing to unpack .../python-dev_2.7.8-1_amd64.deb ...
Unpacking python-dev (2.7.8-1) ...
Selecting previously unselected package python-all-dev.
Preparing to unpack .../python-all-dev_2.7.8-1_amd64.deb ...
Unpacking python-all-dev (2.7.8-1) ...
Selecting previously unselected package python-roman.
Preparing to unpack .../python-roman_2.0.0-1_all.deb ...
Unpacking python-roman (2.0.0-1) ...
Selecting previously unselected package python-docutils.
Preparing to unpack .../python-docutils_0.11-3_all.deb ...
Unpacking python-docutils (0.11-3) ...
Selecting previously unselected package python-markupsafe.
Preparing to unpack .../python-markupsafe_0.23-1+b1_amd64.deb ...
Unpacking python-markupsafe (0.23-1+b1) ...
Selecting previously unselected package python-jinja2.
Preparing to unpack .../python-jinja2_2.7.3-1_all.deb ...
Unpacking python-jinja2 (2.7.3-1) ...
Selecting previously unselected package python-pkg-resources.
Preparing to unpack .../python-pkg-resources_5.4.1-1_all.deb ...
Unpacking python-pkg-resources (5.4.1-1) ...
Selecting previously unselected package python-py.
Preparing to unpack .../python-py_1.4.20-1_all.deb ...
Unpacking python-py (1.4.20-1) ...
Selecting previously unselected package python-pygments.
Preparing to unpack .../python-pygments_1.6+dfsg-1_all.deb ...
Unpacking python-pygments (1.6+dfsg-1) ...
Selecting previously unselected package python-pytest.
Preparing to unpack .../python-pytest_2.5.2-1_all.deb ...
Unpacking python-pytest (2.5.2-1) ...
Selecting previously unselected package python-setuptools.
Preparing to unpack .../python-setuptools_5.4.1-1_all.deb ...
Unpacking python-setuptools (5.4.1-1) ...
Selecting previously unselected package python-six.
Preparing to unpack .../python-six_1.7.3-1_all.deb ...
Unpacking python-six (1.7.3-1) ...
Selecting previously unselected package sphinx-common.
Preparing to unpack .../sphinx-common_1.2.2+dfsg-2_all.deb ...
Unpacking sphinx-common (1.2.2+dfsg-2) ...
Selecting previously unselected package python-sphinx.
Preparing to unpack .../python-sphinx_1.2.2+dfsg-2_all.deb ...
Unpacking python-sphinx (1.2.2+dfsg-2) ...
Selecting previously unselected package python3-all.
Preparing to unpack .../python3-all_3.4.1-1_amd64.deb ...
Unpacking python3-all (3.4.1-1) ...
Selecting previously unselected package python3.4-dev.
Preparing to unpack .../python3.4-dev_3.4.1-7_amd64.deb ...
Unpacking python3.4-dev (3.4.1-7) ...
Selecting previously unselected package python3-dev.
Preparing to unpack .../python3-dev_3.4.1-1_amd64.deb ...
Unpacking python3-dev (3.4.1-1) ...
Selecting previously unselected package python3-all-dev.
Preparing to unpack .../python3-all-dev_3.4.1-1_amd64.deb ...
Unpacking python3-all-dev (3.4.1-1) ...
Selecting previously unselected package python3-pkg-resources.
Preparing to unpack .../python3-pkg-resources_5.4.1-1_all.deb ...
Unpacking python3-pkg-resources (5.4.1-1) ...
Selecting previously unselected package python3-py.
Preparing to unpack .../python3-py_1.4.20-1_all.deb ...
Unpacking python3-py (1.4.20-1) ...
Selecting previously unselected package python3-pytest.
Preparing to unpack .../python3-pytest_2.5.2-1_all.deb ...
Unpacking python3-pytest (2.5.2-1) ...
Selecting previously unselected package python3-setuptools.
Preparing to unpack .../python3-setuptools_5.4.1-1_all.deb ...
Unpacking python3-setuptools (5.4.1-1) ...
Selecting previously unselected package python3-six.
Preparing to unpack .../python3-six_1.7.3-1_all.deb ...
Unpacking python3-six (1.7.3-1) ...
Selecting previously unselected package sbuild-build-depends-python-wrapt-dummy.
Preparing to unpack .../sbuild-build-depends-python-wrapt-dummy.deb ...
Unpacking sbuild-build-depends-python-wrapt-dummy (0.invalid.0) ...
Setting up libncursesw5:amd64 (5.9+20140118-1) ...
Setting up libpipeline1:amd64 (1.3.0-1) ...
Setting up libssl1.0.0:amd64 (1.0.1h-3) ...
Setting up groff-base (1.22.2-6) ...
Setting up bsdmainutils (9.0.5) ...
update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode
update-alternatives: using /usr/bin/bsd-from to provide /usr/bin/from (from) in auto mode
Setting up man-db (2.6.7.1-1) ...
Not building database; man-db/auto-update is not 'true'.
Setting up libasprintf0c2:amd64 (0.18.3.2-4) ...
Setting up libmagic1:amd64 (1:5.19-1) ...
Setting up libsqlite3-0:amd64 (3.8.5-2) ...
Setting up libxml2:amd64 (2.9.1+dfsg1-4) ...
Setting up libffi6:amd64 (3.1-2) ...
Setting up libglib2.0-0:amd64 (2.40.0-3) ...
No schema files found: doing nothing.
Setting up libcroco3:amd64 (0.6.8-2) ...
Setting up libexpat1:amd64 (2.1.0-6) ...
Setting up libmpdec2:amd64 (2.4.0-6) ...
Setting up libpython2.7-minimal:amd64 (2.7.8-1) ...
Setting up mime-support (3.56) ...
Setting up libpython2.7-stdlib:amd64 (2.7.8-1) ...
Setting up libpython2.7:amd64 (2.7.8-1) ...
Setting up libexpat1-dev:amd64 (2.1.0-6) ...
Setting up libpython2.7-dev:amd64 (2.7.8-1) ...
Setting up libpython3.4-minimal:amd64 (3.4.1-7) ...
Setting up libpython3.4-stdlib:amd64 (3.4.1-7) ...
Setting up libpython3.4:amd64 (3.4.1-7) ...
Setting up libpython3.4-dev:amd64 (3.4.1-7) ...
Setting up libunistring0:amd64 (0.9.3-5) ...
Setting up python2.7-minimal (2.7.8-1) ...
Setting up python3.4-minimal (3.4.1-7) ...
Setting up sgml-base (1.26+nmu4) ...
Setting up file (1:5.19-1) ...
Setting up gettext-base (0.18.3.2-4) ...
Setting up python2.7 (2.7.8-1) ...
Setting up python-minimal (2.7.8-1) ...
Setting up libpython-stdlib:amd64 (2.7.8-1) ...
Setting up python (2.7.8-1) ...
Setting up gettext (0.18.3.2-4) ...
Setting up intltool-debian (0.35.0+20060710.1) ...
Setting up po-debconf (1.0.16+nmu3) ...
Setting up debhelper (9.20140613) ...
Setting up python3.4 (3.4.1-7) ...
Setting up python3-minimal (3.4.1-1) ...
Setting up libpython3-stdlib:amd64 (3.4.1-1) ...
Setting up xml-core (0.13+nmu2) ...
Setting up libjs-jquery (1.7.2+dfsg-3) ...
Setting up libjs-underscore (1.4.4-2) ...
Setting up libjs-sphinxdoc (1.2.2+dfsg-2) ...
Setting up libpython-dev:amd64 (2.7.8-1) ...
Setting up libpython-all-dev:amd64 (2.7.8-1) ...
Setting up libpython3-dev:amd64 (3.4.1-1) ...
Setting up libpython3-all-dev:amd64 (3.4.1-1) ...
Setting up python-all (2.7.8-1) ...
Setting up python2.7-dev (2.7.8-1) ...
Setting up python-dev (2.7.8-1) ...
Setting up python-all-dev (2.7.8-1) ...
Setting up python-roman (2.0.0-1) ...
Setting up python-markupsafe (0.23-1+b1) ...
Setting up python-jinja2 (2.7.3-1) ...
Setting up python-pkg-resources (5.4.1-1) ...
Setting up python-py (1.4.20-1) ...
Setting up python-pygments (1.6+dfsg-1) ...
Setting up python-pytest (2.5.2-1) ...
Setting up python-setuptools (5.4.1-1) ...
Setting up python-six (1.7.3-1) ...
Setting up sphinx-common (1.2.2+dfsg-2) ...
Setting up python3.4-dev (3.4.1-7) ...
Processing triggers for sgml-base (1.26+nmu4) ...
Setting up docutils-common (0.11-3) ...
Processing triggers for sgml-base (1.26+nmu4) ...
Setting up python-docutils (0.11-3) ...
update-alternatives: using /usr/share/docutils/scripts/python2/rst-buildhtml to provide /usr/bin/rst-buildhtml (rst-buildhtml) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rst2html to provide /usr/bin/rst2html (rst2html) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rst2latex to provide /usr/bin/rst2latex (rst2latex) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rst2man to provide /usr/bin/rst2man (rst2man) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rst2odt to provide /usr/bin/rst2odt (rst2odt) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rst2odt_prepstyles to provide /usr/bin/rst2odt_prepstyles (rst2odt_prepstyles) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rst2pseudoxml to provide /usr/bin/rst2pseudoxml (rst2pseudoxml) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rst2s5 to provide /usr/bin/rst2s5 (rst2s5) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rst2xetex to provide /usr/bin/rst2xetex (rst2xetex) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rst2xml to provide /usr/bin/rst2xml (rst2xml) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rstpep2html to provide /usr/bin/rstpep2html (rstpep2html) in auto mode
Setting up python-sphinx (1.2.2+dfsg-2) ...
Setting up python3 (3.4.1-1) ...
Setting up dh-python (1.20140511-1) ...
Setting up python3-all (3.4.1-1) ...
Setting up python3-dev (3.4.1-1) ...
Setting up python3-all-dev (3.4.1-1) ...
Setting up python3-pkg-resources (5.4.1-1) ...
Setting up python3-py (1.4.20-1) ...
Setting up python3-pytest (2.5.2-1) ...
Setting up python3-setuptools (5.4.1-1) ...
Setting up python3-six (1.7.3-1) ...
Setting up sbuild-build-depends-python-wrapt-dummy (0.invalid.0) ...
Processing triggers for libc-bin (2.19-7) ...
┌──────────────────────────────────────────────────────────────────────────────┐
│ Build environment │
└──────────────────────────────────────────────────────────────────────────────┘
Kernel: Linux 2.6.32-5-xen-amd64 amd64 (x86_64)
Toolchain package versions: binutils_2.24.51.20140709-1 dpkg-dev_1.17.10 g++-4.6_4.6.4-7 g++-4.9_4.9.1-1 gcc-4.6_4.6.4-7 gcc-4.7_4.7.4-1 gcc-4.9_4.9.1-1 libc6-dev_2.19-7 libstdc++-4.9-dev_4.9.1-1 libstdc++6_4.9.1-1 libstdc++6-4.6-dev_4.6.4-7 linux-libc-dev_3.14.12-1
Package versions: apt_1.0.6 base-files_7.3 base-passwd_3.5.33 bash_4.3-7 binutils_2.24.51.20140709-1 bsdmainutils_9.0.5 bsdutils_1:2.20.1-5.8 build-essential_11.6 bzip2_1.0.6-5 coreutils_8.21-1.2 cpp_4:4.9.1-1 cpp-4.6_4.6.4-7 cpp-4.7_4.7.4-1 cpp-4.9_4.9.1-1 dash_0.5.7-4 debconf_1.5.53 debconf-i18n_1.5.53 debfoster_2.7-1.2 debhelper_9.20140613 debian-archive-keyring_2012.4 debianutils_4.4 dh-python_1.20140511-1 diffutils_1:3.3-1 docutils-common_0.11-3 dpkg_1.17.10 dpkg-dev_1.17.10 e2fslibs_1.42.11-2 e2fsprogs_1.42.11-2 fakeroot_1.20.1-1 file_1:5.19-1 findutils_4.4.2-9 g++_4:4.9.1-1 g++-4.6_4.6.4-7 g++-4.9_4.9.1-1 gcc_4:4.9.1-1 gcc-4.4-base_4.4.7-8 gcc-4.5-base_4.5.4-1 gcc-4.6_4.6.4-7 gcc-4.6-base_4.6.4-7 gcc-4.7_4.7.4-1 gcc-4.7-base_4.7.4-1 gcc-4.8-base_4.8.3-5 gcc-4.9_4.9.1-1 gcc-4.9-base_4.9.1-1 gettext_0.18.3.2-4 gettext-base_0.18.3.2-4 gnupg_1.4.18-2 gpgv_1.4.18-2 grep_2.18-2 groff-base_1.22.2-6 gzip_1.6-3 hostname_3.15 initscripts_2.88dsf-53.2 insserv_1.14.0-5 intltool-debian_0.35.0+20060710.1 libacl1_2.2.52-1 libapt-pkg4.12_1.0.6 libarchive-extract-perl_0.72-1 libasan1_4.9.1-1 libasprintf0c2_0.18.3.2-4 libatomic1_4.9.1-1 libattr1_1:2.4.47-1 libaudit-common_1:2.3.7-1 libaudit1_1:2.3.7-1 libblkid1_2.20.1-5.8 libbz2-1.0_1.0.6-5 libc-bin_2.19-7 libc-dev-bin_2.19-7 libc6_2.19-7 libc6-dev_2.19-7 libcap2_1:2.22-2 libcilkrts5_4.9.1-1 libclass-isa-perl_0.36-5 libcloog-isl4_0.18.2-1 libcloog-ppl1_0.16.1-5 libcomerr2_1.42.11-2 libcroco3_0.6.8-2 libdb5.1_5.1.29-5 libdb5.3_5.3.28-5 libdebconfclient0_0.191 libdpkg-perl_1.17.10 libexpat1_2.1.0-6 libexpat1-dev_2.1.0-6 libfakeroot_1.20.1-1 libffi6_3.1-2 libfile-fcntllock-perl_0.20-1 libgc1c2_1:7.2d-6.1 libgcc-4.7-dev_4.7.4-1 libgcc-4.9-dev_4.9.1-1 libgcc1_1:4.9.1-1 libgdbm3_1.8.3-13 libglib2.0-0_2.40.0-3 libgmp10_2:6.0.0+dfsg-4 libgmpxx4ldbl_2:6.0.0+dfsg-4 libgomp1_4.9.1-1 libgpm2_1.20.4-6.1 libisl10_0.12.2-2 libitm1_4.9.1-1 libjs-jquery_1.7.2+dfsg-3 libjs-sphinxdoc_1.2.2+dfsg-2 libjs-underscore_1.4.4-2 liblocale-gettext-perl_1.05-8 liblog-message-perl_0.8-1 liblog-message-simple-perl_0.10-2 liblsan0_4.9.1-1 liblzma5_5.1.1alpha+20120614-2 libmagic1_1:5.19-1 libmodule-pluggable-perl_5.1-1 libmount1_2.20.1-5.8 libmpc2_0.9-4 libmpc3_1.0.2-1 libmpdec2_2.4.0-6 libmpfr4_3.1.2-1 libncurses5_5.9+20140118-1 libncursesw5_5.9+20140118-1 libpam-modules_1.1.8-3 libpam-modules-bin_1.1.8-3 libpam-runtime_1.1.8-3 libpam0g_1.1.8-3 libpcre3_1:8.35-2 libpipeline1_1.3.0-1 libpod-latex-perl_0.61-1 libppl-c4_1:1.1-2+b1 libppl13_1:1.1-2+b1 libpython-all-dev_2.7.8-1 libpython-dev_2.7.8-1 libpython-stdlib_2.7.8-1 libpython2.7_2.7.8-1 libpython2.7-dev_2.7.8-1 libpython2.7-minimal_2.7.8-1 libpython2.7-stdlib_2.7.8-1 libpython3-all-dev_3.4.1-1 libpython3-dev_3.4.1-1 libpython3-stdlib_3.4.1-1 libpython3.4_3.4.1-7 libpython3.4-dev_3.4.1-7 libpython3.4-minimal_3.4.1-7 libpython3.4-stdlib_3.4.1-7 libquadmath0_4.9.1-1 libreadline6_6.3-6 libselinux1_2.3-1 libsemanage-common_2.3-1 libsemanage1_2.3-1 libsepol1_2.3-1 libslang2_2.2.4-17 libsqlite3-0_3.8.5-2 libss2_1.42.11-2 libssl1.0.0_1.0.1h-3 libstdc++-4.9-dev_4.9.1-1 libstdc++6_4.9.1-1 libstdc++6-4.6-dev_4.6.4-7 libswitch-perl_2.17-1 libterm-ui-perl_0.42-1 libtext-charwidth-perl_0.04-7+b2 libtext-iconv-perl_1.7-5+b1 libtext-soundex-perl_3.4-1+b1 libtext-wrapi18n-perl_0.06-7 libtimedate-perl_2.3000-2 libtinfo5_5.9+20140118-1 libtsan0_4.9.1-1 libubsan0_4.9.1-1 libunistring0_0.9.3-5 libusb-0.1-4_2:0.1.12-24 libustr-1.0-1_1.0.4-3 libuuid1_2.20.1-5.8 libxml2_2.9.1+dfsg1-4 linux-libc-dev_3.14.12-1 login_1:4.2-2 lsb-base_4.1+Debian13 make_4.0-8 man-db_2.6.7.1-1 mawk_1.3.3-17 mime-support_3.56 mount_2.20.1-5.8 multiarch-support_2.19-7 ncurses-base_5.9+20140118-1 ncurses-bin_5.9+20140118-1 passwd_1:4.2-2 patch_2.7.1-5 perl_5.18.2-7 perl-base_5.18.2-7 perl-modules_5.18.2-7 po-debconf_1.0.16+nmu3 python_2.7.8-1 python-all_2.7.8-1 python-all-dev_2.7.8-1 python-dev_2.7.8-1 python-docutils_0.11-3 python-jinja2_2.7.3-1 python-markupsafe_0.23-1+b1 python-minimal_2.7.8-1 python-pkg-resources_5.4.1-1 python-py_1.4.20-1 python-pygments_1.6+dfsg-1 python-pytest_2.5.2-1 python-roman_2.0.0-1 python-setuptools_5.4.1-1 python-six_1.7.3-1 python-sphinx_1.2.2+dfsg-2 python2.7_2.7.8-1 python2.7-dev_2.7.8-1 python2.7-minimal_2.7.8-1 python3_3.4.1-1 python3-all_3.4.1-1 python3-all-dev_3.4.1-1 python3-dev_3.4.1-1 python3-minimal_3.4.1-1 python3-pkg-resources_5.4.1-1 python3-py_1.4.20-1 python3-pytest_2.5.2-1 python3-setuptools_5.4.1-1 python3-six_1.7.3-1 python3.4_3.4.1-7 python3.4-dev_3.4.1-7 python3.4-minimal_3.4.1-7 readline-common_6.3-6 rename_0.20-3 sbuild-build-depends-core-dummy_0.invalid.0 sbuild-build-depends-python-wrapt-dummy_0.invalid.0 sed_4.2.2-4 sensible-utils_0.0.9 sgml-base_1.26+nmu4 sphinx-common_1.2.2+dfsg-2 startpar_0.59-3 sudo_1.8.9p5-1 sysv-rc_2.88dsf-53.2 sysvinit_2.88dsf-53.2 sysvinit-core_2.88dsf-53.2 sysvinit-utils_2.88dsf-53.2 tar_1.27.1-2 tzdata_2014e-1 ucf_3.0030 util-linux_2.20.1-5.8 vim_2:7.4.335-1 vim-common_2:7.4.335-1 vim-runtime_2:7.4.335-1 xml-core_0.13+nmu2 xz-utils_5.1.1alpha+20120614-2 zlib1g_1:1.2.8.dfsg-1
┌──────────────────────────────────────────────────────────────────────────────┐
│ Build │
└──────────────────────────────────────────────────────────────────────────────┘
Unpack source
─────────────
gpgv: keyblock resource `/sbuild-nonexistent/.gnupg/trustedkeys.gpg': file open error
gpgv: Signature made Sun Jun 8 15:41:16 2014 UTC using RSA key ID AC6B43FE
gpgv: Can't check signature: public key not found
dpkg-source: warning: failed to verify signature on ./python-wrapt_1.8.0-4.dsc
dpkg-source: info: extracting python-wrapt in python-wrapt-1.8.0
dpkg-source: info: unpacking python-wrapt_1.8.0.orig.tar.xz
dpkg-source: info: unpacking python-wrapt_1.8.0-4.debian.tar.xz
dpkg-source: info: applying do-not-use-the-rdt-sphinx-theme.patch
dpkg-source: info: applying do-not-use-embedded-six.py.patch
dpkg-source: info: applying no-from-wrapt-import-six-in-tests.patch
dpkg-source: info: applying fix-python-3.4-compat.patch
dpkg-source: info: applying python-3.2-compat.patch
Check disc space
────────────────
Sufficient free space for build
User Environment
────────────────
HOME=/sbuild-nonexistent
LOGNAME=user
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
SCHROOT_ALIAS_NAME=unstable-amd64-sbuild
SCHROOT_CHROOT_NAME=unstable-amd64-sbuild
SCHROOT_COMMAND=env
SCHROOT_GID=1000
SCHROOT_GROUP=user
SCHROOT_SESSION_ID=unstable-amd64-sbuild-a6e4a098-555c-4838-a838-87b5b009e2e4
SCHROOT_UID=1000
SCHROOT_USER=user
SHELL=/bin/sh
USER=user
dpkg-buildpackage
─────────────────
dpkg-buildpackage: source package python-wrapt
dpkg-buildpackage: source version 1.8.0-4
dpkg-buildpackage: source distribution unstable
dpkg-buildpackage: source changed by Thomas Goirand <zigo@debian.org>
dpkg-source --before-build python-wrapt-1.8.0
dpkg-buildpackage: host architecture amd64
dpkg-source: info: using options from python-wrapt-1.8.0/debian/source/options: --extend-diff-ignore=^[^/]*[.]egg-info/
fakeroot debian/rules clean
pyversions: missing X(S)-Python-Version in control file, fall back to debian/pyversions
pyversions: missing debian/pyversions file, fall back to supported versions
py3versions: no X-Python3-Version in control file, using supported versions
dh /usr/share/openstack-pkg-tools/pkgos.make --buildsystem=python_distutils --with python2,python3,sphinxdoc
dh: Unknown sequence /usr/share/openstack-pkg-tools/pkgos.make (choose from: binary binary-arch binary-indep build build-arch build-indep clean install install-arch install-indep)
dh clean --buildsystem=python_distutils --with python2,python3,sphinxdoc
dh_testdir -O--buildsystem=python_distutils
dh_auto_clean -O--buildsystem=python_distutils
pyversions: missing X(S)-Python-Version in control file, fall back to debian/pyversions
pyversions: missing debian/pyversions file, fall back to supported versions
running clean
'build/lib.linux-x86_64-2.7' does not exist -- can't clean it
'build/bdist.linux-x86_64' does not exist -- can't clean it
'build/scripts-2.7' does not exist -- can't clean it
dh_clean -O--buildsystem=python_distutils
dpkg-source -b python-wrapt-1.8.0
dpkg-source: info: using options from python-wrapt-1.8.0/debian/source/options: --extend-diff-ignore=^[^/]*[.]egg-info/
dpkg-source: info: using source format `3.0 (quilt)'
dpkg-source: info: building python-wrapt using existing ./python-wrapt_1.8.0.orig.tar.xz
dpkg-source: info: building python-wrapt in python-wrapt_1.8.0-4.debian.tar.xz
dpkg-source: info: building python-wrapt in python-wrapt_1.8.0-4.dsc
debian/rules build
pyversions: missing X(S)-Python-Version in control file, fall back to debian/pyversions
pyversions: missing debian/pyversions file, fall back to supported versions
py3versions: no X-Python3-Version in control file, using supported versions
dh /usr/share/openstack-pkg-tools/pkgos.make --buildsystem=python_distutils --with python2,python3,sphinxdoc
dh: Unknown sequence /usr/share/openstack-pkg-tools/pkgos.make (choose from: binary binary-arch binary-indep build build-arch build-indep clean install install-arch install-indep)
dh build --buildsystem=python_distutils --with python2,python3,sphinxdoc
dh_testdir -O--buildsystem=python_distutils
dh_auto_configure -O--buildsystem=python_distutils
dh_auto_build -O--buildsystem=python_distutils
pyversions: missing X(S)-Python-Version in control file, fall back to debian/pyversions
pyversions: missing debian/pyversions file, fall back to supported versions
running build
running build_py
creating build
creating build/lib.linux-x86_64-2.7
creating build/lib.linux-x86_64-2.7/wrapt
copying src/importer.py -> build/lib.linux-x86_64-2.7/wrapt
copying src/decorators.py -> build/lib.linux-x86_64-2.7/wrapt
copying src/wrappers.py -> build/lib.linux-x86_64-2.7/wrapt
copying src/arguments.py -> build/lib.linux-x86_64-2.7/wrapt
copying src/__init__.py -> build/lib.linux-x86_64-2.7/wrapt
running build_ext
building 'wrapt._wrappers' extension
creating build/temp.linux-x86_64-2.7
creating build/temp.linux-x86_64-2.7/src
x86_64-linux-gnu-gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 -fPIC -I/usr/include/python2.7 -c src/_wrappers.c -o build/temp.linux-x86_64-2.7/src/_wrappers.o
x86_64-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-z,relro -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -D_FORTIFY_SOURCE=2 -g -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wl,-z,relro -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 build/temp.linux-x86_64-2.7/src/_wrappers.o -o build/lib.linux-x86_64-2.7/wrapt/_wrappers.so
debian/rules override_dh_auto_test
make[1]: Entering directory '/«PKGBUILDDIR»'
pyversions: missing X(S)-Python-Version in control file, fall back to debian/pyversions
pyversions: missing debian/pyversions file, fall back to supported versions
py3versions: no X-Python3-Version in control file, using supported versions
dh /usr/share/openstack-pkg-tools/pkgos.make --buildsystem=python_distutils --with python2,python3,sphinxdoc
dh: Unknown sequence /usr/share/openstack-pkg-tools/pkgos.make (choose from: binary binary-arch binary-indep build build-arch build-indep clean install install-arch install-indep)
ln -s src wrapt
set -ex && for pyvers in 2.7 3.4; do \
PYTHONPATH=. py.test-$pyvers -v tests ; \
done
+ PYTHONPATH=. py.test-2.7 -v tests
============================= test session starts ==============================
platform linux2 -- Python 2.7.8 -- py-1.4.20 -- pytest-2.5.2 -- /usr/bin/python2.7
collecting ... collected 310 items
tests/test_adapter.py:60: TestAdapterAttributes.test_doc_string PASSED
tests/test_adapter.py:55: TestAdapterAttributes.test_module_name PASSED
tests/test_adapter.py:40: TestAdapterAttributes.test_object_name PASSED
tests/test_adapter.py:45: TestAdapterAttributes.test_object_qualname PASSED
tests/test_adapter.py:69: TestArgumentSpecification.test_argspec PASSED
tests/test_adapter.py:101: TestArgumentSpecification.test_isinstance PASSED
tests/test_adapter.py:87: TestArgumentSpecification.test_signature PASSED
tests/test_arguments.py:9: TestArguments.test_getcallargs PASSED
tests/test_attribute_wrapper.py:13: TestAttributeProxy.test_wrap_attribute PASSED
tests/test_decorators.py:53: TestDecorator.test_class_method_as_decorator PASSED
tests/test_decorators.py:79: TestDecorator.test_class_type_as_decorator PASSED
tests/test_decorators.py:96: TestDecorator.test_class_type_as_decorator_args PASSED
tests/test_decorators.py:25: TestDecorator.test_instance_method_as_decorator PASSED
tests/test_decorators.py:9: TestDecorator.test_no_parameters PASSED
tests/test_function.py:62: TestNamingFunction.test_argspec PASSED
tests/test_function.py:57: TestNamingFunction.test_doc_string PASSED
tests/test_function.py:69: TestNamingFunction.test_isinstance PASSED
tests/test_function.py:52: TestNamingFunction.test_module_name PASSED
tests/test_function.py:37: TestNamingFunction.test_object_name PASSED
tests/test_function.py:42: TestNamingFunction.test_object_qualname PASSED
tests/test_function.py:76: TestCallingFunction.test_call_function PASSED
tests/test_function_wrapper.py:42: TestClassInheritence.test_classmethod_type_inheritence PASSED
tests/test_function_wrapper.py:12: TestClassInheritence.test_function_type_inheritence PASSED
tests/test_function_wrapper.py:24: TestClassInheritence.test_instancemethod_type_inheritence PASSED
tests/test_function_wrapper.py:61: TestClassInheritence.test_staticmethod_type_inheritence PASSED
tests/test_function_wrapper.py:115: TestAttributeAccess.test_classmethod_attributes PASSED
tests/test_function_wrapper.py:82: TestAttributeAccess.test_function_attributes PASSED
tests/test_function_wrapper.py:95: TestAttributeAccess.test_instancemethod_attributes PASSED
tests/test_function_wrapper.py:136: TestAttributeAccess.test_staticmethod_attributes PASSED
tests/test_function_wrapper.py:170: TestParentReference.test_class_decorator PASSED
tests/test_function_wrapper.py:196: TestParentReference.test_classmethod PASSED
tests/test_function_wrapper.py:159: TestParentReference.test_function_decorator PASSED
tests/test_function_wrapper.py:181: TestParentReference.test_instancemethod PASSED
tests/test_function_wrapper.py:209: TestParentReference.test_staticmethod_inner PASSED
tests/test_function_wrapper.py:246: TestGuardArgument.test_boolean_dynamic_guard_on_decorator PASSED
tests/test_function_wrapper.py:224: TestGuardArgument.test_boolean_false_guard_on_decorator PASSED
tests/test_function_wrapper.py:235: TestGuardArgument.test_boolean_true_guard_on_decorator PASSED
tests/test_function_wrapper.py:279: TestGuardArgument.test_function_guard_on_decorator PASSED
tests/test_function_wrapper.py:308: TestGuardArgument.test_guard_on_instancemethod PASSED
tests/test_function_wrapper.py:344: TestDerivedFunctionWrapper.test_override_bound_type PASSED
tests/test_function_wrapper.py:371: TestFunctionBinding.test_double_binding PASSED
tests/test_function_wrapper.py:404: TestFunctionBinding.test_re_bind_after_none PASSED
tests/test_function_wrapper.py:438: TestInvalidWrapper.test_none_for_wrapped PASSED
tests/test_function_wrapper.py:450: TestInvalidCalling.test_missing_self_via_class PASSED
tests/test_inner_classmethod.py:95: TestNamingInnerClassMethod.test_class_argspec PASSED
tests/test_inner_classmethod.py:83: TestNamingInnerClassMethod.test_class_doc_string PASSED
tests/test_inner_classmethod.py:109: TestNamingInnerClassMethod.test_class_isinstance PASSED
tests/test_inner_classmethod.py:71: TestNamingInnerClassMethod.test_class_module_name PASSED
tests/test_inner_classmethod.py:39: TestNamingInnerClassMethod.test_class_object_name PASSED
tests/test_inner_classmethod.py:51: TestNamingInnerClassMethod.test_class_object_qualname PASSED
tests/test_inner_classmethod.py:102: TestNamingInnerClassMethod.test_instance_argspec PASSED
tests/test_inner_classmethod.py:89: TestNamingInnerClassMethod.test_instance_doc_string PASSED
tests/test_inner_classmethod.py:115: TestNamingInnerClassMethod.test_instance_isinstance PASSED
tests/test_inner_classmethod.py:77: TestNamingInnerClassMethod.test_instance_module_name PASSED
tests/test_inner_classmethod.py:45: TestNamingInnerClassMethod.test_instance_object_name PASSED
tests/test_inner_classmethod.py:61: TestNamingInnerClassMethod.test_instance_object_qualname PASSED
tests/test_inner_classmethod.py:123: TestCallingInnerClassMethod.test_class_call_function PASSED
tests/test_inner_classmethod.py:177: TestCallingInnerClassMethod.test_class_call_function_nested_decorators PASSED
tests/test_inner_classmethod.py:150: TestCallingInnerClassMethod.test_instance_call_function PASSED
tests/test_inner_classmethod.py:205: TestCallingInnerClassMethod.test_instance_call_function_nested_decorators PASSED
tests/test_inner_staticmethod.py:95: TestNamingInnerStaticMethod.test_class_argspec PASSED
tests/test_inner_staticmethod.py:83: TestNamingInnerStaticMethod.test_class_doc_string PASSED
tests/test_inner_staticmethod.py:109: TestNamingInnerStaticMethod.test_class_isinstance PASSED
tests/test_inner_staticmethod.py:51: TestNamingInnerStaticMethod.test_class_module_name PASSED
tests/test_inner_staticmethod.py:39: TestNamingInnerStaticMethod.test_class_object_name PASSED
tests/test_inner_staticmethod.py:57: TestNamingInnerStaticMethod.test_class_object_qualname PASSED
tests/test_inner_staticmethod.py:102: TestNamingInnerStaticMethod.test_instance_argspec PASSED
tests/test_inner_staticmethod.py:89: TestNamingInnerStaticMethod.test_instance_doc_string PASSED
tests/test_inner_staticmethod.py:115: TestNamingInnerStaticMethod.test_instance_isinstance PASSED
tests/test_inner_staticmethod.py:77: TestNamingInnerStaticMethod.test_instance_module_name PASSED
tests/test_inner_staticmethod.py:45: TestNamingInnerStaticMethod.test_instance_object_name PASSED
tests/test_inner_staticmethod.py:67: TestNamingInnerStaticMethod.test_instance_object_qualname PASSED
tests/test_inner_staticmethod.py:123: TestCallingInnerStaticMethod.test_class_call_function PASSED
tests/test_inner_staticmethod.py:177: TestCallingInnerStaticMethod.test_class_call_function_nested_decorator PASSED
tests/test_inner_staticmethod.py:150: TestCallingInnerStaticMethod.test_instance_call_function PASSED
tests/test_inner_staticmethod.py:205: TestCallingInnerStaticMethod.test_instance_call_function_nested_decorator PASSED
tests/test_instancemethod.py:95: TestNamingInstanceMethodOldStyle.test_class_argspec PASSED
tests/test_instancemethod.py:83: TestNamingInstanceMethodOldStyle.test_class_doc_string PASSED
tests/test_instancemethod.py:109: TestNamingInstanceMethodOldStyle.test_class_isinstance PASSED
tests/test_instancemethod.py:71: TestNamingInstanceMethodOldStyle.test_class_module_name PASSED
tests/test_instancemethod.py:39: TestNamingInstanceMethodOldStyle.test_class_object_name PASSED
tests/test_instancemethod.py:51: TestNamingInstanceMethodOldStyle.test_class_object_qualname PASSED
tests/test_instancemethod.py:102: TestNamingInstanceMethodOldStyle.test_instance_argspec PASSED
tests/test_instancemethod.py:89: TestNamingInstanceMethodOldStyle.test_instance_doc_string PASSED
tests/test_instancemethod.py:115: TestNamingInstanceMethodOldStyle.test_instance_isinstance PASSED
tests/test_instancemethod.py:77: TestNamingInstanceMethodOldStyle.test_instance_module_name PASSED
tests/test_instancemethod.py:45: TestNamingInstanceMethodOldStyle.test_instance_object_name PASSED
tests/test_instancemethod.py:61: TestNamingInstanceMethodOldStyle.test_instance_object_qualname PASSED
tests/test_instancemethod.py:194: TestNamingInstanceMethodNewStyle.test_class_argspec PASSED
tests/test_instancemethod.py:182: TestNamingInstanceMethodNewStyle.test_class_doc_string PASSED
tests/test_instancemethod.py:208: TestNamingInstanceMethodNewStyle.test_class_isinstance PASSED
tests/test_instancemethod.py:170: TestNamingInstanceMethodNewStyle.test_class_module_name PASSED
tests/test_instancemethod.py:138: TestNamingInstanceMethodNewStyle.test_class_object_name PASSED
tests/test_instancemethod.py:150: TestNamingInstanceMethodNewStyle.test_class_object_qualname PASSED
tests/test_instancemethod.py:201: TestNamingInstanceMethodNewStyle.test_instance_argspec PASSED
tests/test_instancemethod.py:188: TestNamingInstanceMethodNewStyle.test_instance_doc_string PASSED
tests/test_instancemethod.py:214: TestNamingInstanceMethodNewStyle.test_instance_isinstance PASSED
tests/test_instancemethod.py:176: TestNamingInstanceMethodNewStyle.test_instance_module_name PASSED
tests/test_instancemethod.py:144: TestNamingInstanceMethodNewStyle.test_instance_object_name PASSED
tests/test_instancemethod.py:160: TestNamingInstanceMethodNewStyle.test_instance_object_qualname PASSED
tests/test_instancemethod.py:222: TestCallingInstanceMethodOldStyle.test_class_call_function PASSED
tests/test_instancemethod.py:275: TestCallingInstanceMethodOldStyle.test_class_call_function_nested PASSED
tests/test_instancemethod.py:249: TestCallingInstanceMethodOldStyle.test_instance_call_function PASSED
tests/test_instancemethod.py:303: TestCallingInstanceMethodOldStyle.test_instance_call_function_nested PASSED
tests/test_instancemethod.py:332: TestCallingInstanceMethodNewStyle.test_class_call_function PASSED
tests/test_instancemethod.py:385: TestCallingInstanceMethodNewStyle.test_class_call_function_nested PASSED
tests/test_instancemethod.py:359: TestCallingInstanceMethodNewStyle.test_instance_call_function PASSED
tests/test_instancemethod.py:413: TestCallingInstanceMethodNewStyle.test_instance_call_function_nested PASSED
tests/test_memoize.py:75: TestSynchronized.test_classmethod PASSED
tests/test_memoize.py:57: TestSynchronized.test_function PASSED
tests/test_memoize.py:66: TestSynchronized.test_instancemethod PASSED
tests/test_memoize.py:84: TestSynchronized.test_staticmethod PASSED
tests/test_monkey_patching.py:26: TestMonkeyPatching.test_function_wrapper PASSED
tests/test_monkey_patching.py:78: TestMonkeyPatching.test_function_wrapper_class_method PASSED
tests/test_monkey_patching.py:50: TestMonkeyPatching.test_function_wrapper_instance_method PASSED
tests/test_monkey_patching.py:193: TestMonkeyPatching.test_patch_function_module PASSED
tests/test_monkey_patching.py:173: TestMonkeyPatching.test_patch_function_module_name PASSED
tests/test_monkey_patching.py:218: TestMonkeyPatching.test_transient_function_wrapper PASSED
tests/test_monkey_patching.py:244: TestMonkeyPatching.test_transient_function_wrapper_instance_method PASSED
tests/test_monkey_patching.py:126: TestMonkeyPatching.test_wrap_function_module PASSED
tests/test_monkey_patching.py:105: TestMonkeyPatching.test_wrap_function_module_name PASSED
tests/test_monkey_patching.py:149: TestMonkeyPatching.test_wrap_instance_method_module_name PASSED
tests/test_nested_function.py:66: TestNamingNestedFunction.test_argspec PASSED
tests/test_nested_function.py:61: TestNamingNestedFunction.test_doc_string PASSED
tests/test_nested_function.py:73: TestNamingNestedFunction.test_isinstance PASSED
tests/test_nested_function.py:56: TestNamingNestedFunction.test_module_name PASSED
tests/test_nested_function.py:41: TestNamingNestedFunction.test_object_name PASSED
tests/test_nested_function.py:46: TestNamingNestedFunction.test_object_qualname PASSED
tests/test_nested_function.py:80: TestCallingNestedFunction.test_call_function PASSED
tests/test_object_proxy.py:31: TestAttributeAccess.test_attributes PASSED
tests/test_object_proxy.py:84: TestAttributeAccess.test_delete_wrapped PASSED
tests/test_object_proxy.py:38: TestAttributeAccess.test_get_wrapped PASSED
tests/test_object_proxy.py:94: TestAttributeAccess.test_proxy_attribute FAILED
tests/test_object_proxy.py:49: TestAttributeAccess.test_set_wrapped PASSED
tests/test_object_proxy.py:113: TestAttributeAccess.test_wrapped_attribute PASSED
tests/test_object_proxy.py:163: TestNamingObjectProxy.test_class_doc_string PASSED
tests/test_object_proxy.py:155: TestNamingObjectProxy.test_class_module_name PASSED
tests/test_object_proxy.py:134: TestNamingObjectProxy.test_class_object_name PASSED
tests/test_object_proxy.py:142: TestNamingObjectProxy.test_class_object_qualname PASSED
tests/test_object_proxy.py:216: TestNamingObjectProxy.test_function_doc_string PASSED
tests/test_object_proxy.py:208: TestNamingObjectProxy.test_function_module_name PASSED
tests/test_object_proxy.py:187: TestNamingObjectProxy.test_function_object_name PASSED
tests/test_object_proxy.py:195: TestNamingObjectProxy.test_function_object_qualname PASSED
tests/test_object_proxy.py:179: TestNamingObjectProxy.test_instance_doc_string PASSED
tests/test_object_proxy.py:171: TestNamingObjectProxy.test_instance_module_name PASSED
tests/test_object_proxy.py:226: TestTypeObjectProxy.test_class_of_class PASSED
tests/test_object_proxy.py:247: TestTypeObjectProxy.test_class_of_function PASSED
tests/test_object_proxy.py:236: TestTypeObjectProxy.test_class_of_instance PASSED
tests/test_object_proxy.py:259: TestDirObjectProxy.test_dir_of_class PASSED
tests/test_object_proxy.py:291: TestDirObjectProxy.test_dir_of_function PASSED
tests/test_object_proxy.py:275: TestDirObjectProxy.test_dir_of_instance PASSED
tests/test_object_proxy.py:267: TestDirObjectProxy.test_vars_of_class PASSED
tests/test_object_proxy.py:299: TestDirObjectProxy.test_vars_of_function PASSED
tests/test_object_proxy.py:283: TestDirObjectProxy.test_vars_of_instance PASSED
tests/test_object_proxy.py:488: TestCallingObject.test_classmethod_args PASSED
tests/test_object_proxy.py:518: TestCallingObject.test_classmethod_args_plus_kwargs PASSED
tests/test_object_proxy.py:503: TestCallingObject.test_classmethod_kwargs PASSED
tests/test_object_proxy.py:473: TestCallingObject.test_classmethod_no_args PASSED
tests/test_object_proxy.py:548: TestCallingObject.test_classmethod_via_class_args PASSED
tests/test_object_proxy.py:578: TestCallingObject.test_classmethod_via_class_args_plus_kwargs PASSED
tests/test_object_proxy.py:563: TestCallingObject.test_classmethod_via_class_kwargs PASSED
tests/test_object_proxy.py:533: TestCallingObject.test_classmethod_via_class_no_args PASSED
tests/test_object_proxy.py:322: TestCallingObject.test_function_args PASSED
tests/test_object_proxy.py:348: TestCallingObject.test_function_args_plus_kwargs PASSED
tests/test_object_proxy.py:335: TestCallingObject.test_function_kwargs PASSED
tests/test_object_proxy.py:309: TestCallingObject.test_function_no_args PASSED
tests/test_object_proxy.py:375: TestCallingObject.test_instancemethod_args PASSED
tests/test_object_proxy.py:403: TestCallingObject.test_instancemethod_args_plus_kwargs PASSED
tests/test_object_proxy.py:389: TestCallingObject.test_instancemethod_kwargs PASSED
tests/test_object_proxy.py:361: TestCallingObject.test_instancemethod_no_args PASSED
tests/test_object_proxy.py:431: TestCallingObject.test_instancemethod_via_class_args PASSED
tests/test_object_proxy.py:459: TestCallingObject.test_instancemethod_via_class_args_plus_kwargs PASSED
tests/test_object_proxy.py:445: TestCallingObject.test_instancemethod_via_class_kwargs PASSED
tests/test_object_proxy.py:417: TestCallingObject.test_instancemethod_via_class_no_args PASSED
tests/test_object_proxy.py:608: TestCallingObject.test_staticmethod_args PASSED
tests/test_object_proxy.py:638: TestCallingObject.test_staticmethod_args_plus_kwargs PASSED
tests/test_object_proxy.py:623: TestCallingObject.test_staticmethod_kwargs PASSED
tests/test_object_proxy.py:593: TestCallingObject.test_staticmethod_no_args PASSED
tests/test_object_proxy.py:668: TestCallingObject.test_staticmethod_via_class_args PASSED
tests/test_object_proxy.py:698: TestCallingObject.test_staticmethod_via_class_args_plus_kwargs PASSED
tests/test_object_proxy.py:683: TestCallingObject.test_staticmethod_via_class_kwargs PASSED
tests/test_object_proxy.py:653: TestCallingObject.test_staticmethod_via_class_no_args PASSED
tests/test_object_proxy.py:715: TestIterObjectProxy.test_iteration PASSED
tests/test_object_proxy.py:726: TestContextManagerObjectProxy.test_context_manager PASSED
tests/test_object_proxy.py:764: TestEqualityObjectProxy.test_comparison PASSED
tests/test_object_proxy.py:749: TestEqualityObjectProxy.test_mapping_key PASSED
tests/test_object_proxy.py:742: TestEqualityObjectProxy.test_object_hash PASSED
tests/test_object_proxy.py:1121: TestAsNumberObjectProxy.test_abs PASSED
tests/test_object_proxy.py:821: TestAsNumberObjectProxy.test_add PASSED
tests/test_object_proxy.py:916: TestAsNumberObjectProxy.test_and PASSED
tests/test_object_proxy.py:845: TestAsNumberObjectProxy.test_div PASSED
tests/test_object_proxy.py:872: TestAsNumberObjectProxy.test_divmod PASSED
tests/test_object_proxy.py:816: TestAsNumberObjectProxy.test_float PASSED
tests/test_object_proxy.py:1136: TestAsNumberObjectProxy.test_hex PASSED
tests/test_object_proxy.py:940: TestAsNumberObjectProxy.test_iadd PASSED
tests/test_object_proxy.py:1069: TestAsNumberObjectProxy.test_iand PASSED
tests/test_object_proxy.py:982: TestAsNumberObjectProxy.test_idiv PASSED
tests/test_object_proxy.py:999: TestAsNumberObjectProxy.test_ifloordiv PASSED
tests/test_object_proxy.py:1041: TestAsNumberObjectProxy.test_ilshift PASSED
tests/test_object_proxy.py:1013: TestAsNumberObjectProxy.test_imod PASSED
tests/test_object_proxy.py:968: TestAsNumberObjectProxy.test_imul PASSED
tests/test_object_proxy.py:1141: TestAsNumberObjectProxy.test_index PASSED
tests/test_object_proxy.py:808: TestAsNumberObjectProxy.test_int PASSED
tests/test_object_proxy.py:1126: TestAsNumberObjectProxy.test_invert PASSED
tests/test_object_proxy.py:1097: TestAsNumberObjectProxy.test_ior PASSED
tests/test_object_proxy.py:1027: TestAsNumberObjectProxy.test_ipow PASSED
tests/test_object_proxy.py:1055: TestAsNumberObjectProxy.test_irshift PASSED
tests/test_object_proxy.py:954: TestAsNumberObjectProxy.test_isub PASSED
tests/test_object_proxy.py:1083: TestAsNumberObjectProxy.test_ixor PASSED
tests/test_object_proxy.py:900: TestAsNumberObjectProxy.test_lshift PASSED
tests/test_object_proxy.py:864: TestAsNumberObjectProxy.test_mod PASSED
tests/test_object_proxy.py:837: TestAsNumberObjectProxy.test_mul PASSED
tests/test_object_proxy.py:1111: TestAsNumberObjectProxy.test_neg PASSED
tests/test_object_proxy.py:795: TestAsNumberObjectProxy.test_nonzero PASSED
tests/test_object_proxy.py:1131: TestAsNumberObjectProxy.test_oct PASSED
tests/test_object_proxy.py:932: TestAsNumberObjectProxy.test_or PASSED
tests/test_object_proxy.py:1116: TestAsNumberObjectProxy.test_pos PASSED
tests/test_object_proxy.py:880: TestAsNumberObjectProxy.test_pow PASSED
tests/test_object_proxy.py:908: TestAsNumberObjectProxy.test_rshift PASSED
tests/test_object_proxy.py:829: TestAsNumberObjectProxy.test_sub PASSED
tests/test_object_proxy.py:924: TestAsNumberObjectProxy.test_xor PASSED
tests/test_object_proxy.py:1157: TestAsSequenceObjectProxy.test_contains PASSED
tests/test_object_proxy.py:1174: TestAsSequenceObjectProxy.test_delitem PASSED
tests/test_object_proxy.py:1196: TestAsSequenceObjectProxy.test_delslice PASSED
tests/test_object_proxy.py:1163: TestAsSequenceObjectProxy.test_getitem PASSED
tests/test_object_proxy.py:1184: TestAsSequenceObjectProxy.test_getslice PASSED
tests/test_object_proxy.py:1152: TestAsSequenceObjectProxy.test_length PASSED
tests/test_object_proxy.py:1168: TestAsSequenceObjectProxy.test_setitem PASSED
tests/test_object_proxy.py:1189: TestAsSequenceObjectProxy.test_setslice PASSED
tests/test_object_proxy.py:1211: TestAsMappingObjectProxy.test_contains PASSED
tests/test_object_proxy.py:1228: TestAsMappingObjectProxy.test_delitem PASSED
tests/test_object_proxy.py:1217: TestAsMappingObjectProxy.test_getitem PASSED
tests/test_object_proxy.py:1206: TestAsMappingObjectProxy.test_length PASSED
tests/test_object_proxy.py:1222: TestAsMappingObjectProxy.test_setitem PASSED
tests/test_object_proxy.py:1256: TestObjectRepresentationObjectProxy.test_repr PASSED
tests/test_object_proxy.py:1239: TestObjectRepresentationObjectProxy.test_str PASSED
tests/test_object_proxy.py:1264: TestDerivedClassCreation.test_derived_new PASSED
tests/test_object_proxy.py:1280: TestDerivedClassCreation.test_derived_setattr PASSED
tests/test_object_proxy.py:1342: DerivedClassAttributes.test_class_properties PASSED
tests/test_object_proxy.py:1316: DerivedClassAttributes.test_override_class_attributes PASSED
tests/test_object_proxy.py:1295: DerivedClassAttributes.test_setup_class_attributes PASSED
tests/test_object_proxy.py:1391: OverrideAttributeAccess.test_attr_functions PASSED
tests/test_object_proxy.py:1402: OverrideAttributeAccess.test_override_getattr PASSED
tests/test_object_proxy.py:1448: CallableFunction.test_callable_proxy_getattr_call PASSED
tests/test_object_proxy.py:1443: CallableFunction.test_callable_proxy_hasattr_call PASSED
tests/test_object_proxy.py:1453: CallableFunction.test_callable_proxy_is_callable PASSED
tests/test_object_proxy.py:1433: CallableFunction.test_proxy_getattr_call PASSED
tests/test_object_proxy.py:1428: CallableFunction.test_proxy_hasattr_call PASSED
tests/test_object_proxy.py:1438: CallableFunction.test_proxy_is_callable PASSED
tests/test_object_proxy.py:1460: SpecialMethods.test_class_bytes PASSED
tests/test_object_proxy.py:1485: SpecialMethods.test_decimal_complex PASSED
tests/test_object_proxy.py:1494: SpecialMethods.test_fractions_round PASSED
tests/test_object_proxy.py:1478: SpecialMethods.test_list_reversed PASSED
tests/test_object_proxy.py:1471: SpecialMethods.test_str_format PASSED
tests/test_outer_classmethod.py:95: TestNamingOuterClassMethod.test_class_argspec PASSED
tests/test_outer_classmethod.py:83: TestNamingOuterClassMethod.test_class_doc_string PASSED
tests/test_outer_classmethod.py:109: TestNamingOuterClassMethod.test_class_isinstance PASSED
tests/test_outer_classmethod.py:71: TestNamingOuterClassMethod.test_class_module_name PASSED
tests/test_outer_classmethod.py:39: TestNamingOuterClassMethod.test_class_object_name PASSED
tests/test_outer_classmethod.py:51: TestNamingOuterClassMethod.test_class_object_qualname PASSED
tests/test_outer_classmethod.py:102: TestNamingOuterClassMethod.test_instance_argspec PASSED
tests/test_outer_classmethod.py:89: TestNamingOuterClassMethod.test_instance_doc_string PASSED
tests/test_outer_classmethod.py:115: TestNamingOuterClassMethod.test_instance_isinstance PASSED
tests/test_outer_classmethod.py:77: TestNamingOuterClassMethod.test_instance_module_name PASSED
tests/test_outer_classmethod.py:45: TestNamingOuterClassMethod.test_instance_object_name PASSED
tests/test_outer_classmethod.py:61: TestNamingOuterClassMethod.test_instance_object_qualname PASSED
tests/test_outer_classmethod.py:123: TestCallingOuterClassMethod.test_class_call_function PASSED
tests/test_outer_classmethod.py:155: TestCallingOuterClassMethod.test_instance_call_function PASSED
tests/test_outer_staticmethod.py:95: TestNamingOuterStaticMethod.test_class_argspec PASSED
tests/test_outer_staticmethod.py:83: TestNamingOuterStaticMethod.test_class_doc_string PASSED
tests/test_outer_staticmethod.py:109: TestNamingOuterStaticMethod.test_class_isinstance PASSED
tests/test_outer_staticmethod.py:71: TestNamingOuterStaticMethod.test_class_module_name PASSED
tests/test_outer_staticmethod.py:39: TestNamingOuterStaticMethod.test_class_object_name PASSED
tests/test_outer_staticmethod.py:51: TestNamingOuterStaticMethod.test_class_object_qualname PASSED
tests/test_outer_staticmethod.py:102: TestNamingOuterStaticMethod.test_instance_argspec PASSED
tests/test_outer_staticmethod.py:89: TestNamingOuterStaticMethod.test_instance_doc_string PASSED
tests/test_outer_staticmethod.py:115: TestNamingOuterStaticMethod.test_instance_isinstance PASSED
tests/test_outer_staticmethod.py:77: TestNamingOuterStaticMethod.test_instance_module_name PASSED
tests/test_outer_staticmethod.py:45: TestNamingOuterStaticMethod.test_instance_object_name PASSED
tests/test_outer_staticmethod.py:61: TestNamingOuterStaticMethod.test_instance_object_qualname PASSED
tests/test_outer_staticmethod.py:123: TestCallingOuterStaticMethod.test_class_call_function PASSED
tests/test_outer_staticmethod.py:153: TestCallingOuterStaticMethod.test_instance_call_function PASSED
tests/test_post_import_hooks.py:9: TestPostImportHooks.test_simple PASSED
tests/test_synchronized_lock.py:60: TestSynchronized.test_synchronized_function PASSED
tests/test_synchronized_lock.py:123: TestSynchronized.test_synchronized_inner_classmethod PASSED
tests/test_synchronized_lock.py:81: TestSynchronized.test_synchronized_inner_staticmethod PASSED
tests/test_synchronized_lock.py:179: TestSynchronized.test_synchronized_instancemethod PASSED
tests/test_synchronized_lock.py:147: TestSynchronized.test_synchronized_outer_classmethod PASSED
tests/test_synchronized_lock.py:102: TestSynchronized.test_synchronized_outer_staticmethod PASSED
tests/test_synchronized_lock.py:216: TestSynchronized.test_synchronized_type_new_style PASSED
tests/test_synchronized_lock.py:240: TestSynchronized.test_synchronized_type_old_style PASSED
tests/test_update_attributes.py:133: TestUpdateAttributes.test_update_annotations PASSED
tests/test_update_attributes.py:152: TestUpdateAttributes.test_update_annotations_modified_on_original PASSED
tests/test_update_attributes.py:104: TestUpdateAttributes.test_update_doc PASSED
tests/test_update_attributes.py:116: TestUpdateAttributes.test_update_doc_modified_on_original PASSED
tests/test_update_attributes.py:77: TestUpdateAttributes.test_update_module PASSED
tests/test_update_attributes.py:88: TestUpdateAttributes.test_update_module_modified_on_original PASSED
tests/test_update_attributes.py:16: TestUpdateAttributes.test_update_name PASSED
tests/test_update_attributes.py:27: TestUpdateAttributes.test_update_name_modified_on_original PASSED
tests/test_update_attributes.py:43: TestUpdateAttributes.test_update_qualname PASSED
tests/test_update_attributes.py:58: TestUpdateAttributes.test_update_qualname_modified_on_original PASSED
tests/test_weak_function_proxy.py:29: TestWeakFunctionProxy.test_call_expired PASSED
tests/test_weak_function_proxy.py:132: TestWeakFunctionProxy.test_classmethod PASSED
tests/test_weak_function_proxy.py:45: TestWeakFunctionProxy.test_function PASSED
tests/test_weak_function_proxy.py:86: TestWeakFunctionProxy.test_instancemethod_delete_function PASSED
tests/test_weak_function_proxy.py:109: TestWeakFunctionProxy.test_instancemethod_delete_function_and_instance PASSED
tests/test_weak_function_proxy.py:64: TestWeakFunctionProxy.test_instancemethod_delete_instance PASSED
tests/test_weak_function_proxy.py:10: TestWeakFunctionProxy.test_isinstance PASSED
tests/test_weak_function_proxy.py:18: TestWeakFunctionProxy.test_no_callback PASSED
tests/test_weak_function_proxy.py:154: TestWeakFunctionProxy.test_staticmethod PASSED
=================================== FAILURES ===================================
___________________ TestAttributeAccess.test_proxy_attribute ___________________
self = <test_object_proxy.TestAttributeAccess testMethod=test_proxy_attribute>
def test_proxy_attribute(self):
def function1(*args, **kwargs):
return args, kwargs
function2 = wrapt.ObjectProxy(function1)
> function2._self_variable = True
tests/test_object_proxy.py:99:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <ObjectProxy at 0x7f292d8e09f0 for function at 0x7f292d723848>
name = '_self_variable', value = True
def __setattr__(self, name, value):
if name.startswith('_self_'):
> object.__setattr__(self, name, value)
E AttributeError: 'ObjectProxy' object has no attribute '_self_variable'
wrapt/wrappers.py:146: AttributeError
===================== 1 failed, 309 passed in 1.15 seconds =====================
make[1]: *** [override_dh_auto_test] Error 1
debian/rules:24: recipe for target 'override_dh_auto_test' failed
make[1]: Leaving directory '/«PKGBUILDDIR»'
make: *** [build] Error 2
debian/rules:10: recipe for target 'build' failed
dpkg-buildpackage: error: debian/rules build gave error exit status 2
────────────────────────────────────────────────────────────────────────────────
Build finished at 20140719-0545
Finished
────────
E: Build failure (dpkg-buildpackage died)
┌──────────────────────────────────────────────────────────────────────────────┐
│ Cleanup │
└──────────────────────────────────────────────────────────────────────────────┘
Purging /«BUILDDIR»
Not cleaning session: cloned chroot in use
┌──────────────────────────────────────────────────────────────────────────────┐
│ Summary │
└──────────────────────────────────────────────────────────────────────────────┘
Build Architecture: amd64
Build-Space: 1744
Build-Time: 7
Distribution: unstable
Fail-Stage: build
Host Architecture: amd64
Install-Time: 36
Job: python-wrapt_1.8.0-4
Machine Architecture: amd64
Package: python-wrapt
Package-Time: 64
Source-Version: 1.8.0-4
Space: 1744
Status: attempted
Version: 1.8.0-4
────────────────────────────────────────────────────────────────────────────────
Finished at 20140719-0545
Build needed 00:01:04, 1744k disc space
DC-Status: Failed 64.166651321s
DC-Time-Estimation: 64.166651321 versus expected 1 (r/m: 63.166651321 ; m: 1.0)
|