view log » | |
_apply_patch | view log » |
archive | view log » |
package | view log » |
upload | view log » |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 |
[#312867] 2020/10/02 15:50:10 Booting image debian/sid (default) on port 22006 [#312867] 2020/10/02 15:50:13 Waiting for guest to settle [#312867] 2020/10/02 15:50:21 Sending tasks [#312867] 2020/10/02 15:50:21 Sending build environment [#312867] 2020/10/02 15:50:21 Adding repository sr.ht Warning: Permanently added '[localhost]:22006' (ECDSA) to the list of known hosts. Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). Executing: /tmp/apt-key-gpghome.vxLX0uLR84/gpg.1.sh --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 6B1296C65B24472674E7B6520585B50AC6A4914D gpg: key 0585B50AC6A4914D: public key "SourceHut Debian <debian@sr.ht>" imported gpg: Total number processed: 1 gpg: imported: 1 Warning: Permanently added '[localhost]:22006' (ECDSA) to the list of known hosts. deb https://mirror.sr.ht/debian/ sid main Warning: Permanently added '[localhost]:22006' (ECDSA) to the list of known hosts. deb-src https://mirror.sr.ht/debian/ sid main Warning: Permanently added '[localhost]:22006' (ECDSA) to the list of known hosts. Get:1 http://deb.debian.org/debian sid InRelease [146 kB] Get:2 http://deb.debian.org/debian sid/main amd64 Packages.diff/Index [27.9 kB] Get:3 http://deb.debian.org/debian sid/main Translation-en.diff/Index [27.9 kB] Get:4 http://deb.debian.org/debian sid/main amd64 Packages 2020-10-02-0200.55.pdiff [7270 B] Get:5 http://deb.debian.org/debian sid/main amd64 Packages 2020-10-02-0800.55.pdiff [2416 B] Get:6 http://deb.debian.org/debian sid/main amd64 Packages 2020-10-02-1400.49.pdiff [10.2 kB] Get:6 http://deb.debian.org/debian sid/main amd64 Packages 2020-10-02-1400.49.pdiff [10.2 kB] Get:7 https://mirror.sr.ht/debian sid InRelease [2821 B] Get:8 http://deb.debian.org/debian sid/main Translation-en 2020-10-02-0200.55.pdiff [156 B] Get:8 http://deb.debian.org/debian sid/main Translation-en 2020-10-02-0200.55.pdiff [156 B] Get:9 https://mirror.sr.ht/debian sid/main Sources [6618 B] Get:10 https://mirror.sr.ht/debian sid/main amd64 Packages [5770 B] Fetched 237 kB in 1s (169 kB/s) Reading package lists... [#312867] 2020/10/02 15:50:25 Installing packages Warning: Permanently added '[localhost]:22006' (ECDSA) to the list of known hosts. Hit:1 http://deb.debian.org/debian sid InRelease Hit:2 https://mirror.sr.ht/debian sid InRelease Reading package lists... Warning: Permanently added '[localhost]:22006' (ECDSA) to the list of known hosts. Reading package lists... Building dependency tree... Reading state information... The following additional packages will be installed: at autoconf automake autopoint autotools-dev curl dctrl-tools debhelper debian-keyring dh-autoreconf dh-strip-nondeterminism diffstat distro-info-data dput dwz equivs exim4-base exim4-config exim4-daemon-light gettext gettext-base groff-base guile-2.2-libs intltool-debian iso-codes libaliased-perl libapt-pkg-perl libarchive-cpio-perl libarchive-zip-perl libarchive13 libarray-intspan-perl libauthen-sasl-perl libb-hooks-endofscope-perl libb-hooks-op-check-perl libcapture-tiny-perl libclass-data-inheritable-perl libclass-inspector-perl libclass-method-modifiers-perl libclass-xsaccessor-perl libclone-perl libcommon-sense-perl libconfig-tiny-perl libconst-fast-perl libcontextual-return-perl libconvert-binhex-perl libcpanel-json-xs-perl libcroco3 libcurl4 libdata-dpath-perl libdata-dump-perl libdata-messagepack-perl libdata-optlist-perl libdata-validate-domain-perl libdebhelper-perl libdevel-callchecker-perl libdevel-size-perl libdevel-stacktrace-perl libdistro-info-perl libdynaloader-functions-perl libemail-address-xs-perl libencode-locale-perl libevent-2.1-7 libexception-class-perl libexporter-tiny-perl libfcgi-perl libfile-basedir-perl libfile-chdir-perl libfile-find-rule-perl libfile-homedir-perl libfile-listing-perl libfile-stripnondeterminism-perl libfile-which-perl libfl2 libfont-afm-perl libfont-ttf-perl libfribidi0 libgc1 libgetopt-long-descriptive-perl libgit-wrapper-perl libgitlab-api-v4-perl libglib2.0-0 libglib2.0-data libgnutls-dane0 libgpgme11 libgsasl7 libhash-fieldhash-perl libhtml-form-perl libhtml-format-perl libhtml-html5-entities-perl libhtml-parser-perl libhtml-tagset-perl libhtml-tree-perl libhttp-cookies-perl libhttp-daemon-perl libhttp-date-perl libhttp-message-perl libhttp-negotiate-perl libhttp-tiny-multipart-perl libicu67 libidn11 libimport-into-perl libio-html-perl libio-prompter-perl libio-pty-perl libio-sessiondata-perl libio-socket-ssl-perl libio-string-perl libio-stringy-perl libipc-run-perl libipc-run3-perl libipc-system-simple-perl libiterator-perl libiterator-util-perl libjson-maybexs-perl libjson-perl libjson-xs-perl liblist-compare-perl liblist-moreutils-perl liblist-someutils-perl liblist-someutils-xs-perl liblist-utilsby-perl liblog-any-adapter-screen-perl liblog-any-perl libltdl-dev libltdl7 liblwp-mediatypes-perl liblwp-protocol-https-perl liblzo2-2 libmail-sendmail-perl libmailtools-perl libmailutils7 libmariadb3 libmarkdown2 libmime-tools-perl libmodule-implementation-perl libmodule-runtime-perl libmoo-perl libmoox-aliases-perl libmoox-struct-perl libmouse-perl libnamespace-autoclean-perl libnamespace-clean-perl libnet-domain-tld-perl libnet-http-perl libnet-smtp-ssl-perl libnet-ssleay-perl libntlm0 libnumber-compare-perl libnumber-range-perl libobject-id-perl libossp-uuid-perl libossp-uuid16 libpackage-stash-perl libpackage-stash-xs-perl libparams-classify-perl libparams-util-perl libparams-validate-perl libpath-iterator-rule-perl libpath-tiny-perl libperlio-gzip-perl libpipeline1 libpod-constants-perl libproc-processtable-perl libpython3.8 libre-engine-re2-perl libre2-8 libreadonly-perl libref-util-perl libref-util-xs-perl libregexp-pattern-license-perl libregexp-pattern-perl librole-tiny-perl libsereal-decoder-perl libsereal-encoder-perl libsigsegv2 libsoap-lite-perl libsort-key-perl libsort-versions-perl libstrictures-perl libstring-copyright-perl libstring-escape-perl libstring-shellquote-perl libsub-exporter-perl libsub-exporter-progressive-perl libsub-identify-perl libsub-install-perl libsub-name-perl libsub-override-perl libsub-quote-perl libsys-cpuaffinity-perl libsys-hostname-long-perl libtask-weaken-perl libterm-readkey-perl libtext-glob-perl libtext-levenshteinxs-perl libtext-markdown-discount-perl libtext-xslate-perl libtime-duration-perl libtime-moment-perl libtimedate-perl libtool libtry-tiny-perl libtype-tiny-perl libtype-tiny-xs-perl libtypes-serialiser-perl libuchardet0 libunbound8 libunicode-utf8-perl libunwind8 liburi-perl libvariable-magic-perl libwant-perl libwww-perl libwww-robotrules-perl libxdelta2 libxml-libxml-perl libxml-namespacesupport-perl libxml-parser-perl libxml-sax-base-perl libxml-sax-expat-perl libxml-sax-perl libxml2 libxmlrpc-lite-perl libxxhash0 libyaml-0-2 libyaml-libyaml-perl licensecheck lintian lsb-release lzip lzop m4 mailutils mailutils-common man-db mariadb-common mysql-common patchutils pbzip2 perl-openssl-defaults pixz po-debconf pristine-tar psmisc python-apt-common python3-apt python3-certifi python3-chardet python3-debian python3-gpg python3-idna python3-magic python3-pkg-resources python3-requests python3-six python3-unidiff python3-urllib3 python3-xdg shared-mime-info strace t1utils unzip wdiff xdelta xdelta3 xdg-user-dirs Suggested packages: autoconf-archive gnu-standards autoconf-doc debtags dh-make adequate autopkgtest bls-standalone check-all-the-things cvs-buildpackage devscripts-el diffoscope disorderfs dose-extra duck faketime gnuplot how-can-i-help libdbd-pg-perl libfile-desktopentry-perl libnet-smtps-perl libterm-size-perl libyaml-syck-perl mozilla-devscripts mutt piuparts postgresql-client quilt ratt reprotest svn-buildpackage w3m mini-dinstall exim4-doc-html | exim4-doc-info eximon4 spf-tools-perl swaks gettext-doc libasprintf-dev libgettextpo-dev groff isoquery lrzip libdigest-hmac-perl libgssapi-perl dns-root-data libtool-doc libcrypt-ssleay-perl uuid libscalar-number-perl libapache2-mod-perl2 libmime-lite-perl libnet-jabber-perl libbareword-filehandles-perl libindirect-perl libmultidimensional-perl gfortran | fortran95-compiler gcj-jdk libdevel-lexalias-perl libauthen-ntlm-perl libxml-sax-expatxs-perl bash-completion binutils-multiarch libtext-template-perl m4-doc mailutils-mh mailutils-doc www-browser libmail-box-perl python3-apt-dbg python-apt-doc python3-setuptools python3-cryptography python3-openssl python3-socks python-requests-doc inoticoming zip wdiff-doc The following NEW packages will be installed: at autoconf automake autopoint autotools-dev curl dctrl-tools debhelper debian-keyring devscripts dh-autoreconf dh-strip-nondeterminism diffstat distro-info-data dput dwz equivs exim4-base exim4-config exim4-daemon-light gettext gettext-base groff-base guile-2.2-libs intltool-debian iso-codes libaliased-perl libapt-pkg-perl libarchive-cpio-perl libarchive-zip-perl libarchive13 libarray-intspan-perl libauthen-sasl-perl libb-hooks-endofscope-perl libb-hooks-op-check-perl libcapture-tiny-perl libclass-data-inheritable-perl libclass-inspector-perl libclass-method-modifiers-perl libclass-xsaccessor-perl libclone-perl libcommon-sense-perl libconfig-tiny-perl libconst-fast-perl libcontextual-return-perl libconvert-binhex-perl libcpanel-json-xs-perl libcroco3 libcurl4 libdata-dpath-perl libdata-dump-perl libdata-messagepack-perl libdata-optlist-perl libdata-validate-domain-perl libdebhelper-perl libdevel-callchecker-perl libdevel-size-perl libdevel-stacktrace-perl libdistro-info-perl libdynaloader-functions-perl libemail-address-xs-perl libencode-locale-perl libevent-2.1-7 libexception-class-perl libexporter-tiny-perl libfcgi-perl libfile-basedir-perl libfile-chdir-perl libfile-find-rule-perl libfile-homedir-perl libfile-listing-perl libfile-stripnondeterminism-perl libfile-which-perl libfl2 libfont-afm-perl libfont-ttf-perl libfribidi0 libgc1 libgetopt-long-descriptive-perl libgit-wrapper-perl libgitlab-api-v4-perl libglib2.0-0 libglib2.0-data libgnutls-dane0 libgpgme11 libgsasl7 libhash-fieldhash-perl libhtml-form-perl libhtml-format-perl libhtml-html5-entities-perl libhtml-parser-perl libhtml-tagset-perl libhtml-tree-perl libhttp-cookies-perl libhttp-daemon-perl libhttp-date-perl libhttp-message-perl libhttp-negotiate-perl libhttp-tiny-multipart-perl libicu67 libidn11 libimport-into-perl libio-html-perl libio-prompter-perl libio-pty-perl libio-sessiondata-perl libio-socket-ssl-perl libio-string-perl libio-stringy-perl libipc-run-perl libipc-run3-perl libipc-system-simple-perl libiterator-perl libiterator-util-perl libjson-maybexs-perl libjson-perl libjson-xs-perl liblist-compare-perl liblist-moreutils-perl liblist-someutils-perl liblist-someutils-xs-perl liblist-utilsby-perl liblog-any-adapter-screen-perl liblog-any-perl libltdl-dev libltdl7 liblwp-mediatypes-perl liblwp-protocol-https-perl liblzo2-2 libmail-sendmail-perl libmailtools-perl libmailutils7 libmariadb3 libmarkdown2 libmime-tools-perl libmodule-implementation-perl libmodule-runtime-perl libmoo-perl libmoox-aliases-perl libmoox-struct-perl libmouse-perl libnamespace-autoclean-perl libnamespace-clean-perl libnet-domain-tld-perl libnet-http-perl libnet-smtp-ssl-perl libnet-ssleay-perl libntlm0 libnumber-compare-perl libnumber-range-perl libobject-id-perl libossp-uuid-perl libossp-uuid16 libpackage-stash-perl libpackage-stash-xs-perl libparams-classify-perl libparams-util-perl libparams-validate-perl libpath-iterator-rule-perl libpath-tiny-perl libperlio-gzip-perl libpipeline1 libpod-constants-perl libproc-processtable-perl libpython3.8 libre-engine-re2-perl libre2-8 libreadonly-perl libref-util-perl libref-util-xs-perl libregexp-pattern-license-perl libregexp-pattern-perl librole-tiny-perl libsereal-decoder-perl libsereal-encoder-perl libsigsegv2 libsoap-lite-perl libsort-key-perl libsort-versions-perl libstrictures-perl libstring-copyright-perl libstring-escape-perl libstring-shellquote-perl libsub-exporter-perl libsub-exporter-progressive-perl libsub-identify-perl libsub-install-perl libsub-name-perl libsub-override-perl libsub-quote-perl libsys-cpuaffinity-perl libsys-hostname-long-perl libtask-weaken-perl libterm-readkey-perl libtext-glob-perl libtext-levenshteinxs-perl libtext-markdown-discount-perl libtext-xslate-perl libtime-duration-perl libtime-moment-perl libtimedate-perl libtool libtry-tiny-perl libtype-tiny-perl libtype-tiny-xs-perl libtypes-serialiser-perl libuchardet0 libunbound8 libunicode-utf8-perl libunwind8 liburi-perl libvariable-magic-perl libwant-perl libwww-perl libwww-robotrules-perl libxdelta2 libxml-libxml-perl libxml-namespacesupport-perl libxml-parser-perl libxml-sax-base-perl libxml-sax-expat-perl libxml-sax-perl libxml2 libxmlrpc-lite-perl libxxhash0 libyaml-0-2 libyaml-libyaml-perl licensecheck lintian lsb-release lzip lzop m4 mailutils mailutils-common man-db mariadb-common mysql-common patchutils pbzip2 perl-openssl-defaults pixz po-debconf pristine-tar psmisc python-apt-common python3-apt python3-certifi python3-chardet python3-debian python3-gpg python3-idna python3-magic python3-pkg-resources python3-requests python3-six python3-unidiff python3-urllib3 python3-xdg reprepro rsync shared-mime-info strace t1utils unzip wdiff xdelta xdelta3 xdg-user-dirs 0 upgraded, 269 newly installed, 0 to remove and 0 not upgraded. Need to get 85.1 MB of archives. After this operation, 249 MB of additional disk space will be used. Get:1 http://deb.debian.org/debian sid/main amd64 libuchardet0 amd64 0.0.7-1 [67.8 kB] Get:2 http://deb.debian.org/debian sid/main amd64 groff-base amd64 1.22.4-5 [920 kB] Get:3 http://deb.debian.org/debian sid/main amd64 libpipeline1 amd64 1.5.3-1 [34.3 kB] Get:4 http://deb.debian.org/debian sid/main amd64 man-db amd64 2.9.3-2 [1314 kB] Get:5 http://deb.debian.org/debian sid/main amd64 libxxhash0 amd64 0.8.0-1 [17.7 kB] Get:6 http://deb.debian.org/debian sid/main amd64 rsync amd64 3.2.3-2 [333 kB] Get:7 http://deb.debian.org/debian sid/main amd64 gettext-base amd64 0.19.8.1-10 [123 kB] Get:8 http://deb.debian.org/debian sid/main amd64 libfl2 amd64 2.6.4-8 [103 kB] Get:9 http://deb.debian.org/debian sid/main amd64 at amd64 3.1.23-1+b1 [49.1 kB] Get:10 http://deb.debian.org/debian sid/main amd64 libsigsegv2 amd64 2.12-2 [32.8 kB] Get:11 http://deb.debian.org/debian sid/main amd64 m4 amd64 1.4.18-4 [203 kB] Get:12 http://deb.debian.org/debian sid/main amd64 autoconf all 2.69-11.1 [341 kB] Get:13 http://deb.debian.org/debian sid/main amd64 autotools-dev all 20180224.1 [77.0 kB] Get:14 http://deb.debian.org/debian sid/main amd64 automake all 1:1.16.2-4 [801 kB] Get:15 http://deb.debian.org/debian sid/main amd64 autopoint all 0.19.8.1-10 [435 kB] Get:16 http://deb.debian.org/debian sid/main amd64 libcurl4 amd64 7.72.0-1 [336 kB] Get:17 http://deb.debian.org/debian sid/main amd64 curl amd64 7.72.0-1 [264 kB] Get:18 http://deb.debian.org/debian sid/main amd64 dctrl-tools amd64 2.24-3+b1 [104 kB] Get:19 http://deb.debian.org/debian sid/main amd64 libtool all 2.4.6-14 [513 kB] Get:20 http://deb.debian.org/debian sid/main amd64 dh-autoreconf all 19 [16.9 kB] Get:21 http://deb.debian.org/debian sid/main amd64 libdebhelper-perl all 13.2.1 [188 kB] Get:22 http://deb.debian.org/debian sid/main amd64 libarchive-zip-perl all 1.68-1 [104 kB] Get:23 http://deb.debian.org/debian sid/main amd64 libsub-override-perl all 0.09-2 [10.2 kB] Get:24 http://deb.debian.org/debian sid/main amd64 libfile-stripnondeterminism-perl all 1.9.0-1 [25.5 kB] Get:25 http://deb.debian.org/debian sid/main amd64 dh-strip-nondeterminism all 1.9.0-1 [15.2 kB] Get:26 http://deb.debian.org/debian sid/main amd64 dwz amd64 0.13-5 [151 kB] Get:27 http://deb.debian.org/debian sid/main amd64 libglib2.0-0 amd64 2.66.0-2 [1361 kB] Get:28 http://deb.debian.org/debian sid/main amd64 libicu67 amd64 67.1-4 [8624 kB] Get:29 http://deb.debian.org/debian sid/main amd64 libxml2 amd64 2.9.10+dfsg-6 [692 kB] Get:30 http://deb.debian.org/debian sid/main amd64 libcroco3 amd64 0.6.13-1 [146 kB] Get:31 http://deb.debian.org/debian sid/main amd64 gettext amd64 0.19.8.1-10 [1303 kB] Get:32 http://deb.debian.org/debian sid/main amd64 intltool-debian all 0.35.0+20060710.5 [26.8 kB] Get:33 http://deb.debian.org/debian sid/main amd64 po-debconf all 1.0.21 [248 kB] Get:34 http://deb.debian.org/debian sid/main amd64 debhelper all 13.2.1 [1007 kB] Get:35 http://deb.debian.org/debian sid/main amd64 debian-keyring all 2020.09.24 [31.9 MB] Get:36 http://deb.debian.org/debian sid/main amd64 libfile-which-perl all 1.23-1 [16.6 kB] Get:37 http://deb.debian.org/debian sid/main amd64 libfile-homedir-perl all 1.006-1 [43.8 kB] Get:38 http://deb.debian.org/debian sid/main amd64 libio-pty-perl amd64 1:1.12-1 [36.3 kB] Get:39 http://deb.debian.org/debian sid/main amd64 libipc-run-perl all 20200505.0-1 [102 kB] Get:40 http://deb.debian.org/debian sid/main amd64 libclass-method-modifiers-perl all 2.13-1 [19.2 kB] Get:41 http://deb.debian.org/debian sid/main amd64 libb-hooks-op-check-perl amd64 0.22-1+b2 [11.3 kB] Get:42 http://deb.debian.org/debian sid/main amd64 libdynaloader-functions-perl all 0.003-1 [12.6 kB] Get:43 http://deb.debian.org/debian sid/main amd64 libdevel-callchecker-perl amd64 0.008-1+b1 [15.9 kB] Get:44 http://deb.debian.org/debian sid/main amd64 libparams-classify-perl amd64 0.015-1+b2 [25.6 kB] Get:45 http://deb.debian.org/debian sid/main amd64 libmodule-runtime-perl all 0.016-1 [19.4 kB] Get:46 http://deb.debian.org/debian sid/main amd64 libimport-into-perl all 1.002005-1 [11.6 kB] Get:47 http://deb.debian.org/debian sid/main amd64 librole-tiny-perl all 2.001004-1 [20.8 kB] Get:48 http://deb.debian.org/debian sid/main amd64 libstrictures-perl all 2.000006-1 [18.6 kB] Get:49 http://deb.debian.org/debian sid/main amd64 libsub-quote-perl all 2.006006-1 [21.0 kB] Get:50 http://deb.debian.org/debian sid/main amd64 libmoo-perl all 2.004000-1 [59.4 kB] Get:51 http://deb.debian.org/debian sid/main amd64 libencode-locale-perl all 1.05-1 [13.7 kB] Get:52 http://deb.debian.org/debian sid/main amd64 libtimedate-perl all 2.3300-1 [39.2 kB] Get:53 http://deb.debian.org/debian sid/main amd64 libhttp-date-perl all 6.05-1 [10.4 kB] Get:54 http://deb.debian.org/debian sid/main amd64 libfile-listing-perl all 6.04-1 [10.3 kB] Get:55 http://deb.debian.org/debian sid/main amd64 libhtml-tagset-perl all 3.20-4 [13.0 kB] Get:56 http://deb.debian.org/debian sid/main amd64 liburi-perl all 1.76-2 [90.2 kB] Get:57 http://deb.debian.org/debian sid/main amd64 libhtml-parser-perl amd64 3.75-1 [105 kB] Get:58 http://deb.debian.org/debian sid/main amd64 libhtml-tree-perl all 5.07-2 [213 kB] Get:59 http://deb.debian.org/debian sid/main amd64 libio-html-perl all 1.001-1 [17.6 kB] Get:60 http://deb.debian.org/debian sid/main amd64 liblwp-mediatypes-perl all 6.04-1 [19.9 kB] Get:61 http://deb.debian.org/debian sid/main amd64 libhttp-message-perl all 6.26-1 [79.4 kB] Get:62 http://deb.debian.org/debian sid/main amd64 libhttp-cookies-perl all 6.08-1 [19.3 kB] Get:63 http://deb.debian.org/debian sid/main amd64 libhttp-negotiate-perl all 6.01-1 [12.8 kB] Get:64 http://deb.debian.org/debian sid/main amd64 perl-openssl-defaults amd64 5 [7360 B] Get:65 http://deb.debian.org/debian sid/main amd64 libnet-ssleay-perl amd64 1.88-3 [320 kB] Get:66 http://deb.debian.org/debian sid/main amd64 libio-socket-ssl-perl all 2.068-1 [215 kB] Get:67 http://deb.debian.org/debian sid/main amd64 libnet-http-perl all 6.19-1 [24.8 kB] Get:68 http://deb.debian.org/debian sid/main amd64 liblwp-protocol-https-perl all 6.09-1 [12.0 kB] Get:69 http://deb.debian.org/debian sid/main amd64 libtry-tiny-perl all 0.30-1 [23.3 kB] Get:70 http://deb.debian.org/debian sid/main amd64 libwww-robotrules-perl all 6.02-1 [12.9 kB] Get:71 http://deb.debian.org/debian sid/main amd64 libwww-perl all 6.49-1 [192 kB] Get:72 http://deb.debian.org/debian sid/main amd64 patchutils amd64 0.4.2-1 [77.5 kB] Get:73 http://deb.debian.org/debian sid/main amd64 wdiff amd64 1.2.2-2+b1 [122 kB] Get:74 http://deb.debian.org/debian sid/main amd64 devscripts amd64 2.20.4 [1061 kB] Get:75 http://deb.debian.org/debian sid/main amd64 diffstat amd64 1.63-1 [35.6 kB] Get:76 http://deb.debian.org/debian sid/main amd64 distro-info-data all 0.44 [6620 B] Get:77 http://deb.debian.org/debian sid/main amd64 python3-pkg-resources all 49.3.1-2 [188 kB] Get:78 http://deb.debian.org/debian sid/main amd64 python3-chardet all 3.0.4-7 [81.1 kB] Get:79 http://deb.debian.org/debian sid/main amd64 python3-six all 1.15.0-1 [16.8 kB] Get:80 http://deb.debian.org/debian sid/main amd64 python3-debian all 0.1.37 [74.2 kB] Get:81 http://deb.debian.org/debian sid/main amd64 libgpgme11 amd64 1.14.0-1 [281 kB] Get:82 http://deb.debian.org/debian sid/main amd64 python3-gpg amd64 1.14.0-1 [332 kB] Get:83 http://deb.debian.org/debian sid/main amd64 dput all 1.0.3 [54.5 kB] Get:84 http://deb.debian.org/debian sid/main amd64 equivs all 2.3.1 [22.7 kB] Get:85 http://deb.debian.org/debian sid/main amd64 exim4-config all 4.94-8 [331 kB] Get:86 http://deb.debian.org/debian sid/main amd64 exim4-base amd64 4.94-8 [1167 kB] Get:87 http://deb.debian.org/debian sid/main amd64 libevent-2.1-7 amd64 2.1.12-stable-1 [188 kB] Get:88 http://deb.debian.org/debian sid/main amd64 libunbound8 amd64 1.11.0-1 [495 kB] Get:89 http://deb.debian.org/debian sid/main amd64 libgnutls-dane0 amd64 3.6.15-4 [378 kB] Get:90 http://deb.debian.org/debian sid/main amd64 libidn11 amd64 1.33-2.4 [116 kB] Get:91 http://deb.debian.org/debian sid/main amd64 exim4-daemon-light amd64 4.94-8 [648 kB] Get:92 http://deb.debian.org/debian sid/main amd64 libgc1 amd64 1:8.0.4-2 [239 kB] Get:93 http://deb.debian.org/debian sid/main amd64 libltdl7 amd64 2.4.6-14 [390 kB] Get:94 http://deb.debian.org/debian sid/main amd64 guile-2.2-libs amd64 2.2.7+1-5.3 [4983 kB] Get:95 http://deb.debian.org/debian sid/main amd64 iso-codes all 4.5.0-1 [2793 kB] Get:96 http://deb.debian.org/debian sid/main amd64 libaliased-perl all 0.34-1 [13.8 kB] Get:97 http://deb.debian.org/debian sid/main amd64 libapt-pkg-perl amd64 0.1.36+b3 [71.0 kB] Get:98 http://deb.debian.org/debian sid/main amd64 libarchive-cpio-perl all 0.10-1 [10.3 kB] Get:99 http://deb.debian.org/debian sid/main amd64 libarchive13 amd64 3.4.3-2 [342 kB] Get:100 http://deb.debian.org/debian sid/main amd64 libarray-intspan-perl all 2.004-1 [25.5 kB] Get:101 http://deb.debian.org/debian sid/main amd64 libauthen-sasl-perl all 2.1600-1 [50.8 kB] Get:102 http://deb.debian.org/debian sid/main amd64 libmodule-implementation-perl all 0.09-1 [12.9 kB] Get:103 http://deb.debian.org/debian sid/main amd64 libsub-exporter-progressive-perl all 0.001013-1 [7588 B] Get:104 http://deb.debian.org/debian sid/main amd64 libvariable-magic-perl amd64 0.62-1+b2 [46.0 kB] Get:105 http://deb.debian.org/debian sid/main amd64 libb-hooks-endofscope-perl all 0.24-1 [18.6 kB] Get:106 http://deb.debian.org/debian sid/main amd64 libcapture-tiny-perl all 0.48-1 [26.0 kB] Get:107 http://deb.debian.org/debian sid/main amd64 libclass-data-inheritable-perl all 0.08-3 [8588 B] Get:108 http://deb.debian.org/debian sid/main amd64 libclass-inspector-perl all 1.36-1 [19.6 kB] Get:109 http://deb.debian.org/debian sid/main amd64 libclass-xsaccessor-perl amd64 1.19-3+b5 [38.4 kB] Get:110 http://deb.debian.org/debian sid/main amd64 libclone-perl amd64 0.45-1 [15.1 kB] Get:111 http://deb.debian.org/debian sid/main amd64 libcommon-sense-perl amd64 3.75-1+b2 [24.6 kB] Get:112 http://deb.debian.org/debian sid/main amd64 libconfig-tiny-perl all 2.24-1 [16.2 kB] Get:113 http://deb.debian.org/debian sid/main amd64 libparams-util-perl amd64 1.07-3+b5 [22.9 kB] Get:114 http://deb.debian.org/debian sid/main amd64 libsub-install-perl all 0.928-1 [11.4 kB] Get:115 http://deb.debian.org/debian sid/main amd64 libdata-optlist-perl all 0.110-1 [10.6 kB] Get:116 http://deb.debian.org/debian sid/main amd64 libsub-exporter-perl all 0.987-1 [47.2 kB] Get:117 http://deb.debian.org/debian sid/main amd64 libconst-fast-perl all 0.014-1 [8250 B] Get:118 http://deb.debian.org/debian sid/main amd64 libwant-perl amd64 0.29-1+b5 [28.8 kB] Get:119 http://deb.debian.org/debian sid/main amd64 libcontextual-return-perl all 0.004014-2 [56.6 kB] Get:120 http://deb.debian.org/debian sid/main amd64 libconvert-binhex-perl all 1.125-1 [30.5 kB] Get:121 http://deb.debian.org/debian sid/main amd64 libcpanel-json-xs-perl amd64 4.23-1 [128 kB] Get:122 http://deb.debian.org/debian sid/main amd64 libdevel-stacktrace-perl all 2.0400-1 [28.6 kB] Get:123 http://deb.debian.org/debian sid/main amd64 libexception-class-perl all 1.44-1 [32.3 kB] Get:124 http://deb.debian.org/debian sid/main amd64 libiterator-perl all 0.03+ds1-1 [18.9 kB] Get:125 http://deb.debian.org/debian sid/main amd64 libiterator-util-perl all 0.02+ds1-1 [14.2 kB] Get:126 http://deb.debian.org/debian sid/main amd64 libexporter-tiny-perl all 1.002002-1 [37.8 kB] Get:127 http://deb.debian.org/debian sid/main amd64 liblist-moreutils-perl amd64 0.416-1+b5 [63.6 kB] Get:128 http://deb.debian.org/debian sid/main amd64 libdata-dpath-perl all 0.58-1 [43.5 kB] Get:129 http://deb.debian.org/debian sid/main amd64 libdata-dump-perl all 1.23-1 [29.5 kB] Get:130 http://deb.debian.org/debian sid/main amd64 libdata-messagepack-perl amd64 1.00-4 [38.3 kB] Get:131 http://deb.debian.org/debian sid/main amd64 libnet-domain-tld-perl all 1.75-1 [33.3 kB] Get:132 http://deb.debian.org/debian sid/main amd64 libdata-validate-domain-perl all 0.10-1 [12.3 kB] Get:133 http://deb.debian.org/debian sid/main amd64 libdevel-size-perl amd64 0.83-1+b1 [26.0 kB] Get:134 http://deb.debian.org/debian sid/main amd64 libdistro-info-perl all 0.24 [6900 B] Get:135 http://deb.debian.org/debian sid/main amd64 libemail-address-xs-perl amd64 1.04-1+b2 [28.1 kB] Get:136 http://deb.debian.org/debian sid/main amd64 libfcgi-perl amd64 0.79-1 [39.1 kB] Get:137 http://deb.debian.org/debian sid/main amd64 libipc-system-simple-perl all 1.30-1 [28.2 kB] Get:138 http://deb.debian.org/debian sid/main amd64 libfile-basedir-perl all 0.08-1 [17.7 kB] Get:139 http://deb.debian.org/debian sid/main amd64 libfile-chdir-perl all 0.1008-1 [13.3 kB] Get:140 http://deb.debian.org/debian sid/main amd64 libnumber-compare-perl all 0.03-1 [7642 B] Get:141 http://deb.debian.org/debian sid/main amd64 libtext-glob-perl all 0.11-1 [8888 B] Get:142 http://deb.debian.org/debian sid/main amd64 libfile-find-rule-perl all 0.34-1 [30.6 kB] Get:143 http://deb.debian.org/debian sid/main amd64 libfont-afm-perl all 1.20-3 [14.0 kB] Get:144 http://deb.debian.org/debian sid/main amd64 libio-string-perl all 1.08-3 [12.3 kB] Get:145 http://deb.debian.org/debian sid/main amd64 libfont-ttf-perl all 1.06-1 [317 kB] Get:146 http://deb.debian.org/debian sid/main amd64 libfribidi0 amd64 1.0.8-2 [64.8 kB] Get:147 http://deb.debian.org/debian sid/main amd64 libio-stringy-perl all 2.111-3 [56.5 kB] Get:148 http://deb.debian.org/debian sid/main amd64 libparams-validate-perl amd64 1.29-3 [67.3 kB] Get:149 http://deb.debian.org/debian sid/main amd64 libgetopt-long-descriptive-perl all 0.105-1 [28.4 kB] Get:150 http://deb.debian.org/debian sid/main amd64 libsort-versions-perl all 1.62-1 [11.0 kB] Get:151 http://deb.debian.org/debian sid/main amd64 libgit-wrapper-perl all 0.048-1 [34.7 kB] Get:152 http://deb.debian.org/debian sid/main amd64 libhttp-tiny-multipart-perl all 0.08-1 [9304 B] Get:153 http://deb.debian.org/debian sid/main amd64 libio-prompter-perl all 0.004015-1 [60.4 kB] Get:154 http://deb.debian.org/debian sid/main amd64 libjson-perl all 4.02000-2 [88.8 kB] Get:155 http://deb.debian.org/debian sid/main amd64 liblog-any-perl all 1.708-1 [73.4 kB] Get:156 http://deb.debian.org/debian sid/main amd64 liblog-any-adapter-screen-perl all 0.140-1 [13.1 kB] Get:157 http://deb.debian.org/debian sid/main amd64 libpackage-stash-perl all 0.38-1 [21.7 kB] Get:158 http://deb.debian.org/debian sid/main amd64 libsub-identify-perl amd64 0.14-1+b2 [12.0 kB] Get:159 http://deb.debian.org/debian sid/main amd64 libsub-name-perl amd64 0.26-1 [13.5 kB] Get:160 http://deb.debian.org/debian sid/main amd64 libnamespace-clean-perl all 0.27-1 [17.3 kB] Get:161 http://deb.debian.org/debian sid/main amd64 libpath-tiny-perl all 0.114-1 [53.6 kB] Get:162 http://deb.debian.org/debian sid/main amd64 libtype-tiny-perl all 1.010006-1 [339 kB] Get:163 http://deb.debian.org/debian sid/main amd64 libgitlab-api-v4-perl all 0.25-2 [87.9 kB] Get:164 http://deb.debian.org/debian sid/main amd64 libglib2.0-data all 2.66.0-2 [1167 kB] Get:165 http://deb.debian.org/debian sid/main amd64 libntlm0 amd64 1.6-1+b1 [23.5 kB] Get:166 http://deb.debian.org/debian sid/main amd64 libgsasl7 amd64 1.8.1-1 [217 kB] Get:167 http://deb.debian.org/debian sid/main amd64 libhash-fieldhash-perl amd64 0.15-1+b2 [18.0 kB] Get:168 http://deb.debian.org/debian sid/main amd64 libhtml-form-perl all 6.07-1 [22.9 kB] Get:169 http://deb.debian.org/debian sid/main amd64 libhtml-format-perl all 2.12-1 [43.5 kB] Get:170 http://deb.debian.org/debian sid/main amd64 libhtml-html5-entities-perl all 0.004-1 [21.8 kB] Get:171 http://deb.debian.org/debian sid/main amd64 libhttp-daemon-perl all 6.12-1 [22.9 kB] Get:172 http://deb.debian.org/debian sid/main amd64 libio-sessiondata-perl all 1.03-1 [5782 B] Get:173 http://deb.debian.org/debian sid/main amd64 libipc-run3-perl all 0.048-2 [34.2 kB] Get:174 http://deb.debian.org/debian sid/main amd64 libtypes-serialiser-perl all 1.0-1 [12.7 kB] Get:175 http://deb.debian.org/debian sid/main amd64 libjson-xs-perl amd64 4.020-1+b1 [94.0 kB] Get:176 http://deb.debian.org/debian sid/main amd64 libjson-maybexs-perl all 1.004002-1 [13.1 kB] Get:177 http://deb.debian.org/debian sid/main amd64 liblist-compare-perl all 0.55-1 [66.9 kB] Get:178 http://deb.debian.org/debian sid/main amd64 liblist-someutils-perl all 0.58-1 [36.5 kB] Get:179 http://deb.debian.org/debian sid/main amd64 liblist-someutils-xs-perl amd64 0.58-2 [33.2 kB] Get:180 http://deb.debian.org/debian sid/main amd64 liblist-utilsby-perl all 0.11-1 [15.4 kB] Get:181 http://deb.debian.org/debian sid/main amd64 libltdl-dev amd64 2.4.6-14 [162 kB] Get:182 http://deb.debian.org/debian sid/main amd64 liblzo2-2 amd64 2.10-2 [56.9 kB] Get:183 http://deb.debian.org/debian sid/main amd64 libsys-hostname-long-perl all 1.5-1 [12.0 kB] Get:184 http://deb.debian.org/debian sid/main amd64 libmail-sendmail-perl all 0.80-1 [25.3 kB] Get:185 http://deb.debian.org/debian sid/main amd64 libnet-smtp-ssl-perl all 1.04-1 [6184 B] Get:186 http://deb.debian.org/debian sid/main amd64 libmailtools-perl all 2.21-1 [95.5 kB] Get:187 http://deb.debian.org/debian sid/main amd64 mailutils-common all 1:3.10-3 [728 kB] Get:188 http://deb.debian.org/debian sid/main amd64 mysql-common all 5.8+1.0.5 [7324 B] Get:189 http://deb.debian.org/debian sid/main amd64 mariadb-common all 1:10.5.5-1 [34.1 kB] Get:190 http://deb.debian.org/debian sid/main amd64 libmariadb3 amd64 1:10.5.5-1 [175 kB] Get:191 http://deb.debian.org/debian sid/main amd64 libpython3.8 amd64 3.8.6-1 [1608 kB] Get:192 http://deb.debian.org/debian sid/main amd64 libmailutils7 amd64 1:3.10-3 [894 kB] Get:193 http://deb.debian.org/debian sid/main amd64 libmarkdown2 amd64 2.2.6-1 [36.8 kB] Get:194 http://deb.debian.org/debian sid/main amd64 libmime-tools-perl all 5.509-1 [212 kB] Get:195 http://deb.debian.org/debian sid/main amd64 libmoox-aliases-perl all 0.001006-1 [10.2 kB] Get:196 http://deb.debian.org/debian sid/main amd64 libnamespace-autoclean-perl all 0.29-1 [15.0 kB] Get:197 http://deb.debian.org/debian sid/main amd64 libobject-id-perl all 0.1.2-2 [16.5 kB] Get:198 http://deb.debian.org/debian sid/main amd64 libmoox-struct-perl all 0.020-1 [25.4 kB] Get:199 http://deb.debian.org/debian sid/main amd64 libmouse-perl amd64 2.5.10-1 [173 kB] Get:200 http://deb.debian.org/debian sid/main amd64 libnumber-range-perl all 0.12-1 [9274 B] Get:201 http://deb.debian.org/debian sid/main amd64 libossp-uuid16 amd64 1.6.2-1.5+b8 [38.2 kB] Get:202 http://deb.debian.org/debian sid/main amd64 libossp-uuid-perl amd64 1.6.2-1.5+b8 [28.7 kB] Get:203 http://deb.debian.org/debian sid/main amd64 libpackage-stash-xs-perl amd64 0.29-1+b1 [20.2 kB] Get:204 http://deb.debian.org/debian sid/main amd64 libpath-iterator-rule-perl all 1.014-1 [54.0 kB] Get:205 http://deb.debian.org/debian sid/main amd64 libperlio-gzip-perl amd64 0.19-1+b6 [17.4 kB] Get:206 http://deb.debian.org/debian sid/main amd64 libpod-constants-perl all 0.19-2 [17.3 kB] Get:207 http://deb.debian.org/debian sid/main amd64 libproc-processtable-perl amd64 0.59-2 [45.7 kB] Get:208 http://deb.debian.org/debian sid/main amd64 libre2-8 amd64 20200801+dfsg-1 [171 kB] Get:209 http://deb.debian.org/debian sid/main amd64 libre-engine-re2-perl amd64 0.13-5+b3 [17.3 kB] Get:210 http://deb.debian.org/debian sid/main amd64 libreadonly-perl all 2.050-2 [23.0 kB] Get:211 http://deb.debian.org/debian sid/main amd64 libref-util-perl all 0.204-1 [17.1 kB] Get:212 http://deb.debian.org/debian sid/main amd64 libref-util-xs-perl amd64 0.117-1+b2 [14.0 kB] Get:213 http://deb.debian.org/debian sid/main amd64 libregexp-pattern-license-perl all 3.4.0-1 [56.4 kB] Get:214 http://deb.debian.org/debian sid/main amd64 libregexp-pattern-perl all 0.2.14-1 [18.8 kB] Get:215 http://deb.debian.org/debian sid/main amd64 libsereal-decoder-perl amd64 4.018+ds-1 [98.9 kB] Get:216 http://deb.debian.org/debian sid/main amd64 libsereal-encoder-perl amd64 4.018+ds-1 [103 kB] Get:217 http://deb.debian.org/debian sid/main amd64 libtask-weaken-perl all 1.06-1 [9252 B] Get:218 http://deb.debian.org/debian sid/main amd64 libxml-parser-perl amd64 2.46-1+b1 [207 kB] Get:219 http://deb.debian.org/debian sid/main amd64 libsoap-lite-perl all 1.27-1 [258 kB] Get:220 http://deb.debian.org/debian sid/main amd64 libsort-key-perl amd64 1.33-2+b2 [37.1 kB] Get:221 http://deb.debian.org/debian sid/main amd64 libstring-copyright-perl all 0.003006-1 [11.6 kB] Get:222 http://deb.debian.org/debian sid/main amd64 libstring-escape-perl all 2010.002-2 [19.1 kB] Get:223 http://deb.debian.org/debian sid/main amd64 libstring-shellquote-perl all 1.04-1 [12.6 kB] Get:224 http://deb.debian.org/debian sid/main amd64 libsys-cpuaffinity-perl amd64 1.12-1+b4 [32.6 kB] Get:225 http://deb.debian.org/debian sid/main amd64 libterm-readkey-perl amd64 2.38-1+b1 [27.7 kB] Get:226 http://deb.debian.org/debian sid/main amd64 libtext-levenshteinxs-perl amd64 0.03-4+b7 [8696 B] Get:227 http://deb.debian.org/debian sid/main amd64 libtext-markdown-discount-perl amd64 0.12-1 [12.7 kB] Get:228 http://deb.debian.org/debian sid/main amd64 libtext-xslate-perl amd64 3.5.8-1 [198 kB] Get:229 http://deb.debian.org/debian sid/main amd64 libtime-duration-perl all 1.21-1 [13.7 kB] Get:230 http://deb.debian.org/debian sid/main amd64 libtime-moment-perl amd64 0.44-1+b2 [75.1 kB] Get:231 http://deb.debian.org/debian sid/main amd64 libtype-tiny-xs-perl amd64 0.021-1 [25.1 kB] Get:232 http://deb.debian.org/debian sid/main amd64 libunicode-utf8-perl amd64 0.62-1+b1 [20.2 kB] Get:233 http://deb.debian.org/debian sid/main amd64 libunwind8 amd64 1.3.2-2 [54.5 kB] Get:234 http://deb.debian.org/debian sid/main amd64 libxdelta2 amd64 1.1.3-9.3 [48.2 kB] Get:235 http://deb.debian.org/debian sid/main amd64 libxml-namespacesupport-perl all 1.12-1 [14.8 kB] Get:236 http://deb.debian.org/debian sid/main amd64 libxml-sax-base-perl all 1.09-1 [20.4 kB] Get:237 http://deb.debian.org/debian sid/main amd64 libxml-sax-perl all 1.02+dfsg-1 [59.0 kB] Get:238 http://deb.debian.org/debian sid/main amd64 libxml-libxml-perl amd64 2.0134+dfsg-2 [343 kB] Get:239 http://deb.debian.org/debian sid/main amd64 libxml-sax-expat-perl all 0.51-1 [12.0 kB] Get:240 http://deb.debian.org/debian sid/main amd64 libxmlrpc-lite-perl all 0.717-4 [22.6 kB] Get:241 http://deb.debian.org/debian sid/main amd64 libyaml-0-2 amd64 0.2.2-1 [49.6 kB] Get:242 http://deb.debian.org/debian sid/main amd64 libyaml-libyaml-perl amd64 0.82+repack-1 [35.6 kB] Get:243 http://deb.debian.org/debian sid/main amd64 licensecheck all 3.0.47-1 [49.7 kB] Get:244 http://deb.debian.org/debian sid/main amd64 lzip amd64 1.21-8 [84.3 kB] Get:245 http://deb.debian.org/debian sid/main amd64 lzop amd64 1.04-1 [83.4 kB] Get:246 http://deb.debian.org/debian sid/main amd64 t1utils amd64 1.41-4 [62.1 kB] Get:247 http://deb.debian.org/debian sid/main amd64 unzip amd64 6.0-25 [172 kB] Get:248 http://deb.debian.org/debian sid/main amd64 lintian all 2.97.0 [1265 kB] Get:249 http://deb.debian.org/debian sid/main amd64 lsb-release all 11.1.0 [27.9 kB] Get:250 http://deb.debian.org/debian sid/main amd64 mailutils amd64 1:3.10-3 [575 kB] Get:251 http://deb.debian.org/debian sid/main amd64 pbzip2 amd64 1.1.13-1 [44.9 kB] Get:252 http://deb.debian.org/debian sid/main amd64 pixz amd64 1.0.7-1 [20.9 kB] Get:253 http://deb.debian.org/debian sid/main amd64 xdelta amd64 1.1.3-9.3 [26.4 kB] Get:254 http://deb.debian.org/debian sid/main amd64 xdelta3 amd64 3.0.11-dfsg-1+b1 [69.3 kB] Get:255 http://deb.debian.org/debian sid/main amd64 pristine-tar amd64 1.49 [119 kB] Get:256 http://deb.debian.org/debian sid/main amd64 psmisc amd64 23.3-1 [131 kB] Get:257 http://deb.debian.org/debian sid/main amd64 python-apt-common all 2.1.3 [98.8 kB] Get:258 http://deb.debian.org/debian sid/main amd64 python3-apt amd64 2.1.3 [188 kB] Get:259 http://deb.debian.org/debian sid/main amd64 python3-certifi all 2020.6.20-1 [151 kB] Get:260 http://deb.debian.org/debian sid/main amd64 python3-idna all 2.10-1 [37.4 kB] Get:261 http://deb.debian.org/debian sid/main amd64 python3-magic all 2:0.4.15-4 [9376 B] Get:262 http://deb.debian.org/debian sid/main amd64 python3-urllib3 all 1.25.9-1 [105 kB] Get:263 http://deb.debian.org/debian sid/main amd64 python3-requests all 2.23.0+dfsg-2 [71.4 kB] Get:264 http://deb.debian.org/debian sid/main amd64 python3-unidiff all 0.5.5-2 [9604 B] Get:265 http://deb.debian.org/debian sid/main amd64 python3-xdg all 0.26-3 [41.0 kB] Get:266 http://deb.debian.org/debian sid/main amd64 reprepro amd64 5.3.0-1.1 [457 kB] Get:267 http://deb.debian.org/debian sid/main amd64 shared-mime-info amd64 1.15-1 [789 kB] Get:268 http://deb.debian.org/debian sid/main amd64 strace amd64 5.5-3 [993 kB] Get:269 http://deb.debian.org/debian sid/main amd64 xdg-user-dirs amd64 0.17-2 [53.8 kB] Preconfiguring packages ... Fetched 85.1 MB in 21s (4113 kB/s) Selecting previously unselected package libuchardet0:amd64. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 29774 files and directories currently installed.) Preparing to unpack .../000-libuchardet0_0.0.7-1_amd64.deb ... Unpacking libuchardet0:amd64 (0.0.7-1) ... Selecting previously unselected package groff-base. Preparing to unpack .../001-groff-base_1.22.4-5_amd64.deb ... Unpacking groff-base (1.22.4-5) ... Selecting previously unselected package libpipeline1:amd64. Preparing to unpack .../002-libpipeline1_1.5.3-1_amd64.deb ... Unpacking libpipeline1:amd64 (1.5.3-1) ... Selecting previously unselected package man-db. Preparing to unpack .../003-man-db_2.9.3-2_amd64.deb ... Unpacking man-db (2.9.3-2) ... Selecting previously unselected package libxxhash0:amd64. Preparing to unpack .../004-libxxhash0_0.8.0-1_amd64.deb ... Unpacking libxxhash0:amd64 (0.8.0-1) ... Selecting previously unselected package rsync. Preparing to unpack .../005-rsync_3.2.3-2_amd64.deb ... Unpacking rsync (3.2.3-2) ... Selecting previously unselected package gettext-base. Preparing to unpack .../006-gettext-base_0.19.8.1-10_amd64.deb ... Unpacking gettext-base (0.19.8.1-10) ... Selecting previously unselected package libfl2:amd64. Preparing to unpack .../007-libfl2_2.6.4-8_amd64.deb ... Unpacking libfl2:amd64 (2.6.4-8) ... Selecting previously unselected package at. Preparing to unpack .../008-at_3.1.23-1+b1_amd64.deb ... Unpacking at (3.1.23-1+b1) ... Selecting previously unselected package libsigsegv2:amd64. Preparing to unpack .../009-libsigsegv2_2.12-2_amd64.deb ... Unpacking libsigsegv2:amd64 (2.12-2) ... Selecting previously unselected package m4. Preparing to unpack .../010-m4_1.4.18-4_amd64.deb ... Unpacking m4 (1.4.18-4) ... Selecting previously unselected package autoconf. Preparing to unpack .../011-autoconf_2.69-11.1_all.deb ... Unpacking autoconf (2.69-11.1) ... Selecting previously unselected package autotools-dev. Preparing to unpack .../012-autotools-dev_20180224.1_all.deb ... Unpacking autotools-dev (20180224.1) ... Selecting previously unselected package automake. Preparing to unpack .../013-automake_1%3a1.16.2-4_all.deb ... Unpacking automake (1:1.16.2-4) ... Selecting previously unselected package autopoint. Preparing to unpack .../014-autopoint_0.19.8.1-10_all.deb ... Unpacking autopoint (0.19.8.1-10) ... Selecting previously unselected package libcurl4:amd64. Preparing to unpack .../015-libcurl4_7.72.0-1_amd64.deb ... Unpacking libcurl4:amd64 (7.72.0-1) ... Selecting previously unselected package curl. Preparing to unpack .../016-curl_7.72.0-1_amd64.deb ... Unpacking curl (7.72.0-1) ... Selecting previously unselected package dctrl-tools. Preparing to unpack .../017-dctrl-tools_2.24-3+b1_amd64.deb ... Unpacking dctrl-tools (2.24-3+b1) ... Selecting previously unselected package libtool. Preparing to unpack .../018-libtool_2.4.6-14_all.deb ... Unpacking libtool (2.4.6-14) ... Selecting previously unselected package dh-autoreconf. Preparing to unpack .../019-dh-autoreconf_19_all.deb ... Unpacking dh-autoreconf (19) ... Selecting previously unselected package libdebhelper-perl. Preparing to unpack .../020-libdebhelper-perl_13.2.1_all.deb ... Unpacking libdebhelper-perl (13.2.1) ... Selecting previously unselected package libarchive-zip-perl. Preparing to unpack .../021-libarchive-zip-perl_1.68-1_all.deb ... Unpacking libarchive-zip-perl (1.68-1) ... Selecting previously unselected package libsub-override-perl. Preparing to unpack .../022-libsub-override-perl_0.09-2_all.deb ... Unpacking libsub-override-perl (0.09-2) ... Selecting previously unselected package libfile-stripnondeterminism-perl. Preparing to unpack .../023-libfile-stripnondeterminism-perl_1.9.0-1_all.deb ... Unpacking libfile-stripnondeterminism-perl (1.9.0-1) ... Selecting previously unselected package dh-strip-nondeterminism. Preparing to unpack .../024-dh-strip-nondeterminism_1.9.0-1_all.deb ... Unpacking dh-strip-nondeterminism (1.9.0-1) ... Selecting previously unselected package dwz. Preparing to unpack .../025-dwz_0.13-5_amd64.deb ... Unpacking dwz (0.13-5) ... Selecting previously unselected package libglib2.0-0:amd64. Preparing to unpack .../026-libglib2.0-0_2.66.0-2_amd64.deb ... Unpacking libglib2.0-0:amd64 (2.66.0-2) ... Selecting previously unselected package libicu67:amd64. Preparing to unpack .../027-libicu67_67.1-4_amd64.deb ... Unpacking libicu67:amd64 (67.1-4) ... Selecting previously unselected package libxml2:amd64. Preparing to unpack .../028-libxml2_2.9.10+dfsg-6_amd64.deb ... Unpacking libxml2:amd64 (2.9.10+dfsg-6) ... Selecting previously unselected package libcroco3:amd64. Preparing to unpack .../029-libcroco3_0.6.13-1_amd64.deb ... Unpacking libcroco3:amd64 (0.6.13-1) ... Selecting previously unselected package gettext. Preparing to unpack .../030-gettext_0.19.8.1-10_amd64.deb ... Unpacking gettext (0.19.8.1-10) ... Selecting previously unselected package intltool-debian. Preparing to unpack .../031-intltool-debian_0.35.0+20060710.5_all.deb ... Unpacking intltool-debian (0.35.0+20060710.5) ... Selecting previously unselected package po-debconf. Preparing to unpack .../032-po-debconf_1.0.21_all.deb ... Unpacking po-debconf (1.0.21) ... Selecting previously unselected package debhelper. Preparing to unpack .../033-debhelper_13.2.1_all.deb ... Unpacking debhelper (13.2.1) ... Selecting previously unselected package debian-keyring. Preparing to unpack .../034-debian-keyring_2020.09.24_all.deb ... Unpacking debian-keyring (2020.09.24) ... Selecting previously unselected package libfile-which-perl. Preparing to unpack .../035-libfile-which-perl_1.23-1_all.deb ... Unpacking libfile-which-perl (1.23-1) ... Selecting previously unselected package libfile-homedir-perl. Preparing to unpack .../036-libfile-homedir-perl_1.006-1_all.deb ... Unpacking libfile-homedir-perl (1.006-1) ... Selecting previously unselected package libio-pty-perl. Preparing to unpack .../037-libio-pty-perl_1%3a1.12-1_amd64.deb ... Unpacking libio-pty-perl (1:1.12-1) ... Selecting previously unselected package libipc-run-perl. Preparing to unpack .../038-libipc-run-perl_20200505.0-1_all.deb ... Unpacking libipc-run-perl (20200505.0-1) ... Selecting previously unselected package libclass-method-modifiers-perl. Preparing to unpack .../039-libclass-method-modifiers-perl_2.13-1_all.deb ... Unpacking libclass-method-modifiers-perl (2.13-1) ... Selecting previously unselected package libb-hooks-op-check-perl. Preparing to unpack .../040-libb-hooks-op-check-perl_0.22-1+b2_amd64.deb ... Unpacking libb-hooks-op-check-perl (0.22-1+b2) ... Selecting previously unselected package libdynaloader-functions-perl. Preparing to unpack .../041-libdynaloader-functions-perl_0.003-1_all.deb ... Unpacking libdynaloader-functions-perl (0.003-1) ... Selecting previously unselected package libdevel-callchecker-perl. Preparing to unpack .../042-libdevel-callchecker-perl_0.008-1+b1_amd64.deb ... Unpacking libdevel-callchecker-perl (0.008-1+b1) ... Selecting previously unselected package libparams-classify-perl. Preparing to unpack .../043-libparams-classify-perl_0.015-1+b2_amd64.deb ... Unpacking libparams-classify-perl (0.015-1+b2) ... Selecting previously unselected package libmodule-runtime-perl. Preparing to unpack .../044-libmodule-runtime-perl_0.016-1_all.deb ... Unpacking libmodule-runtime-perl (0.016-1) ... Selecting previously unselected package libimport-into-perl. Preparing to unpack .../045-libimport-into-perl_1.002005-1_all.deb ... Unpacking libimport-into-perl (1.002005-1) ... Selecting previously unselected package librole-tiny-perl. Preparing to unpack .../046-librole-tiny-perl_2.001004-1_all.deb ... Unpacking librole-tiny-perl (2.001004-1) ... Selecting previously unselected package libstrictures-perl. Preparing to unpack .../047-libstrictures-perl_2.000006-1_all.deb ... Unpacking libstrictures-perl (2.000006-1) ... Selecting previously unselected package libsub-quote-perl. Preparing to unpack .../048-libsub-quote-perl_2.006006-1_all.deb ... Unpacking libsub-quote-perl (2.006006-1) ... Selecting previously unselected package libmoo-perl. Preparing to unpack .../049-libmoo-perl_2.004000-1_all.deb ... Unpacking libmoo-perl (2.004000-1) ... Selecting previously unselected package libencode-locale-perl. Preparing to unpack .../050-libencode-locale-perl_1.05-1_all.deb ... Unpacking libencode-locale-perl (1.05-1) ... Selecting previously unselected package libtimedate-perl. Preparing to unpack .../051-libtimedate-perl_2.3300-1_all.deb ... Unpacking libtimedate-perl (2.3300-1) ... Selecting previously unselected package libhttp-date-perl. Preparing to unpack .../052-libhttp-date-perl_6.05-1_all.deb ... Unpacking libhttp-date-perl (6.05-1) ... Selecting previously unselected package libfile-listing-perl. Preparing to unpack .../053-libfile-listing-perl_6.04-1_all.deb ... Unpacking libfile-listing-perl (6.04-1) ... Selecting previously unselected package libhtml-tagset-perl. Preparing to unpack .../054-libhtml-tagset-perl_3.20-4_all.deb ... Unpacking libhtml-tagset-perl (3.20-4) ... Selecting previously unselected package liburi-perl. Preparing to unpack .../055-liburi-perl_1.76-2_all.deb ... Unpacking liburi-perl (1.76-2) ... Selecting previously unselected package libhtml-parser-perl. Preparing to unpack .../056-libhtml-parser-perl_3.75-1_amd64.deb ... Unpacking libhtml-parser-perl (3.75-1) ... Selecting previously unselected package libhtml-tree-perl. Preparing to unpack .../057-libhtml-tree-perl_5.07-2_all.deb ... Unpacking libhtml-tree-perl (5.07-2) ... Selecting previously unselected package libio-html-perl. Preparing to unpack .../058-libio-html-perl_1.001-1_all.deb ... Unpacking libio-html-perl (1.001-1) ... Selecting previously unselected package liblwp-mediatypes-perl. Preparing to unpack .../059-liblwp-mediatypes-perl_6.04-1_all.deb ... Unpacking liblwp-mediatypes-perl (6.04-1) ... Selecting previously unselected package libhttp-message-perl. Preparing to unpack .../060-libhttp-message-perl_6.26-1_all.deb ... Unpacking libhttp-message-perl (6.26-1) ... Selecting previously unselected package libhttp-cookies-perl. Preparing to unpack .../061-libhttp-cookies-perl_6.08-1_all.deb ... Unpacking libhttp-cookies-perl (6.08-1) ... Selecting previously unselected package libhttp-negotiate-perl. Preparing to unpack .../062-libhttp-negotiate-perl_6.01-1_all.deb ... Unpacking libhttp-negotiate-perl (6.01-1) ... Selecting previously unselected package perl-openssl-defaults:amd64. Preparing to unpack .../063-perl-openssl-defaults_5_amd64.deb ... Unpacking perl-openssl-defaults:amd64 (5) ... Selecting previously unselected package libnet-ssleay-perl. Preparing to unpack .../064-libnet-ssleay-perl_1.88-3_amd64.deb ... Unpacking libnet-ssleay-perl (1.88-3) ... Selecting previously unselected package libio-socket-ssl-perl. Preparing to unpack .../065-libio-socket-ssl-perl_2.068-1_all.deb ... Unpacking libio-socket-ssl-perl (2.068-1) ... Selecting previously unselected package libnet-http-perl. Preparing to unpack .../066-libnet-http-perl_6.19-1_all.deb ... Unpacking libnet-http-perl (6.19-1) ... Selecting previously unselected package liblwp-protocol-https-perl. Preparing to unpack .../067-liblwp-protocol-https-perl_6.09-1_all.deb ... Unpacking liblwp-protocol-https-perl (6.09-1) ... Selecting previously unselected package libtry-tiny-perl. Preparing to unpack .../068-libtry-tiny-perl_0.30-1_all.deb ... Unpacking libtry-tiny-perl (0.30-1) ... Selecting previously unselected package libwww-robotrules-perl. Preparing to unpack .../069-libwww-robotrules-perl_6.02-1_all.deb ... Unpacking libwww-robotrules-perl (6.02-1) ... Selecting previously unselected package libwww-perl. Preparing to unpack .../070-libwww-perl_6.49-1_all.deb ... Unpacking libwww-perl (6.49-1) ... Selecting previously unselected package patchutils. Preparing to unpack .../071-patchutils_0.4.2-1_amd64.deb ... Unpacking patchutils (0.4.2-1) ... Selecting previously unselected package wdiff. Preparing to unpack .../072-wdiff_1.2.2-2+b1_amd64.deb ... Unpacking wdiff (1.2.2-2+b1) ... Selecting previously unselected package devscripts. Preparing to unpack .../073-devscripts_2.20.4_amd64.deb ... Unpacking devscripts (2.20.4) ... Selecting previously unselected package diffstat. Preparing to unpack .../074-diffstat_1.63-1_amd64.deb ... Unpacking diffstat (1.63-1) ... Selecting previously unselected package distro-info-data. Preparing to unpack .../075-distro-info-data_0.44_all.deb ... Unpacking distro-info-data (0.44) ... Selecting previously unselected package python3-pkg-resources. Preparing to unpack .../076-python3-pkg-resources_49.3.1-2_all.deb ... Unpacking python3-pkg-resources (49.3.1-2) ... Selecting previously unselected package python3-chardet. Preparing to unpack .../077-python3-chardet_3.0.4-7_all.deb ... Unpacking python3-chardet (3.0.4-7) ... Selecting previously unselected package python3-six. Preparing to unpack .../078-python3-six_1.15.0-1_all.deb ... Unpacking python3-six (1.15.0-1) ... Selecting previously unselected package python3-debian. Preparing to unpack .../079-python3-debian_0.1.37_all.deb ... Unpacking python3-debian (0.1.37) ... Selecting previously unselected package libgpgme11:amd64. Preparing to unpack .../080-libgpgme11_1.14.0-1_amd64.deb ... Unpacking libgpgme11:amd64 (1.14.0-1) ... Selecting previously unselected package python3-gpg. Preparing to unpack .../081-python3-gpg_1.14.0-1_amd64.deb ... Unpacking python3-gpg (1.14.0-1) ... Selecting previously unselected package dput. Preparing to unpack .../082-dput_1.0.3_all.deb ... Unpacking dput (1.0.3) ... Selecting previously unselected package equivs. Preparing to unpack .../083-equivs_2.3.1_all.deb ... Unpacking equivs (2.3.1) ... Selecting previously unselected package exim4-config. Preparing to unpack .../084-exim4-config_4.94-8_all.deb ... Unpacking exim4-config (4.94-8) ... Selecting previously unselected package exim4-base. Preparing to unpack .../085-exim4-base_4.94-8_amd64.deb ... Unpacking exim4-base (4.94-8) ... Selecting previously unselected package libevent-2.1-7:amd64. Preparing to unpack .../086-libevent-2.1-7_2.1.12-stable-1_amd64.deb ... Unpacking libevent-2.1-7:amd64 (2.1.12-stable-1) ... Selecting previously unselected package libunbound8:amd64. Preparing to unpack .../087-libunbound8_1.11.0-1_amd64.deb ... Unpacking libunbound8:amd64 (1.11.0-1) ... Selecting previously unselected package libgnutls-dane0:amd64. Preparing to unpack .../088-libgnutls-dane0_3.6.15-4_amd64.deb ... Unpacking libgnutls-dane0:amd64 (3.6.15-4) ... Selecting previously unselected package libidn11:amd64. Preparing to unpack .../089-libidn11_1.33-2.4_amd64.deb ... Unpacking libidn11:amd64 (1.33-2.4) ... Selecting previously unselected package exim4-daemon-light. Preparing to unpack .../090-exim4-daemon-light_4.94-8_amd64.deb ... Unpacking exim4-daemon-light (4.94-8) ... Selecting previously unselected package libgc1:amd64. Preparing to unpack .../091-libgc1_1%3a8.0.4-2_amd64.deb ... Unpacking libgc1:amd64 (1:8.0.4-2) ... Selecting previously unselected package libltdl7:amd64. Preparing to unpack .../092-libltdl7_2.4.6-14_amd64.deb ... Unpacking libltdl7:amd64 (2.4.6-14) ... Selecting previously unselected package guile-2.2-libs:amd64. Preparing to unpack .../093-guile-2.2-libs_2.2.7+1-5.3_amd64.deb ... Unpacking guile-2.2-libs:amd64 (2.2.7+1-5.3) ... Selecting previously unselected package iso-codes. Preparing to unpack .../094-iso-codes_4.5.0-1_all.deb ... Unpacking iso-codes (4.5.0-1) ... Selecting previously unselected package libaliased-perl. Preparing to unpack .../095-libaliased-perl_0.34-1_all.deb ... Unpacking libaliased-perl (0.34-1) ... Selecting previously unselected package libapt-pkg-perl. Preparing to unpack .../096-libapt-pkg-perl_0.1.36+b3_amd64.deb ... Unpacking libapt-pkg-perl (0.1.36+b3) ... Selecting previously unselected package libarchive-cpio-perl. Preparing to unpack .../097-libarchive-cpio-perl_0.10-1_all.deb ... Unpacking libarchive-cpio-perl (0.10-1) ... Selecting previously unselected package libarchive13:amd64. Preparing to unpack .../098-libarchive13_3.4.3-2_amd64.deb ... Unpacking libarchive13:amd64 (3.4.3-2) ... Selecting previously unselected package libarray-intspan-perl. Preparing to unpack .../099-libarray-intspan-perl_2.004-1_all.deb ... Unpacking libarray-intspan-perl (2.004-1) ... Selecting previously unselected package libauthen-sasl-perl. Preparing to unpack .../100-libauthen-sasl-perl_2.1600-1_all.deb ... Unpacking libauthen-sasl-perl (2.1600-1) ... Selecting previously unselected package libmodule-implementation-perl. Preparing to unpack .../101-libmodule-implementation-perl_0.09-1_all.deb ... Unpacking libmodule-implementation-perl (0.09-1) ... Selecting previously unselected package libsub-exporter-progressive-perl. Preparing to unpack .../102-libsub-exporter-progressive-perl_0.001013-1_all.deb ... Unpacking libsub-exporter-progressive-perl (0.001013-1) ... Selecting previously unselected package libvariable-magic-perl. Preparing to unpack .../103-libvariable-magic-perl_0.62-1+b2_amd64.deb ... Unpacking libvariable-magic-perl (0.62-1+b2) ... Selecting previously unselected package libb-hooks-endofscope-perl. Preparing to unpack .../104-libb-hooks-endofscope-perl_0.24-1_all.deb ... Unpacking libb-hooks-endofscope-perl (0.24-1) ... Selecting previously unselected package libcapture-tiny-perl. Preparing to unpack .../105-libcapture-tiny-perl_0.48-1_all.deb ... Unpacking libcapture-tiny-perl (0.48-1) ... Selecting previously unselected package libclass-data-inheritable-perl. Preparing to unpack .../106-libclass-data-inheritable-perl_0.08-3_all.deb ... Unpacking libclass-data-inheritable-perl (0.08-3) ... Selecting previously unselected package libclass-inspector-perl. Preparing to unpack .../107-libclass-inspector-perl_1.36-1_all.deb ... Unpacking libclass-inspector-perl (1.36-1) ... Selecting previously unselected package libclass-xsaccessor-perl. Preparing to unpack .../108-libclass-xsaccessor-perl_1.19-3+b5_amd64.deb ... Unpacking libclass-xsaccessor-perl (1.19-3+b5) ... Selecting previously unselected package libclone-perl. Preparing to unpack .../109-libclone-perl_0.45-1_amd64.deb ... Unpacking libclone-perl (0.45-1) ... Selecting previously unselected package libcommon-sense-perl. Preparing to unpack .../110-libcommon-sense-perl_3.75-1+b2_amd64.deb ... Unpacking libcommon-sense-perl (3.75-1+b2) ... Selecting previously unselected package libconfig-tiny-perl. Preparing to unpack .../111-libconfig-tiny-perl_2.24-1_all.deb ... Unpacking libconfig-tiny-perl (2.24-1) ... Selecting previously unselected package libparams-util-perl. Preparing to unpack .../112-libparams-util-perl_1.07-3+b5_amd64.deb ... Unpacking libparams-util-perl (1.07-3+b5) ... Selecting previously unselected package libsub-install-perl. Preparing to unpack .../113-libsub-install-perl_0.928-1_all.deb ... Unpacking libsub-install-perl (0.928-1) ... Selecting previously unselected package libdata-optlist-perl. Preparing to unpack .../114-libdata-optlist-perl_0.110-1_all.deb ... Unpacking libdata-optlist-perl (0.110-1) ... Selecting previously unselected package libsub-exporter-perl. Preparing to unpack .../115-libsub-exporter-perl_0.987-1_all.deb ... Unpacking libsub-exporter-perl (0.987-1) ... Selecting previously unselected package libconst-fast-perl. Preparing to unpack .../116-libconst-fast-perl_0.014-1_all.deb ... Unpacking libconst-fast-perl (0.014-1) ... Selecting previously unselected package libwant-perl. Preparing to unpack .../117-libwant-perl_0.29-1+b5_amd64.deb ... Unpacking libwant-perl (0.29-1+b5) ... Selecting previously unselected package libcontextual-return-perl. Preparing to unpack .../118-libcontextual-return-perl_0.004014-2_all.deb ... Unpacking libcontextual-return-perl (0.004014-2) ... Selecting previously unselected package libconvert-binhex-perl. Preparing to unpack .../119-libconvert-binhex-perl_1.125-1_all.deb ... Unpacking libconvert-binhex-perl (1.125-1) ... Selecting previously unselected package libcpanel-json-xs-perl. Preparing to unpack .../120-libcpanel-json-xs-perl_4.23-1_amd64.deb ... Unpacking libcpanel-json-xs-perl (4.23-1) ... Selecting previously unselected package libdevel-stacktrace-perl. Preparing to unpack .../121-libdevel-stacktrace-perl_2.0400-1_all.deb ... Unpacking libdevel-stacktrace-perl (2.0400-1) ... Selecting previously unselected package libexception-class-perl. Preparing to unpack .../122-libexception-class-perl_1.44-1_all.deb ... Unpacking libexception-class-perl (1.44-1) ... Selecting previously unselected package libiterator-perl. Preparing to unpack .../123-libiterator-perl_0.03+ds1-1_all.deb ... Unpacking libiterator-perl (0.03+ds1-1) ... Selecting previously unselected package libiterator-util-perl. Preparing to unpack .../124-libiterator-util-perl_0.02+ds1-1_all.deb ... Unpacking libiterator-util-perl (0.02+ds1-1) ... Selecting previously unselected package libexporter-tiny-perl. Preparing to unpack .../125-libexporter-tiny-perl_1.002002-1_all.deb ... Unpacking libexporter-tiny-perl (1.002002-1) ... Selecting previously unselected package liblist-moreutils-perl. Preparing to unpack .../126-liblist-moreutils-perl_0.416-1+b5_amd64.deb ... Unpacking liblist-moreutils-perl (0.416-1+b5) ... Selecting previously unselected package libdata-dpath-perl. Preparing to unpack .../127-libdata-dpath-perl_0.58-1_all.deb ... Unpacking libdata-dpath-perl (0.58-1) ... Selecting previously unselected package libdata-dump-perl. Preparing to unpack .../128-libdata-dump-perl_1.23-1_all.deb ... Unpacking libdata-dump-perl (1.23-1) ... Selecting previously unselected package libdata-messagepack-perl. Preparing to unpack .../129-libdata-messagepack-perl_1.00-4_amd64.deb ... Unpacking libdata-messagepack-perl (1.00-4) ... Selecting previously unselected package libnet-domain-tld-perl. Preparing to unpack .../130-libnet-domain-tld-perl_1.75-1_all.deb ... Unpacking libnet-domain-tld-perl (1.75-1) ... Selecting previously unselected package libdata-validate-domain-perl. Preparing to unpack .../131-libdata-validate-domain-perl_0.10-1_all.deb ... Unpacking libdata-validate-domain-perl (0.10-1) ... Selecting previously unselected package libdevel-size-perl. Preparing to unpack .../132-libdevel-size-perl_0.83-1+b1_amd64.deb ... Unpacking libdevel-size-perl (0.83-1+b1) ... Selecting previously unselected package libdistro-info-perl. Preparing to unpack .../133-libdistro-info-perl_0.24_all.deb ... Unpacking libdistro-info-perl (0.24) ... Selecting previously unselected package libemail-address-xs-perl. Preparing to unpack .../134-libemail-address-xs-perl_1.04-1+b2_amd64.deb ... Unpacking libemail-address-xs-perl (1.04-1+b2) ... Selecting previously unselected package libfcgi-perl. Preparing to unpack .../135-libfcgi-perl_0.79-1_amd64.deb ... Unpacking libfcgi-perl (0.79-1) ... Selecting previously unselected package libipc-system-simple-perl. Preparing to unpack .../136-libipc-system-simple-perl_1.30-1_all.deb ... Unpacking libipc-system-simple-perl (1.30-1) ... Selecting previously unselected package libfile-basedir-perl. Preparing to unpack .../137-libfile-basedir-perl_0.08-1_all.deb ... Unpacking libfile-basedir-perl (0.08-1) ... Selecting previously unselected package libfile-chdir-perl. Preparing to unpack .../138-libfile-chdir-perl_0.1008-1_all.deb ... Unpacking libfile-chdir-perl (0.1008-1) ... Selecting previously unselected package libnumber-compare-perl. Preparing to unpack .../139-libnumber-compare-perl_0.03-1_all.deb ... Unpacking libnumber-compare-perl (0.03-1) ... Selecting previously unselected package libtext-glob-perl. Preparing to unpack .../140-libtext-glob-perl_0.11-1_all.deb ... Unpacking libtext-glob-perl (0.11-1) ... Selecting previously unselected package libfile-find-rule-perl. Preparing to unpack .../141-libfile-find-rule-perl_0.34-1_all.deb ... Unpacking libfile-find-rule-perl (0.34-1) ... Selecting previously unselected package libfont-afm-perl. Preparing to unpack .../142-libfont-afm-perl_1.20-3_all.deb ... Unpacking libfont-afm-perl (1.20-3) ... Selecting previously unselected package libio-string-perl. Preparing to unpack .../143-libio-string-perl_1.08-3_all.deb ... Unpacking libio-string-perl (1.08-3) ... Selecting previously unselected package libfont-ttf-perl. Preparing to unpack .../144-libfont-ttf-perl_1.06-1_all.deb ... Unpacking libfont-ttf-perl (1.06-1) ... Selecting previously unselected package libfribidi0:amd64. Preparing to unpack .../145-libfribidi0_1.0.8-2_amd64.deb ... Unpacking libfribidi0:amd64 (1.0.8-2) ... Selecting previously unselected package libio-stringy-perl. Preparing to unpack .../146-libio-stringy-perl_2.111-3_all.deb ... Unpacking libio-stringy-perl (2.111-3) ... Selecting previously unselected package libparams-validate-perl. Preparing to unpack .../147-libparams-validate-perl_1.29-3_amd64.deb ... Unpacking libparams-validate-perl (1.29-3) ... Selecting previously unselected package libgetopt-long-descriptive-perl. Preparing to unpack .../148-libgetopt-long-descriptive-perl_0.105-1_all.deb ... Unpacking libgetopt-long-descriptive-perl (0.105-1) ... Selecting previously unselected package libsort-versions-perl. Preparing to unpack .../149-libsort-versions-perl_1.62-1_all.deb ... Unpacking libsort-versions-perl (1.62-1) ... Selecting previously unselected package libgit-wrapper-perl. Preparing to unpack .../150-libgit-wrapper-perl_0.048-1_all.deb ... Unpacking libgit-wrapper-perl (0.048-1) ... Selecting previously unselected package libhttp-tiny-multipart-perl. Preparing to unpack .../151-libhttp-tiny-multipart-perl_0.08-1_all.deb ... Unpacking libhttp-tiny-multipart-perl (0.08-1) ... Selecting previously unselected package libio-prompter-perl. Preparing to unpack .../152-libio-prompter-perl_0.004015-1_all.deb ... Unpacking libio-prompter-perl (0.004015-1) ... Selecting previously unselected package libjson-perl. Preparing to unpack .../153-libjson-perl_4.02000-2_all.deb ... Unpacking libjson-perl (4.02000-2) ... Selecting previously unselected package liblog-any-perl. Preparing to unpack .../154-liblog-any-perl_1.708-1_all.deb ... Unpacking liblog-any-perl (1.708-1) ... Selecting previously unselected package liblog-any-adapter-screen-perl. Preparing to unpack .../155-liblog-any-adapter-screen-perl_0.140-1_all.deb ... Unpacking liblog-any-adapter-screen-perl (0.140-1) ... Selecting previously unselected package libpackage-stash-perl. Preparing to unpack .../156-libpackage-stash-perl_0.38-1_all.deb ... Unpacking libpackage-stash-perl (0.38-1) ... Selecting previously unselected package libsub-identify-perl. Preparing to unpack .../157-libsub-identify-perl_0.14-1+b2_amd64.deb ... Unpacking libsub-identify-perl (0.14-1+b2) ... Selecting previously unselected package libsub-name-perl. Preparing to unpack .../158-libsub-name-perl_0.26-1_amd64.deb ... Unpacking libsub-name-perl (0.26-1) ... Selecting previously unselected package libnamespace-clean-perl. Preparing to unpack .../159-libnamespace-clean-perl_0.27-1_all.deb ... Unpacking libnamespace-clean-perl (0.27-1) ... Selecting previously unselected package libpath-tiny-perl. Preparing to unpack .../160-libpath-tiny-perl_0.114-1_all.deb ... Unpacking libpath-tiny-perl (0.114-1) ... Selecting previously unselected package libtype-tiny-perl. Preparing to unpack .../161-libtype-tiny-perl_1.010006-1_all.deb ... Unpacking libtype-tiny-perl (1.010006-1) ... Selecting previously unselected package libgitlab-api-v4-perl. Preparing to unpack .../162-libgitlab-api-v4-perl_0.25-2_all.deb ... Unpacking libgitlab-api-v4-perl (0.25-2) ... Selecting previously unselected package libglib2.0-data. Preparing to unpack .../163-libglib2.0-data_2.66.0-2_all.deb ... Unpacking libglib2.0-data (2.66.0-2) ... Selecting previously unselected package libntlm0:amd64. Preparing to unpack .../164-libntlm0_1.6-1+b1_amd64.deb ... Unpacking libntlm0:amd64 (1.6-1+b1) ... Selecting previously unselected package libgsasl7:amd64. Preparing to unpack .../165-libgsasl7_1.8.1-1_amd64.deb ... Unpacking libgsasl7:amd64 (1.8.1-1) ... Selecting previously unselected package libhash-fieldhash-perl. Preparing to unpack .../166-libhash-fieldhash-perl_0.15-1+b2_amd64.deb ... Unpacking libhash-fieldhash-perl (0.15-1+b2) ... Selecting previously unselected package libhtml-form-perl. Preparing to unpack .../167-libhtml-form-perl_6.07-1_all.deb ... Unpacking libhtml-form-perl (6.07-1) ... Selecting previously unselected package libhtml-format-perl. Preparing to unpack .../168-libhtml-format-perl_2.12-1_all.deb ... Unpacking libhtml-format-perl (2.12-1) ... Selecting previously unselected package libhtml-html5-entities-perl. Preparing to unpack .../169-libhtml-html5-entities-perl_0.004-1_all.deb ... Unpacking libhtml-html5-entities-perl (0.004-1) ... Selecting previously unselected package libhttp-daemon-perl. Preparing to unpack .../170-libhttp-daemon-perl_6.12-1_all.deb ... Unpacking libhttp-daemon-perl (6.12-1) ... Selecting previously unselected package libio-sessiondata-perl. Preparing to unpack .../171-libio-sessiondata-perl_1.03-1_all.deb ... Unpacking libio-sessiondata-perl (1.03-1) ... Selecting previously unselected package libipc-run3-perl. Preparing to unpack .../172-libipc-run3-perl_0.048-2_all.deb ... Unpacking libipc-run3-perl (0.048-2) ... Selecting previously unselected package libtypes-serialiser-perl. Preparing to unpack .../173-libtypes-serialiser-perl_1.0-1_all.deb ... Unpacking libtypes-serialiser-perl (1.0-1) ... Selecting previously unselected package libjson-xs-perl. Preparing to unpack .../174-libjson-xs-perl_4.020-1+b1_amd64.deb ... Unpacking libjson-xs-perl (4.020-1+b1) ... Selecting previously unselected package libjson-maybexs-perl. Preparing to unpack .../175-libjson-maybexs-perl_1.004002-1_all.deb ... Unpacking libjson-maybexs-perl (1.004002-1) ... Selecting previously unselected package liblist-compare-perl. Preparing to unpack .../176-liblist-compare-perl_0.55-1_all.deb ... Unpacking liblist-compare-perl (0.55-1) ... Selecting previously unselected package liblist-someutils-perl. Preparing to unpack .../177-liblist-someutils-perl_0.58-1_all.deb ... Unpacking liblist-someutils-perl (0.58-1) ... Selecting previously unselected package liblist-someutils-xs-perl. Preparing to unpack .../178-liblist-someutils-xs-perl_0.58-2_amd64.deb ... Unpacking liblist-someutils-xs-perl (0.58-2) ... Selecting previously unselected package liblist-utilsby-perl. Preparing to unpack .../179-liblist-utilsby-perl_0.11-1_all.deb ... Unpacking liblist-utilsby-perl (0.11-1) ... Selecting previously unselected package libltdl-dev:amd64. Preparing to unpack .../180-libltdl-dev_2.4.6-14_amd64.deb ... Unpacking libltdl-dev:amd64 (2.4.6-14) ... Selecting previously unselected package liblzo2-2:amd64. Preparing to unpack .../181-liblzo2-2_2.10-2_amd64.deb ... Unpacking liblzo2-2:amd64 (2.10-2) ... Selecting previously unselected package libsys-hostname-long-perl. Preparing to unpack .../182-libsys-hostname-long-perl_1.5-1_all.deb ... Unpacking libsys-hostname-long-perl (1.5-1) ... Selecting previously unselected package libmail-sendmail-perl. Preparing to unpack .../183-libmail-sendmail-perl_0.80-1_all.deb ... Unpacking libmail-sendmail-perl (0.80-1) ... Selecting previously unselected package libnet-smtp-ssl-perl. Preparing to unpack .../184-libnet-smtp-ssl-perl_1.04-1_all.deb ... Unpacking libnet-smtp-ssl-perl (1.04-1) ... Selecting previously unselected package libmailtools-perl. Preparing to unpack .../185-libmailtools-perl_2.21-1_all.deb ... Unpacking libmailtools-perl (2.21-1) ... Selecting previously unselected package mailutils-common. Preparing to unpack .../186-mailutils-common_1%3a3.10-3_all.deb ... Unpacking mailutils-common (1:3.10-3) ... Selecting previously unselected package mysql-common. Preparing to unpack .../187-mysql-common_5.8+1.0.5_all.deb ... Unpacking mysql-common (5.8+1.0.5) ... Selecting previously unselected package mariadb-common. Preparing to unpack .../188-mariadb-common_1%3a10.5.5-1_all.deb ... Unpacking mariadb-common (1:10.5.5-1) ... Selecting previously unselected package libmariadb3:amd64. Preparing to unpack .../189-libmariadb3_1%3a10.5.5-1_amd64.deb ... Unpacking libmariadb3:amd64 (1:10.5.5-1) ... Selecting previously unselected package libpython3.8:amd64. Preparing to unpack .../190-libpython3.8_3.8.6-1_amd64.deb ... Unpacking libpython3.8:amd64 (3.8.6-1) ... Selecting previously unselected package libmailutils7:amd64. Preparing to unpack .../191-libmailutils7_1%3a3.10-3_amd64.deb ... Unpacking libmailutils7:amd64 (1:3.10-3) ... Selecting previously unselected package libmarkdown2:amd64. Preparing to unpack .../192-libmarkdown2_2.2.6-1_amd64.deb ... Unpacking libmarkdown2:amd64 (2.2.6-1) ... Selecting previously unselected package libmime-tools-perl. Preparing to unpack .../193-libmime-tools-perl_5.509-1_all.deb ... Unpacking libmime-tools-perl (5.509-1) ... Selecting previously unselected package libmoox-aliases-perl. Preparing to unpack .../194-libmoox-aliases-perl_0.001006-1_all.deb ... Unpacking libmoox-aliases-perl (0.001006-1) ... Selecting previously unselected package libnamespace-autoclean-perl. Preparing to unpack .../195-libnamespace-autoclean-perl_0.29-1_all.deb ... Unpacking libnamespace-autoclean-perl (0.29-1) ... Selecting previously unselected package libobject-id-perl. Preparing to unpack .../196-libobject-id-perl_0.1.2-2_all.deb ... Unpacking libobject-id-perl (0.1.2-2) ... Selecting previously unselected package libmoox-struct-perl. Preparing to unpack .../197-libmoox-struct-perl_0.020-1_all.deb ... Unpacking libmoox-struct-perl (0.020-1) ... Selecting previously unselected package libmouse-perl. Preparing to unpack .../198-libmouse-perl_2.5.10-1_amd64.deb ... Unpacking libmouse-perl (2.5.10-1) ... Selecting previously unselected package libnumber-range-perl. Preparing to unpack .../199-libnumber-range-perl_0.12-1_all.deb ... Unpacking libnumber-range-perl (0.12-1) ... Selecting previously unselected package libossp-uuid16:amd64. Preparing to unpack .../200-libossp-uuid16_1.6.2-1.5+b8_amd64.deb ... Unpacking libossp-uuid16:amd64 (1.6.2-1.5+b8) ... Selecting previously unselected package libossp-uuid-perl. Preparing to unpack .../201-libossp-uuid-perl_1.6.2-1.5+b8_amd64.deb ... Unpacking libossp-uuid-perl (1.6.2-1.5+b8) ... Selecting previously unselected package libpackage-stash-xs-perl. Preparing to unpack .../202-libpackage-stash-xs-perl_0.29-1+b1_amd64.deb ... Unpacking libpackage-stash-xs-perl (0.29-1+b1) ... Selecting previously unselected package libpath-iterator-rule-perl. Preparing to unpack .../203-libpath-iterator-rule-perl_1.014-1_all.deb ... Unpacking libpath-iterator-rule-perl (1.014-1) ... Selecting previously unselected package libperlio-gzip-perl. Preparing to unpack .../204-libperlio-gzip-perl_0.19-1+b6_amd64.deb ... Unpacking libperlio-gzip-perl (0.19-1+b6) ... Selecting previously unselected package libpod-constants-perl. Preparing to unpack .../205-libpod-constants-perl_0.19-2_all.deb ... Unpacking libpod-constants-perl (0.19-2) ... Selecting previously unselected package libproc-processtable-perl. Preparing to unpack .../206-libproc-processtable-perl_0.59-2_amd64.deb ... Unpacking libproc-processtable-perl (0.59-2) ... Selecting previously unselected package libre2-8:amd64. Preparing to unpack .../207-libre2-8_20200801+dfsg-1_amd64.deb ... Unpacking libre2-8:amd64 (20200801+dfsg-1) ... Selecting previously unselected package libre-engine-re2-perl. Preparing to unpack .../208-libre-engine-re2-perl_0.13-5+b3_amd64.deb ... Unpacking libre-engine-re2-perl (0.13-5+b3) ... Selecting previously unselected package libreadonly-perl. Preparing to unpack .../209-libreadonly-perl_2.050-2_all.deb ... Unpacking libreadonly-perl (2.050-2) ... Selecting previously unselected package libref-util-perl. Preparing to unpack .../210-libref-util-perl_0.204-1_all.deb ... Unpacking libref-util-perl (0.204-1) ... Selecting previously unselected package libref-util-xs-perl. Preparing to unpack .../211-libref-util-xs-perl_0.117-1+b2_amd64.deb ... Unpacking libref-util-xs-perl (0.117-1+b2) ... Selecting previously unselected package libregexp-pattern-license-perl. Preparing to unpack .../212-libregexp-pattern-license-perl_3.4.0-1_all.deb ... Unpacking libregexp-pattern-license-perl (3.4.0-1) ... Selecting previously unselected package libregexp-pattern-perl. Preparing to unpack .../213-libregexp-pattern-perl_0.2.14-1_all.deb ... Unpacking libregexp-pattern-perl (0.2.14-1) ... Selecting previously unselected package libsereal-decoder-perl. Preparing to unpack .../214-libsereal-decoder-perl_4.018+ds-1_amd64.deb ... Unpacking libsereal-decoder-perl (4.018+ds-1) ... Selecting previously unselected package libsereal-encoder-perl. Preparing to unpack .../215-libsereal-encoder-perl_4.018+ds-1_amd64.deb ... Unpacking libsereal-encoder-perl (4.018+ds-1) ... Selecting previously unselected package libtask-weaken-perl. Preparing to unpack .../216-libtask-weaken-perl_1.06-1_all.deb ... Unpacking libtask-weaken-perl (1.06-1) ... Selecting previously unselected package libxml-parser-perl. Preparing to unpack .../217-libxml-parser-perl_2.46-1+b1_amd64.deb ... Unpacking libxml-parser-perl (2.46-1+b1) ... Selecting previously unselected package libsoap-lite-perl. Preparing to unpack .../218-libsoap-lite-perl_1.27-1_all.deb ... Unpacking libsoap-lite-perl (1.27-1) ... Selecting previously unselected package libsort-key-perl. Preparing to unpack .../219-libsort-key-perl_1.33-2+b2_amd64.deb ... Unpacking libsort-key-perl (1.33-2+b2) ... Selecting previously unselected package libstring-copyright-perl. Preparing to unpack .../220-libstring-copyright-perl_0.003006-1_all.deb ... Unpacking libstring-copyright-perl (0.003006-1) ... Selecting previously unselected package libstring-escape-perl. Preparing to unpack .../221-libstring-escape-perl_2010.002-2_all.deb ... Unpacking libstring-escape-perl (2010.002-2) ... Selecting previously unselected package libstring-shellquote-perl. Preparing to unpack .../222-libstring-shellquote-perl_1.04-1_all.deb ... Unpacking libstring-shellquote-perl (1.04-1) ... Selecting previously unselected package libsys-cpuaffinity-perl. Preparing to unpack .../223-libsys-cpuaffinity-perl_1.12-1+b4_amd64.deb ... Unpacking libsys-cpuaffinity-perl (1.12-1+b4) ... Selecting previously unselected package libterm-readkey-perl. Preparing to unpack .../224-libterm-readkey-perl_2.38-1+b1_amd64.deb ... Unpacking libterm-readkey-perl (2.38-1+b1) ... Selecting previously unselected package libtext-levenshteinxs-perl. Preparing to unpack .../225-libtext-levenshteinxs-perl_0.03-4+b7_amd64.deb ... Unpacking libtext-levenshteinxs-perl (0.03-4+b7) ... Selecting previously unselected package libtext-markdown-discount-perl:amd64. Preparing to unpack .../226-libtext-markdown-discount-perl_0.12-1_amd64.deb ... Unpacking libtext-markdown-discount-perl:amd64 (0.12-1) ... Selecting previously unselected package libtext-xslate-perl. Preparing to unpack .../227-libtext-xslate-perl_3.5.8-1_amd64.deb ... Unpacking libtext-xslate-perl (3.5.8-1) ... Selecting previously unselected package libtime-duration-perl. Preparing to unpack .../228-libtime-duration-perl_1.21-1_all.deb ... Unpacking libtime-duration-perl (1.21-1) ... Selecting previously unselected package libtime-moment-perl. Preparing to unpack .../229-libtime-moment-perl_0.44-1+b2_amd64.deb ... Unpacking libtime-moment-perl (0.44-1+b2) ... Selecting previously unselected package libtype-tiny-xs-perl. Preparing to unpack .../230-libtype-tiny-xs-perl_0.021-1_amd64.deb ... Unpacking libtype-tiny-xs-perl (0.021-1) ... Selecting previously unselected package libunicode-utf8-perl. Preparing to unpack .../231-libunicode-utf8-perl_0.62-1+b1_amd64.deb ... Unpacking libunicode-utf8-perl (0.62-1+b1) ... Selecting previously unselected package libunwind8:amd64. Preparing to unpack .../232-libunwind8_1.3.2-2_amd64.deb ... Unpacking libunwind8:amd64 (1.3.2-2) ... Selecting previously unselected package libxdelta2. Preparing to unpack .../233-libxdelta2_1.1.3-9.3_amd64.deb ... Unpacking libxdelta2 (1.1.3-9.3) ... Selecting previously unselected package libxml-namespacesupport-perl. Preparing to unpack .../234-libxml-namespacesupport-perl_1.12-1_all.deb ... Unpacking libxml-namespacesupport-perl (1.12-1) ... Selecting previously unselected package libxml-sax-base-perl. Preparing to unpack .../235-libxml-sax-base-perl_1.09-1_all.deb ... Unpacking libxml-sax-base-perl (1.09-1) ... Selecting previously unselected package libxml-sax-perl. Preparing to unpack .../236-libxml-sax-perl_1.02+dfsg-1_all.deb ... Unpacking libxml-sax-perl (1.02+dfsg-1) ... Selecting previously unselected package libxml-libxml-perl. Preparing to unpack .../237-libxml-libxml-perl_2.0134+dfsg-2_amd64.deb ... Unpacking libxml-libxml-perl (2.0134+dfsg-2) ... Selecting previously unselected package libxml-sax-expat-perl. Preparing to unpack .../238-libxml-sax-expat-perl_0.51-1_all.deb ... Unpacking libxml-sax-expat-perl (0.51-1) ... Selecting previously unselected package libxmlrpc-lite-perl. Preparing to unpack .../239-libxmlrpc-lite-perl_0.717-4_all.deb ... Unpacking libxmlrpc-lite-perl (0.717-4) ... Selecting previously unselected package libyaml-0-2:amd64. Preparing to unpack .../240-libyaml-0-2_0.2.2-1_amd64.deb ... Unpacking libyaml-0-2:amd64 (0.2.2-1) ... Selecting previously unselected package libyaml-libyaml-perl. Preparing to unpack .../241-libyaml-libyaml-perl_0.82+repack-1_amd64.deb ... Unpacking libyaml-libyaml-perl (0.82+repack-1) ... Selecting previously unselected package licensecheck. Preparing to unpack .../242-licensecheck_3.0.47-1_all.deb ... Unpacking licensecheck (3.0.47-1) ... Selecting previously unselected package lzip. Preparing to unpack .../243-lzip_1.21-8_amd64.deb ... Unpacking lzip (1.21-8) ... Selecting previously unselected package lzop. Preparing to unpack .../244-lzop_1.04-1_amd64.deb ... Unpacking lzop (1.04-1) ... Selecting previously unselected package t1utils. Preparing to unpack .../245-t1utils_1.41-4_amd64.deb ... Unpacking t1utils (1.41-4) ... Selecting previously unselected package unzip. Preparing to unpack .../246-unzip_6.0-25_amd64.deb ... Unpacking unzip (6.0-25) ... Selecting previously unselected package lintian. Preparing to unpack .../247-lintian_2.97.0_all.deb ... Unpacking lintian (2.97.0) ... Selecting previously unselected package lsb-release. Preparing to unpack .../248-lsb-release_11.1.0_all.deb ... Unpacking lsb-release (11.1.0) ... Selecting previously unselected package mailutils. Preparing to unpack .../249-mailutils_1%3a3.10-3_amd64.deb ... Unpacking mailutils (1:3.10-3) ... Selecting previously unselected package pbzip2. Preparing to unpack .../250-pbzip2_1.1.13-1_amd64.deb ... Unpacking pbzip2 (1.1.13-1) ... Selecting previously unselected package pixz. Preparing to unpack .../251-pixz_1.0.7-1_amd64.deb ... Unpacking pixz (1.0.7-1) ... Selecting previously unselected package xdelta. Preparing to unpack .../252-xdelta_1.1.3-9.3_amd64.deb ... Unpacking xdelta (1.1.3-9.3) ... Selecting previously unselected package xdelta3. Preparing to unpack .../253-xdelta3_3.0.11-dfsg-1+b1_amd64.deb ... Unpacking xdelta3 (3.0.11-dfsg-1+b1) ... Selecting previously unselected package pristine-tar. Preparing to unpack .../254-pristine-tar_1.49_amd64.deb ... Unpacking pristine-tar (1.49) ... Selecting previously unselected package psmisc. Preparing to unpack .../255-psmisc_23.3-1_amd64.deb ... Unpacking psmisc (23.3-1) ... Selecting previously unselected package python-apt-common. Preparing to unpack .../256-python-apt-common_2.1.3_all.deb ... Unpacking python-apt-common (2.1.3) ... Selecting previously unselected package python3-apt. Preparing to unpack .../257-python3-apt_2.1.3_amd64.deb ... Unpacking python3-apt (2.1.3) ... Selecting previously unselected package python3-certifi. Preparing to unpack .../258-python3-certifi_2020.6.20-1_all.deb ... Unpacking python3-certifi (2020.6.20-1) ... Selecting previously unselected package python3-idna. Preparing to unpack .../259-python3-idna_2.10-1_all.deb ... Unpacking python3-idna (2.10-1) ... Selecting previously unselected package python3-magic. Preparing to unpack .../260-python3-magic_2%3a0.4.15-4_all.deb ... Unpacking python3-magic (2:0.4.15-4) ... Selecting previously unselected package python3-urllib3. Preparing to unpack .../261-python3-urllib3_1.25.9-1_all.deb ... Unpacking python3-urllib3 (1.25.9-1) ... Selecting previously unselected package python3-requests. Preparing to unpack .../262-python3-requests_2.23.0+dfsg-2_all.deb ... Unpacking python3-requests (2.23.0+dfsg-2) ... Selecting previously unselected package python3-unidiff. Preparing to unpack .../263-python3-unidiff_0.5.5-2_all.deb ... Unpacking python3-unidiff (0.5.5-2) ... Selecting previously unselected package python3-xdg. Preparing to unpack .../264-python3-xdg_0.26-3_all.deb ... Unpacking python3-xdg (0.26-3) ... Selecting previously unselected package reprepro. Preparing to unpack .../265-reprepro_5.3.0-1.1_amd64.deb ... Unpacking reprepro (5.3.0-1.1) ... Selecting previously unselected package shared-mime-info. Preparing to unpack .../266-shared-mime-info_1.15-1_amd64.deb ... Unpacking shared-mime-info (1.15-1) ... Selecting previously unselected package strace. Preparing to unpack .../267-strace_5.5-3_amd64.deb ... Unpacking strace (5.5-3) ... Selecting previously unselected package xdg-user-dirs. Preparing to unpack .../268-xdg-user-dirs_0.17-2_amd64.deb ... Unpacking xdg-user-dirs (0.17-2) ... Setting up python3-pkg-resources (49.3.1-2) ... Setting up libre2-8:amd64 (20200801+dfsg-1) ... Setting up libapt-pkg-perl (0.1.36+b3) ... Setting up libpipeline1:amd64 (1.5.3-1) ... Setting up libio-sessiondata-perl (1.03-1) ... Setting up libstring-escape-perl (2010.002-2) ... Setting up wdiff (1.2.2-2+b1) ... Setting up mysql-common (5.8+1.0.5) ... update-alternatives: using /etc/mysql/my.cnf.fallback to provide /etc/mysql/my.cnf (my.cnf) in auto mode Setting up libfile-which-perl (1.23-1) ... Setting up libnumber-range-perl (0.12-1) ... Setting up libtask-weaken-perl (1.06-1) ... Setting up libunicode-utf8-perl (0.62-1+b1) ... Setting up libmouse-perl (2.5.10-1) ... Setting up libsys-cpuaffinity-perl (1.12-1+b4) ... Setting up libregexp-pattern-perl (0.2.14-1) ... Setting up libdata-messagepack-perl (1.00-4) ... Setting up libclass-inspector-perl (1.36-1) ... Setting up libfont-afm-perl (1.20-3) ... Setting up libwant-perl (0.29-1+b5) ... Setting up libicu67:amd64 (67.1-4) ... Setting up libdynaloader-functions-perl (0.003-1) ... Setting up libtext-glob-perl (0.11-1) ... Setting up libclass-method-modifiers-perl (2.13-1) ... Setting up xdg-user-dirs (0.17-2) ... Setting up liblist-compare-perl (0.55-1) ... Setting up libref-util-xs-perl (0.117-1+b2) ... Setting up libio-pty-perl (1:1.12-1) ... Setting up psmisc (23.3-1) ... Setting up libsort-key-perl (1.33-2+b2) ... Setting up libclone-perl (0.45-1) ... Setting up libarchive-zip-perl (1.68-1) ... Setting up libyaml-0-2:amd64 (0.2.2-1) ... Setting up libsub-identify-perl (0.14-1+b2) ... Setting up libglib2.0-0:amd64 (2.66.0-2) ... No schema files found: doing nothing. Setting up distro-info-data (0.44) ... Setting up libcpanel-json-xs-perl (4.23-1) ... Setting up libio-stringy-perl (2.111-3) ... Setting up libhtml-tagset-perl (3.20-4) ... Setting up liblog-any-perl (1.708-1) ... Setting up libauthen-sasl-perl (2.1600-1) ... Setting up libdevel-size-perl (0.83-1+b1) ... Setting up unzip (6.0-25) ... Setting up libdebhelper-perl (13.2.1) ... Setting up libpod-constants-perl (0.19-2) ... Setting up libconvert-binhex-perl (1.125-1) ... Setting up liblwp-mediatypes-perl (6.04-1) ... Setting up libyaml-libyaml-perl (0.82+repack-1) ... Setting up libtry-tiny-perl (0.30-1) ... Setting up perl-openssl-defaults:amd64 (5) ... Setting up libcommon-sense-perl (3.75-1+b2) ... Setting up libxml-namespacesupport-perl (1.12-1) ... Setting up gettext-base (0.19.8.1-10) ... Setting up libhttp-tiny-multipart-perl (0.08-1) ... Setting up liblzo2-2:amd64 (2.10-2) ... Setting up libtime-moment-perl (0.44-1+b2) ... Setting up libencode-locale-perl (1.05-1) ... Setting up libossp-uuid16:amd64 (1.6.2-1.5+b8) ... Setting up python3-xdg (0.26-3) ... Setting up libconfig-tiny-perl (2.24-1) ... Setting up libsereal-encoder-perl (4.018+ds-1) ... Setting up libunwind8:amd64 (1.3.2-2) ... Setting up pbzip2 (1.1.13-1) ... Setting up liblist-utilsby-perl (0.11-1) ... Setting up libgpgme11:amd64 (1.14.0-1) ... Setting up libstring-shellquote-perl (1.04-1) ... Setting up libsub-install-perl (0.928-1) ... Setting up libnumber-compare-perl (0.03-1) ... Setting up mariadb-common (1:10.5.5-1) ... update-alternatives: using /etc/mysql/mariadb.cnf to provide /etc/mysql/my.cnf (my.cnf) in auto mode Setting up python3-six (1.15.0-1) ... Setting up patchutils (0.4.2-1) ... Setting up libjson-maybexs-perl (1.004002-1) ... Setting up libxml-sax-base-perl (1.09-1) ... Setting up libio-string-perl (1.08-3) ... Setting up libreadonly-perl (2.050-2) ... Setting up libpackage-stash-xs-perl (0.29-1+b1) ... Setting up autotools-dev (20180224.1) ... Setting up libclass-data-inheritable-perl (0.08-3) ... Setting up libglib2.0-data (2.66.0-2) ... Setting up python3-chardet (3.0.4-7) ... Setting up python3-gpg (1.14.0-1) ... Setting up libdata-dump-perl (1.23-1) ... Setting up python3-certifi (2020.6.20-1) ... Setting up libfile-find-rule-perl (0.34-1) ... Setting up libntlm0:amd64 (1.6-1+b1) ... Setting up libref-util-perl (0.204-1) ... Setting up libipc-system-simple-perl (1.30-1) ... Setting up libidn11:amd64 (1.33-2.4) ... Setting up libnet-domain-tld-perl (1.75-1) ... Setting up libpython3.8:amd64 (3.8.6-1) ... Setting up lzip (1.21-8) ... Setting up strace (5.5-3) ... Setting up libhash-fieldhash-perl (0.15-1+b2) ... Setting up python3-debian (0.1.37) ... Setting up libsigsegv2:amd64 (2.12-2) ... Setting up libfribidi0:amd64 (1.0.8-2) ... Setting up t1utils (1.41-4) ... Setting up diffstat (1.63-1) ... Setting up libvariable-magic-perl (0.62-1+b2) ... Setting up python3-idna (2.10-1) ... Setting up libevent-2.1-7:amd64 (2.1.12-stable-1) ... Setting up libio-html-perl (1.001-1) ... Setting up mailutils-common (1:3.10-3) ... Setting up autopoint (0.19.8.1-10) ... Setting up libb-hooks-op-check-perl (0.22-1+b2) ... Setting up libmariadb3:amd64 (1:10.5.5-1) ... Setting up libipc-run-perl (20200505.0-1) ... Setting up libfl2:amd64 (2.6.4-8) ... Setting up libxdelta2 (1.1.3-9.3) ... Setting up libgc1:amd64 (1:8.0.4-2) ... Setting up libltdl7:amd64 (2.4.6-14) ... Setting up libparams-util-perl (1.07-3+b5) ... Setting up libtime-duration-perl (1.21-1) ... Setting up libtext-xslate-perl (3.5.8-1) ... Setting up python3-urllib3 (1.25.9-1) ... Setting up libsub-exporter-progressive-perl (0.001013-1) ... Setting up libarray-intspan-perl (2.004-1) ... Setting up libcapture-tiny-perl (0.48-1) ... Setting up libtimedate-perl (2.3300-1) ... Setting up libcontextual-return-perl (0.004014-2) ... Setting up libsub-name-perl (0.26-1) ... Setting up libtype-tiny-xs-perl (0.021-1) ... Setting up libtypes-serialiser-perl (1.0-1) ... Setting up dwz (0.13-5) ... Setting up libdata-validate-domain-perl (0.10-1) ... Setting up libproc-processtable-perl (0.59-2) ... Setting up python-apt-common (2.1.3) ... Setting up libfile-chdir-perl (0.1008-1) ... Setting up exim4-config (4.94-8) ... Adding system-user for exim (v4) Setting up xdelta3 (3.0.11-dfsg-1+b1) ... Setting up libpath-tiny-perl (0.114-1) ... Setting up libarchive-cpio-perl (0.10-1) ... Setting up libxxhash0:amd64 (0.8.0-1) ... Setting up libuchardet0:amd64 (0.0.7-1) ... Setting up lzop (1.04-1) ... Setting up libjson-perl (4.02000-2) ... Setting up liblog-any-adapter-screen-perl (0.140-1) ... Setting up librole-tiny-perl (2.001004-1) ... Setting up libipc-run3-perl (0.048-2) ... Setting up libfcgi-perl (0.79-1) ... Setting up libcurl4:amd64 (7.72.0-1) ... Setting up libsub-override-perl (0.09-2) ... Setting up libaliased-perl (0.34-1) ... Setting up python3-unidiff (0.5.5-2) ... Setting up libstrictures-perl (2.000006-1) ... Setting up libsub-quote-perl (2.006006-1) ... Setting up libdevel-stacktrace-perl (2.0400-1) ... Setting up libclass-xsaccessor-perl (1.19-3+b5) ... Setting up curl (7.72.0-1) ... Setting up libsort-versions-perl (1.62-1) ... Setting up libexporter-tiny-perl (1.002002-1) ... Setting up libre-engine-re2-perl (0.13-5+b3) ... Setting up libterm-readkey-perl (2.38-1+b1) ... Setting up lsb-release (11.1.0) ... Setting up libfont-ttf-perl (1.06-1) ... Setting up libfile-homedir-perl (1.006-1) ... Setting up python3-magic (2:0.4.15-4) ... Setting up libtext-levenshteinxs-perl (0.03-4+b7) ... Setting up libperlio-gzip-perl (0.19-1+b6) ... Setting up libsys-hostname-long-perl (1.5-1) ... Setting up libxml2:amd64 (2.9.10+dfsg-6) ... Setting up libhtml-html5-entities-perl (0.004-1) ... Setting up libsereal-decoder-perl (4.018+ds-1) ... Setting up libmarkdown2:amd64 (2.2.6-1) ... Setting up liburi-perl (1.76-2) ... Setting up iso-codes (4.5.0-1) ... Setting up guile-2.2-libs:amd64 (2.2.7+1-5.3) ... Setting up dctrl-tools (2.24-3+b1) ... Setting up rsync (3.2.3-2) ... Created symlink /etc/systemd/system/multi-user.target.wants/rsync.service → /lib/systemd/system/rsync.service. Setting up debian-keyring (2020.09.24) ... Setting up libemail-address-xs-perl (1.04-1+b2) ... Setting up libnet-ssleay-perl (1.88-3) ... Setting up libfile-stripnondeterminism-perl (1.9.0-1) ... Setting up libjson-xs-perl (4.020-1+b1) ... Setting up libhttp-date-perl (6.05-1) ... Setting up libfile-basedir-perl (0.08-1) ... Setting up exim4-base (4.94-8) ... exim: DB upgrade, deleting hints-db Created symlink /etc/systemd/system/timers.target.wants/exim4-base.timer → /lib/systemd/system/exim4-base.timer. exim4-base.service is a disabled or a static unit, not starting it. Setting up libio-prompter-perl (0.004015-1) ... Setting up libossp-uuid-perl (1.6.2-1.5+b8) ... Setting up libfile-listing-perl (6.04-1) ... Setting up xdelta (1.1.3-9.3) ... Setting up libtool (2.4.6-14) ... Setting up at (3.1.23-1+b1) ... Created symlink /etc/systemd/system/multi-user.target.wants/atd.service → /lib/systemd/system/atd.service. Setting up libarchive13:amd64 (3.4.3-2) ... Setting up libdistro-info-perl (0.24) ... Setting up python3-apt (2.1.3) ... Setting up libobject-id-perl (0.1.2-2) ... Setting up liblist-moreutils-perl (0.416-1+b5) ... Setting up libregexp-pattern-license-perl (3.4.0-1) ... Setting up libtype-tiny-perl (1.010006-1) ... Setting up libgsasl7:amd64 (1.8.1-1) ... Setting up libnet-http-perl (6.19-1) ... Setting up libpath-iterator-rule-perl (1.014-1) ... Setting up libtext-markdown-discount-perl:amd64 (0.12-1) ... Setting up m4 (1.4.18-4) ... Setting up libexception-class-perl (1.44-1) ... Setting up libdevel-callchecker-perl (0.008-1+b1) ... Setting up libxml-sax-perl (1.02+dfsg-1) ... update-perl-sax-parsers: Registering Perl SAX parser XML::SAX::PurePerl with priority 10... update-perl-sax-parsers: Updating overall Perl SAX parser modules info file... Creating config file /etc/perl/XML/SAX/ParserDetails.ini with new version Setting up dput (1.0.3) ... Setting up libmail-sendmail-perl (0.80-1) ... Setting up libunbound8:amd64 (1.11.0-1) ... Setting up libstring-copyright-perl (0.003006-1) ... Setting up shared-mime-info (1.15-1) ... Setting up python3-requests (2.23.0+dfsg-2) ... Setting up libdata-optlist-perl (0.110-1) ... Setting up libcroco3:amd64 (0.6.13-1) ... Setting up autoconf (2.69-11.1) ... Setting up libxml-libxml-perl (2.0134+dfsg-2) ... update-perl-sax-parsers: Registering Perl SAX parser XML::LibXML::SAX::Parser with priority 50... update-perl-sax-parsers: Registering Perl SAX parser XML::LibXML::SAX with priority 50... update-perl-sax-parsers: Updating overall Perl SAX parser modules info file... Replacing config file /etc/perl/XML/SAX/ParserDetails.ini with new version Setting up dh-strip-nondeterminism (1.9.0-1) ... Setting up libwww-robotrules-perl (6.02-1) ... Setting up groff-base (1.22.4-5) ... Setting up libhtml-parser-perl (3.75-1) ... Setting up libgit-wrapper-perl (0.048-1) ... Setting up pixz (1.0.7-1) ... Setting up reprepro (5.3.0-1.1) ... Setting up pristine-tar (1.49) ... Setting up libio-socket-ssl-perl (2.068-1) ... Setting up libsub-exporter-perl (0.987-1) ... Setting up libhttp-message-perl (6.26-1) ... Setting up libhtml-form-perl (6.07-1) ... Setting up automake (1:1.16.2-4) ... update-alternatives: using /usr/bin/automake-1.16 to provide /usr/bin/automake (automake) in auto mode Setting up libiterator-perl (0.03+ds1-1) ... Setting up libhttp-negotiate-perl (6.01-1) ... Setting up libgnutls-dane0:amd64 (3.6.15-4) ... Setting up gettext (0.19.8.1-10) ... Setting up libmailutils7:amd64 (1:3.10-3) ... Setting up libiterator-util-perl (0.02+ds1-1) ... Setting up libhttp-cookies-perl (6.08-1) ... Setting up libhtml-tree-perl (5.07-2) ... Setting up libparams-classify-perl (0.015-1+b2) ... Setting up libhtml-format-perl (2.12-1) ... Setting up man-db (2.9.3-2) ... Building database of manual pages ... Created symlink /etc/systemd/system/timers.target.wants/man-db.timer → /lib/systemd/system/man-db.timer. man-db.service is a disabled or a static unit, not starting it. Setting up intltool-debian (0.35.0+20060710.5) ... Setting up libltdl-dev:amd64 (2.4.6-14) ... Setting up libnet-smtp-ssl-perl (1.04-1) ... Setting up libmodule-runtime-perl (0.016-1) ... Setting up libmailtools-perl (2.21-1) ... Setting up libconst-fast-perl (0.014-1) ... Setting up libhttp-daemon-perl (6.12-1) ... Setting up libdata-dpath-perl (0.58-1) ... Setting up exim4-daemon-light (4.94-8) ... Setting up mailutils (1:3.10-3) ... update-alternatives: using /usr/bin/frm.mailutils to provide /usr/bin/frm (frm) in auto mode update-alternatives: using /usr/bin/from.mailutils to provide /usr/bin/from (from) in auto mode update-alternatives: using /usr/bin/messages.mailutils to provide /usr/bin/messages (messages) in auto mode update-alternatives: using /usr/bin/movemail.mailutils to provide /usr/bin/movemail (movemail) in auto mode update-alternatives: using /usr/bin/readmsg.mailutils to provide /usr/bin/readmsg (readmsg) in auto mode update-alternatives: using /usr/bin/dotlock.mailutils to provide /usr/bin/dotlock (dotlock) in auto mode update-alternatives: using /usr/bin/mail.mailutils to provide /usr/bin/mailx (mailx) in auto mode Setting up libmodule-implementation-perl (0.09-1) ... Setting up libpackage-stash-perl (0.38-1) ... Setting up libimport-into-perl (1.002005-1) ... Setting up libmoo-perl (2.004000-1) ... Setting up po-debconf (1.0.21) ... Setting up liblist-someutils-perl (0.58-1) ... Setting up libmime-tools-perl (5.509-1) ... Setting up liblist-someutils-xs-perl (0.58-2) ... Setting up libmoox-aliases-perl (0.001006-1) ... Setting up libparams-validate-perl (1.29-3) ... Setting up libb-hooks-endofscope-perl (0.24-1) ... Setting up libnamespace-clean-perl (0.27-1) ... Setting up libgetopt-long-descriptive-perl (0.105-1) ... Setting up libnamespace-autoclean-perl (0.29-1) ... Setting up libgitlab-api-v4-perl (0.25-2) ... Setting up libmoox-struct-perl (0.020-1) ... Setting up lintian (2.97.0) ... Setting up licensecheck (3.0.47-1) ... Setting up dh-autoreconf (19) ... Setting up liblwp-protocol-https-perl (6.09-1) ... Setting up libwww-perl (6.49-1) ... Setting up debhelper (13.2.1) ... Setting up devscripts (2.20.4) ... Setting up equivs (2.3.1) ... Setting up libxml-parser-perl (2.46-1+b1) ... Setting up libxml-sax-expat-perl (0.51-1) ... update-perl-sax-parsers: Registering Perl SAX parser XML::SAX::Expat with priority 50... update-perl-sax-parsers: Updating overall Perl SAX parser modules info file... Replacing config file /etc/perl/XML/SAX/ParserDetails.ini with new version Setting up libsoap-lite-perl (1.27-1) ... Setting up libxmlrpc-lite-perl (0.717-4) ... Processing triggers for mime-support (3.64) ... Processing triggers for libc-bin (2.31-3) ... Processing triggers for systemd (246.6-1) ... [#312867] 2020/10/02 15:52:11 Cloning repositories Cloning into 'core.sr.ht'... + cd core.sr.ht + git submodule update --init Submodule 'srht/scss/bootstrap' (https://github.com/twbs/bootstrap.git) registered for path 'srht/scss/bootstrap' Cloning into '/home/build/core.sr.ht/srht/scss/bootstrap'... Submodule path 'srht/scss/bootstrap': checked out '779ad9f174ea5ab7e755f6df0ec9e5912d67dd16' Cloning into 'core.sr.ht-deb'... + cd core.sr.ht-deb + git submodule update --init Cloning into 'sr.ht-debbuilds'... + cd sr.ht-debbuilds + git submodule update --init [#312867] 2020/10/02 15:52:37 Running task _apply_patch [#312867] 2020/10/02 15:52:37 Running task archive [#312867] 2020/10/02 15:52:38 Running task package [#312867] 2020/10/02 15:53:09 Running task upload [#312867] 2020/10/02 15:53:10 Processing post-success triggers for job group... [#312867] 2020/10/02 15:53:10 Sent build results email to gildarts <gildarts@orbital.rocks> [#312867] 2020/10/02 15:53:10 Processing post-success triggers... [#312867] 2020/10/02 15:53:11 Sending webhook... [#312867] 2020/10/02 15:53:11 Webhook response: 200 [#312867] 2020/10/02 15:53:11 Thanks! |
1 2 3 4 5 6 7 8 |
+ echo Applying patch from lists.sr.ht Applying patch from lists.sr.ht + git config --global user.name builds.sr.ht + git config --global user.email builds@sr.ht + cd core.sr.ht + curl --no-progress-meter https://lists.sr.ht/~sircmpwn/sr.ht-dev/patches/14157/mbox + git am -3 /tmp/14157.patch Applying: Fix alignment and sizing of header anchor tags |
1 2 3 4 5 |
+ cd core.sr.ht ++ git describe + pkgver=0.64.9-1-gcac41ea + echo pkgver=0.64.9-1-gcac41ea + git archive -o ../core.sr.ht_0.64.9-1-gcac41ea.orig.tar.gz --prefix=core.sr.ht-0.64.9-1-gcac41ea/ HEAD |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 |
+ cd sr.ht-debbuilds + ./pkgkit build-version -li core.sr.ht 0.64.9-1-gcac41ea uupdate: New Release will be 0.64.9-1-gcac41ea-1. uupdate: Untarring the new sourcecode archive ../core.sr.ht_0.64.9-1-gcac41ea.orig.tar.gz uupdate: debian/source/format is "3.0 (quilt)". uupdate: Auto-generating core.sr.ht_0.63.4-2.debian.tar.xz uupdate: Unpacking the debian/ directory from version 0.63.4-2 worked fine. uupdate: Remember: Your current directory is the OLD sourcearchive! uupdate: Do a "cd ../core.sr.ht-0.64.9-1-gcac41ea" to see the new package dpkg-buildpackage: info: source package core.sr.ht-build-deps dpkg-buildpackage: info: source version 0.64.9-1-gcac41ea-1 dpkg-buildpackage: info: source distribution unstable dpkg-buildpackage: info: source changed by sr.ht Debian autobuilder <debian@sr.ht> dpkg-buildpackage: info: host architecture amd64 dpkg-source --before-build . debian/rules clean dh clean dh_clean debian/rules binary dh binary dh_update_autotools_config dh_autoreconf create-stamp debian/debhelper-build-stamp dh_testroot dh_prep dh_install dh_installdocs dh_installchangelogs dh_perl dh_link dh_strip_nondeterminism dh_compress dh_fixperms dh_missing dh_installdeb dh_gencontrol dh_md5sums dh_builddeb dpkg-deb: building package 'core.sr.ht-build-deps' in '../core.sr.ht-build-deps_0.64.9-1-gcac41ea-1_all.deb'. dpkg-genbuildinfo --build=binary dpkg-genchanges --build=binary >../core.sr.ht-build-deps_0.64.9-1-gcac41ea-1_amd64.changes dpkg-genchanges: info: binary-only upload (no source code included) dpkg-source --after-build . dpkg-buildpackage: info: binary-only upload (no source included) The package has been created. Attention, the package has been created in the current directory, not in ".." as indicated by the message above! Selecting previously unselected package core.sr.ht-build-deps. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 41454 files and directories currently installed.) Preparing to unpack core.sr.ht-build-deps_0.64.9-1-gcac41ea-1_all.deb ... Unpacking core.sr.ht-build-deps (0.64.9-1-gcac41ea-1) ... Reading package lists... 0% Reading package lists... 0% Reading package lists... 23% Reading package lists... Done Building dependency tree... 0% Building dependency tree... 0% Building dependency tree... 50% Building dependency tree... 50% Building dependency tree Reading state information... 0% Reading state information... 0% Reading state information... Done Correcting dependencies...Starting pkgProblemResolver with broken count: 0 Starting 2 pkgProblemResolver with broken count: 0 Done Done Starting pkgProblemResolver with broken count: 0 Starting 2 pkgProblemResolver with broken count: 0 Done The following additional packages will be installed: dh-python python3-all python3-distutils python3-lib2to3 python3-setuptools Suggested packages: python-setuptools-doc The following NEW packages will be installed: dh-python python3-all python3-distutils python3-lib2to3 python3-setuptools 0 upgraded, 5 newly installed, 0 to remove and 0 not upgraded. 1 not fully installed or removed. Need to get 834 kB of archives. After this operation, 4119 kB of additional disk space will be used. Do you want to continue? [Y/n] 0% [Working] Get:1 http://deb.debian.org/debian sid/main amd64 python3-lib2to3 all 3.8.5-1 [78.4 kB] 1% [1 python3-lib2to3 8688 B/78.4 kB 11%] 12% [Working] Get:2 http://deb.debian.org/debian sid/main amd64 python3-distutils all 3.8.5-1 [145 kB] 12% [2 python3-distutils 4344 B/145 kB 3%] 29% [Waiting for headers] Get:3 http://deb.debian.org/debian sid/main amd64 dh-python all 4.20200925 [98.3 kB] 30% [3 dh-python 8050 B/98.3 kB 8%] 43% [Waiting for headers] Get:4 http://deb.debian.org/debian sid/main amd64 python3-all amd64 3.8.2-3 [1056 B] Get:5 http://deb.debian.org/debian sid/main amd64 python3-setuptools all 49.3.1-2 [512 kB] 48% [5 python3-setuptools 13.1 kB/512 kB 3%] 100% [Working] Fetched 834 kB in 0s (5858 kB/s) Selecting previously unselected package python3-lib2to3. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 41458 files and directories currently installed.) Preparing to unpack .../python3-lib2to3_3.8.5-1_all.deb ... Unpacking python3-lib2to3 (3.8.5-1) ... Selecting previously unselected package python3-distutils. Preparing to unpack .../python3-distutils_3.8.5-1_all.deb ... Unpacking python3-distutils (3.8.5-1) ... Selecting previously unselected package dh-python. Preparing to unpack .../dh-python_4.20200925_all.deb ... Unpacking dh-python (4.20200925) ... Selecting previously unselected package python3-all. Preparing to unpack .../python3-all_3.8.2-3_amd64.deb ... Unpacking python3-all (3.8.2-3) ... Selecting previously unselected package python3-setuptools. Preparing to unpack .../python3-setuptools_49.3.1-2_all.deb ... Unpacking python3-setuptools (49.3.1-2) ... Setting up python3-lib2to3 (3.8.5-1) ... Setting up python3-distutils (3.8.5-1) ... Setting up dh-python (4.20200925) ... Setting up python3-setuptools (49.3.1-2) ... Setting up python3-all (3.8.2-3) ... Setting up core.sr.ht-build-deps (0.64.9-1-gcac41ea-1) ... Processing triggers for man-db (2.9.3-2) ... dpkg-buildpackage: info: source package core.sr.ht dpkg-buildpackage: info: source version 0.64.9-1-gcac41ea-1 dpkg-buildpackage: info: source distribution unstable dpkg-buildpackage: info: source changed by sr.ht Debian autobuilder <debian@sr.ht> dpkg-buildpackage: info: host architecture amd64 dpkg-source --before-build . dpkg-source: info: using options from core.sr.ht-0.64.9-1-gcac41ea/debian/source/options: --extend-diff-ignore=^[^/]*[.]egg-info/ dpkg-source: info: using patch list from debian/patches/series dpkg-source: info: applying Rely-on-cleancss-being-installed-on-the-system.patch dpkg-source: info: applying Import-bootstrap-only-once.patch dpkg-source: info: applying Add-usr-share-sass-bootstrap-to-sassc-load-path.patch fakeroot debian/rules clean dh clean --with python3 --buildsystem=pybuild dh_auto_clean -O--buildsystem=pybuild I: pybuild base:217: python3.8 setup.py clean running clean removing '/home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build' (and everything under it) 'build/bdist.linux-x86_64' does not exist -- can't clean it 'build/scripts-3.8' does not exist -- can't clean it dh_autoreconf_clean -O--buildsystem=pybuild dh_clean -O--buildsystem=pybuild dpkg-source -b . dpkg-source: info: using options from core.sr.ht-0.64.9-1-gcac41ea/debian/source/options: --extend-diff-ignore=^[^/]*[.]egg-info/ dpkg-source: info: using source format '3.0 (quilt)' dpkg-source: info: building core.sr.ht using existing ./core.sr.ht_0.64.9-1-gcac41ea.orig.tar.gz dpkg-source: info: using patch list from debian/patches/series dpkg-source: info: building core.sr.ht in core.sr.ht_0.64.9-1-gcac41ea-1.debian.tar.xz dpkg-source: info: building core.sr.ht in core.sr.ht_0.64.9-1-gcac41ea-1.dsc debian/rules build dh build --with python3 --buildsystem=pybuild dh_update_autotools_config -O--buildsystem=pybuild dh_autoreconf -O--buildsystem=pybuild dh_auto_configure -O--buildsystem=pybuild I: pybuild base:217: python3.8 setup.py config running config dh_auto_build -O--buildsystem=pybuild I: pybuild base:217: /usr/bin/python3 setup.py build running build running build_py creating /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht copying srht/crypto.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht copying srht/validation.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht copying srht/api.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht copying srht/gql_lexer.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht copying srht/email.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht copying srht/graphql.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht copying srht/redis.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht copying srht/markdown.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht copying srht/__init__.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht copying srht/search.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht copying srht/debug.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht copying srht/flagtype.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht copying srht/cache.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht copying srht/flask.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht copying srht/urlify.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht copying srht/database.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht copying srht/config.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht package init file 'srht/alembic/__init__.py' not found (or not a regular file) creating /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/alembic copying srht/alembic/env.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/alembic package init file 'srht/alembic/versions/__init__.py' not found (or not a regular file) creating /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/alembic/versions copying srht/alembic/versions/4cba8deffa67_allow_external_users_to_have_null_.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/alembic/versions copying srht/alembic/versions/fb50c54ea20e_add_suspension_notice_to_user.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/alembic/versions copying srht/alembic/versions/c19c3956974d_add_index_for_usernames.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/alembic/versions copying srht/alembic/versions/0417a58bdaad_add_unique_constraint_to_username.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/alembic/versions copying srht/alembic/versions/5a62c0c174fd_remove_nullable_constraint_from_.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/alembic/versions copying srht/alembic/versions/af06063a0edd_add_revocation_key_to_user.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/alembic/versions creating /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/oauth copying srht/oauth/user.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/oauth copying srht/oauth/client.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/oauth copying srht/oauth/scope.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/oauth copying srht/oauth/interface.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/oauth copying srht/oauth/__init__.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/oauth copying srht/oauth/decorator.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/oauth copying srht/oauth/token.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/oauth copying srht/oauth/blueprint.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/oauth creating /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/webhook copying srht/webhook/webhook.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/webhook copying srht/webhook/__init__.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/webhook copying srht/webhook/celery.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/webhook copying srht/webhook/magic.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/webhook copying srht/Makefile -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht copying srht/package.json -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht creating /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/templates copying srht/templates/suspended.html -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/templates copying srht/templates/read_only.html -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/templates copying srht/templates/pagination.html -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/templates copying srht/templates/layout.html -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/templates copying srht/templates/internal_error.html -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/templates copying srht/templates/graphql.html -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/templates copying srht/templates/nav.html -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/templates copying srht/templates/oauth-error.html -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/templates copying srht/templates/not_found.html -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/templates copying srht/templates/layout-full.html -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/templates creating /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/scss copying srht/scss/contrast.scss -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/scss copying srht/scss/variables.scss -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/scss copying srht/scss/highlight.scss -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/scss copying srht/scss/icons.scss -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/scss copying srht/scss/nav.scss -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/scss copying srht/scss/events.scss -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/scss copying srht/scss/base.scss -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/scss copying srht/scss/font-awesome.min.css -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/scss creating /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static copying srht/static/simple.js -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static copying srht/static/codemirror.css -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static copying srht/static/codemirror.js -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static creating /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons copying srht/static/icons/code-branch.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons copying srht/static/icons/plus-square.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons copying srht/static/icons/plus-circle.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons copying srht/static/icons/user.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons copying srht/static/icons/check.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons copying srht/static/icons/rss.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons copying srht/static/icons/circle-notch.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons copying srht/static/icons/envelope-o.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons copying srht/static/icons/file.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons copying srht/static/icons/LICENSE.txt -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons copying srht/static/icons/caret-right.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons copying srht/static/icons/question-circle.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons copying srht/static/icons/caret-left.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons copying srht/static/icons/exclamation-triangle.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons copying srht/static/icons/circle.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons copying srht/static/icons/file-alt.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons copying srht/static/icons/gitlab.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons copying srht/static/icons/minus.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons copying srht/static/icons/external-link-alt.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons copying srht/static/icons/arrow-right.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons copying srht/static/icons/comments.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons copying srht/static/icons/comments-o.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons copying srht/static/icons/clock.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons copying srht/static/icons/folder.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons copying srht/static/icons/README -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons copying srht/static/icons/times.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons copying srht/static/icons/github.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons copying srht/static/icons/plus.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons copying srht/static/icons/reply.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons copying srht/static/icons/circle-solid.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons running build_scripts creating build creating build/scripts-3.8 copying and adjusting srht-update-profiles -> build/scripts-3.8 copying and adjusting srht-migrate -> build/scripts-3.8 copying and adjusting srht-keygen -> build/scripts-3.8 changing mode of build/scripts-3.8/srht-update-profiles from 644 to 755 changing mode of build/scripts-3.8/srht-migrate from 644 to 755 changing mode of build/scripts-3.8/srht-keygen from 644 to 755 dh_auto_test -O--buildsystem=pybuild create-stamp debian/debhelper-build-stamp fakeroot debian/rules binary dh binary --with python3 --buildsystem=pybuild dh_testroot -O--buildsystem=pybuild dh_prep -O--buildsystem=pybuild dh_auto_install -O--buildsystem=pybuild I: pybuild base:217: /usr/bin/python3 setup.py install --root /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht running install running build running build_py package init file 'srht/alembic/__init__.py' not found (or not a regular file) package init file 'srht/alembic/versions/__init__.py' not found (or not a regular file) running build_scripts running install_lib creating /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr creating /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib creating /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8 creating /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages creating /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/crypto.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/validation.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/Makefile -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/api.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/gql_lexer.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/email.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/graphql.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/redis.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/markdown.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht creating /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/simple.js -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static creating /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons/code-branch.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons/plus-square.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons/plus-circle.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons/user.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons/check.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons/rss.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons/circle-notch.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons/envelope-o.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons/file.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons/LICENSE.txt -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons/caret-right.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons/question-circle.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons/caret-left.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons/exclamation-triangle.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons/circle.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons/file-alt.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons/gitlab.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons/minus.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons/external-link-alt.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons/arrow-right.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons/comments.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons/comments-o.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons/clock.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons/folder.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons/README -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons/times.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons/github.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons/plus.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons/reply.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/icons/circle-solid.svg -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/codemirror.css -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/static/codemirror.js -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/__init__.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht creating /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/scss copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/scss/contrast.scss -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/scss copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/scss/variables.scss -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/scss copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/scss/highlight.scss -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/scss copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/scss/font-awesome.min.css -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/scss copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/scss/icons.scss -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/scss copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/scss/nav.scss -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/scss copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/scss/events.scss -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/scss copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/scss/base.scss -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/scss creating /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/alembic copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/alembic/env.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/alembic creating /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/alembic/versions copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/alembic/versions/4cba8deffa67_allow_external_users_to_have_null_.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/alembic/versions copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/alembic/versions/fb50c54ea20e_add_suspension_notice_to_user.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/alembic/versions copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/alembic/versions/c19c3956974d_add_index_for_usernames.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/alembic/versions copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/alembic/versions/0417a58bdaad_add_unique_constraint_to_username.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/alembic/versions copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/alembic/versions/5a62c0c174fd_remove_nullable_constraint_from_.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/alembic/versions copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/alembic/versions/af06063a0edd_add_revocation_key_to_user.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/alembic/versions copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/package.json -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht creating /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/oauth/user.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/oauth/client.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/oauth/scope.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/oauth/interface.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/oauth/__init__.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/oauth/decorator.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/oauth/token.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/oauth/blueprint.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/search.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/debug.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/flagtype.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/cache.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht creating /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/webhook copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/webhook/webhook.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/webhook copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/webhook/__init__.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/webhook copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/webhook/celery.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/webhook copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/webhook/magic.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/webhook copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/flask.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/urlify.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht creating /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/templates copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/templates/suspended.html -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/templates copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/templates/read_only.html -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/templates copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/templates/pagination.html -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/templates copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/templates/layout.html -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/templates copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/templates/internal_error.html -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/templates copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/templates/graphql.html -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/templates copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/templates/nav.html -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/templates copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/templates/oauth-error.html -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/templates copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/templates/not_found.html -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/templates copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/templates/layout-full.html -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/templates copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/database.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht copying /home/build/core.sr.ht-0.64.9-1-gcac41ea/.pybuild/cpython3_3.8_srht/build/srht/config.py -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/crypto.py to crypto.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/validation.py to validation.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/api.py to api.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/gql_lexer.py to gql_lexer.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/email.py to email.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/graphql.py to graphql.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/redis.py to redis.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/markdown.py to markdown.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/__init__.py to __init__.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/alembic/env.py to env.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/alembic/versions/4cba8deffa67_allow_external_users_to_have_null_.py to 4cba8deffa67_allow_external_users_to_have_null_.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/alembic/versions/fb50c54ea20e_add_suspension_notice_to_user.py to fb50c54ea20e_add_suspension_notice_to_user.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/alembic/versions/c19c3956974d_add_index_for_usernames.py to c19c3956974d_add_index_for_usernames.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/alembic/versions/0417a58bdaad_add_unique_constraint_to_username.py to 0417a58bdaad_add_unique_constraint_to_username.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/alembic/versions/5a62c0c174fd_remove_nullable_constraint_from_.py to 5a62c0c174fd_remove_nullable_constraint_from_.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/alembic/versions/af06063a0edd_add_revocation_key_to_user.py to af06063a0edd_add_revocation_key_to_user.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth/user.py to user.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth/client.py to client.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth/scope.py to scope.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth/interface.py to interface.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth/__init__.py to __init__.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth/decorator.py to decorator.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth/token.py to token.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth/blueprint.py to blueprint.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/search.py to search.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/debug.py to debug.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/flagtype.py to flagtype.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/cache.py to cache.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/webhook/webhook.py to webhook.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/webhook/__init__.py to __init__.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/webhook/celery.py to celery.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/webhook/magic.py to magic.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/flask.py to flask.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/urlify.py to urlify.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/database.py to database.cpython-38.pyc byte-compiling /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/config.py to config.cpython-38.pyc running install_egg_info running egg_info creating srht.egg-info writing srht.egg-info/PKG-INFO writing dependency_links to srht.egg-info/dependency_links.txt writing requirements to srht.egg-info/requires.txt writing top-level names to srht.egg-info/top_level.txt writing manifest file 'srht.egg-info/SOURCES.txt' reading manifest file 'srht.egg-info/SOURCES.txt' writing manifest file 'srht.egg-info/SOURCES.txt' Copying srht.egg-info to /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/lib/python3.8/dist-packages/srht-0.64.9.egg-info Skipping SOURCES.txt running install_scripts creating /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/bin copying build/scripts-3.8/srht-keygen -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/bin copying build/scripts-3.8/srht-update-profiles -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/bin copying build/scripts-3.8/srht-migrate -> /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/bin changing mode of /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/bin/srht-keygen to 755 changing mode of /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/bin/srht-update-profiles to 755 changing mode of /home/build/core.sr.ht-0.64.9-1-gcac41ea/debian/python3-srht/usr/bin/srht-migrate to 755 dh_installdocs -O--buildsystem=pybuild dh_installchangelogs -O--buildsystem=pybuild dh_python3 -O--buildsystem=pybuild dh_installinit -O--buildsystem=pybuild dh_perl -O--buildsystem=pybuild dh_link -O--buildsystem=pybuild dh_strip_nondeterminism -O--buildsystem=pybuild dh_compress -O--buildsystem=pybuild dh_fixperms -O--buildsystem=pybuild dh_missing -O--buildsystem=pybuild dh_installdeb -O--buildsystem=pybuild dh_gencontrol -O--buildsystem=pybuild dh_md5sums -O--buildsystem=pybuild dh_builddeb -O--buildsystem=pybuild dpkg-deb: building package 'python3-srht' in '../python3-srht_0.64.9-1-gcac41ea-1_all.deb'. dpkg-genbuildinfo dpkg-genchanges -si >../core.sr.ht_0.64.9-1-gcac41ea-1_amd64.changes dpkg-genchanges: info: including full source code in upload dpkg-source --after-build . dpkg-source: info: using options from core.sr.ht-0.64.9-1-gcac41ea/debian/source/options: --extend-diff-ignore=^[^/]*[.]egg-info/ dpkg-source: info: unapplying Add-usr-share-sass-bootstrap-to-sassc-load-path.patch dpkg-source: info: unapplying Import-bootstrap-only-once.patch dpkg-source: info: unapplying Rely-on-cleancss-being-installed-on-the-system.patch dpkg-buildpackage: info: full upload (original source is included) Reading package lists... 0% Reading package lists... 100% Reading package lists... Done Building dependency tree... 0% Building dependency tree... 0% Building dependency tree... 50% Building dependency tree... 50% Building dependency tree Reading state information... 0% Reading state information... 0% Reading state information... Done The following packages will be REMOVED: core.sr.ht-build-deps* dh-python* python3-all* 0 upgraded, 0 newly installed, 3 to remove and 0 not upgraded. After this operation, 446 kB disk space will be freed. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 41946 files and directories currently installed.) Removing core.sr.ht-build-deps (0.64.9-1-gcac41ea-1) ... Removing dh-python (4.20200925) ... Removing python3-all (3.8.2-3) ... Processing triggers for man-db (2.9.3-2) ... python3-srht_0.64.9-1-gcac41ea-1_all.deb ---------------------------------------- new Debian package, version 2.0. size 145120 bytes: control archive=3812 bytes. 758 bytes, 15 lines control 8913 bytes, 98 lines md5sums 263 bytes, 12 lines * postinst #!/bin/sh 398 bytes, 12 lines * prerm #!/bin/sh Package: python3-srht Source: core.sr.ht Version: 0.64.9-1-gcac41ea-1 Architecture: all Maintainer: Denis Laxalde <denis@laxalde.org> Installed-Size: 665 Depends: python3-bleach, python3-bs4, python3-cryptography, python3-flask, python3-humanize, python3-markdown, python3-mistletoe, python3-pgpy, python3-prometheus-client, python3-psycopg2 (>= 2.8.0), python3-pygments, python3-requests, python3-sqlalchemy, python3-sqlalchemy-utils, python3:any (>= 3.7~), python3-alembic, python3-redis Section: misc Priority: optional Homepage: https://sourcehut.org/ Description: shared library for sr.ht (Python 3) Sourcehut (a.k.a. sr.ht) is a software suite for managing your software development projects. . This package installs the core library for Python 3. drwxr-xr-x root/root 0 2020-10-02 15:52 ./ drwxr-xr-x root/root 0 2020-10-02 15:52 ./usr/ drwxr-xr-x root/root 0 2020-10-02 15:52 ./usr/bin/ -rwxr-xr-x root/root 1196 2020-10-02 15:52 ./usr/bin/srht-keygen -rwxr-xr-x root/root 133 2020-10-02 15:52 ./usr/bin/srht-migrate -rwxr-xr-x root/root 702 2020-10-02 15:52 ./usr/bin/srht-update-profiles drwxr-xr-x root/root 0 2020-10-02 15:52 ./usr/lib/ drwxr-xr-x root/root 0 2020-10-02 15:52 ./usr/lib/python3/ drwxr-xr-x root/root 0 2020-10-02 15:52 ./usr/lib/python3/dist-packages/ drwxr-xr-x root/root 0 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/ -rw-r--r-- root/root 1463 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/Makefile -rw-r--r-- root/root 0 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/__init__.py drwxr-xr-x root/root 0 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/alembic/ -rw-r--r-- root/root 110 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/alembic/env.py drwxr-xr-x root/root 0 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/alembic/versions/ -rw-r--r-- root/root 447 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/alembic/versions/0417a58bdaad_add_unique_constraint_to_username.py -rw-r--r-- root/root 1089 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/alembic/versions/4cba8deffa67_allow_external_users_to_have_null_.py -rw-r--r-- root/root 468 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/alembic/versions/5a62c0c174fd_remove_nullable_constraint_from_.py -rw-r--r-- root/root 552 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/alembic/versions/af06063a0edd_add_revocation_key_to_user.py -rw-r--r-- root/root 404 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/alembic/versions/c19c3956974d_add_index_for_usernames.py -rw-r--r-- root/root 434 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/alembic/versions/fb50c54ea20e_add_suspension_notice_to_user.py -rw-r--r-- root/root 3838 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/api.py -rw-r--r-- root/root 482 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/cache.py -rw-r--r-- root/root 2430 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/config.py -rw-r--r-- root/root 4171 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/crypto.py -rw-r--r-- root/root 5437 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/database.py -rw-r--r-- root/root 1609 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/debug.py -rw-r--r-- root/root 5979 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/email.py -rw-r--r-- root/root 427 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/flagtype.py -rw-r--r-- root/root 15781 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/flask.py -rw-r--r-- root/root 1068 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/gql_lexer.py -rw-r--r-- root/root 2326 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/graphql.py -rw-r--r-- root/root 7841 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/markdown.py drwxr-xr-x root/root 0 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/oauth/ -rw-r--r-- root/root 2011 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/oauth/__init__.py -rw-r--r-- root/root 4446 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/oauth/blueprint.py -rw-r--r-- root/root 574 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/oauth/client.py -rw-r--r-- root/root 5381 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/oauth/decorator.py -rw-r--r-- root/root 10209 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/oauth/interface.py -rw-r--r-- root/root 2409 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/oauth/scope.py -rw-r--r-- root/root 1828 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/oauth/token.py -rw-r--r-- root/root 2104 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/oauth/user.py -rw-r--r-- root/root 244 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/package.json -rw-r--r-- root/root 308 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/redis.py drwxr-xr-x root/root 0 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/scss/ -rw-r--r-- root/root 4414 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/scss/base.scss -rw-r--r-- root/root 4241 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/scss/contrast.scss -rw-r--r-- root/root 680 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/scss/events.scss -rw-r--r-- root/root 27460 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/scss/font-awesome.min.css -rw-r--r-- root/root 199 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/scss/highlight.scss -rw-r--r-- root/root 658 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/scss/icons.scss -rw-r--r-- root/root 2362 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/scss/nav.scss -rw-r--r-- root/root 556 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/scss/variables.scss -rw-r--r-- root/root 3938 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/search.py drwxr-xr-x root/root 0 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/ -rw-r--r-- root/root 8705 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/codemirror.css -rw-r--r-- root/root 398722 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/codemirror.js drwxr-xr-x root/root 0 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/icons/ -rw-r--r-- root/root 1548 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/icons/LICENSE.txt -rw-r--r-- root/root 308 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/icons/README -rw-r--r-- root/root 334 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/icons/arrow-right.svg -rw-r--r-- root/root 241 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/icons/caret-left.svg -rw-r--r-- root/root 233 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/icons/caret-right.svg -rw-r--r-- root/root 355 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/icons/check.svg -rw-r--r-- root/root 549 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/icons/circle-notch.svg -rw-r--r-- root/root 150 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/icons/circle-solid.svg -rw-r--r-- root/root 233 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/icons/circle.svg -rw-r--r-- root/root 405 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/icons/clock.svg -rw-r--r-- root/root 756 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/icons/code-branch.svg -rw-r--r-- root/root 972 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/icons/comments-o.svg -rw-r--r-- root/root 580 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/icons/comments.svg -rw-r--r-- root/root 575 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/icons/envelope-o.svg -rw-r--r-- root/root 708 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/icons/exclamation-triangle.svg -rw-r--r-- root/root 605 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/icons/external-link-alt.svg -rw-r--r-- root/root 511 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/icons/file-alt.svg -rw-r--r-- root/root 268 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/icons/file.svg -rw-r--r-- root/root 208 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/icons/folder.svg -rw-r--r-- root/root 1385 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/icons/github.svg -rw-r--r-- root/root 682 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/icons/gitlab.svg -rw-r--r-- root/root 197 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/icons/minus.svg -rw-r--r-- root/root 355 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/icons/plus-circle.svg -rw-r--r-- root/root 481 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/icons/plus-square.svg -rw-r--r-- root/root 320 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/icons/plus.svg -rw-r--r-- root/root 830 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/icons/question-circle.svg -rw-r--r-- root/root 402 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/icons/reply.svg -rw-r--r-- root/root 723 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/icons/rss.svg -rw-r--r-- root/root 496 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/icons/times.svg -rw-r--r-- root/root 337 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/icons/user.svg -rw-r--r-- root/root 8044 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/static/simple.js drwxr-xr-x root/root 0 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/templates/ -rw-r--r-- root/root 2208 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/templates/graphql.html -rw-r--r-- root/root 171 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/templates/internal_error.html -rw-r--r-- root/root 144 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/templates/layout-full.html -rw-r--r-- root/root 4700 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/templates/layout.html -rw-r--r-- root/root 1320 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/templates/nav.html -rw-r--r-- root/root 234 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/templates/not_found.html -rw-r--r-- root/root 145 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/templates/oauth-error.html -rw-r--r-- root/root 615 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/templates/pagination.html -rw-r--r-- root/root 933 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/templates/read_only.html -rw-r--r-- root/root 272 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/templates/suspended.html -rw-r--r-- root/root 1893 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/urlify.py -rw-r--r-- root/root 5648 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/validation.py drwxr-xr-x root/root 0 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/webhook/ -rw-r--r-- root/root 124 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/webhook/__init__.py -rw-r--r-- root/root 2431 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/webhook/celery.py -rw-r--r-- root/root 6690 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/webhook/magic.py -rw-r--r-- root/root 8240 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht/webhook/webhook.py drwxr-xr-x root/root 0 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht-0.64.9.egg-info/ -rw-r--r-- root/root 231 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht-0.64.9.egg-info/PKG-INFO -rw-r--r-- root/root 1 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht-0.64.9.egg-info/dependency_links.txt -rw-r--r-- root/root 0 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht-0.64.9.egg-info/requires.txt -rw-r--r-- root/root 5 2020-10-02 15:52 ./usr/lib/python3/dist-packages/srht-0.64.9.egg-info/top_level.txt drwxr-xr-x root/root 0 2020-10-02 15:52 ./usr/share/ drwxr-xr-x root/root 0 2020-10-02 15:52 ./usr/share/doc/ drwxr-xr-x root/root 0 2020-10-02 15:52 ./usr/share/doc/python3-srht/ -rw-r--r-- root/root 634 2020-10-02 15:52 ./usr/share/doc/python3-srht/changelog.Debian.gz -rw-r--r-- root/root 1779 2020-10-02 15:52 ./usr/share/doc/python3-srht/copyright E: core.sr.ht source: source-is-missing srht/static/codemirror.js line length is 1954 characters (>512) W: python3-srht: no-manual-page usr/bin/srht-keygen W: python3-srht: no-manual-page usr/bin/srht-migrate W: python3-srht: no-manual-page usr/bin/srht-update-profiles W: core.sr.ht source: no-nmu-in-changelog W: core.sr.ht source: source-nmu-has-incorrect-version-number 0.64.9-1-gcac41ea-1 Reading package lists... 0% Reading package lists... 0% Reading package lists... Done Building dependency tree... 0% Building dependency tree... 0% Building dependency tree... 0% Building dependency tree... 50% Building dependency tree... 50% Building dependency tree Reading state information... 0% Reading state information... 0% Reading state information... Done Note, selecting 'python3-srht' instead of '../python3-srht_0.64.9-1-gcac41ea-1_all.deb' The following additional packages will be installed: libjs-jquery libpq5 node-jquery python-babel-localedata python3-alembic python3-anyjson python3-arrow python3-babel python3-bleach python3-bs4 python3-cffi-backend python3-click python3-colorama python3-cryptography python3-dateutil python3-decorator python3-editor python3-flask python3-html5lib python3-humanize python3-itsdangerous python3-jinja2 python3-mako python3-markdown python3-markupsafe python3-mistletoe python3-packaging python3-pgpy python3-prometheus-client python3-psycopg2 python3-pyasn1 python3-pygments python3-pyparsing python3-redis python3-soupsieve python3-sqlalchemy python3-sqlalchemy-utils python3-tz python3-webencodings python3-werkzeug Suggested packages: python-arrow-doc python-bleach-doc python-cryptography-doc python3-cryptography-vectors python-flask-doc python3-genshi python3-lxml python-jinja2-doc python3-beaker python-mako-doc python-markdown-doc python-psycopg2-doc python-pygments-doc ttf-bitstream-vera python-pyparsing-doc python3-hiredis python-sqlalchemy-doc python3-fdb python3-pymssql python3-mysqldb python-sqlalchemy-utils-doc ipython3 python-werkzeug-doc python3-watchdog Recommended packages: javascript-common python3-lxml python3-blinker python3-simplejson python3-yaml python3-pgpy-doc python3-sqlalchemy-ext python3-openssl python3-pyinotify The following NEW packages will be installed: libjs-jquery libpq5 node-jquery python-babel-localedata python3-alembic python3-anyjson python3-arrow python3-babel python3-bleach python3-bs4 python3-cffi-backend python3-click python3-colorama python3-cryptography python3-dateutil python3-decorator python3-editor python3-flask python3-html5lib python3-humanize python3-itsdangerous python3-jinja2 python3-mako python3-markdown python3-markupsafe python3-mistletoe python3-packaging python3-pgpy python3-prometheus-client python3-psycopg2 python3-pyasn1 python3-pygments python3-pyparsing python3-redis python3-soupsieve python3-sqlalchemy python3-sqlalchemy-utils python3-srht python3-tz python3-webencodings python3-werkzeug 0 upgraded, 41 newly installed, 0 to remove and 0 not upgraded. Need to get 9176 kB/9322 kB of archives. After this operation, 48.1 MB of additional disk space will be used. 0% [Working] Get:1 /home/build/python3-srht_0.64.9-1-gcac41ea-1_all.deb python3-srht all 0.64.9-1-gcac41ea-1 [145 kB] 2% [Working] Get:2 http://deb.debian.org/debian sid/main amd64 node-jquery all 3.5.1+dfsg-4 [309 kB] 2% [2 node-jquery 0 B/309 kB 0%] 5% [Working] Get:3 http://deb.debian.org/debian sid/main amd64 libjs-jquery all 3.5.1+dfsg-4 [3612 B] 5% [3 libjs-jquery 0 B/3612 B 0%] 5% [Working] Get:4 http://deb.debian.org/debian sid/main amd64 libpq5 amd64 13.0-2 [175 kB] 5% [4 libpq5 0 B/175 kB 0%] 7% [Working] Get:5 http://deb.debian.org/debian sid/main amd64 python-babel-localedata all 2.8.0+dfsg.1-4 [4996 kB] 7% [5 python-babel-localedata 0 B/4996 kB 0%] 51% [Working] Get:6 http://deb.debian.org/debian sid/main amd64 python3-dateutil all 2.8.1-4 [81.6 kB] 51% [6 python3-dateutil 0 B/81.6 kB 0%] 52% [Working] Get:7 http://deb.debian.org/debian sid/main amd64 python3-editor all 1.0.3-2 [5012 B] 52% [7 python3-editor 0 B/5012 B 0%] 52% [Working] Get:8 http://deb.debian.org/debian sid/main amd64 python3-markupsafe amd64 1.1.1-1+b1 [15.2 kB] 52% [8 python3-markupsafe 0 B/15.2 kB 0%] 53% [Working] Get:9 http://deb.debian.org/debian sid/main amd64 python3-mako all 1.1.3+ds1-1 [80.1 kB] 53% [9 python3-mako 0 B/80.1 kB 0%] 54% [Working] Get:10 http://deb.debian.org/debian sid/main amd64 python3-sqlalchemy all 1.3.19+ds1-1 [790 kB] 54% [10 python3-sqlalchemy 0 B/790 kB 0%] 62% [Working] Get:11 http://deb.debian.org/debian sid/main amd64 python3-alembic all 1.4.2-1 [115 kB] 62% [11 python3-alembic 0 B/115 kB 0%] 63% [Working] Get:12 http://deb.debian.org/debian sid/main amd64 python3-anyjson all 0.3.3-2 [8196 B] 63% [12 python3-anyjson 0 B/8196 B 0%] 64% [Working] Get:13 http://deb.debian.org/debian sid/main amd64 python3-arrow all 0.15.7-1 [48.2 kB] 64% [13 python3-arrow 0 B/48.2 kB 0%] 64% [Working] Get:14 http://deb.debian.org/debian sid/main amd64 python3-tz all 2020.1-2 [34.6 kB] 64% [14 python3-tz 0 B/34.6 kB 0%] 65% [Working] Get:15 http://deb.debian.org/debian sid/main amd64 python3-babel all 2.8.0+dfsg.1-4 [99.9 kB] 65% [15 python3-babel 0 B/99.9 kB 0%] 67% [Working] Get:16 http://deb.debian.org/debian sid/main amd64 python3-pyparsing all 2.4.7-1 [109 kB] 67% [16 python3-pyparsing 0 B/109 kB 0%] 68% [Working] Get:17 http://deb.debian.org/debian sid/main amd64 python3-packaging all 20.4-1 [30.4 kB] 68% [17 python3-packaging 0 B/30.4 kB 0%] 69% [Working] Get:18 http://deb.debian.org/debian sid/main amd64 python3-webencodings all 0.5.1-2 [11.0 kB] 69% [18 python3-webencodings 0 B/11.0 kB 0%] 69% [Working] Get:19 http://deb.debian.org/debian sid/main amd64 python3-html5lib all 1.1-2 [92.8 kB] 69% [19 python3-html5lib 0 B/92.8 kB 0%] 71% [Working] Get:20 http://deb.debian.org/debian sid/main amd64 python3-bleach all 3.2.1-1 [35.1 kB] 71% [20 python3-bleach 0 B/35.1 kB 0%] 71% [Working] Get:21 http://deb.debian.org/debian sid/main amd64 python3-soupsieve all 2.0.1-1 [33.3 kB] 71% [21 python3-soupsieve 0 B/33.3 kB 0%] 72% [Working] Get:22 http://deb.debian.org/debian sid/main amd64 python3-bs4 all 4.9.2-1 [112 kB] 72% [22 python3-bs4 0 B/112 kB 0%] 74% [Working] Get:23 http://deb.debian.org/debian sid/main amd64 python3-cffi-backend amd64 1.14.3-1 [85.4 kB] 74% [23 python3-cffi-backend 0 B/85.4 kB 0%] 75% [Working] Get:24 http://deb.debian.org/debian sid/main amd64 python3-colorama all 0.4.3-1 [27.8 kB] 75% [24 python3-colorama 0 B/27.8 kB 0%] 76% [Working] Get:25 http://deb.debian.org/debian sid/main amd64 python3-click all 7.1.2-1 [75.7 kB] 76% [25 python3-click 0 B/75.7 kB 0%] 77% [Working] Get:26 http://deb.debian.org/debian sid/main amd64 python3-cryptography amd64 3.1-1 [217 kB] 77% [26 python3-cryptography 0 B/217 kB 0%] 79% [Working] Get:27 http://deb.debian.org/debian sid/main amd64 python3-decorator all 4.4.2-2 [15.8 kB] 79% [27 python3-decorator 0 B/15.8 kB 0%] 80% [Working] Get:28 http://deb.debian.org/debian sid/main amd64 python3-itsdangerous all 1.1.0-2 [16.7 kB] 80% [28 python3-itsdangerous 0 B/16.7 kB 0%] 80% [Working] Get:29 http://deb.debian.org/debian sid/main amd64 python3-jinja2 all 2.11.2-1 [113 kB] 80% [29 python3-jinja2 0 B/113 kB 0%] 82% [Working] Get:30 http://deb.debian.org/debian sid/main amd64 python3-werkzeug all 1.0.1+dfsg1-2 [195 kB] 82% [30 python3-werkzeug 0 B/195 kB 0%] 84% [Working] Get:31 http://deb.debian.org/debian sid/main amd64 python3-flask all 1.1.2-1 [98.6 kB] 84% [31 python3-flask 0 B/98.6 kB 0%] 85% [Working] Get:32 http://deb.debian.org/debian sid/main amd64 python3-humanize all 2.6.0-1 [32.4 kB] 85% [32 python3-humanize 0 B/32.4 kB 0%] 86% [Working] Get:33 http://deb.debian.org/debian sid/main amd64 python3-markdown all 3.2.2-2 [65.5 kB] 86% [33 python3-markdown 0 B/65.5 kB 0%] 87% [Working] Get:34 http://deb.debian.org/debian sid/main amd64 python3-mistletoe all 0.7.2-2 [27.1 kB] 87% [34 python3-mistletoe 0 B/27.1 kB 0%] 88% [Working] Get:35 http://deb.debian.org/debian sid/main amd64 python3-pyasn1 all 0.4.8-1 [63.8 kB] 88% [35 python3-pyasn1 0 B/63.8 kB 0%] 89% [Working] Get:36 http://deb.debian.org/debian sid/main amd64 python3-pgpy all 0.5.2-2 [68.7 kB] 89% [36 python3-pgpy 0 B/68.7 kB 0%] 90% [Working] Get:37 http://deb.debian.org/debian sid/main amd64 python3-prometheus-client all 0.7.1-1.1 [33.3 kB] 90% [37 python3-prometheus-client 0 B/33.3 kB 0%] 91% [Working] Get:38 http://deb.debian.org/debian sid/main amd64 python3-psycopg2 amd64 2.8.5-1 [120 kB] 91% [38 python3-psycopg2 0 B/120 kB 0%] 92% [Working] Get:39 http://deb.debian.org/debian sid/main amd64 python3-pygments all 2.3.1+dfsg-4 [596 kB] 92% [39 python3-pygments 0 B/596 kB 0%] 98% [Working] Get:40 http://deb.debian.org/debian sid/main amd64 python3-redis all 3.3.11-3 [73.5 kB] 98% [40 python3-redis 0 B/73.5 kB 0%] 99% [Working] Get:41 http://deb.debian.org/debian sid/main amd64 python3-sqlalchemy-utils all 0.36.3-2 [64.7 kB] 99% [41 python3-sqlalchemy-utils 0 B/64.7 kB 0%] 100% [Working] Fetched 9176 kB in 1s (6346 kB/s) Extracting templates from packages: 73% Extracting templates from packages: 100% Selecting previously unselected package node-jquery. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 41890 files and directories currently installed.) Preparing to unpack .../00-node-jquery_3.5.1+dfsg-4_all.deb ... Unpacking node-jquery (3.5.1+dfsg-4) ... Selecting previously unselected package libjs-jquery. Preparing to unpack .../01-libjs-jquery_3.5.1+dfsg-4_all.deb ... Unpacking libjs-jquery (3.5.1+dfsg-4) ... Selecting previously unselected package libpq5:amd64. Preparing to unpack .../02-libpq5_13.0-2_amd64.deb ... Unpacking libpq5:amd64 (13.0-2) ... Selecting previously unselected package python-babel-localedata. Preparing to unpack .../03-python-babel-localedata_2.8.0+dfsg.1-4_all.deb ... Unpacking python-babel-localedata (2.8.0+dfsg.1-4) ... Selecting previously unselected package python3-dateutil. Preparing to unpack .../04-python3-dateutil_2.8.1-4_all.deb ... Unpacking python3-dateutil (2.8.1-4) ... Selecting previously unselected package python3-editor. Preparing to unpack .../05-python3-editor_1.0.3-2_all.deb ... Unpacking python3-editor (1.0.3-2) ... Selecting previously unselected package python3-markupsafe. Preparing to unpack .../06-python3-markupsafe_1.1.1-1+b1_amd64.deb ... Unpacking python3-markupsafe (1.1.1-1+b1) ... Selecting previously unselected package python3-mako. Preparing to unpack .../07-python3-mako_1.1.3+ds1-1_all.deb ... Unpacking python3-mako (1.1.3+ds1-1) ... Selecting previously unselected package python3-sqlalchemy. Preparing to unpack .../08-python3-sqlalchemy_1.3.19+ds1-1_all.deb ... Unpacking python3-sqlalchemy (1.3.19+ds1-1) ... Selecting previously unselected package python3-alembic. Preparing to unpack .../09-python3-alembic_1.4.2-1_all.deb ... Unpacking python3-alembic (1.4.2-1) ... Selecting previously unselected package python3-anyjson. Preparing to unpack .../10-python3-anyjson_0.3.3-2_all.deb ... Unpacking python3-anyjson (0.3.3-2) ... Selecting previously unselected package python3-arrow. Preparing to unpack .../11-python3-arrow_0.15.7-1_all.deb ... Unpacking python3-arrow (0.15.7-1) ... Selecting previously unselected package python3-tz. Preparing to unpack .../12-python3-tz_2020.1-2_all.deb ... Unpacking python3-tz (2020.1-2) ... Selecting previously unselected package python3-babel. Preparing to unpack .../13-python3-babel_2.8.0+dfsg.1-4_all.deb ... Unpacking python3-babel (2.8.0+dfsg.1-4) ... Selecting previously unselected package python3-pyparsing. Preparing to unpack .../14-python3-pyparsing_2.4.7-1_all.deb ... Unpacking python3-pyparsing (2.4.7-1) ... Selecting previously unselected package python3-packaging. Preparing to unpack .../15-python3-packaging_20.4-1_all.deb ... Unpacking python3-packaging (20.4-1) ... Selecting previously unselected package python3-webencodings. Preparing to unpack .../16-python3-webencodings_0.5.1-2_all.deb ... Unpacking python3-webencodings (0.5.1-2) ... Selecting previously unselected package python3-html5lib. Preparing to unpack .../17-python3-html5lib_1.1-2_all.deb ... Unpacking python3-html5lib (1.1-2) ... Selecting previously unselected package python3-bleach. Preparing to unpack .../18-python3-bleach_3.2.1-1_all.deb ... Unpacking python3-bleach (3.2.1-1) ... Selecting previously unselected package python3-soupsieve. Preparing to unpack .../19-python3-soupsieve_2.0.1-1_all.deb ... Unpacking python3-soupsieve (2.0.1-1) ... Selecting previously unselected package python3-bs4. Preparing to unpack .../20-python3-bs4_4.9.2-1_all.deb ... Unpacking python3-bs4 (4.9.2-1) ... Selecting previously unselected package python3-cffi-backend. Preparing to unpack .../21-python3-cffi-backend_1.14.3-1_amd64.deb ... Unpacking python3-cffi-backend (1.14.3-1) ... Selecting previously unselected package python3-colorama. Preparing to unpack .../22-python3-colorama_0.4.3-1_all.deb ... Unpacking python3-colorama (0.4.3-1) ... Selecting previously unselected package python3-click. Preparing to unpack .../23-python3-click_7.1.2-1_all.deb ... Unpacking python3-click (7.1.2-1) ... Selecting previously unselected package python3-cryptography. Preparing to unpack .../24-python3-cryptography_3.1-1_amd64.deb ... Unpacking python3-cryptography (3.1-1) ... Selecting previously unselected package python3-decorator. Preparing to unpack .../25-python3-decorator_4.4.2-2_all.deb ... Unpacking python3-decorator (4.4.2-2) ... Selecting previously unselected package python3-itsdangerous. Preparing to unpack .../26-python3-itsdangerous_1.1.0-2_all.deb ... Unpacking python3-itsdangerous (1.1.0-2) ... Selecting previously unselected package python3-jinja2. Preparing to unpack .../27-python3-jinja2_2.11.2-1_all.deb ... Unpacking python3-jinja2 (2.11.2-1) ... Selecting previously unselected package python3-werkzeug. Preparing to unpack .../28-python3-werkzeug_1.0.1+dfsg1-2_all.deb ... Unpacking python3-werkzeug (1.0.1+dfsg1-2) ... Selecting previously unselected package python3-flask. Preparing to unpack .../29-python3-flask_1.1.2-1_all.deb ... Unpacking python3-flask (1.1.2-1) ... Selecting previously unselected package python3-humanize. Preparing to unpack .../30-python3-humanize_2.6.0-1_all.deb ... Unpacking python3-humanize (2.6.0-1) ... Selecting previously unselected package python3-markdown. Preparing to unpack .../31-python3-markdown_3.2.2-2_all.deb ... Unpacking python3-markdown (3.2.2-2) ... Selecting previously unselected package python3-mistletoe. Preparing to unpack .../32-python3-mistletoe_0.7.2-2_all.deb ... Unpacking python3-mistletoe (0.7.2-2) ... Selecting previously unselected package python3-pyasn1. Preparing to unpack .../33-python3-pyasn1_0.4.8-1_all.deb ... Unpacking python3-pyasn1 (0.4.8-1) ... Selecting previously unselected package python3-pgpy. Preparing to unpack .../34-python3-pgpy_0.5.2-2_all.deb ... Unpacking python3-pgpy (0.5.2-2) ... Selecting previously unselected package python3-prometheus-client. Preparing to unpack .../35-python3-prometheus-client_0.7.1-1.1_all.deb ... Unpacking python3-prometheus-client (0.7.1-1.1) ... Selecting previously unselected package python3-psycopg2. Preparing to unpack .../36-python3-psycopg2_2.8.5-1_amd64.deb ... Unpacking python3-psycopg2 (2.8.5-1) ... Selecting previously unselected package python3-pygments. Preparing to unpack .../37-python3-pygments_2.3.1+dfsg-4_all.deb ... Unpacking python3-pygments (2.3.1+dfsg-4) ... Selecting previously unselected package python3-redis. Preparing to unpack .../38-python3-redis_3.3.11-3_all.deb ... Unpacking python3-redis (3.3.11-3) ... Selecting previously unselected package python3-sqlalchemy-utils. Preparing to unpack .../39-python3-sqlalchemy-utils_0.36.3-2_all.deb ... Unpacking python3-sqlalchemy-utils (0.36.3-2) ... Selecting previously unselected package python3-srht. Preparing to unpack .../40-python3-srht_0.64.9-1-gcac41ea-1_all.deb ... Unpacking python3-srht (0.64.9-1-gcac41ea-1) ... Setting up python3-colorama (0.4.3-1) ... Setting up libpq5:amd64 (13.0-2) ... Setting up python3-itsdangerous (1.1.0-2) ... Setting up python3-click (7.1.2-1) ... Setting up python3-markupsafe (1.1.1-1+b1) ... Setting up python3-webencodings (0.5.1-2) ... Setting up python3-tz (2020.1-2) ... Setting up python-babel-localedata (2.8.0+dfsg.1-4) ... Setting up python3-sqlalchemy (1.3.19+ds1-1) ... Setting up python3-decorator (4.4.2-2) ... Setting up python3-jinja2 (2.11.2-1) ... Setting up python3-pygments (2.3.1+dfsg-4) ... Setting up python3-pyparsing (2.4.7-1) ... Setting up python3-markdown (3.2.2-2) ... Setting up python3-psycopg2 (2.8.5-1) ... Setting up python3-redis (3.3.11-3) ... Setting up python3-html5lib (1.1-2) ... Setting up python3-mistletoe (0.7.2-2) ... Setting up python3-pyasn1 (0.4.8-1) ... Setting up python3-dateutil (2.8.1-4) ... Setting up python3-anyjson (0.3.3-2) ... Setting up python3-humanize (2.6.0-1) ... Setting up python3-soupsieve (2.0.1-1) ... Setting up node-jquery (3.5.1+dfsg-4) ... Setting up python3-cffi-backend (1.14.3-1) ... Setting up python3-mako (1.1.3+ds1-1) ... Setting up python3-editor (1.0.3-2) ... Setting up python3-arrow (0.15.7-1) ... Setting up python3-babel (2.8.0+dfsg.1-4) ... update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode Setting up python3-bs4 (4.9.2-1) ... Setting up python3-prometheus-client (0.7.1-1.1) ... Setting up python3-packaging (20.4-1) ... Setting up python3-cryptography (3.1-1) ... Setting up python3-alembic (1.4.2-1) ... Setting up libjs-jquery (3.5.1+dfsg-4) ... Setting up python3-pgpy (0.5.2-2) ... Setting up python3-sqlalchemy-utils (0.36.3-2) ... Setting up python3-bleach (3.2.1-1) ... Setting up python3-werkzeug (1.0.1+dfsg1-2) ... Setting up python3-flask (1.1.2-1) ... Setting up python3-srht (0.64.9-1-gcac41ea-1) ... Processing triggers for man-db (2.9.3-2) ... Processing triggers for libc-bin (2.31-3) ... |
1 2 3 4 5 |
+ cd core.sr.ht + git describe --exact-match HEAD fatal: no tag exactly matches 'cac41ea3a475ebf6db0ce74c6f1f5c2e5cb924c6' + complete-build + exit 255 |