0s autopkgtest: DBG: testbed init 0s autopkgtest [12:29:40]: starting date and time: 2025-02-19 12:29:40+0000 0s autopkgtest [12:29:40]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [12:29:40]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.le4hm7ca/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:sphinx --apt-upgrade pystac --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-7.secgroup --name adt-plucky-s390x-pystac-20250219-122939-juju-7f2275-prod-proposed-migration-environment-15-01d7961d-e470-4723-894f-a62e51c21085 --image adt/ubuntu-plucky-s390x-server --keyname testbed-juju-7f2275-prod-proposed-migration-environment-15 --net-id=net_prod-proposed-migration-s390x -e TERM=linux -e ''"'"'http_proxy=http://squid.internal:3128'"'"'' -e ''"'"'https_proxy=http://squid.internal:3128'"'"'' -e ''"'"'no_proxy=127.0.0.1,127.0.1.1,login.ubuntu.com,localhost,localdomain,novalocal,internal,archive.ubuntu.com,ports.ubuntu.com,security.ubuntu.com,ddebs.ubuntu.com,changelogs.ubuntu.com,keyserver.ubuntu.com,launchpadlibrarian.net,launchpadcontent.net,launchpad.net,10.24.0.0/24,keystone.ps5.canonical.com,objectstorage.prodstack5.canonical.com,radosgw.ps5.canonical.com'"'"'' --mirror=http://ftpmaster.internal/ubuntu/ 0s autopkgtest: DBG: got reply from testbed: ok 0s autopkgtest: DBG: testbed open, scratch=None 0s autopkgtest: DBG: sending command to testbed: open 121s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.GJSbAy 121s autopkgtest: DBG: sending command to testbed: print-execute-command 121s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.8h8gjr1i/runcmd 121s autopkgtest: DBG: sending command to testbed: capabilities 121s autopkgtest: DBG: got reply from testbed: ok revert suggested-normal-user=ubuntu isolation-machine revert-full-system reboot root-on-testbed 121s autopkgtest: DBG: testbed capabilities: ['revert', 'suggested-normal-user=ubuntu', 'isolation-machine', 'revert-full-system', 'reboot', 'root-on-testbed', 'has_internet'] 121s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.GJSbAy'], kind short, sout raw, serr pipe, env [] 121s autopkgtest: DBG: testbed command exited with code 0 121s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.GJSbAy/wrapper.sh 121s autopkgtest: DBG: got reply from testbed: ok 121s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.GJSbAy/wrapper.sh'], kind short, sout raw, serr pipe, env [] 121s autopkgtest: DBG: testbed command exited with code 0 121s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 121s autopkgtest: DBG: testbed command exited with code 0 121s autopkgtest [12:31:41]: testbed dpkg architecture: s390x 121s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 122s autopkgtest: DBG: testbed command exited with code 0 122s autopkgtest [12:31:42]: testbed apt version: 2.9.30 122s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 122s autopkgtest: DBG: testbed command exited with code 0 122s autopkgtest: DBG: testbed has eatmydata 122s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 122s autopkgtest: DBG: testbed command exited with code 0 122s autopkgtest [12:31:42]: @@@@@@@@@@@@@@@@@@@@ test bed setup 122s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 122s autopkgtest: DBG: testbed command exited with code 0 122s autopkgtest [12:31:42]: testbed release detected to be: None 122s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured "deb" sources in one-line-style\n# source lists (/etc/apt/sources.list, /etc/apt/sources.list.d/*.list).\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# grep(1) returns 1 if no lines were selected from the input files, which\n# can happen if there are .list files, but they contain no "deb" entries.\n# We don\'t want to fail in this case, hence the "|| true", which we put\n# in a subshell because we want it to affect only the grep invocation.\n{\n if [ -f /etc/apt/sources.list ]; then\n printf \'%s\\0\' /etc/apt/sources.list\n fi\n if [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.list\' -print0 \\\n | LC_ALL=C sort --zero-terminated\n fi\n} | xargs -0 --no-run-if-empty -- sh -c \'grep -h "^deb " "$@" || true\' "$(basename "$0")"\n'], kind short, sout pipe, serr pipe, env [] 122s autopkgtest: DBG: testbed command exited with code 0 122s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured sources in deb822-style source\n# lists (/etc/apt/sources.list.d/*.sources). Sources are not stripped out of\n# comments, extra blank lines or similar: the output of this script is meant to\n# be consumed by a deb822 parser that is able to correctly handle those.\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# Awk concatenates files making sure stanzas from separate files are separated\n# by a blank line, even if there are no newlines at EOF in the .sources files.\nif [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.sources\' -print0 \\\n | LC_ALL=C sort --zero-terminated \\\n | xargs -0 --no-run-if-empty -- awk \'FNR == 1 && NR != 1 { print "" } { print }\'\nfi\n'], kind short, sout pipe, serr pipe, env [] 122s autopkgtest: DBG: testbed command exited with code 0 122s autopkgtest: DBG: adding APT source: Types: deb deb-src 122s URIs: http://ftpmaster.internal/ubuntu/ 122s Suites: plucky-proposed 122s Components: main restricted universe multiverse 122s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 122s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" >> "/etc/apt/sources.list.d/autopkgtest-add-apt-release-plucky-proposed.sources"', 'add_apt_source', 'printf', '%s\\n', 'Types: deb deb-src\nURIs: http://ftpmaster.internal/ubuntu/\nSuites: plucky-proposed\nComponents: main restricted universe multiverse\nSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg\n'], kind short, sout raw, serr pipe, env [] 123s autopkgtest: DBG: testbed command exited with code 0 123s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 123s Package: * 123s Pin: release plucky-proposed 123s Pin-Priority: 500 123s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-zz-plucky-proposed-baseline.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 500'], kind short, sout raw, serr pipe, env [] 123s autopkgtest: DBG: testbed command exited with code 0 123s autopkgtest [12:31:43]: updating testbed package index (apt update) 123s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 123s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 123s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 123s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 123s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 124s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 124s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 124s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 124s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 124s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 124s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 124s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 124s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 124s Fetched 1700 kB in 1s (1636 kB/s) 125s Reading package lists... 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 125s Package: * 125s Pin: release plucky-proposed 125s Pin-Priority: 100 125s 125s Package: src:sphinx:any 125s Pin: release plucky-proposed 125s Pin-Priority: 995 125s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:sphinx:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest: DBG: testbed command ['bash', '-ec', 'for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do [ ! -d $d ] || touch -r $d /tmp/autopkgtest.GJSbAy/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 125s + lsb_release --codename --short 125s + RELEASE=plucky 125s + cat 125s + [ plucky != trusty ] 125s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 125s Reading package lists... 125s Building dependency tree... 125s Reading state information... 126s Calculating upgrade... 126s The following packages were automatically installed and are no longer required: 126s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 126s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 126s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 126s linux-tools-6.11.0-8-generic 126s Use 'sudo apt autoremove' to remove them. 126s The following packages will be upgraded: 126s iproute2 liblsof0 libp11-kit0 lsof 126s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 126s Need to get 1791 kB of archives. 126s After this operation, 17.4 kB of additional disk space will be used. 126s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 126s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 126s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 126s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 127s Preconfiguring packages ... 127s Fetched 1791 kB in 1s (2359 kB/s) 127s (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 ... 81030 files and directories currently installed.) 127s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 127s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 127s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 127s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 127s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 127s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 127s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 127s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 127s Setting up liblsof0 (4.99.4+dfsg-1) ... 127s Setting up iproute2 (6.13.0-1ubuntu1) ... 127s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 127s Setting up lsof (4.99.4+dfsg-1) ... 127s Processing triggers for man-db (2.13.0-1) ... 128s Processing triggers for libc-bin (2.40-4ubuntu1) ... 128s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 128s + /usr/lib/apt/apt-helper analyze-pattern ?true 128s + + sed s/\./\\./g 128s uname -r 128s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 128s + apt list ?obsolete 128s + tail -n+2 128s + cut -d/ -f1 128s + grep -v ^linux-.*6\.12\.0-15-generic.* 128s + true 128s + obsolete_pkgs= 128s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 128s Reading package lists... 128s Building dependency tree... 128s Reading state information... 129s The following packages will be REMOVED: 129s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 129s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 129s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 129s linux-tools-6.11.0-8-generic* 129s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 129s After this operation, 167 MB disk space will be freed. 129s (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 ... 81031 files and directories currently installed.) 129s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 129s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 129s Removing libpython3.12t64:s390x (3.12.9-1) ... 129s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 129s Removing libnsl2:s390x (1.3.0-3build3) ... 129s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 129s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 129s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 130s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 130s Processing triggers for libc-bin (2.40-4ubuntu1) ... 130s (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 ... 55931 files and directories currently installed.) 130s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 130s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 130s + grep -q trusty /etc/lsb-release 130s + [ ! -d /usr/share/doc/unattended-upgrades ] 130s + [ ! -d /usr/share/doc/lxd ] 130s + [ ! -d /usr/share/doc/lxd-client ] 130s + [ ! -d /usr/share/doc/snapd ] 130s + type iptables 130s + cat 130s + chmod 755 /etc/rc.local 130s + . /etc/rc.local 130s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 130s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 130s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 130s + uname -m 130s + [ s390x = ppc64le ] 130s + [ -d /run/systemd/system ] 130s + systemd-detect-virt --quiet --vm 130s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 130s + cat 130s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 130s + echo COMPRESS=lz4 130s autopkgtest: DBG: testbed command exited with code 0 130s autopkgtest [12:31:50]: upgrading testbed (apt dist-upgrade and autopurge) 130s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 130s Reading package lists... 131s Building dependency tree... 131s Reading state information... 131s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 131s Starting 2 pkgProblemResolver with broken count: 0 131s Done 131s Entering ResolveByKeep 131s 131s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 132s Reading package lists... 132s Building dependency tree... 132s Reading state information... 132s Starting pkgProblemResolver with broken count: 0 132s Starting 2 pkgProblemResolver with broken count: 0 132s Done 132s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: testbed command ['bash', '-ec', '[ ! -e /run/autopkgtest_no_reboot.stamp ] || exit 0;for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do s=/tmp/autopkgtest.GJSbAy/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 132s autopkgtest: DBG: testbed command exited with code 1 132s autopkgtest [12:31:52]: rebooting testbed after setup commands that affected boot 132s autopkgtest: DBG: sending command to testbed: reboot 152s autopkgtest: DBG: got reply from testbed: ok 152s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 152s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.GJSbAy'], kind short, sout raw, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.GJSbAy/autopkgtest-reboot 153s autopkgtest: DBG: got reply from testbed: ok 153s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.GJSbAy/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.GJSbAy/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.GJSbAy/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.GJSbAy'], kind short, sout raw, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.GJSbAy/autopkgtest-reboot-prepare 154s autopkgtest: DBG: got reply from testbed: ok 154s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.GJSbAy/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.GJSbAy/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest [12:32:14]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 154s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.GJSbAy/testbed-packages"], kind short, sout raw, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.GJSbAy/testbed-packages /tmp/autopkgtest-work.le4hm7ca/out/testbed-packages 155s autopkgtest: DBG: got reply from testbed: ok 155s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 155s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.GJSbAy'], kind short, sout raw, serr pipe, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.GJSbAy/autopkgtest-reboot 155s autopkgtest: DBG: got reply from testbed: ok 155s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.GJSbAy/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.GJSbAy/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.GJSbAy/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.GJSbAy'], kind short, sout raw, serr pipe, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.GJSbAy/autopkgtest-reboot-prepare 156s autopkgtest: DBG: got reply from testbed: ok 156s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.GJSbAy/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.GJSbAy/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: Binaries: initialising 156s autopkgtest [12:32:16]: @@@@@@@@@@@@@@@@@@@@ apt-source pystac 156s autopkgtest: DBG: blame += pystac 156s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 156s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'pystac'], kind short, sout pipe, serr pipe, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python-pystac-doc$'], kind short, sout pipe, serr raw, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python-pystac-doc=1.12.1-1'], kind short, sout pipe, serr raw, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pystac$'], kind short, sout pipe, serr raw, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pystac=1.12.1-1'], kind short, sout pipe, serr raw, env [] 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: install_deps: deps_new=[] 158s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: testbed command ['sh', '-ec', 'su --shell=/bin/sh ubuntu -c \'set -e; exec 3>&1 >&2; set -x; cd /; builddir=$(mktemp -d /tmp/autopkgtest.GJSbAy/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source pystac=1.12.1-1 2>&1) || RC=$?;if [ -n "$RC" ]; then if echo "$OUT" | grep -q "Unable to find a source package"; then exit 1; else exit $RC; fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x pystac_*.dsc src >/dev/null; chmod -R a+rX .; cd [a-z0-9]*/.; pwd >&3; sed -n "1 {s/).*//; s/ (/\\n/; p}" debian/changelog >&3\''], kind build, sout pipe, serr raw, env ['ADT_TEST_TRIGGERS=sphinx/8.1.3-5'] 158s + cd / 158s + mktemp -d /tmp/autopkgtest.GJSbAy/build.XXX 158s + builddir=/tmp/autopkgtest.GJSbAy/build.uXH 158s + cd /tmp/autopkgtest.GJSbAy/build.uXH 158s + apt-get source -d -q --only-source pystac=1.12.1-1 159s + OUT=Reading package lists... 159s NOTICE: 'pystac' packaging is maintained in the 'Git' version control system at: 159s https://salsa.debian.org/debian-gis-team/pystac.git 159s Please use: 159s git clone https://salsa.debian.org/debian-gis-team/pystac.git 159s to retrieve the latest (possibly unreleased) updates to the package. 159s Need to get 2468 kB of source archives. 159s Get:1 http://ftpmaster.internal/ubuntu plucky/universe pystac 1.12.1-1 (dsc) [3523 B] 159s Get:2 http://ftpmaster.internal/ubuntu plucky/universe pystac 1.12.1-1 (tar) [2437 kB] 159s Get:3 http://ftpmaster.internal/ubuntu plucky/universe pystac 1.12.1-1 (diff) [27.8 kB] 159s Fetched 2468 kB in 1s (2941 kB/s) 159s Download complete and in download only mode 159s + [ -n ] 159s + grep ^Get: 159s + echo Reading package lists... 159s NOTICE: 'pystac' packaging is maintained in the 'Git' version control system at: 159s https://salsa.debian.org/debian-gis-team/pystac.git 159s Please use: 159s git clone https://salsa.debian.org/debian-gis-team/pystac.git 159s to retrieve the latest (possibly unreleased) updates to the package. 159s Need to get 2468 kB of source archives. 159s Get:1 http://ftpmaster.internal/ubuntu plucky/universe pystac 1.12.1-1 (dsc) [3523 B] 159s Get:2 http://ftpmaster.internal/ubuntu plucky/universe pystac 1.12.1-1 (tar) [2437 kB] 159s Get:3 http://ftpmaster.internal/ubuntu plucky/universe pystac 1.12.1-1 (diff) [27.8 kB] 159s Fetched 2468 kB in 1s (2941 kB/s) 159s Download complete and in download only mode 159s Get:1 http://ftpmaster.internal/ubuntu plucky/universe pystac 1.12.1-1 (dsc) [3523 B] 159s Get:2 http://ftpmaster.internal/ubuntu plucky/universe pystac 1.12.1-1 (tar) [2437 kB] 159s Get:3 http://ftpmaster.internal/ubuntu plucky/universe pystac 1.12.1-1 (diff) [27.8 kB] 159s + dpkg-source -x pystac_1.12.1-1.dsc src 159s gpgv: Signature made Wed Jan 29 07:31:46 2025 UTC 159s gpgv: using RSA key 3B70F209A5FFD68903C472C5EBF48AB2578F9812 159s gpgv: issuer "antonio.valentino@tiscali.it" 159s gpgv: Can't check signature: No public key 159s dpkg-source: warning: cannot verify inline signature for ./pystac_1.12.1-1.dsc: no acceptable signature found 159s + chmod -R a+rX . 159s + cd src/. 159s + pwd 159s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 159s autopkgtest: DBG: testbed command exited with code 0 159s autopkgtest [12:32:19]: testing package pystac version 1.12.1-1 159s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.GJSbAy/build.uXH/src/debian/ /tmp/autopkgtest-work.le4hm7ca/out/pkg/debian/ 159s autopkgtest: DBG: got reply from testbed: ok 160s autopkgtest: DBG: autodep8 generated control: ----- 160s Test-Command: pybuild-autopkgtest 160s Depends: @, pybuild-plugin-autopkgtest, @builddeps@, 160s Restrictions: allow-stderr, skippable, 160s Features: test-name=pybuild-autopkgtest 160s 160s ------- 160s autopkgtest: DBG: processing dependency @ 160s autopkgtest: DBG: synthesised dependency python3-pystac 160s autopkgtest: DBG: synthesised dependency python-pystac-doc 160s autopkgtest: DBG: processing dependency pybuild-plugin-autopkgtest 160s autopkgtest: DBG: processing dependency @builddeps@ 160s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 160s autopkgtest: DBG: synthesised dependency dh-sequence-python3 160s autopkgtest: DBG: synthesised dependency dh-sequence-sphinxdoc 160s autopkgtest: DBG: synthesised dependency libjs-mathjax 160s autopkgtest: DBG: synthesised dependency pandoc 160s autopkgtest: DBG: synthesised dependency pybuild-plugin-pyproject 160s autopkgtest: DBG: synthesised dependency python3-all 160s autopkgtest: DBG: synthesised dependency python3-boto3 160s autopkgtest: DBG: synthesised dependency python3-dateutil 160s autopkgtest: DBG: synthesised dependency python3-html5lib 160s autopkgtest: DBG: synthesised dependency python3-ipython 160s autopkgtest: DBG: synthesised dependency python3-jinja2 160s autopkgtest: DBG: synthesised dependency python3-jsonschema 160s autopkgtest: DBG: synthesised dependency python3-nbsphinx 160s autopkgtest: DBG: synthesised dependency python3-pydata-sphinx-theme 160s autopkgtest: DBG: synthesised dependency python3-pytest 160s autopkgtest: DBG: synthesised dependency python3-pytest-mock 160s autopkgtest: DBG: synthesised dependency python3-pytest-recording 160s autopkgtest: DBG: synthesised dependency python3-rasterio 160s autopkgtest: DBG: synthesised dependency python3-referencing 160s autopkgtest: DBG: synthesised dependency python3-requests-mock 160s autopkgtest: DBG: synthesised dependency python3-setuptools 160s autopkgtest: DBG: synthesised dependency python3-shapely 160s autopkgtest: DBG: synthesised dependency python3-sphinx 160s autopkgtest: DBG: synthesised dependency python3-sphinx-autobuild 160s autopkgtest: DBG: synthesised dependency python3-sphinx-design 160s autopkgtest: DBG: synthesised dependency python3-urllib3 160s autopkgtest: DBG: synthesised dependency build-essential 160s autopkgtest: DBG: Test defined: name pybuild-autopkgtest path None command "pybuild-autopkgtest" restrictions ['allow-stderr', 'skippable'] features ['test-name=pybuild-autopkgtest'] depends ['python3-pystac', 'python-pystac-doc', 'pybuild-plugin-autopkgtest', 'debhelper-compat (= 13)', 'dh-sequence-python3', 'dh-sequence-sphinxdoc', 'libjs-mathjax ', 'pandoc ', 'pybuild-plugin-pyproject', 'python3-all', 'python3-boto3', 'python3-dateutil', 'python3-html5lib', 'python3-ipython ', 'python3-jinja2', 'python3-jsonschema', 'python3-nbsphinx ', 'python3-pydata-sphinx-theme ', 'python3-pytest ', 'python3-pytest-mock ', 'python3-pytest-recording ', 'python3-rasterio', 'python3-referencing', 'python3-requests-mock ', 'python3-setuptools', 'python3-shapely', 'python3-sphinx ', 'python3-sphinx-autobuild ', 'python3-sphinx-design ', 'python3-urllib3', 'build-essential'] 160s autopkgtest [12:32:20]: build not needed 160s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.GJSbAy/build.uXH/src/ /tmp/autopkgtest-work.le4hm7ca/out/tests-tree/ 161s autopkgtest: DBG: got reply from testbed: ok 161s autopkgtest: DBG: autodep8 generated control: ----- 161s Test-Command: pybuild-autopkgtest 161s Depends: @, pybuild-plugin-autopkgtest, @builddeps@, 161s Restrictions: allow-stderr, skippable, 161s Features: test-name=pybuild-autopkgtest 161s 161s ------- 161s autopkgtest: DBG: processing dependency @ 161s autopkgtest: DBG: synthesised dependency python3-pystac 161s autopkgtest: DBG: synthesised dependency python-pystac-doc 161s autopkgtest: DBG: processing dependency pybuild-plugin-autopkgtest 161s autopkgtest: DBG: processing dependency @builddeps@ 161s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 161s autopkgtest: DBG: synthesised dependency dh-sequence-python3 161s autopkgtest: DBG: synthesised dependency dh-sequence-sphinxdoc 161s autopkgtest: DBG: synthesised dependency libjs-mathjax 161s autopkgtest: DBG: synthesised dependency pandoc 161s autopkgtest: DBG: synthesised dependency pybuild-plugin-pyproject 161s autopkgtest: DBG: synthesised dependency python3-all 161s autopkgtest: DBG: synthesised dependency python3-boto3 161s autopkgtest: DBG: synthesised dependency python3-dateutil 161s autopkgtest: DBG: synthesised dependency python3-html5lib 161s autopkgtest: DBG: synthesised dependency python3-ipython 161s autopkgtest: DBG: synthesised dependency python3-jinja2 161s autopkgtest: DBG: synthesised dependency python3-jsonschema 161s autopkgtest: DBG: synthesised dependency python3-nbsphinx 161s autopkgtest: DBG: synthesised dependency python3-pydata-sphinx-theme 161s autopkgtest: DBG: synthesised dependency python3-pytest 161s autopkgtest: DBG: synthesised dependency python3-pytest-mock 161s autopkgtest: DBG: synthesised dependency python3-pytest-recording 161s autopkgtest: DBG: synthesised dependency python3-rasterio 161s autopkgtest: DBG: synthesised dependency python3-referencing 161s autopkgtest: DBG: synthesised dependency python3-requests-mock 161s autopkgtest: DBG: synthesised dependency python3-setuptools 161s autopkgtest: DBG: synthesised dependency python3-shapely 161s autopkgtest: DBG: synthesised dependency python3-sphinx 161s autopkgtest: DBG: synthesised dependency python3-sphinx-autobuild 161s autopkgtest: DBG: synthesised dependency python3-sphinx-design 161s autopkgtest: DBG: synthesised dependency python3-urllib3 161s autopkgtest: DBG: synthesised dependency build-essential 161s autopkgtest: DBG: Test defined: name pybuild-autopkgtest path None command "pybuild-autopkgtest" restrictions ['allow-stderr', 'skippable'] features ['test-name=pybuild-autopkgtest'] depends ['python3-pystac', 'python-pystac-doc', 'pybuild-plugin-autopkgtest', 'debhelper-compat (= 13)', 'dh-sequence-python3', 'dh-sequence-sphinxdoc', 'libjs-mathjax ', 'pandoc ', 'pybuild-plugin-pyproject', 'python3-all', 'python3-boto3', 'python3-dateutil', 'python3-html5lib', 'python3-ipython ', 'python3-jinja2', 'python3-jsonschema', 'python3-nbsphinx ', 'python3-pydata-sphinx-theme ', 'python3-pytest ', 'python3-pytest-mock ', 'python3-pytest-recording ', 'python3-rasterio', 'python3-referencing', 'python3-requests-mock ', 'python3-setuptools', 'python3-shapely', 'python3-sphinx ', 'python3-sphinx-autobuild ', 'python3-sphinx-design ', 'python3-urllib3', 'build-essential'] 161s autopkgtest [12:32:21]: test pybuild-autopkgtest: preparing testbed 161s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['python3-pystac', 'python-pystac-doc', 'pybuild-plugin-autopkgtest', 'debhelper-compat (= 13)', 'dh-sequence-python3', 'dh-sequence-sphinxdoc', 'libjs-mathjax ', 'pandoc ', 'pybuild-plugin-pyproject', 'python3-all', 'python3-boto3', 'python3-dateutil', 'python3-html5lib', 'python3-ipython ', 'python3-jinja2', 'python3-jsonschema', 'python3-nbsphinx ', 'python3-pydata-sphinx-theme ', 'python3-pytest ', 'python3-pytest-mock ', 'python3-pytest-recording ', 'python3-rasterio', 'python3-referencing', 'python3-requests-mock ', 'python3-setuptools', 'python3-shapely', 'python3-sphinx ', 'python3-sphinx-autobuild ', 'python3-sphinx-design ', 'python3-urllib3', 'build-essential'] 161s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 161s autopkgtest: DBG: install_deps: deps_new=['python3-pystac', 'python-pystac-doc', 'pybuild-plugin-autopkgtest', 'debhelper-compat (= 13)', 'dh-sequence-python3', 'dh-sequence-sphinxdoc', 'libjs-mathjax ', 'pandoc ', 'pybuild-plugin-pyproject', 'python3-all', 'python3-boto3', 'python3-dateutil', 'python3-html5lib', 'python3-ipython ', 'python3-jinja2', 'python3-jsonschema', 'python3-nbsphinx ', 'python3-pydata-sphinx-theme ', 'python3-pytest ', 'python3-pytest-mock ', 'python3-pytest-recording ', 'python3-rasterio', 'python3-referencing', 'python3-requests-mock ', 'python3-setuptools', 'python3-shapely', 'python3-sphinx ', 'python3-sphinx-autobuild ', 'python3-sphinx-design ', 'python3-urllib3', 'build-essential'] 161s autopkgtest: DBG: install-deps: satisfying python3-pystac, python-pystac-doc, pybuild-plugin-autopkgtest, debhelper-compat (= 13), dh-sequence-python3, dh-sequence-sphinxdoc, libjs-mathjax , pandoc , pybuild-plugin-pyproject, python3-all, python3-boto3, python3-dateutil, python3-html5lib, python3-ipython , python3-jinja2, python3-jsonschema, python3-nbsphinx , python3-pydata-sphinx-theme , python3-pytest , python3-pytest-mock , python3-pytest-recording , python3-rasterio, python3-referencing, python3-requests-mock , python3-setuptools, python3-shapely, python3-sphinx , python3-sphinx-autobuild , python3-sphinx-design , python3-urllib3, build-essential 161s autopkgtest: DBG: can use apt-get on testbed: True 161s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'python3-pystac, python-pystac-doc, pybuild-plugin-autopkgtest, debhelper-compat (= 13), dh-sequence-python3, dh-sequence-sphinxdoc, libjs-mathjax , pandoc , pybuild-plugin-pyproject, python3-all, python3-boto3, python3-dateutil, python3-html5lib, python3-ipython , python3-jinja2, python3-jsonschema, python3-nbsphinx , python3-pydata-sphinx-theme , python3-pytest , python3-pytest-mock , python3-pytest-recording , python3-rasterio, python3-referencing, python3-requests-mock , python3-setuptools, python3-shapely, python3-sphinx , python3-sphinx-autobuild , python3-sphinx-design , python3-urllib3, build-essential'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 161s Reading package lists... 161s Building dependency tree... 161s Reading state information... 161s Starting pkgProblemResolver with broken count: 0 161s Starting 2 pkgProblemResolver with broken count: 0 161s Done 162s The following NEW packages will be installed: 162s autoconf automake autopoint autotools-dev build-essential cpp cpp-14 162s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 162s dh-python dh-strip-nondeterminism docutils-common dwz fontconfig-config 162s fonts-dejavu-core fonts-dejavu-mono fonts-mathjax g++ g++-14 162s g++-14-s390x-linux-gnu g++-s390x-linux-gnu gcc gcc-14 gcc-14-s390x-linux-gnu 162s gcc-s390x-linux-gnu gdal-data gdal-plugins gettext intltool-debian libaec0 162s libaom3 libarchive-zip-perl libarmadillo14 libarpack2t64 libasan8 libavif16 162s libblas3 libblosc1 libcc1-0 libcfitsio10t64 libdav1d7 libde265-0 162s libdebhelper-perl libdeflate0 libfile-stripnondeterminism-perl 162s libfontconfig1 libfreetype6 libfreexl1 libfyba0t64 libgcc-14-dev libgdal36 162s libgeos-c1t64 libgeos3.13.0 libgeotiff5 libgfortran5 libgif7 libgomp1 162s libgpgmepp6t64 libhdf4-0-alt libhdf5-310 libhdf5-hl-310 162s libheif-plugin-aomdec libheif-plugin-libde265 libheif1 libisl23 libitm1 162s libjbig0 libjpeg-turbo8 libjpeg8 libjs-jquery libjs-mathjax libjs-sphinxdoc 162s libjs-underscore libjson-perl libkmlbase1t64 libkmldom1t64 libkmlengine1t64 162s liblapack3 liblcms2-2 libltdl7 liblua5.4-0 libminizip1t64 libmpc3 162s libmysqlclient24 libnetcdf22 libnorm1t64 libnsl2 libodbc2 libodbcinst2 162s libogdi4.1 libopenjp2-7 libpgm-5.3-0t64 libpoppler145 libpq5 libproj25 162s libpython3.12-minimal libpython3.12-stdlib libqhull-r8.0 librav1e0.7 162s librttopo1 libsharpyuv0 libsnappy1v5 libsodium23 libspatialite8t64 162s libstdc++-14-dev libsvtav1enc2 libsz2 libtiff6 libtool libubsan1 162s liburiparser1 libwebp7 libxerces-c3.2t64 libyuv0 libzmq5 m4 mysql-common 162s node-fortawesome-fontawesome-free pandoc pandoc-data po-debconf proj-data 162s pybuild-plugin-autopkgtest pybuild-plugin-pyproject python-pystac-doc 162s python-tinycss2-common python3-accessible-pygments python3-affine 162s python3-alabaster python3-all python3-anyio python3-asttokens python3-bleach 162s python3-boto3 python3-botocore python3-bs4 python3-build python3-click 162s python3-click-plugins python3-cligj python3-colorama python3-dateutil 162s python3-decorator python3-defusedxml python3-docutils python3-executing 162s python3-fastjsonschema python3-h11 python3-html5lib python3-imagesize 162s python3-iniconfig python3-installer python3-ipython python3-jedi 162s python3-jmespath python3-jupyter-client python3-jupyter-core 162s python3-jupyterlab-pygments python3-livereload python3-matplotlib-inline 162s python3-mistune python3-multidict python3-nbclient python3-nbconvert 162s python3-nbformat python3-nbsphinx python3-numpy python3-packaging 162s python3-pandocfilters python3-parso python3-pexpect python3-platformdirs 162s python3-pluggy python3-prompt-toolkit python3-psutil python3-ptyprocess 162s python3-pure-eval python3-pydata-sphinx-theme python3-pyproject-hooks 162s python3-pystac python3-pytest python3-pytest-mock python3-pytest-recording 162s python3-rasterio python3-requests-mock python3-roman python3-s3transfer 162s python3-shapely python3-six python3-sniffio python3-snowballstemmer 162s python3-soupsieve python3-sphinx python3-sphinx-autobuild 162s python3-sphinx-design python3-stack-data python3-starlette python3-tinycss2 162s python3-toml python3-tornado python3-traitlets python3-typeshed 162s python3-uvicorn python3-uvloop python3-vcr python3-watchfiles 162s python3-wcwidth python3-webencodings python3-websockets python3-wheel 162s python3-wrapt python3-wsproto python3-yarl python3-zmq python3.12 162s python3.12-minimal sgml-base sphinx-common unixodbc-common xml-core 162s 0 upgraded, 223 newly installed, 0 to remove and 0 not upgraded. 162s Need to get 195 MB of archives. 162s After this operation, 1015 MB of additional disk space will be used. 162s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 162s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 163s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x sgml-base all 1.31 [11.4 kB] 163s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 163s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 163s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 163s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 163s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 163s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 163s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 163s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 163s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 163s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 163s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 164s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 164s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 164s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 164s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 15-20250213-1ubuntu1 [49.2 kB] 164s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 164s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 15-20250213-1ubuntu1 [31.2 kB] 164s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 15-20250213-1ubuntu1 [2970 kB] 164s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 15-20250213-1ubuntu1 [1213 kB] 164s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 164s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 165s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 165s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 165s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 165s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 165s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 166s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 166s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 166s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 166s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 166s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 166s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 166s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 166s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 166s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 166s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 166s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 166s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 166s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 166s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 166s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 166s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 166s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x dh-python all 6.20250108 [117 kB] 166s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x xml-core all 0.19 [20.3 kB] 166s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x docutils-common all 0.21.2+dfsg-2 [131 kB] 166s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 166s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 166s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 166s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-mathjax all 2.7.9+dfsg-1 [2208 kB] 166s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x gdal-data all 3.10.2+dfsg-1build1 [269 kB] 166s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x gdal-plugins s390x 3.10.2+dfsg-1build1 [25.6 kB] 166s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x libaec0 s390x 1.1.3-1 [25.7 kB] 166s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libaom3 s390x 3.12.0-1 [1492 kB] 166s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libblas3 s390x 3.12.1-2 [252 kB] 166s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran5 s390x 15-20250213-1ubuntu1 [620 kB] 166s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack3 s390x 3.12.1-2 [2971 kB] 166s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x libarpack2t64 s390x 3.9.1-4 [110 kB] 166s Get:61 http://ftpmaster.internal/ubuntu plucky/universe s390x libarmadillo14 s390x 1:14.2.3+dfsg-1 [110 kB] 166s Get:62 http://ftpmaster.internal/ubuntu plucky/universe s390x libdav1d7 s390x 1.5.1-1 [312 kB] 166s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x librav1e0.7 s390x 0.7.1-9 [845 kB] 166s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x libsvtav1enc2 s390x 2.3.0+dfsg-1 [2294 kB] 166s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 166s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 166s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x libyuv0 s390x 0.0.1904.20250204-1 [127 kB] 166s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x libavif16 s390x 1.1.1-1ubuntu1 [103 kB] 166s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x libsnappy1v5 s390x 1.2.1-1 [33.0 kB] 166s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x libblosc1 s390x 1.21.5+ds-1build1 [27.7 kB] 166s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x libcfitsio10t64 s390x 4.5.0-5 [607 kB] 166s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x libde265-0 s390x 1.0.15-1build4 [175 kB] 166s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 166s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 166s Get:75 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 166s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x libfyba0t64 s390x 4.1.1-11build1 [125 kB] 166s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x libminizip1t64 s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [24.6 kB] 166s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x libfreexl1 s390x 2.0.0-1build2 [46.5 kB] 166s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x libgeos3.13.0 s390x 3.13.0-1 [966 kB] 166s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x libgeos-c1t64 s390x 3.13.0-1 [93.3 kB] 166s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x proj-data all 9.5.1-1 [7924 kB] 166s Get:82 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 166s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 166s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 166s Get:85 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 166s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x libproj25 s390x 9.5.1-1 [1452 kB] 166s Get:87 http://ftpmaster.internal/ubuntu plucky/universe s390x libgeotiff5 s390x 1.7.3-1 [66.4 kB] 166s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x libgif7 s390x 5.2.2-1ubuntu1 [38.0 kB] 166s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x libsz2 s390x 1.1.3-1 [5442 B] 166s Get:90 http://ftpmaster.internal/ubuntu plucky/universe s390x libhdf4-0-alt s390x 4.3.0-1 [300 kB] 167s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x libhdf5-310 s390x 1.14.5+repack-3 [1477 kB] 167s Get:92 http://ftpmaster.internal/ubuntu plucky/main s390x libheif-plugin-aomdec s390x 1.19.5-1build1 [11.6 kB] 167s Get:93 http://ftpmaster.internal/ubuntu plucky/main s390x libheif-plugin-libde265 s390x 1.19.5-1build1 [9066 B] 167s Get:94 http://ftpmaster.internal/ubuntu plucky/main s390x libheif1 s390x 1.19.5-1build1 [410 kB] 167s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x liburiparser1 s390x 0.9.8+dfsg-2 [42.4 kB] 167s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x libkmlbase1t64 s390x 1.3.0-12build1 [50.5 kB] 167s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x libkmldom1t64 s390x 1.3.0-12build1 [151 kB] 167s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x libkmlengine1t64 s390x 1.3.0-12build1 [68.9 kB] 167s Get:99 http://ftpmaster.internal/ubuntu plucky/main s390x mysql-common all 5.8+1.1.1 [6800 B] 167s Get:100 http://ftpmaster.internal/ubuntu plucky/main s390x libmysqlclient24 s390x 8.4.4-0ubuntu1 [1295 kB] 167s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x libhdf5-hl-310 s390x 1.14.5+repack-3 [61.0 kB] 167s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x libnetcdf22 s390x 1:4.9.3-1 [533 kB] 167s Get:103 http://ftpmaster.internal/ubuntu plucky/main s390x libltdl7 s390x 2.5.4-3build1 [43.9 kB] 167s Get:104 http://ftpmaster.internal/ubuntu plucky/main s390x libodbc2 s390x 2.3.12-2ubuntu1 [163 kB] 167s Get:105 http://ftpmaster.internal/ubuntu plucky/main s390x unixodbc-common all 2.3.12-2ubuntu1 [9044 B] 167s Get:106 http://ftpmaster.internal/ubuntu plucky/main s390x libodbcinst2 s390x 2.3.12-2ubuntu1 [32.2 kB] 167s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x libogdi4.1 s390x 4.1.1+ds-5 [219 kB] 167s Get:108 http://ftpmaster.internal/ubuntu plucky/main s390x libopenjp2-7 s390x 2.5.0-2ubuntu3 [208 kB] 167s Get:109 http://ftpmaster.internal/ubuntu plucky/main s390x libgpgmepp6t64 s390x 1.24.1-4ubuntu1 [125 kB] 167s Get:110 http://ftpmaster.internal/ubuntu plucky/main s390x liblcms2-2 s390x 2.16-2 [175 kB] 167s Get:111 http://ftpmaster.internal/ubuntu plucky/main s390x libpoppler145 s390x 25.01.0-4 [1233 kB] 167s Get:112 http://ftpmaster.internal/ubuntu plucky/main s390x libpq5 s390x 17.3-3 [147 kB] 167s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x libqhull-r8.0 s390x 2020.2-6build1 [199 kB] 167s Get:114 http://ftpmaster.internal/ubuntu plucky/universe s390x librttopo1 s390x 1.1.0-3build2 [200 kB] 167s Get:115 http://ftpmaster.internal/ubuntu plucky/universe s390x libspatialite8t64 s390x 5.1.0-3build1 [2050 kB] 167s Get:116 http://ftpmaster.internal/ubuntu plucky/universe s390x libxerces-c3.2t64 s390x 3.2.4+debian-1.3build1 [938 kB] 167s Get:117 http://ftpmaster.internal/ubuntu plucky/universe s390x libgdal36 s390x 3.10.2+dfsg-1build1 [9640 kB] 168s Get:118 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 168s Get:119 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB] 168s Get:120 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libjs-sphinxdoc all 8.1.3-5 [31.0 kB] 168s Get:121 http://ftpmaster.internal/ubuntu plucky/main s390x libjson-perl all 4.10000-1 [81.9 kB] 168s Get:122 http://ftpmaster.internal/ubuntu plucky/main s390x liblua5.4-0 s390x 5.4.7-1 [174 kB] 168s Get:123 http://ftpmaster.internal/ubuntu plucky/universe s390x libnorm1t64 s390x 1.5.9+dfsg-3.1build1 [158 kB] 168s Get:124 http://ftpmaster.internal/ubuntu plucky/universe s390x libpgm-5.3-0t64 s390x 5.3.128~dfsg-2.1build1 [169 kB] 168s Get:125 http://ftpmaster.internal/ubuntu plucky/main s390x libsodium23 s390x 1.0.18-1build3 [138 kB] 168s Get:126 http://ftpmaster.internal/ubuntu plucky/universe s390x libzmq5 s390x 4.3.5-1build2 [258 kB] 168s Get:127 http://ftpmaster.internal/ubuntu plucky/universe s390x node-fortawesome-fontawesome-free all 6.7.2+ds1-1 [1653 kB] 168s Get:128 http://ftpmaster.internal/ubuntu plucky/universe s390x pandoc-data all 3.1.11.1-3build1 [78.8 kB] 168s Get:129 http://ftpmaster.internal/ubuntu plucky/universe s390x pandoc s390x 3.1.11.1+ds-2 [52.5 MB] 171s Get:130 http://ftpmaster.internal/ubuntu plucky/universe s390x pybuild-plugin-autopkgtest all 6.20250108 [1744 B] 171s Get:131 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 171s Get:132 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyproject-hooks all 1.2.0-1 [10.2 kB] 171s Get:133 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-toml all 0.10.2-1 [16.5 kB] 171s Get:134 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-wheel all 0.45.1-1 [57.7 kB] 171s Get:135 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-build all 1.2.2-1 [31.0 kB] 171s Get:136 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-installer all 0.7.0+dfsg1-3 [17.4 kB] 171s Get:137 http://ftpmaster.internal/ubuntu plucky/universe s390x pybuild-plugin-pyproject all 6.20250108 [1726 B] 171s Get:138 http://ftpmaster.internal/ubuntu plucky/universe s390x python-pystac-doc all 1.12.1-1 [2249 kB] 171s Get:139 http://ftpmaster.internal/ubuntu plucky/universe s390x python-tinycss2-common all 1.4.0-1 [47.0 kB] 171s Get:140 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-accessible-pygments all 0.0.5-2 [790 kB] 171s Get:141 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-affine all 2.4.0-1 [14.3 kB] 171s Get:142 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B] 171s Get:143 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sniffio all 1.3.1-1 [7262 B] 171s Get:144 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-anyio all 4.7.0-1 [61.6 kB] 171s Get:145 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-asttokens all 3.0.0-1 [20.4 kB] 171s Get:146 http://ftpmaster.internal/ubuntu plucky/main s390x python3-webencodings all 0.5.1-5 [11.5 kB] 171s Get:147 http://ftpmaster.internal/ubuntu plucky/main s390x python3-html5lib all 1.2-1 [90.8 kB] 171s Get:148 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-bleach all 6.2.0-1 [43.9 kB] 171s Get:149 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dateutil all 2.9.0-3 [80.2 kB] 172s Get:150 http://ftpmaster.internal/ubuntu plucky/main s390x python3-jmespath all 1.0.1-1 [21.3 kB] 172s Get:151 http://ftpmaster.internal/ubuntu plucky/main s390x python3-six all 1.17.0-1 [13.2 kB] 172s Get:152 http://ftpmaster.internal/ubuntu plucky/main s390x python3-botocore all 1.36.9+repack-1 [6927 kB] 172s Get:153 http://ftpmaster.internal/ubuntu plucky/main s390x python3-s3transfer all 0.11.2-2 [55.5 kB] 172s Get:154 http://ftpmaster.internal/ubuntu plucky/main s390x python3-boto3 all 1.36.0+dfsg-1 [72.5 kB] 172s Get:155 http://ftpmaster.internal/ubuntu plucky/main s390x python3-soupsieve all 2.6-1 [33.0 kB] 172s Get:156 http://ftpmaster.internal/ubuntu plucky/main s390x python3-bs4 all 4.13.3-1 [136 kB] 172s Get:157 http://ftpmaster.internal/ubuntu plucky/main s390x python3-click all 8.1.8-1 [79.8 kB] 172s Get:158 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-click-plugins all 1.1.1-4 [9288 B] 172s Get:159 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-cligj all 0.7.2-2 [7788 B] 172s Get:160 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-colorama all 0.4.6-4 [32.1 kB] 172s Get:161 http://ftpmaster.internal/ubuntu plucky/main s390x python3-decorator all 5.1.1-5 [10.1 kB] 172s Get:162 http://ftpmaster.internal/ubuntu plucky/main s390x python3-defusedxml all 0.7.1-3 [42.2 kB] 172s Get:163 http://ftpmaster.internal/ubuntu plucky/main s390x python3-roman all 5.0-1 [10.3 kB] 172s Get:164 http://ftpmaster.internal/ubuntu plucky/main s390x python3-docutils all 0.21.2+dfsg-2 [409 kB] 172s Get:165 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-executing all 2.2.0-0.1 [25.0 kB] 172s Get:166 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-fastjsonschema all 2.21.1-1 [20.4 kB] 172s Get:167 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-h11 all 0.14.0-1 [51.1 kB] 172s Get:168 http://ftpmaster.internal/ubuntu plucky/main s390x python3-imagesize all 1.4.1-1 [6844 B] 172s Get:169 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-iniconfig all 1.1.1-2 [6024 B] 172s Get:170 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-parso all 0.8.4-1 [67.6 kB] 172s Get:171 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-typeshed all 0.0~git20241223.ea91db2-1 [1548 kB] 172s Get:172 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-jedi all 0.19.1+ds1-1 [693 kB] 172s Get:173 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-traitlets all 5.14.3+really5.14.3-1 [71.5 kB] 172s Get:174 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-matplotlib-inline all 0.1.6-2 [8784 B] 172s Get:175 http://ftpmaster.internal/ubuntu plucky/main s390x python3-wcwidth all 0.2.13+dfsg1-1 [26.3 kB] 172s Get:176 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-prompt-toolkit all 3.0.50-1 [257 kB] 172s Get:177 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pure-eval all 0.2.3-1 [11.4 kB] 172s Get:178 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-stack-data all 0.6.3-1 [22.0 kB] 172s Get:179 http://ftpmaster.internal/ubuntu plucky/main s390x python3-ptyprocess all 0.7.0-6 [14.8 kB] 172s Get:180 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pexpect all 4.9-3 [48.1 kB] 172s Get:181 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-ipython all 8.30.0-2 [569 kB] 172s Get:182 http://ftpmaster.internal/ubuntu plucky/main s390x python3-platformdirs all 4.3.6-1 [16.8 kB] 172s Get:183 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-jupyter-core all 5.7.2-5 [28.1 kB] 172s Get:184 http://ftpmaster.internal/ubuntu plucky/main s390x python3-psutil s390x 5.9.8-2build3 [195 kB] 172s Get:185 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tornado s390x 6.4.2-1 [299 kB] 172s Get:186 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-zmq s390x 26.2.1-1 [229 kB] 172s Get:187 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-jupyter-client all 8.6.3-2 [78.5 kB] 172s Get:188 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-jupyterlab-pygments all 0.2.2-3 [6054 B] 172s Get:189 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-livereload all 2.7.1-0.1 [22.7 kB] 172s Get:190 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-mistune all 3.0.2-2 [32.9 kB] 172s Get:191 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-multidict s390x 6.1.0-1build1 [38.4 kB] 172s Get:192 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-nbformat all 5.9.1-1 [41.2 kB] 172s Get:193 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-nbclient all 0.8.0-2 [53.9 kB] 172s Get:194 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-tinycss2 all 1.4.0-1 [22.5 kB] 172s Get:195 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pandocfilters all 1.5.1-1 [23.6 kB] 172s Get:196 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-nbconvert all 7.16.6-1 [140 kB] 172s Get:197 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x sphinx-common all 8.1.3-5 [663 kB] 172s Get:198 http://ftpmaster.internal/ubuntu plucky/main s390x python3-alabaster all 0.7.16-0.1 [18.5 kB] 172s Get:199 http://ftpmaster.internal/ubuntu plucky/main s390x python3-snowballstemmer all 2.2.0-4build1 [59.8 kB] 173s Get:200 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x python3-sphinx all 8.1.3-5 [474 kB] 173s Get:201 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-nbsphinx all 0.9.5+ds-1 [41.0 kB] 173s Get:202 http://ftpmaster.internal/ubuntu plucky/main s390x python3-numpy s390x 1:1.26.4+ds-13 [4601 kB] 173s Get:203 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pluggy all 1.5.0-1 [21.0 kB] 173s Get:204 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pydata-sphinx-theme all 0.16.1+dfsg-1 [958 kB] 173s Get:205 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pystac all 1.12.1-1 [140 kB] 173s Get:206 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest all 8.3.4-1 [252 kB] 173s Get:207 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest-mock all 3.14.0-2 [11.7 kB] 173s Get:208 http://ftpmaster.internal/ubuntu plucky/main s390x python3-wrapt s390x 1.15.0-4 [34.4 kB] 173s Get:209 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-yarl s390x 1.13.1-1build1 [122 kB] 173s Get:210 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-vcr all 7.0.0-2 [33.3 kB] 173s Get:211 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest-recording all 0.13.2-1 [14.5 kB] 173s Get:212 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-rasterio s390x 1.4.3-1build2 [2014 kB] 174s Get:213 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-requests-mock all 1.12.1-3 [17.8 kB] 174s Get:214 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-shapely s390x 2.0.7-1 [367 kB] 174s Get:215 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-starlette all 0.41.3-2 [51.2 kB] 174s Get:216 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-wsproto all 1.2.0-1 [23.6 kB] 174s Get:217 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-uvloop s390x 0.21.0+ds1-2 [865 kB] 174s Get:218 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-uvicorn all 0.32.0-2 [44.2 kB] 174s Get:219 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-watchfiles s390x 0.24.0-1build1 [407 kB] 174s Get:220 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-websockets s390x 14.1-1 [91.0 kB] 174s Get:221 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sphinx-autobuild all 2024.10.03-1 [11.4 kB] 174s Get:222 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sphinx-design all 0.6.1-1 [894 kB] 174s Get:223 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-mathjax all 2.7.9+dfsg-1 [5665 kB] 175s Fetched 195 MB in 12s (15.7 MB/s) 175s Selecting previously unselected package libpython3.12-minimal:s390x. 175s (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 ... 55929 files and directories currently installed.) 175s Preparing to unpack .../000-libpython3.12-minimal_3.12.9-1_s390x.deb ... 175s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 175s Selecting previously unselected package python3.12-minimal. 175s Preparing to unpack .../001-python3.12-minimal_3.12.9-1_s390x.deb ... 175s Unpacking python3.12-minimal (3.12.9-1) ... 175s Selecting previously unselected package sgml-base. 175s Preparing to unpack .../002-sgml-base_1.31_all.deb ... 175s Unpacking sgml-base (1.31) ... 175s Selecting previously unselected package libnsl2:s390x. 175s Preparing to unpack .../003-libnsl2_1.3.0-3build3_s390x.deb ... 175s Unpacking libnsl2:s390x (1.3.0-3build3) ... 175s Selecting previously unselected package libpython3.12-stdlib:s390x. 175s Preparing to unpack .../004-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 175s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 175s Selecting previously unselected package python3.12. 175s Preparing to unpack .../005-python3.12_3.12.9-1_s390x.deb ... 175s Unpacking python3.12 (3.12.9-1) ... 175s Selecting previously unselected package m4. 175s Preparing to unpack .../006-m4_1.4.19-5_s390x.deb ... 175s Unpacking m4 (1.4.19-5) ... 175s Selecting previously unselected package autoconf. 175s Preparing to unpack .../007-autoconf_2.72-3_all.deb ... 175s Unpacking autoconf (2.72-3) ... 175s Selecting previously unselected package autotools-dev. 175s Preparing to unpack .../008-autotools-dev_20220109.1_all.deb ... 175s Unpacking autotools-dev (20220109.1) ... 175s Selecting previously unselected package automake. 175s Preparing to unpack .../009-automake_1%3a1.17-3_all.deb ... 175s Unpacking automake (1:1.17-3) ... 175s Selecting previously unselected package autopoint. 175s Preparing to unpack .../010-autopoint_0.23.1-1_all.deb ... 175s Unpacking autopoint (0.23.1-1) ... 175s Selecting previously unselected package libisl23:s390x. 175s Preparing to unpack .../011-libisl23_0.27-1_s390x.deb ... 175s Unpacking libisl23:s390x (0.27-1) ... 175s Selecting previously unselected package libmpc3:s390x. 175s Preparing to unpack .../012-libmpc3_1.3.1-1build2_s390x.deb ... 175s Unpacking libmpc3:s390x (1.3.1-1build2) ... 175s Selecting previously unselected package cpp-14-s390x-linux-gnu. 175s Preparing to unpack .../013-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 175s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 175s Selecting previously unselected package cpp-14. 175s Preparing to unpack .../014-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 175s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 175s Selecting previously unselected package cpp-s390x-linux-gnu. 175s Preparing to unpack .../015-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 175s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 175s Selecting previously unselected package cpp. 175s Preparing to unpack .../016-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 175s Unpacking cpp (4:14.2.0-1ubuntu1) ... 175s Selecting previously unselected package libcc1-0:s390x. 175s Preparing to unpack .../017-libcc1-0_15-20250213-1ubuntu1_s390x.deb ... 175s Unpacking libcc1-0:s390x (15-20250213-1ubuntu1) ... 175s Selecting previously unselected package libgomp1:s390x. 175s Preparing to unpack .../018-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 175s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 175s Selecting previously unselected package libitm1:s390x. 175s Preparing to unpack .../019-libitm1_15-20250213-1ubuntu1_s390x.deb ... 175s Unpacking libitm1:s390x (15-20250213-1ubuntu1) ... 175s Selecting previously unselected package libasan8:s390x. 175s Preparing to unpack .../020-libasan8_15-20250213-1ubuntu1_s390x.deb ... 175s Unpacking libasan8:s390x (15-20250213-1ubuntu1) ... 175s Selecting previously unselected package libubsan1:s390x. 175s Preparing to unpack .../021-libubsan1_15-20250213-1ubuntu1_s390x.deb ... 175s Unpacking libubsan1:s390x (15-20250213-1ubuntu1) ... 175s Selecting previously unselected package libgcc-14-dev:s390x. 175s Preparing to unpack .../022-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 175s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 176s Selecting previously unselected package gcc-14-s390x-linux-gnu. 176s Preparing to unpack .../023-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 176s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 176s Selecting previously unselected package gcc-14. 176s Preparing to unpack .../024-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 176s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 176s Selecting previously unselected package gcc-s390x-linux-gnu. 176s Preparing to unpack .../025-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 176s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 176s Selecting previously unselected package gcc. 176s Preparing to unpack .../026-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 176s Unpacking gcc (4:14.2.0-1ubuntu1) ... 176s Selecting previously unselected package libstdc++-14-dev:s390x. 176s Preparing to unpack .../027-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 176s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 176s Selecting previously unselected package g++-14-s390x-linux-gnu. 176s Preparing to unpack .../028-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 176s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 176s Selecting previously unselected package g++-14. 176s Preparing to unpack .../029-g++-14_14.2.0-17ubuntu1_s390x.deb ... 176s Unpacking g++-14 (14.2.0-17ubuntu1) ... 176s Selecting previously unselected package g++-s390x-linux-gnu. 176s Preparing to unpack .../030-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 176s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 176s Selecting previously unselected package g++. 176s Preparing to unpack .../031-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 176s Unpacking g++ (4:14.2.0-1ubuntu1) ... 176s Selecting previously unselected package build-essential. 176s Preparing to unpack .../032-build-essential_12.10ubuntu1_s390x.deb ... 176s Unpacking build-essential (12.10ubuntu1) ... 176s Selecting previously unselected package libdebhelper-perl. 176s Preparing to unpack .../033-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 176s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 176s Selecting previously unselected package libtool. 176s Preparing to unpack .../034-libtool_2.5.4-3build1_all.deb ... 176s Unpacking libtool (2.5.4-3build1) ... 176s Selecting previously unselected package dh-autoreconf. 176s Preparing to unpack .../035-dh-autoreconf_20_all.deb ... 176s Unpacking dh-autoreconf (20) ... 176s Selecting previously unselected package libarchive-zip-perl. 176s Preparing to unpack .../036-libarchive-zip-perl_1.68-1_all.deb ... 176s Unpacking libarchive-zip-perl (1.68-1) ... 176s Selecting previously unselected package libfile-stripnondeterminism-perl. 176s Preparing to unpack .../037-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 176s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 176s Selecting previously unselected package dh-strip-nondeterminism. 176s Preparing to unpack .../038-dh-strip-nondeterminism_1.14.1-2_all.deb ... 176s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 176s Selecting previously unselected package debugedit. 176s Preparing to unpack .../039-debugedit_1%3a5.1-2_s390x.deb ... 176s Unpacking debugedit (1:5.1-2) ... 176s Selecting previously unselected package dwz. 176s Preparing to unpack .../040-dwz_0.15-1build6_s390x.deb ... 176s Unpacking dwz (0.15-1build6) ... 176s Selecting previously unselected package gettext. 176s Preparing to unpack .../041-gettext_0.23.1-1_s390x.deb ... 176s Unpacking gettext (0.23.1-1) ... 176s Selecting previously unselected package intltool-debian. 176s Preparing to unpack .../042-intltool-debian_0.35.0+20060710.6_all.deb ... 176s Unpacking intltool-debian (0.35.0+20060710.6) ... 176s Selecting previously unselected package po-debconf. 176s Preparing to unpack .../043-po-debconf_1.0.21+nmu1_all.deb ... 176s Unpacking po-debconf (1.0.21+nmu1) ... 176s Selecting previously unselected package debhelper. 176s Preparing to unpack .../044-debhelper_13.24.1ubuntu2_all.deb ... 176s Unpacking debhelper (13.24.1ubuntu2) ... 176s Selecting previously unselected package dh-python. 176s Preparing to unpack .../045-dh-python_6.20250108_all.deb ... 176s Unpacking dh-python (6.20250108) ... 176s Selecting previously unselected package xml-core. 176s Preparing to unpack .../046-xml-core_0.19_all.deb ... 176s Unpacking xml-core (0.19) ... 176s Selecting previously unselected package docutils-common. 176s Preparing to unpack .../047-docutils-common_0.21.2+dfsg-2_all.deb ... 176s Unpacking docutils-common (0.21.2+dfsg-2) ... 176s Selecting previously unselected package fonts-dejavu-mono. 176s Preparing to unpack .../048-fonts-dejavu-mono_2.37-8_all.deb ... 176s Unpacking fonts-dejavu-mono (2.37-8) ... 176s Selecting previously unselected package fonts-dejavu-core. 176s Preparing to unpack .../049-fonts-dejavu-core_2.37-8_all.deb ... 176s Unpacking fonts-dejavu-core (2.37-8) ... 176s Selecting previously unselected package fontconfig-config. 176s Preparing to unpack .../050-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 177s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 177s Selecting previously unselected package fonts-mathjax. 177s Preparing to unpack .../051-fonts-mathjax_2.7.9+dfsg-1_all.deb ... 177s Unpacking fonts-mathjax (2.7.9+dfsg-1) ... 177s Selecting previously unselected package gdal-data. 177s Preparing to unpack .../052-gdal-data_3.10.2+dfsg-1build1_all.deb ... 177s Unpacking gdal-data (3.10.2+dfsg-1build1) ... 177s Selecting previously unselected package gdal-plugins:s390x. 177s Preparing to unpack .../053-gdal-plugins_3.10.2+dfsg-1build1_s390x.deb ... 177s Unpacking gdal-plugins:s390x (3.10.2+dfsg-1build1) ... 177s Selecting previously unselected package libaec0:s390x. 177s Preparing to unpack .../054-libaec0_1.1.3-1_s390x.deb ... 177s Unpacking libaec0:s390x (1.1.3-1) ... 177s Selecting previously unselected package libaom3:s390x. 177s Preparing to unpack .../055-libaom3_3.12.0-1_s390x.deb ... 177s Unpacking libaom3:s390x (3.12.0-1) ... 177s Selecting previously unselected package libblas3:s390x. 177s Preparing to unpack .../056-libblas3_3.12.1-2_s390x.deb ... 177s Unpacking libblas3:s390x (3.12.1-2) ... 177s Selecting previously unselected package libgfortran5:s390x. 177s Preparing to unpack .../057-libgfortran5_15-20250213-1ubuntu1_s390x.deb ... 177s Unpacking libgfortran5:s390x (15-20250213-1ubuntu1) ... 177s Selecting previously unselected package liblapack3:s390x. 177s Preparing to unpack .../058-liblapack3_3.12.1-2_s390x.deb ... 177s Unpacking liblapack3:s390x (3.12.1-2) ... 177s Selecting previously unselected package libarpack2t64:s390x. 177s Preparing to unpack .../059-libarpack2t64_3.9.1-4_s390x.deb ... 177s Unpacking libarpack2t64:s390x (3.9.1-4) ... 177s Selecting previously unselected package libarmadillo14. 177s Preparing to unpack .../060-libarmadillo14_1%3a14.2.3+dfsg-1_s390x.deb ... 177s Unpacking libarmadillo14 (1:14.2.3+dfsg-1) ... 177s Selecting previously unselected package libdav1d7:s390x. 177s Preparing to unpack .../061-libdav1d7_1.5.1-1_s390x.deb ... 177s Unpacking libdav1d7:s390x (1.5.1-1) ... 177s Selecting previously unselected package librav1e0.7:s390x. 177s Preparing to unpack .../062-librav1e0.7_0.7.1-9_s390x.deb ... 177s Unpacking librav1e0.7:s390x (0.7.1-9) ... 177s Selecting previously unselected package libsvtav1enc2:s390x. 177s Preparing to unpack .../063-libsvtav1enc2_2.3.0+dfsg-1_s390x.deb ... 177s Unpacking libsvtav1enc2:s390x (2.3.0+dfsg-1) ... 177s Selecting previously unselected package libjpeg-turbo8:s390x. 177s Preparing to unpack .../064-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 177s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 177s Selecting previously unselected package libjpeg8:s390x. 177s Preparing to unpack .../065-libjpeg8_8c-2ubuntu11_s390x.deb ... 177s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 177s Selecting previously unselected package libyuv0:s390x. 177s Preparing to unpack .../066-libyuv0_0.0.1904.20250204-1_s390x.deb ... 177s Unpacking libyuv0:s390x (0.0.1904.20250204-1) ... 177s Selecting previously unselected package libavif16:s390x. 177s Preparing to unpack .../067-libavif16_1.1.1-1ubuntu1_s390x.deb ... 177s Unpacking libavif16:s390x (1.1.1-1ubuntu1) ... 177s Selecting previously unselected package libsnappy1v5:s390x. 177s Preparing to unpack .../068-libsnappy1v5_1.2.1-1_s390x.deb ... 177s Unpacking libsnappy1v5:s390x (1.2.1-1) ... 177s Selecting previously unselected package libblosc1:s390x. 177s Preparing to unpack .../069-libblosc1_1.21.5+ds-1build1_s390x.deb ... 177s Unpacking libblosc1:s390x (1.21.5+ds-1build1) ... 177s Selecting previously unselected package libcfitsio10t64:s390x. 177s Preparing to unpack .../070-libcfitsio10t64_4.5.0-5_s390x.deb ... 177s Unpacking libcfitsio10t64:s390x (4.5.0-5) ... 177s Selecting previously unselected package libde265-0:s390x. 177s Preparing to unpack .../071-libde265-0_1.0.15-1build4_s390x.deb ... 177s Unpacking libde265-0:s390x (1.0.15-1build4) ... 177s Selecting previously unselected package libdeflate0:s390x. 177s Preparing to unpack .../072-libdeflate0_1.23-1_s390x.deb ... 177s Unpacking libdeflate0:s390x (1.23-1) ... 177s Selecting previously unselected package libfreetype6:s390x. 177s Preparing to unpack .../073-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 177s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 177s Selecting previously unselected package libfontconfig1:s390x. 177s Preparing to unpack .../074-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 177s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 177s Selecting previously unselected package libfyba0t64:s390x. 177s Preparing to unpack .../075-libfyba0t64_4.1.1-11build1_s390x.deb ... 177s Unpacking libfyba0t64:s390x (4.1.1-11build1) ... 177s Selecting previously unselected package libminizip1t64:s390x. 177s Preparing to unpack .../076-libminizip1t64_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 177s Unpacking libminizip1t64:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 177s Selecting previously unselected package libfreexl1:s390x. 177s Preparing to unpack .../077-libfreexl1_2.0.0-1build2_s390x.deb ... 177s Unpacking libfreexl1:s390x (2.0.0-1build2) ... 177s Selecting previously unselected package libgeos3.13.0:s390x. 177s Preparing to unpack .../078-libgeos3.13.0_3.13.0-1_s390x.deb ... 177s Unpacking libgeos3.13.0:s390x (3.13.0-1) ... 177s Selecting previously unselected package libgeos-c1t64:s390x. 177s Preparing to unpack .../079-libgeos-c1t64_3.13.0-1_s390x.deb ... 177s Unpacking libgeos-c1t64:s390x (3.13.0-1) ... 177s Selecting previously unselected package proj-data. 177s Preparing to unpack .../080-proj-data_9.5.1-1_all.deb ... 177s Unpacking proj-data (9.5.1-1) ... 177s Selecting previously unselected package libjbig0:s390x. 177s Preparing to unpack .../081-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 177s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 177s Selecting previously unselected package libsharpyuv0:s390x. 177s Preparing to unpack .../082-libsharpyuv0_1.5.0-0.1_s390x.deb ... 177s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 177s Selecting previously unselected package libwebp7:s390x. 177s Preparing to unpack .../083-libwebp7_1.5.0-0.1_s390x.deb ... 177s Unpacking libwebp7:s390x (1.5.0-0.1) ... 177s Selecting previously unselected package libtiff6:s390x. 178s Preparing to unpack .../084-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 178s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 178s Selecting previously unselected package libproj25:s390x. 178s Preparing to unpack .../085-libproj25_9.5.1-1_s390x.deb ... 178s Unpacking libproj25:s390x (9.5.1-1) ... 178s Selecting previously unselected package libgeotiff5:s390x. 178s Preparing to unpack .../086-libgeotiff5_1.7.3-1_s390x.deb ... 178s Unpacking libgeotiff5:s390x (1.7.3-1) ... 178s Selecting previously unselected package libgif7:s390x. 178s Preparing to unpack .../087-libgif7_5.2.2-1ubuntu1_s390x.deb ... 178s Unpacking libgif7:s390x (5.2.2-1ubuntu1) ... 178s Selecting previously unselected package libsz2:s390x. 178s Preparing to unpack .../088-libsz2_1.1.3-1_s390x.deb ... 178s Unpacking libsz2:s390x (1.1.3-1) ... 178s Selecting previously unselected package libhdf4-0-alt:s390x. 178s Preparing to unpack .../089-libhdf4-0-alt_4.3.0-1_s390x.deb ... 178s Unpacking libhdf4-0-alt:s390x (4.3.0-1) ... 178s Selecting previously unselected package libhdf5-310:s390x. 178s Preparing to unpack .../090-libhdf5-310_1.14.5+repack-3_s390x.deb ... 178s Unpacking libhdf5-310:s390x (1.14.5+repack-3) ... 178s Selecting previously unselected package libheif-plugin-aomdec:s390x. 178s Preparing to unpack .../091-libheif-plugin-aomdec_1.19.5-1build1_s390x.deb ... 178s Unpacking libheif-plugin-aomdec:s390x (1.19.5-1build1) ... 178s Selecting previously unselected package libheif-plugin-libde265:s390x. 178s Preparing to unpack .../092-libheif-plugin-libde265_1.19.5-1build1_s390x.deb ... 178s Unpacking libheif-plugin-libde265:s390x (1.19.5-1build1) ... 178s Selecting previously unselected package libheif1:s390x. 178s Preparing to unpack .../093-libheif1_1.19.5-1build1_s390x.deb ... 178s Unpacking libheif1:s390x (1.19.5-1build1) ... 178s Selecting previously unselected package liburiparser1:s390x. 178s Preparing to unpack .../094-liburiparser1_0.9.8+dfsg-2_s390x.deb ... 178s Unpacking liburiparser1:s390x (0.9.8+dfsg-2) ... 178s Selecting previously unselected package libkmlbase1t64:s390x. 178s Preparing to unpack .../095-libkmlbase1t64_1.3.0-12build1_s390x.deb ... 178s Unpacking libkmlbase1t64:s390x (1.3.0-12build1) ... 178s Selecting previously unselected package libkmldom1t64:s390x. 178s Preparing to unpack .../096-libkmldom1t64_1.3.0-12build1_s390x.deb ... 178s Unpacking libkmldom1t64:s390x (1.3.0-12build1) ... 178s Selecting previously unselected package libkmlengine1t64:s390x. 178s Preparing to unpack .../097-libkmlengine1t64_1.3.0-12build1_s390x.deb ... 178s Unpacking libkmlengine1t64:s390x (1.3.0-12build1) ... 178s Selecting previously unselected package mysql-common. 178s Preparing to unpack .../098-mysql-common_5.8+1.1.1_all.deb ... 178s Unpacking mysql-common (5.8+1.1.1) ... 178s Selecting previously unselected package libmysqlclient24:s390x. 178s Preparing to unpack .../099-libmysqlclient24_8.4.4-0ubuntu1_s390x.deb ... 178s Unpacking libmysqlclient24:s390x (8.4.4-0ubuntu1) ... 178s Selecting previously unselected package libhdf5-hl-310:s390x. 178s Preparing to unpack .../100-libhdf5-hl-310_1.14.5+repack-3_s390x.deb ... 178s Unpacking libhdf5-hl-310:s390x (1.14.5+repack-3) ... 178s Selecting previously unselected package libnetcdf22:s390x. 178s Preparing to unpack .../101-libnetcdf22_1%3a4.9.3-1_s390x.deb ... 178s Unpacking libnetcdf22:s390x (1:4.9.3-1) ... 178s Selecting previously unselected package libltdl7:s390x. 178s Preparing to unpack .../102-libltdl7_2.5.4-3build1_s390x.deb ... 178s Unpacking libltdl7:s390x (2.5.4-3build1) ... 178s Selecting previously unselected package libodbc2:s390x. 178s Preparing to unpack .../103-libodbc2_2.3.12-2ubuntu1_s390x.deb ... 178s Unpacking libodbc2:s390x (2.3.12-2ubuntu1) ... 178s Selecting previously unselected package unixodbc-common. 178s Preparing to unpack .../104-unixodbc-common_2.3.12-2ubuntu1_all.deb ... 178s Unpacking unixodbc-common (2.3.12-2ubuntu1) ... 178s Selecting previously unselected package libodbcinst2:s390x. 178s Preparing to unpack .../105-libodbcinst2_2.3.12-2ubuntu1_s390x.deb ... 178s Unpacking libodbcinst2:s390x (2.3.12-2ubuntu1) ... 178s Selecting previously unselected package libogdi4.1:s390x. 178s Preparing to unpack .../106-libogdi4.1_4.1.1+ds-5_s390x.deb ... 178s Unpacking libogdi4.1:s390x (4.1.1+ds-5) ... 178s Selecting previously unselected package libopenjp2-7:s390x. 178s Preparing to unpack .../107-libopenjp2-7_2.5.0-2ubuntu3_s390x.deb ... 178s Unpacking libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 178s Selecting previously unselected package libgpgmepp6t64:s390x. 178s Preparing to unpack .../108-libgpgmepp6t64_1.24.1-4ubuntu1_s390x.deb ... 178s Unpacking libgpgmepp6t64:s390x (1.24.1-4ubuntu1) ... 178s Selecting previously unselected package liblcms2-2:s390x. 178s Preparing to unpack .../109-liblcms2-2_2.16-2_s390x.deb ... 178s Unpacking liblcms2-2:s390x (2.16-2) ... 178s Selecting previously unselected package libpoppler145:s390x. 178s Preparing to unpack .../110-libpoppler145_25.01.0-4_s390x.deb ... 178s Unpacking libpoppler145:s390x (25.01.0-4) ... 178s Selecting previously unselected package libpq5:s390x. 178s Preparing to unpack .../111-libpq5_17.3-3_s390x.deb ... 178s Unpacking libpq5:s390x (17.3-3) ... 178s Selecting previously unselected package libqhull-r8.0:s390x. 178s Preparing to unpack .../112-libqhull-r8.0_2020.2-6build1_s390x.deb ... 178s Unpacking libqhull-r8.0:s390x (2020.2-6build1) ... 178s Selecting previously unselected package librttopo1:s390x. 178s Preparing to unpack .../113-librttopo1_1.1.0-3build2_s390x.deb ... 178s Unpacking librttopo1:s390x (1.1.0-3build2) ... 178s Selecting previously unselected package libspatialite8t64:s390x. 178s Preparing to unpack .../114-libspatialite8t64_5.1.0-3build1_s390x.deb ... 178s Unpacking libspatialite8t64:s390x (5.1.0-3build1) ... 178s Selecting previously unselected package libxerces-c3.2t64:s390x. 178s Preparing to unpack .../115-libxerces-c3.2t64_3.2.4+debian-1.3build1_s390x.deb ... 178s Unpacking libxerces-c3.2t64:s390x (3.2.4+debian-1.3build1) ... 178s Selecting previously unselected package libgdal36:s390x. 178s Preparing to unpack .../116-libgdal36_3.10.2+dfsg-1build1_s390x.deb ... 178s Unpacking libgdal36:s390x (3.10.2+dfsg-1build1) ... 178s Selecting previously unselected package libjs-jquery. 178s Preparing to unpack .../117-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 178s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 178s Selecting previously unselected package libjs-underscore. 178s Preparing to unpack .../118-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ... 178s Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 178s Selecting previously unselected package libjs-sphinxdoc. 178s Preparing to unpack .../119-libjs-sphinxdoc_8.1.3-5_all.deb ... 178s Unpacking libjs-sphinxdoc (8.1.3-5) ... 178s Selecting previously unselected package libjson-perl. 178s Preparing to unpack .../120-libjson-perl_4.10000-1_all.deb ... 178s Unpacking libjson-perl (4.10000-1) ... 178s Selecting previously unselected package liblua5.4-0:s390x. 178s Preparing to unpack .../121-liblua5.4-0_5.4.7-1_s390x.deb ... 178s Unpacking liblua5.4-0:s390x (5.4.7-1) ... 178s Selecting previously unselected package libnorm1t64:s390x. 178s Preparing to unpack .../122-libnorm1t64_1.5.9+dfsg-3.1build1_s390x.deb ... 178s Unpacking libnorm1t64:s390x (1.5.9+dfsg-3.1build1) ... 178s Selecting previously unselected package libpgm-5.3-0t64:s390x. 178s Preparing to unpack .../123-libpgm-5.3-0t64_5.3.128~dfsg-2.1build1_s390x.deb ... 178s Unpacking libpgm-5.3-0t64:s390x (5.3.128~dfsg-2.1build1) ... 178s Selecting previously unselected package libsodium23:s390x. 178s Preparing to unpack .../124-libsodium23_1.0.18-1build3_s390x.deb ... 178s Unpacking libsodium23:s390x (1.0.18-1build3) ... 178s Selecting previously unselected package libzmq5:s390x. 178s Preparing to unpack .../125-libzmq5_4.3.5-1build2_s390x.deb ... 178s Unpacking libzmq5:s390x (4.3.5-1build2) ... 178s Selecting previously unselected package node-fortawesome-fontawesome-free. 178s Preparing to unpack .../126-node-fortawesome-fontawesome-free_6.7.2+ds1-1_all.deb ... 178s Unpacking node-fortawesome-fontawesome-free (6.7.2+ds1-1) ... 179s Selecting previously unselected package pandoc-data. 179s Preparing to unpack .../127-pandoc-data_3.1.11.1-3build1_all.deb ... 179s Unpacking pandoc-data (3.1.11.1-3build1) ... 179s Selecting previously unselected package pandoc. 179s Preparing to unpack .../128-pandoc_3.1.11.1+ds-2_s390x.deb ... 179s Unpacking pandoc (3.1.11.1+ds-2) ... 180s Selecting previously unselected package pybuild-plugin-autopkgtest. 180s Preparing to unpack .../129-pybuild-plugin-autopkgtest_6.20250108_all.deb ... 180s Unpacking pybuild-plugin-autopkgtest (6.20250108) ... 180s Selecting previously unselected package python3-packaging. 180s Preparing to unpack .../130-python3-packaging_24.2-1_all.deb ... 180s Unpacking python3-packaging (24.2-1) ... 180s Selecting previously unselected package python3-pyproject-hooks. 180s Preparing to unpack .../131-python3-pyproject-hooks_1.2.0-1_all.deb ... 180s Unpacking python3-pyproject-hooks (1.2.0-1) ... 180s Selecting previously unselected package python3-toml. 180s Preparing to unpack .../132-python3-toml_0.10.2-1_all.deb ... 180s Unpacking python3-toml (0.10.2-1) ... 180s Selecting previously unselected package python3-wheel. 180s Preparing to unpack .../133-python3-wheel_0.45.1-1_all.deb ... 180s Unpacking python3-wheel (0.45.1-1) ... 180s Selecting previously unselected package python3-build. 180s Preparing to unpack .../134-python3-build_1.2.2-1_all.deb ... 180s Unpacking python3-build (1.2.2-1) ... 180s Selecting previously unselected package python3-installer. 180s Preparing to unpack .../135-python3-installer_0.7.0+dfsg1-3_all.deb ... 180s Unpacking python3-installer (0.7.0+dfsg1-3) ... 180s Selecting previously unselected package pybuild-plugin-pyproject. 180s Preparing to unpack .../136-pybuild-plugin-pyproject_6.20250108_all.deb ... 180s Unpacking pybuild-plugin-pyproject (6.20250108) ... 180s Selecting previously unselected package python-pystac-doc. 180s Preparing to unpack .../137-python-pystac-doc_1.12.1-1_all.deb ... 180s Unpacking python-pystac-doc (1.12.1-1) ... 180s Selecting previously unselected package python-tinycss2-common. 180s Preparing to unpack .../138-python-tinycss2-common_1.4.0-1_all.deb ... 180s Unpacking python-tinycss2-common (1.4.0-1) ... 180s Selecting previously unselected package python3-accessible-pygments. 180s Preparing to unpack .../139-python3-accessible-pygments_0.0.5-2_all.deb ... 180s Unpacking python3-accessible-pygments (0.0.5-2) ... 180s Selecting previously unselected package python3-affine. 180s Preparing to unpack .../140-python3-affine_2.4.0-1_all.deb ... 180s Unpacking python3-affine (2.4.0-1) ... 180s Selecting previously unselected package python3-all. 180s Preparing to unpack .../141-python3-all_3.13.1-1~exp2_s390x.deb ... 180s Unpacking python3-all (3.13.1-1~exp2) ... 180s Selecting previously unselected package python3-sniffio. 180s Preparing to unpack .../142-python3-sniffio_1.3.1-1_all.deb ... 180s Unpacking python3-sniffio (1.3.1-1) ... 180s Selecting previously unselected package python3-anyio. 180s Preparing to unpack .../143-python3-anyio_4.7.0-1_all.deb ... 180s Unpacking python3-anyio (4.7.0-1) ... 180s Selecting previously unselected package python3-asttokens. 180s Preparing to unpack .../144-python3-asttokens_3.0.0-1_all.deb ... 180s Unpacking python3-asttokens (3.0.0-1) ... 180s Selecting previously unselected package python3-webencodings. 180s Preparing to unpack .../145-python3-webencodings_0.5.1-5_all.deb ... 180s Unpacking python3-webencodings (0.5.1-5) ... 180s Selecting previously unselected package python3-html5lib. 180s Preparing to unpack .../146-python3-html5lib_1.2-1_all.deb ... 180s Unpacking python3-html5lib (1.2-1) ... 180s Selecting previously unselected package python3-bleach. 180s Preparing to unpack .../147-python3-bleach_6.2.0-1_all.deb ... 180s Unpacking python3-bleach (6.2.0-1) ... 180s Selecting previously unselected package python3-dateutil. 180s Preparing to unpack .../148-python3-dateutil_2.9.0-3_all.deb ... 180s Unpacking python3-dateutil (2.9.0-3) ... 180s Selecting previously unselected package python3-jmespath. 180s Preparing to unpack .../149-python3-jmespath_1.0.1-1_all.deb ... 180s Unpacking python3-jmespath (1.0.1-1) ... 180s Selecting previously unselected package python3-six. 180s Preparing to unpack .../150-python3-six_1.17.0-1_all.deb ... 180s Unpacking python3-six (1.17.0-1) ... 180s Selecting previously unselected package python3-botocore. 180s Preparing to unpack .../151-python3-botocore_1.36.9+repack-1_all.deb ... 180s Unpacking python3-botocore (1.36.9+repack-1) ... 181s Selecting previously unselected package python3-s3transfer. 181s Preparing to unpack .../152-python3-s3transfer_0.11.2-2_all.deb ... 181s Unpacking python3-s3transfer (0.11.2-2) ... 181s Selecting previously unselected package python3-boto3. 181s Preparing to unpack .../153-python3-boto3_1.36.0+dfsg-1_all.deb ... 181s Unpacking python3-boto3 (1.36.0+dfsg-1) ... 181s Selecting previously unselected package python3-soupsieve. 181s Preparing to unpack .../154-python3-soupsieve_2.6-1_all.deb ... 181s Unpacking python3-soupsieve (2.6-1) ... 181s Selecting previously unselected package python3-bs4. 181s Preparing to unpack .../155-python3-bs4_4.13.3-1_all.deb ... 181s Unpacking python3-bs4 (4.13.3-1) ... 181s Selecting previously unselected package python3-click. 181s Preparing to unpack .../156-python3-click_8.1.8-1_all.deb ... 181s Unpacking python3-click (8.1.8-1) ... 181s Selecting previously unselected package python3-click-plugins. 181s Preparing to unpack .../157-python3-click-plugins_1.1.1-4_all.deb ... 181s Unpacking python3-click-plugins (1.1.1-4) ... 181s Selecting previously unselected package python3-cligj. 181s Preparing to unpack .../158-python3-cligj_0.7.2-2_all.deb ... 181s Unpacking python3-cligj (0.7.2-2) ... 181s Selecting previously unselected package python3-colorama. 181s Preparing to unpack .../159-python3-colorama_0.4.6-4_all.deb ... 181s Unpacking python3-colorama (0.4.6-4) ... 181s Selecting previously unselected package python3-decorator. 181s Preparing to unpack .../160-python3-decorator_5.1.1-5_all.deb ... 181s Unpacking python3-decorator (5.1.1-5) ... 181s Selecting previously unselected package python3-defusedxml. 181s Preparing to unpack .../161-python3-defusedxml_0.7.1-3_all.deb ... 181s Unpacking python3-defusedxml (0.7.1-3) ... 181s Selecting previously unselected package python3-roman. 181s Preparing to unpack .../162-python3-roman_5.0-1_all.deb ... 181s Unpacking python3-roman (5.0-1) ... 181s Selecting previously unselected package python3-docutils. 181s Preparing to unpack .../163-python3-docutils_0.21.2+dfsg-2_all.deb ... 181s Unpacking python3-docutils (0.21.2+dfsg-2) ... 181s Selecting previously unselected package python3-executing. 181s Preparing to unpack .../164-python3-executing_2.2.0-0.1_all.deb ... 181s Unpacking python3-executing (2.2.0-0.1) ... 181s Selecting previously unselected package python3-fastjsonschema. 181s Preparing to unpack .../165-python3-fastjsonschema_2.21.1-1_all.deb ... 181s Unpacking python3-fastjsonschema (2.21.1-1) ... 181s Selecting previously unselected package python3-h11. 181s Preparing to unpack .../166-python3-h11_0.14.0-1_all.deb ... 181s Unpacking python3-h11 (0.14.0-1) ... 181s Selecting previously unselected package python3-imagesize. 181s Preparing to unpack .../167-python3-imagesize_1.4.1-1_all.deb ... 181s Unpacking python3-imagesize (1.4.1-1) ... 181s Selecting previously unselected package python3-iniconfig. 181s Preparing to unpack .../168-python3-iniconfig_1.1.1-2_all.deb ... 181s Unpacking python3-iniconfig (1.1.1-2) ... 181s Selecting previously unselected package python3-parso. 181s Preparing to unpack .../169-python3-parso_0.8.4-1_all.deb ... 181s Unpacking python3-parso (0.8.4-1) ... 181s Selecting previously unselected package python3-typeshed. 181s Preparing to unpack .../170-python3-typeshed_0.0~git20241223.ea91db2-1_all.deb ... 181s Unpacking python3-typeshed (0.0~git20241223.ea91db2-1) ... 181s Selecting previously unselected package python3-jedi. 181s Preparing to unpack .../171-python3-jedi_0.19.1+ds1-1_all.deb ... 181s Unpacking python3-jedi (0.19.1+ds1-1) ... 182s Selecting previously unselected package python3-traitlets. 182s Preparing to unpack .../172-python3-traitlets_5.14.3+really5.14.3-1_all.deb ... 182s Unpacking python3-traitlets (5.14.3+really5.14.3-1) ... 182s Selecting previously unselected package python3-matplotlib-inline. 182s Preparing to unpack .../173-python3-matplotlib-inline_0.1.6-2_all.deb ... 182s Unpacking python3-matplotlib-inline (0.1.6-2) ... 182s Selecting previously unselected package python3-wcwidth. 182s Preparing to unpack .../174-python3-wcwidth_0.2.13+dfsg1-1_all.deb ... 182s Unpacking python3-wcwidth (0.2.13+dfsg1-1) ... 182s Selecting previously unselected package python3-prompt-toolkit. 182s Preparing to unpack .../175-python3-prompt-toolkit_3.0.50-1_all.deb ... 182s Unpacking python3-prompt-toolkit (3.0.50-1) ... 182s Selecting previously unselected package python3-pure-eval. 182s Preparing to unpack .../176-python3-pure-eval_0.2.3-1_all.deb ... 182s Unpacking python3-pure-eval (0.2.3-1) ... 182s Selecting previously unselected package python3-stack-data. 182s Preparing to unpack .../177-python3-stack-data_0.6.3-1_all.deb ... 182s Unpacking python3-stack-data (0.6.3-1) ... 182s Selecting previously unselected package python3-ptyprocess. 182s Preparing to unpack .../178-python3-ptyprocess_0.7.0-6_all.deb ... 182s Unpacking python3-ptyprocess (0.7.0-6) ... 182s Selecting previously unselected package python3-pexpect. 182s Preparing to unpack .../179-python3-pexpect_4.9-3_all.deb ... 182s Unpacking python3-pexpect (4.9-3) ... 182s Selecting previously unselected package python3-ipython. 182s Preparing to unpack .../180-python3-ipython_8.30.0-2_all.deb ... 182s Unpacking python3-ipython (8.30.0-2) ... 182s Selecting previously unselected package python3-platformdirs. 182s Preparing to unpack .../181-python3-platformdirs_4.3.6-1_all.deb ... 182s Unpacking python3-platformdirs (4.3.6-1) ... 182s Selecting previously unselected package python3-jupyter-core. 182s Preparing to unpack .../182-python3-jupyter-core_5.7.2-5_all.deb ... 182s Unpacking python3-jupyter-core (5.7.2-5) ... 182s Selecting previously unselected package python3-psutil. 182s Preparing to unpack .../183-python3-psutil_5.9.8-2build3_s390x.deb ... 182s Unpacking python3-psutil (5.9.8-2build3) ... 182s Selecting previously unselected package python3-tornado. 182s Preparing to unpack .../184-python3-tornado_6.4.2-1_s390x.deb ... 182s Unpacking python3-tornado (6.4.2-1) ... 182s Selecting previously unselected package python3-zmq. 182s Preparing to unpack .../185-python3-zmq_26.2.1-1_s390x.deb ... 182s Unpacking python3-zmq (26.2.1-1) ... 182s Selecting previously unselected package python3-jupyter-client. 182s Preparing to unpack .../186-python3-jupyter-client_8.6.3-2_all.deb ... 182s Unpacking python3-jupyter-client (8.6.3-2) ... 182s Selecting previously unselected package python3-jupyterlab-pygments. 182s Preparing to unpack .../187-python3-jupyterlab-pygments_0.2.2-3_all.deb ... 182s Unpacking python3-jupyterlab-pygments (0.2.2-3) ... 182s Selecting previously unselected package python3-livereload. 182s Preparing to unpack .../188-python3-livereload_2.7.1-0.1_all.deb ... 182s Unpacking python3-livereload (2.7.1-0.1) ... 182s Selecting previously unselected package python3-mistune. 182s Preparing to unpack .../189-python3-mistune_3.0.2-2_all.deb ... 182s Unpacking python3-mistune (3.0.2-2) ... 182s Selecting previously unselected package python3-multidict. 182s Preparing to unpack .../190-python3-multidict_6.1.0-1build1_s390x.deb ... 182s Unpacking python3-multidict (6.1.0-1build1) ... 182s Selecting previously unselected package python3-nbformat. 182s Preparing to unpack .../191-python3-nbformat_5.9.1-1_all.deb ... 182s Unpacking python3-nbformat (5.9.1-1) ... 182s Selecting previously unselected package python3-nbclient. 182s Preparing to unpack .../192-python3-nbclient_0.8.0-2_all.deb ... 182s Unpacking python3-nbclient (0.8.0-2) ... 182s Selecting previously unselected package python3-tinycss2. 182s Preparing to unpack .../193-python3-tinycss2_1.4.0-1_all.deb ... 182s Unpacking python3-tinycss2 (1.4.0-1) ... 182s Selecting previously unselected package python3-pandocfilters. 182s Preparing to unpack .../194-python3-pandocfilters_1.5.1-1_all.deb ... 182s Unpacking python3-pandocfilters (1.5.1-1) ... 182s Selecting previously unselected package python3-nbconvert. 182s Preparing to unpack .../195-python3-nbconvert_7.16.6-1_all.deb ... 182s Unpacking python3-nbconvert (7.16.6-1) ... 182s Selecting previously unselected package sphinx-common. 182s Preparing to unpack .../196-sphinx-common_8.1.3-5_all.deb ... 182s Unpacking sphinx-common (8.1.3-5) ... 182s Selecting previously unselected package python3-alabaster. 182s Preparing to unpack .../197-python3-alabaster_0.7.16-0.1_all.deb ... 182s Unpacking python3-alabaster (0.7.16-0.1) ... 182s Selecting previously unselected package python3-snowballstemmer. 182s Preparing to unpack .../198-python3-snowballstemmer_2.2.0-4build1_all.deb ... 182s Unpacking python3-snowballstemmer (2.2.0-4build1) ... 182s Selecting previously unselected package python3-sphinx. 182s Preparing to unpack .../199-python3-sphinx_8.1.3-5_all.deb ... 182s Unpacking python3-sphinx (8.1.3-5) ... 182s Selecting previously unselected package python3-nbsphinx. 182s Preparing to unpack .../200-python3-nbsphinx_0.9.5+ds-1_all.deb ... 182s Unpacking python3-nbsphinx (0.9.5+ds-1) ... 182s Selecting previously unselected package python3-numpy. 182s Preparing to unpack .../201-python3-numpy_1%3a1.26.4+ds-13_s390x.deb ... 182s Unpacking python3-numpy (1:1.26.4+ds-13) ... 182s Selecting previously unselected package python3-pluggy. 182s Preparing to unpack .../202-python3-pluggy_1.5.0-1_all.deb ... 182s Unpacking python3-pluggy (1.5.0-1) ... 182s Selecting previously unselected package python3-pydata-sphinx-theme. 182s Preparing to unpack .../203-python3-pydata-sphinx-theme_0.16.1+dfsg-1_all.deb ... 182s Unpacking python3-pydata-sphinx-theme (0.16.1+dfsg-1) ... 182s Selecting previously unselected package python3-pystac. 182s Preparing to unpack .../204-python3-pystac_1.12.1-1_all.deb ... 182s Unpacking python3-pystac (1.12.1-1) ... 182s Selecting previously unselected package python3-pytest. 182s Preparing to unpack .../205-python3-pytest_8.3.4-1_all.deb ... 182s Unpacking python3-pytest (8.3.4-1) ... 182s Selecting previously unselected package python3-pytest-mock. 182s Preparing to unpack .../206-python3-pytest-mock_3.14.0-2_all.deb ... 182s Unpacking python3-pytest-mock (3.14.0-2) ... 183s Selecting previously unselected package python3-wrapt. 183s Preparing to unpack .../207-python3-wrapt_1.15.0-4_s390x.deb ... 183s Unpacking python3-wrapt (1.15.0-4) ... 183s Selecting previously unselected package python3-yarl. 183s Preparing to unpack .../208-python3-yarl_1.13.1-1build1_s390x.deb ... 183s Unpacking python3-yarl (1.13.1-1build1) ... 183s Selecting previously unselected package python3-vcr. 183s Preparing to unpack .../209-python3-vcr_7.0.0-2_all.deb ... 183s Unpacking python3-vcr (7.0.0-2) ... 183s Selecting previously unselected package python3-pytest-recording. 183s Preparing to unpack .../210-python3-pytest-recording_0.13.2-1_all.deb ... 183s Unpacking python3-pytest-recording (0.13.2-1) ... 183s Selecting previously unselected package python3-rasterio. 183s Preparing to unpack .../211-python3-rasterio_1.4.3-1build2_s390x.deb ... 183s Unpacking python3-rasterio (1.4.3-1build2) ... 183s Selecting previously unselected package python3-requests-mock. 183s Preparing to unpack .../212-python3-requests-mock_1.12.1-3_all.deb ... 183s Unpacking python3-requests-mock (1.12.1-3) ... 183s Selecting previously unselected package python3-shapely. 183s Preparing to unpack .../213-python3-shapely_2.0.7-1_s390x.deb ... 183s Unpacking python3-shapely (2.0.7-1) ... 183s Selecting previously unselected package python3-starlette. 183s Preparing to unpack .../214-python3-starlette_0.41.3-2_all.deb ... 183s Unpacking python3-starlette (0.41.3-2) ... 183s Selecting previously unselected package python3-wsproto. 183s Preparing to unpack .../215-python3-wsproto_1.2.0-1_all.deb ... 183s Unpacking python3-wsproto (1.2.0-1) ... 183s Selecting previously unselected package python3-uvloop. 183s Preparing to unpack .../216-python3-uvloop_0.21.0+ds1-2_s390x.deb ... 183s Unpacking python3-uvloop (0.21.0+ds1-2) ... 183s Selecting previously unselected package python3-uvicorn. 183s Preparing to unpack .../217-python3-uvicorn_0.32.0-2_all.deb ... 183s Unpacking python3-uvicorn (0.32.0-2) ... 183s Selecting previously unselected package python3-watchfiles. 183s Preparing to unpack .../218-python3-watchfiles_0.24.0-1build1_s390x.deb ... 183s Unpacking python3-watchfiles (0.24.0-1build1) ... 183s Selecting previously unselected package python3-websockets. 183s Preparing to unpack .../219-python3-websockets_14.1-1_s390x.deb ... 183s Unpacking python3-websockets (14.1-1) ... 183s Selecting previously unselected package python3-sphinx-autobuild. 183s Preparing to unpack .../220-python3-sphinx-autobuild_2024.10.03-1_all.deb ... 183s Unpacking python3-sphinx-autobuild (2024.10.03-1) ... 183s Selecting previously unselected package python3-sphinx-design. 183s Preparing to unpack .../221-python3-sphinx-design_0.6.1-1_all.deb ... 183s Unpacking python3-sphinx-design (0.6.1-1) ... 183s Selecting previously unselected package libjs-mathjax. 183s Preparing to unpack .../222-libjs-mathjax_2.7.9+dfsg-1_all.deb ... 183s Unpacking libjs-mathjax (2.7.9+dfsg-1) ... 183s Setting up dh-python (6.20250108) ... 184s Setting up liblcms2-2:s390x (2.16-2) ... 184s Setting up python3-iniconfig (1.1.1-2) ... 184s Setting up python3-sniffio (1.3.1-1) ... 184s Setting up python3-tornado (6.4.2-1) ... 185s Setting up libnorm1t64:s390x (1.5.9+dfsg-3.1build1) ... 185s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 185s Setting up libgpgmepp6t64:s390x (1.24.1-4ubuntu1) ... 185s Setting up libaom3:s390x (3.12.0-1) ... 185s Setting up mysql-common (5.8+1.1.1) ... 185s update-alternatives: using /etc/mysql/my.cnf.fallback to provide /etc/mysql/my.cnf (my.cnf) in auto mode 185s Setting up python3-pure-eval (0.2.3-1) ... 185s Setting up fonts-mathjax (2.7.9+dfsg-1) ... 185s Setting up libsodium23:s390x (1.0.18-1build3) ... 185s Setting up proj-data (9.5.1-1) ... 185s Setting up libjs-mathjax (2.7.9+dfsg-1) ... 185s Setting up python3-anyio (4.7.0-1) ... 185s Setting up python3-parso (0.8.4-1) ... 185s Setting up libogdi4.1:s390x (4.1.1+ds-5) ... 185s Setting up python3-colorama (0.4.6-4) ... 185s Setting up python3-defusedxml (0.7.1-3) ... 186s Setting up libarchive-zip-perl (1.68-1) ... 186s Setting up python3-asttokens (3.0.0-1) ... 186s Setting up python3-alabaster (0.7.16-0.1) ... 186s Setting up libgeos3.13.0:s390x (3.13.0-1) ... 186s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 186s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 186s Setting up libpq5:s390x (17.3-3) ... 186s Setting up libdeflate0:s390x (1.23-1) ... 186s Setting up m4 (1.4.19-5) ... 186s Setting up python3-watchfiles (0.24.0-1build1) ... 186s Setting up libqhull-r8.0:s390x (2020.2-6build1) ... 186s Setting up node-fortawesome-fontawesome-free (6.7.2+ds1-1) ... 186s Setting up python3-starlette (0.41.3-2) ... 186s Setting up python3-pandocfilters (1.5.1-1) ... 186s Setting up libxerces-c3.2t64:s390x (3.2.4+debian-1.3build1) ... 186s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 186s Setting up python3-click (8.1.8-1) ... 187s Setting up libmysqlclient24:s390x (8.4.4-0ubuntu1) ... 187s Setting up python3-wheel (0.45.1-1) ... 187s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 187s Setting up python3-webencodings (0.5.1-5) ... 187s Setting up libaec0:s390x (1.1.3-1) ... 187s Setting up python3-platformdirs (4.3.6-1) ... 187s Setting up python3-psutil (5.9.8-2build3) ... 188s Setting up gdal-data (3.10.2+dfsg-1build1) ... 188s Setting up python3-multidict (6.1.0-1build1) ... 188s Setting up libsnappy1v5:s390x (1.2.1-1) ... 188s Setting up python3-jupyterlab-pygments (0.2.2-3) ... 188s Setting up python3-six (1.17.0-1) ... 188s Setting up python3-roman (5.0-1) ... 188s Setting up libpgm-5.3-0t64:s390x (5.3.128~dfsg-2.1build1) ... 188s Setting up python3-decorator (5.1.1-5) ... 188s Setting up autotools-dev (20220109.1) ... 188s Setting up libblas3:s390x (3.12.1-2) ... 188s update-alternatives: using /usr/lib/s390x-linux-gnu/blas/libblas.so.3 to provide /usr/lib/s390x-linux-gnu/libblas.so.3 (libblas.so.3-s390x-linux-gnu) in auto mode 188s Setting up python3-packaging (24.2-1) ... 188s Setting up libcfitsio10t64:s390x (4.5.0-5) ... 188s Setting up python3-wcwidth (0.2.13+dfsg1-1) ... 189s Setting up python3-pyproject-hooks (1.2.0-1) ... 189s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 189s Setting up python3-accessible-pygments (0.0.5-2) ... 189s Setting up libsvtav1enc2:s390x (2.3.0+dfsg-1) ... 189s Setting up python3-typeshed (0.0~git20241223.ea91db2-1) ... 189s Setting up python3-executing (2.2.0-0.1) ... 189s Setting up python3-snowballstemmer (2.2.0-4build1) ... 190s Setting up python3-jmespath (1.0.1-1) ... 190s Setting up python3-requests-mock (1.12.1-3) ... 190s Setting up fonts-dejavu-mono (2.37-8) ... 190s Setting up libmpc3:s390x (1.3.1-1build2) ... 190s Setting up python3-wrapt (1.15.0-4) ... 190s Setting up python3-h11 (0.14.0-1) ... 190s Setting up autopoint (0.23.1-1) ... 190s Setting up python3-click-plugins (1.1.1-4) ... 190s Setting up fonts-dejavu-core (2.37-8) ... 190s Setting up unixodbc-common (2.3.12-2ubuntu1) ... 190s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 190s Setting up python3-html5lib (1.2-1) ... 191s Setting up libltdl7:s390x (2.5.4-3build1) ... 191s Setting up python3-toml (0.10.2-1) ... 191s Setting up python3-uvloop (0.21.0+ds1-2) ... 191s Setting up python3-installer (0.7.0+dfsg1-3) ... 191s Setting up libgfortran5:s390x (15-20250213-1ubuntu1) ... 191s Setting up autoconf (2.72-3) ... 191s Setting up python3-pluggy (1.5.0-1) ... 191s Setting up libwebp7:s390x (1.5.0-0.1) ... 191s Setting up libubsan1:s390x (15-20250213-1ubuntu1) ... 191s Setting up python3-fastjsonschema (2.21.1-1) ... 192s Setting up libgif7:s390x (5.2.2-1ubuntu1) ... 192s Setting up libodbc2:s390x (2.3.12-2ubuntu1) ... 192s Setting up liburiparser1:s390x (0.9.8+dfsg-2) ... 192s Setting up libfyba0t64:s390x (4.1.1-11build1) ... 192s Setting up dwz (0.15-1build6) ... 192s Setting up libdav1d7:s390x (1.5.1-1) ... 192s Setting up libminizip1t64:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 192s Setting up python3-livereload (2.7.1-0.1) ... 192s Setting up python3-traitlets (5.14.3+really5.14.3-1) ... 192s Setting up librav1e0.7:s390x (0.7.1-9) ... 192s Setting up libasan8:s390x (15-20250213-1ubuntu1) ... 192s Setting up python-tinycss2-common (1.4.0-1) ... 192s Setting up libjson-perl (4.10000-1) ... 192s Setting up libnsl2:s390x (1.3.0-3build3) ... 192s Setting up libblosc1:s390x (1.21.5+ds-1build1) ... 192s Setting up debugedit (1:5.1-2) ... 192s Setting up liblua5.4-0:s390x (5.4.7-1) ... 192s Setting up libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 192s Setting up python3-dateutil (2.9.0-3) ... 192s Setting up sgml-base (1.31) ... 192s Setting up pandoc-data (3.1.11.1-3build1) ... 192s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 192s Setting up libisl23:s390x (0.27-1) ... 192s Setting up python3-affine (2.4.0-1) ... 192s Setting up python3-build (1.2.2-1) ... 192s Setting up libde265-0:s390x (1.0.15-1build4) ... 192s Setting up libkmlbase1t64:s390x (1.3.0-12build1) ... 192s Setting up python3-yarl (1.13.1-1build1) ... 193s Setting up python3-mistune (3.0.2-2) ... 193s Setting up python3-stack-data (0.6.3-1) ... 193s Setting up python3-soupsieve (2.6-1) ... 193s Setting up libcc1-0:s390x (15-20250213-1ubuntu1) ... 193s Setting up python3-jupyter-core (5.7.2-5) ... 193s Setting up libsz2:s390x (1.1.3-1) ... 193s Setting up libitm1:s390x (15-20250213-1ubuntu1) ... 193s Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 193s Setting up python3-imagesize (1.4.1-1) ... 193s Setting up python3-ptyprocess (0.7.0-6) ... 193s Setting up gdal-plugins:s390x (3.10.2+dfsg-1build1) ... 193s Setting up python3-websockets (14.1-1) ... 194s Setting up python3-pystac (1.12.1-1) ... 194s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 194s Setting up automake (1:1.17-3) ... 194s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 194s Setting up python3-prompt-toolkit (3.0.50-1) ... 195s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 195s Setting up python3.12-minimal (3.12.9-1) ... 195s Setting up libodbcinst2:s390x (2.3.12-2ubuntu1) ... 195s Setting up liblapack3:s390x (3.12.1-2) ... 195s update-alternatives: using /usr/lib/s390x-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/s390x-linux-gnu/liblapack.so.3 (liblapack.so.3-s390x-linux-gnu) in auto mode 195s Setting up gettext (0.23.1-1) ... 195s Setting up libarpack2t64:s390x (3.9.1-4) ... 195s Setting up python3-tinycss2 (1.4.0-1) ... 196s Setting up libzmq5:s390x (4.3.5-1build2) ... 196s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 196s Setting up python3-wsproto (1.2.0-1) ... 196s Setting up python3-jedi (0.19.1+ds1-1) ... 196s Setting up pybuild-plugin-pyproject (6.20250108) ... 196s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 196s Setting up python3-pytest (8.3.4-1) ... 197s Setting up libgeos-c1t64:s390x (3.13.0-1) ... 197s Setting up python3-cligj (0.7.2-2) ... 197s Setting up python3.12 (3.12.9-1) ... 198s Setting up python3-all (3.13.1-1~exp2) ... 198s Setting up python3-nbformat (5.9.1-1) ... 198s Setting up python3-bs4 (4.13.3-1) ... 198s Setting up intltool-debian (0.35.0+20060710.6) ... 198s Setting up python3-bleach (6.2.0-1) ... 199s Setting up python3-matplotlib-inline (0.1.6-2) ... 199s Setting up libkmldom1t64:s390x (1.3.0-12build1) ... 199s Setting up pandoc (3.1.11.1+ds-2) ... 199s Setting up python3-pexpect (4.9-3) ... 199s Setting up python3-zmq (26.2.1-1) ... 199s Setting up python3-botocore (1.36.9+repack-1) ... 200s Setting up python3-vcr (7.0.0-2) ... 200s Setting up python3-numpy (1:1.26.4+ds-13) ... 204s Setting up libjs-sphinxdoc (8.1.3-5) ... 204s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 204s Setting up cpp-14 (14.2.0-17ubuntu1) ... 204s Setting up libhdf4-0-alt:s390x (4.3.0-1) ... 204s Setting up dh-strip-nondeterminism (1.14.1-2) ... 204s Setting up librttopo1:s390x (1.1.0-3build2) ... 204s Setting up libhdf5-310:s390x (1.14.5+repack-3) ... 204s Setting up libfreexl1:s390x (2.0.0-1build2) ... 204s Setting up python3-pytest-mock (3.14.0-2) ... 204s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 204s Setting up xml-core (0.19) ... 204s Setting up python3-jupyter-client (8.6.3-2) ... 205s Setting up libarmadillo14 (1:14.2.3+dfsg-1) ... 205s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 205s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 205s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 205s Setting up libyuv0:s390x (0.0.1904.20250204-1) ... 205s Setting up libpoppler145:s390x (25.01.0-4) ... 205s Setting up python3-pytest-recording (0.13.2-1) ... 205s Setting up libhdf5-hl-310:s390x (1.14.5+repack-3) ... 205s Setting up libavif16:s390x (1.1.1-1ubuntu1) ... 205s Setting up python3-shapely (2.0.7-1) ... 205s Setting up python3-uvicorn (0.32.0-2) ... 205s Setting up python-pystac-doc (1.12.1-1) ... 205s Setting up libproj25:s390x (9.5.1-1) ... 205s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 205s Setting up po-debconf (1.0.21+nmu1) ... 205s Setting up python3-s3transfer (0.11.2-2) ... 206s Setting up libnetcdf22:s390x (1:4.9.3-1) ... 206s Setting up libkmlengine1t64:s390x (1.3.0-12build1) ... 206s Setting up libgeotiff5:s390x (1.7.3-1) ... 206s Setting up python3-nbclient (0.8.0-2) ... 206s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 206s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 206s Setting up python3-ipython (8.30.0-2) ... 207s Setting up sphinx-common (8.1.3-5) ... 207s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 207s Setting up python3-boto3 (1.36.0+dfsg-1) ... 207s Setting up python3-nbconvert (7.16.6-1) ... 207s Setting up cpp (4:14.2.0-1ubuntu1) ... 207s Setting up libspatialite8t64:s390x (5.1.0-3build1) ... 207s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 207s Setting up gcc-14 (14.2.0-17ubuntu1) ... 207s Setting up g++-14 (14.2.0-17ubuntu1) ... 207s Setting up libtool (2.5.4-3build1) ... 207s Setting up gcc (4:14.2.0-1ubuntu1) ... 207s Setting up dh-autoreconf (20) ... 207s Setting up g++ (4:14.2.0-1ubuntu1) ... 207s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 207s Setting up build-essential (12.10ubuntu1) ... 207s Setting up debhelper (13.24.1ubuntu2) ... 207s Setting up pybuild-plugin-autopkgtest (6.20250108) ... 207s Setting up libheif-plugin-aomdec:s390x (1.19.5-1build1) ... 207s Setting up libheif1:s390x (1.19.5-1build1) ... 207s Setting up libgdal36:s390x (3.10.2+dfsg-1build1) ... 207s Setting up libheif-plugin-libde265:s390x (1.19.5-1build1) ... 207s Setting up python3-rasterio (1.4.3-1build2) ... 207s Processing triggers for install-info (7.1.1-1) ... 207s Processing triggers for libc-bin (2.40-4ubuntu1) ... 208s Processing triggers for systemd (257.2-3ubuntu1) ... 208s Processing triggers for man-db (2.13.0-1) ... 209s Processing triggers for sgml-base (1.31) ... 209s Setting up docutils-common (0.21.2+dfsg-2) ... 209s Processing triggers for sgml-base (1.31) ... 209s Setting up python3-docutils (0.21.2+dfsg-2) ... 210s Setting up python3-sphinx (8.1.3-5) ... 211s Setting up python3-sphinx-autobuild (2024.10.03-1) ... 211s Setting up python3-sphinx-design (0.6.1-1) ... 211s Setting up python3-nbsphinx (0.9.5+ds-1) ... 212s Setting up python3-pydata-sphinx-theme (0.16.1+dfsg-1) ... 212s autopkgtest: DBG: testbed command exited with code 0 212s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pystac'], kind short, sout pipe, serr pipe, env [] 212s autopkgtest: DBG: testbed command exited with code 0 212s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python-pystac-doc'], kind short, sout pipe, serr pipe, env [] 212s autopkgtest: DBG: testbed command exited with code 0 212s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.GJSbAy/pybuild-autopkgtest-packages.all"], kind short, sout raw, serr pipe, env [] 213s autopkgtest: DBG: testbed command exited with code 0 213s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.GJSbAy/pybuild-autopkgtest-packages.all /tmp/autopkgtest-work.le4hm7ca/out/pybuild-autopkgtest-packages.all 213s autopkgtest: DBG: got reply from testbed: ok 213s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.GJSbAy/build.uXH/src'], kind short, sout raw, serr raw, env [] 213s autopkgtest: DBG: testbed command exited with code 0 213s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.GJSbAy/build.uXH/src already exists 213s autopkgtest [12:33:13]: test pybuild-autopkgtest: pybuild-autopkgtest 213s autopkgtest [12:33:13]: test pybuild-autopkgtest: [----------------------- 213s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.GJSbAy/wrapper.sh --debug --artifacts=/tmp/autopkgtest.GJSbAy/pybuild-autopkgtest-artifacts --chdir=/tmp/autopkgtest.GJSbAy/build.uXH/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.GJSbAy/pybuild-autopkgtest-stderr --stdout=/tmp/autopkgtest.GJSbAy/pybuild-autopkgtest-stdout --tmp=/tmp/autopkgtest.GJSbAy/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec pybuild-autopkgtest'], kind test, sout raw, serr raw, env [] 213s /tmp/autopkgtest.GJSbAy/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.GJSbAy/pybuild-autopkgtest-artifacts 213s /tmp/autopkgtest.GJSbAy/wrapper.sh: changing to directory: /tmp/autopkgtest.GJSbAy/build.uXH/src 213s /tmp/autopkgtest.GJSbAy/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 213s /tmp/autopkgtest.GJSbAy/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 213s /tmp/autopkgtest.GJSbAy/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 213s /tmp/autopkgtest.GJSbAy/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 213s /tmp/autopkgtest.GJSbAy/wrapper.sh: setting environment: LANG=C.UTF-8 213s /tmp/autopkgtest.GJSbAy/wrapper.sh: unsetting environment: LANGUAGE 213s /tmp/autopkgtest.GJSbAy/wrapper.sh: unsetting environment: LC_ADDRESS 213s /tmp/autopkgtest.GJSbAy/wrapper.sh: unsetting environment: LC_ALL 213s /tmp/autopkgtest.GJSbAy/wrapper.sh: unsetting environment: LC_COLLATE 213s /tmp/autopkgtest.GJSbAy/wrapper.sh: unsetting environment: LC_CTYPE 213s /tmp/autopkgtest.GJSbAy/wrapper.sh: unsetting environment: LC_IDENTIFICATION 213s /tmp/autopkgtest.GJSbAy/wrapper.sh: unsetting environment: LC_MEASUREMENT 213s /tmp/autopkgtest.GJSbAy/wrapper.sh: unsetting environment: LC_MESSAGES 213s /tmp/autopkgtest.GJSbAy/wrapper.sh: unsetting environment: LC_MONETARY 213s /tmp/autopkgtest.GJSbAy/wrapper.sh: unsetting environment: LC_NAME 213s /tmp/autopkgtest.GJSbAy/wrapper.sh: unsetting environment: LC_NUMERIC 213s /tmp/autopkgtest.GJSbAy/wrapper.sh: unsetting environment: LC_PAPER 213s /tmp/autopkgtest.GJSbAy/wrapper.sh: unsetting environment: LC_TELEPHONE 213s /tmp/autopkgtest.GJSbAy/wrapper.sh: unsetting environment: LC_TIME 213s /tmp/autopkgtest.GJSbAy/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 213s /tmp/autopkgtest.GJSbAy/wrapper.sh: pretending to be a login shell 213s /tmp/autopkgtest.GJSbAy/wrapper.sh: will write standard error to /tmp/autopkgtest.GJSbAy/pybuild-autopkgtest-stderr 213s /tmp/autopkgtest.GJSbAy/wrapper.sh: will write stdout to /tmp/autopkgtest.GJSbAy/pybuild-autopkgtest-stdout 213s /tmp/autopkgtest.GJSbAy/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.GJSbAy/autopkgtest_tmp 213s /tmp/autopkgtest.GJSbAy/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 213s /tmp/autopkgtest.GJSbAy/wrapper.sh: command to run: bash -ec pybuild-autopkgtest 213s /tmp/autopkgtest.GJSbAy/wrapper.sh: copying /tmp/tmp.N16QizBI7z/out to stdout and file: /tmp/autopkgtest.GJSbAy/pybuild-autopkgtest-stdout 213s /tmp/autopkgtest.GJSbAy/wrapper.sh: copying /tmp/tmp.N16QizBI7z/err to standard error and file: /tmp/autopkgtest.GJSbAy/pybuild-autopkgtest-stdout 213s /tmp/autopkgtest.GJSbAy/wrapper.sh: writing script pid 4673 to /tmp/autopkgtest_script_pid 213s pybuild-autopkgtest 214s I: pybuild base:311: cd /tmp/autopkgtest.GJSbAy/autopkgtest_tmp/build; python3.12 -m pytest -k "not test_read_remote and not test_validate and not test_null_geometry and not test_non_hierarchical_relative_link and not test_apply_bitfields and not test_set_variables and not test_set_dimensions and not test_asset_bands and not test_bands and not test_cloud_cover and not test_set_field and not test_attributes and not test_modify and not test_collection_validate and not test_item_validate and not test_all and not test_required and not test_assets and not test_migrate_from_v2_0_0 and not test_migrate_from_v1_0_0 and not test_add_version and not test_version_in_properties and not test_add_not_deprecated_version and not test_add_deprecated_version and not test_latest and not test_predecessor and not test_successor and not test_collection_add_version and not test_catalog_add_version and not test_catalog_validate_all and not test_optional_version and not PointcloudTest and not SatTest and not ItemScientificExtensionTest and not CollectionScientificExtensionTest and not AssetStorageExtensionTest and not TimestampsTest and not ViewTest and not ProjectionTest and not test_get_schema_uri and not test_testcases and not test_apply_classes" /tmp/autopkgtest.GJSbAy/build.uXH/src/tests 216s ============================= test session starts ============================== 216s platform linux -- Python 3.12.9, pytest-8.3.4, pluggy-1.5.0 216s rootdir: /tmp/autopkgtest.GJSbAy/build.uXH/src 216s configfile: pyproject.toml 216s plugins: requests_mock-1.12.1, recording-0.13.2, mock-3.14.0, anyio-4.7.0, typeguard-4.4.1 216s collected 1443 items / 358 deselected / 1085 selected 216s 216s ../../build.uXH/src/tests/extensions/test_classification.py ............ [ 1%] 216s .... [ 1%] 216s ../../build.uXH/src/tests/extensions/test_custom.py ....... [ 2%] 216s ../../build.uXH/src/tests/extensions/test_datacube.py .................. [ 3%] 216s ......... [ 4%] 216s ../../build.uXH/src/tests/extensions/test_eo.py ........................ [ 6%] 216s ......... [ 7%] 217s ../../build.uXH/src/tests/extensions/test_ext.py ....................... [ 9%] 217s ........................ [ 11%] 217s ../../build.uXH/src/tests/extensions/test_file.py .................. [ 13%] 217s ../../build.uXH/src/tests/extensions/test_grid.py .......... [ 14%] 217s ../../build.uXH/src/tests/extensions/test_mgrs.py .............. [ 15%] 217s ../../build.uXH/src/tests/extensions/test_pointcloud.py ..... [ 16%] 217s ../../build.uXH/src/tests/extensions/test_projection.py .............. [ 17%] 217s ../../build.uXH/src/tests/extensions/test_raster.py ....... [ 18%] 217s ../../build.uXH/src/tests/extensions/test_render.py ................ [ 19%] 217s ../../build.uXH/src/tests/extensions/test_sar.py .................... [ 21%] 217s ../../build.uXH/src/tests/extensions/test_sat.py ...... [ 22%] 217s ../../build.uXH/src/tests/extensions/test_scientific.py .......... [ 23%] 217s ../../build.uXH/src/tests/extensions/test_storage.py ............. [ 24%] 217s ../../build.uXH/src/tests/extensions/test_table.py ........ [ 24%] 217s ../../build.uXH/src/tests/extensions/test_timestamps.py ..... [ 25%] 217s ../../build.uXH/src/tests/extensions/test_version.py ................ [ 26%] 217s ../../build.uXH/src/tests/extensions/test_view.py ........... [ 27%] 217s ../../build.uXH/src/tests/extensions/test_xarray_assets.py ............. [ 29%] 217s .. [ 29%] 218s ../../build.uXH/src/tests/html/test_html.py .......... [ 30%] 218s ../../build.uXH/src/tests/posix_paths/test_posix_paths.py ...sss [ 30%] 218s ../../build.uXH/src/tests/serialization/test_identify.py ............... [ 32%] 218s ........................................................................ [ 38%] 218s ............................................ [ 42%] 218s ../../build.uXH/src/tests/serialization/test_migrate.py ................ [ 44%] 218s ........................................................................ [ 50%] 218s ............................................. [ 55%] 218s ../../build.uXH/src/tests/test_asset.py .......... [ 56%] 218s ../../build.uXH/src/tests/test_cache.py .... [ 56%] 218s ../../build.uXH/src/tests/test_catalog.py .............................. [ 59%] 220s ........................................................................ [ 65%] 220s .......................... [ 68%] 220s ../../build.uXH/src/tests/test_collection.py ........................... [ 70%] 220s ................ [ 72%] 220s ../../build.uXH/src/tests/test_common_metadata.py ...................... [ 74%] 220s [ 74%] 220s ../../build.uXH/src/tests/test_item.py ................................. [ 77%] 220s ................. [ 78%] 220s ../../build.uXH/src/tests/test_item_assets.py ............. [ 80%] 220s ../../build.uXH/src/tests/test_item_collection.py .................. [ 81%] 220s ../../build.uXH/src/tests/test_layout.py ............................... [ 84%] 220s .............. [ 85%] 220s ../../build.uXH/src/tests/test_link.py ................................. [ 88%] 220s .......... [ 89%] 220s ../../build.uXH/src/tests/test_pystac_client.py s. [ 89%] 220s ../../build.uXH/src/tests/test_stac_io.py .............. [ 91%] 220s ../../build.uXH/src/tests/test_summaries.py ........... [ 92%] 220s ../../build.uXH/src/tests/test_utils.py .....s..s....................... [ 95%] 221s ................................................. [ 99%] 221s ../../build.uXH/src/tests/test_version.py .. [ 99%] 221s ../../build.uXH/src/tests/validation/test_schema_uri_map.py . [100%] 221s 221s =============== 1079 passed, 6 skipped, 358 deselected in 6.82s ================ 221s I: pybuild base:311: cd /tmp/autopkgtest.GJSbAy/autopkgtest_tmp/build; python3.13 -m pytest -k "not test_read_remote and not test_validate and not test_null_geometry and not test_non_hierarchical_relative_link and not test_apply_bitfields and not test_set_variables and not test_set_dimensions and not test_asset_bands and not test_bands and not test_cloud_cover and not test_set_field and not test_attributes and not test_modify and not test_collection_validate and not test_item_validate and not test_all and not test_required and not test_assets and not test_migrate_from_v2_0_0 and not test_migrate_from_v1_0_0 and not test_add_version and not test_version_in_properties and not test_add_not_deprecated_version and not test_add_deprecated_version and not test_latest and not test_predecessor and not test_successor and not test_collection_add_version and not test_catalog_add_version and not test_catalog_validate_all and not test_optional_version and not PointcloudTest and not SatTest and not ItemScientificExtensionTest and not CollectionScientificExtensionTest and not AssetStorageExtensionTest and not TimestampsTest and not ViewTest and not ProjectionTest and not test_get_schema_uri and not test_testcases and not test_apply_classes" /tmp/autopkgtest.GJSbAy/build.uXH/src/tests 224s ============================= test session starts ============================== 224s platform linux -- Python 3.13.2, pytest-8.3.4, pluggy-1.5.0 224s rootdir: /tmp/autopkgtest.GJSbAy/build.uXH/src 224s configfile: pyproject.toml 224s plugins: requests_mock-1.12.1, recording-0.13.2, mock-3.14.0, anyio-4.7.0, typeguard-4.4.1 224s collected 1443 items / 358 deselected / 1085 selected 224s 224s ../../build.uXH/src/tests/extensions/test_classification.py ............ [ 1%] 224s .... [ 1%] 224s ../../build.uXH/src/tests/extensions/test_custom.py ....... [ 2%] 224s ../../build.uXH/src/tests/extensions/test_datacube.py .................. [ 3%] 224s ......... [ 4%] 224s ../../build.uXH/src/tests/extensions/test_eo.py ........................ [ 6%] 224s ......... [ 7%] 224s ../../build.uXH/src/tests/extensions/test_ext.py ....................... [ 9%] 224s ........................ [ 11%] 224s ../../build.uXH/src/tests/extensions/test_file.py .................. [ 13%] 224s ../../build.uXH/src/tests/extensions/test_grid.py .......... [ 14%] 224s ../../build.uXH/src/tests/extensions/test_mgrs.py .............. [ 15%] 224s ../../build.uXH/src/tests/extensions/test_pointcloud.py ..... [ 16%] 224s ../../build.uXH/src/tests/extensions/test_projection.py .............. [ 17%] 224s ../../build.uXH/src/tests/extensions/test_raster.py ....... [ 18%] 224s ../../build.uXH/src/tests/extensions/test_render.py ................ [ 19%] 224s ../../build.uXH/src/tests/extensions/test_sar.py .................... [ 21%] 224s ../../build.uXH/src/tests/extensions/test_sat.py ...... [ 22%] 224s ../../build.uXH/src/tests/extensions/test_scientific.py .......... [ 23%] 224s ../../build.uXH/src/tests/extensions/test_storage.py ............. [ 24%] 224s ../../build.uXH/src/tests/extensions/test_table.py ........ [ 24%] 224s ../../build.uXH/src/tests/extensions/test_timestamps.py ..... [ 25%] 224s ../../build.uXH/src/tests/extensions/test_version.py ................ [ 26%] 224s ../../build.uXH/src/tests/extensions/test_view.py ........... [ 27%] 224s ../../build.uXH/src/tests/extensions/test_xarray_assets.py ............. [ 29%] 224s .. [ 29%] 225s ../../build.uXH/src/tests/html/test_html.py .......... [ 30%] 225s ../../build.uXH/src/tests/posix_paths/test_posix_paths.py ...sss [ 30%] 225s ../../build.uXH/src/tests/serialization/test_identify.py ............... [ 32%] 225s ........................................................................ [ 38%] 225s ............................................ [ 42%] 225s ../../build.uXH/src/tests/serialization/test_migrate.py ................ [ 44%] 225s ........................................................................ [ 50%] 225s ............................................. [ 55%] 225s ../../build.uXH/src/tests/test_asset.py .......... [ 56%] 225s ../../build.uXH/src/tests/test_cache.py .... [ 56%] 225s ../../build.uXH/src/tests/test_catalog.py .............................. [ 59%] 226s ........................................................................ [ 65%] 227s .......................... [ 68%] 227s ../../build.uXH/src/tests/test_collection.py ........................... [ 70%] 227s ................ [ 72%] 227s ../../build.uXH/src/tests/test_common_metadata.py ...................... [ 74%] 227s [ 74%] 227s ../../build.uXH/src/tests/test_item.py ................................. [ 77%] 227s ................. [ 78%] 227s ../../build.uXH/src/tests/test_item_assets.py ............. [ 80%] 227s ../../build.uXH/src/tests/test_item_collection.py .................. [ 81%] 227s ../../build.uXH/src/tests/test_layout.py ............................... [ 84%] 227s .............. [ 85%] 227s ../../build.uXH/src/tests/test_link.py ................................. [ 88%] 227s .......... [ 89%] 227s ../../build.uXH/src/tests/test_pystac_client.py s. [ 89%] 227s ../../build.uXH/src/tests/test_stac_io.py .............. [ 91%] 227s ../../build.uXH/src/tests/test_summaries.py ........... [ 92%] 227s ../../build.uXH/src/tests/test_utils.py .....s..s....................... [ 95%] 228s ................................................. [ 99%] 228s ../../build.uXH/src/tests/test_version.py .. [ 99%] 228s ../../build.uXH/src/tests/validation/test_schema_uri_map.py . [100%] 228s 228s =============== 1079 passed, 6 skipped, 358 deselected in 6.29s ================ 228s /tmp/autopkgtest.GJSbAy/wrapper.sh: checking for leaked background processes... 228s /tmp/autopkgtest.GJSbAy/wrapper.sh: waiting for tee/cat subprocesses... 228s /tmp/autopkgtest.GJSbAy/wrapper.sh: cleaning up... 228s /tmp/autopkgtest.GJSbAy/wrapper.sh: Exit status: 0 228s autopkgtest: DBG: testbed command exited with code 0 229s autopkgtest [12:33:29]: test pybuild-autopkgtest: -----------------------] 229s autopkgtest: DBG: testbed executing test finished with exit status 0 229s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.GJSbAy/pybuild-autopkgtest-stdout /tmp/autopkgtest-work.le4hm7ca/out/pybuild-autopkgtest-stdout 229s autopkgtest: DBG: got reply from testbed: ok 229s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.GJSbAy/pybuild-autopkgtest-stderr /tmp/autopkgtest-work.le4hm7ca/out/pybuild-autopkgtest-stderr 229s autopkgtest: DBG: got reply from testbed: ok 229s autopkgtest [12:33:29]: test pybuild-autopkgtest: - - - - - - - - - - results - - - - - - - - - - 229s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.GJSbAy/pybuild-autopkgtest-artifacts/ /tmp/autopkgtest-work.le4hm7ca/out/artifacts/ 229s pybuild-autopkgtest PASS 229s autopkgtest: DBG: got reply from testbed: ok 229s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.GJSbAy/pybuild-autopkgtest-artifacts', '/tmp/autopkgtest.GJSbAy/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 229s autopkgtest: DBG: testbed command exited with code 0 229s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 229s autopkgtest [12:33:29]: @@@@@@@@@@@@@@@@@@@@ summary 229s pybuild-autopkgtest PASS 229s autopkgtest: DBG: testbed stop 229s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.GJSbAy 229s autopkgtest: DBG: sending command to testbed: close 247s autopkgtest: DBG: got reply from testbed: ok 247s autopkgtest: DBG: sending command to testbed: quit 247s nova [W] Using flock in prodstack6-s390x 247s Creating nova instance adt-plucky-s390x-pystac-20250219-122939-juju-7f2275-prod-proposed-migration-environment-15-01d7961d-e470-4723-894f-a62e51c21085 from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 247s nova [W] Timed out waiting for 78b41fbb-ea27-4ee8-b419-7f081814f142 to get deleted.