0s autopkgtest: DBG: testbed init 0s autopkgtest [12:26:51]: starting date and time: 2025-02-19 12:26:51+0000 0s autopkgtest [12:26:51]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [12:26:51]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.u5acv382/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:sphinx --apt-upgrade pyepr --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-5.secgroup --name adt-plucky-s390x-pyepr-20250219-122651-juju-7f2275-prod-proposed-migration-environment-15-8a738da2-1e4a-45ee-9f25-b9803527f2fa --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 114s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.oUusQr 114s autopkgtest: DBG: sending command to testbed: print-execute-command 114s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.w4qrj_5n/runcmd 114s autopkgtest: DBG: sending command to testbed: capabilities 114s autopkgtest: DBG: got reply from testbed: ok isolation-machine revert revert-full-system suggested-normal-user=ubuntu reboot root-on-testbed 114s autopkgtest: DBG: testbed capabilities: ['isolation-machine', 'revert', 'revert-full-system', 'suggested-normal-user=ubuntu', 'reboot', 'root-on-testbed', 'has_internet'] 114s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.oUusQr'], kind short, sout raw, serr pipe, env [] 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.oUusQr/wrapper.sh 115s autopkgtest: DBG: got reply from testbed: ok 115s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.oUusQr/wrapper.sh'], kind short, sout raw, serr pipe, env [] 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest [12:28:46]: testbed dpkg architecture: s390x 115s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest [12:28:46]: testbed apt version: 2.9.30 115s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest: DBG: testbed has eatmydata 115s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest [12:28:47]: @@@@@@@@@@@@@@@@@@@@ test bed setup 116s 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 [] 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest [12:28:47]: testbed release detected to be: None 116s 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 [] 116s autopkgtest: DBG: testbed command exited with code 0 116s 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 [] 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest: DBG: adding APT source: Types: deb deb-src 116s URIs: http://ftpmaster.internal/ubuntu/ 116s Suites: plucky-proposed 116s Components: main restricted universe multiverse 116s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 116s 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 [] 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 116s Package: * 116s Pin: release plucky-proposed 116s Pin-Priority: 500 116s 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 [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest [12:28:48]: updating testbed package index (apt update) 117s 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'] 117s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 117s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 117s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 117s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 117s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 117s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 118s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 118s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 118s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 118s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 118s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 118s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 118s Fetched 1700 kB in 1s (1763 kB/s) 119s Reading package lists... 119s autopkgtest: DBG: testbed command exited with code 0 119s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 119s Package: * 119s Pin: release plucky-proposed 119s Pin-Priority: 100 119s 119s Package: src:sphinx:any 119s Pin: release plucky-proposed 119s Pin-Priority: 995 119s 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 [] 119s autopkgtest: DBG: testbed command exited with code 0 119s 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.oUusQr/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 119s autopkgtest: DBG: testbed command exited with code 0 119s 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'] 119s + lsb_release --codename --short 119s + RELEASE=plucky 119s + cat 119s + [ plucky != trusty ] 119s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 119s Reading package lists... 119s Building dependency tree... 119s Reading state information... 120s Calculating upgrade... 120s The following packages were automatically installed and are no longer required: 120s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 120s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 120s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 120s linux-tools-6.11.0-8-generic 120s Use 'sudo apt autoremove' to remove them. 120s The following packages will be upgraded: 120s iproute2 liblsof0 libp11-kit0 lsof 120s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 120s Need to get 1791 kB of archives. 120s After this operation, 17.4 kB of additional disk space will be used. 120s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 120s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 120s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 120s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 121s Preconfiguring packages ... 121s Fetched 1791 kB in 1s (2129 kB/s) 121s (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.) 121s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 121s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 121s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 121s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 121s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 121s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 121s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 121s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 121s Setting up liblsof0 (4.99.4+dfsg-1) ... 121s Setting up iproute2 (6.13.0-1ubuntu1) ... 121s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 121s Setting up lsof (4.99.4+dfsg-1) ... 121s Processing triggers for man-db (2.13.0-1) ... 122s Processing triggers for libc-bin (2.40-4ubuntu1) ... 122s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 122s + /usr/lib/apt/apt-helper analyze-pattern ?true 122s + uname -r 122s + sed s/\./\\./g 122s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 122s + apt list ?obsolete 122s + tail -n+2 122s + cut -d/ -f1 122s + grep -v ^linux-.*6\.12\.0-15-generic.* 122s + true 122s + obsolete_pkgs= 122s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 122s Reading package lists... 122s Building dependency tree... 122s Reading state information... 123s The following packages will be REMOVED: 123s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 123s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 123s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 123s linux-tools-6.11.0-8-generic* 123s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 123s After this operation, 167 MB disk space will be freed. 123s (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.) 123s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 123s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 123s Removing libpython3.12t64:s390x (3.12.9-1) ... 123s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 123s Removing libnsl2:s390x (1.3.0-3build3) ... 123s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 123s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 123s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 124s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 125s Processing triggers for libc-bin (2.40-4ubuntu1) ... 125s (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.) 125s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 125s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 125s + grep -q trusty /etc/lsb-release 125s + [ ! -d /usr/share/doc/unattended-upgrades ] 125s + [ ! -d /usr/share/doc/lxd ] 125s + [ ! -d /usr/share/doc/lxd-client ] 125s + [ ! -d /usr/share/doc/snapd ] 125s + type iptables 125s + cat 125s + chmod 755 /etc/rc.local 125s + . /etc/rc.local 125s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 125s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 125s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 125s + uname -m 125s + [ s390x = ppc64le ] 125s + [ -d /run/systemd/system ] 125s + systemd-detect-virt --quiet --vm 125s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 125s + cat 125s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 125s + echo COMPRESS=lz4 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest [12:28:56]: upgrading testbed (apt dist-upgrade and autopurge) 125s 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'] 125s Reading package lists... 125s Building dependency tree... 125s Reading state information... 125s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 125s Starting 2 pkgProblemResolver with broken count: 0 125s Done 126s Entering ResolveByKeep 126s 126s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 126s autopkgtest: DBG: testbed command exited with code 0 126s 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'] 126s Reading package lists... 127s Building dependency tree... 127s Reading state information... 127s Starting pkgProblemResolver with broken count: 0 127s Starting 2 pkgProblemResolver with broken count: 0 127s Done 127s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 127s autopkgtest: DBG: testbed command exited with code 0 127s 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.oUusQr/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 127s autopkgtest: DBG: testbed command exited with code 1 127s autopkgtest [12:28:58]: rebooting testbed after setup commands that affected boot 127s autopkgtest: DBG: sending command to testbed: reboot 146s autopkgtest: DBG: got reply from testbed: ok 146s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 146s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.oUusQr'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.oUusQr/autopkgtest-reboot 146s autopkgtest: DBG: got reply from testbed: ok 146s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.oUusQr/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.oUusQr/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.oUusQr/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.oUusQr'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.oUusQr/autopkgtest-reboot-prepare 147s autopkgtest: DBG: got reply from testbed: ok 147s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.oUusQr/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.oUusQr/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest [12:29:18]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 147s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.oUusQr/testbed-packages"], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.oUusQr/testbed-packages /tmp/autopkgtest-work.u5acv382/out/testbed-packages 148s autopkgtest: DBG: got reply from testbed: ok 148s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 148s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.oUusQr'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.oUusQr/autopkgtest-reboot 148s autopkgtest: DBG: got reply from testbed: ok 148s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.oUusQr/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.oUusQr/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.oUusQr/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.oUusQr'], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.oUusQr/autopkgtest-reboot-prepare 149s autopkgtest: DBG: got reply from testbed: ok 149s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.oUusQr/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.oUusQr/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: Binaries: initialising 150s autopkgtest [12:29:21]: @@@@@@@@@@@@@@@@@@@@ apt-source pyepr 150s autopkgtest: DBG: blame += pyepr 150s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 150s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'pyepr'], kind short, sout pipe, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python-epr-doc$'], kind short, sout pipe, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python-epr-doc=1.1.5-2build3'], kind short, sout pipe, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-epr$'], kind short, sout pipe, serr raw, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-epr=1.1.5-2build3'], kind short, sout pipe, serr raw, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: install_deps: deps_new=[] 151s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s 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.oUusQr/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source pyepr=1.1.5-2build3 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 pyepr_*.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'] 151s + cd / 151s + mktemp -d /tmp/autopkgtest.oUusQr/build.XXX 151s + builddir=/tmp/autopkgtest.oUusQr/build.TNr 151s + cd /tmp/autopkgtest.oUusQr/build.TNr 151s + apt-get source -d -q --only-source pyepr=1.1.5-2build3 152s + OUT=Reading package lists... 152s NOTICE: 'pyepr' packaging is maintained in the 'Git' version control system at: 152s https://salsa.debian.org/debian-gis-team/pyepr.git 152s Please use: 152s git clone https://salsa.debian.org/debian-gis-team/pyepr.git 152s to retrieve the latest (possibly unreleased) updates to the package. 152s Need to get 511 kB of source archives. 152s Get:1 http://ftpmaster.internal/ubuntu plucky/universe pyepr 1.1.5-2build3 (dsc) [2900 B] 152s Get:2 http://ftpmaster.internal/ubuntu plucky/universe pyepr 1.1.5-2build3 (tar) [501 kB] 152s Get:3 http://ftpmaster.internal/ubuntu plucky/universe pyepr 1.1.5-2build3 (diff) [6980 B] 152s Fetched 511 kB in 1s (818 kB/s) 152s Download complete and in download only mode 152s + [ -n ] 152s + echo Reading package lists... 152s NOTICE: 'pyepr' packaging is maintained in the 'Git' version control system at: 152s https://salsa.debian.org/debian-gis-team/pyepr.git 152s Please use: 152s git clone https://salsa.debian.org/debian-gis-team/pyepr.git 152s to retrieve the latest (possibly unreleased) updates to the package. 152s Need to get 511 kB of source archives. 152s Get:1 http://ftpmaster.internal/ubuntu plucky/universe pyepr 1.1.5-2build3 (dsc) [2900 B] 152s Get:2 http://ftpmaster.internal/ubuntu plucky/universe pyepr 1.1.5-2build3 (tar) [501 kB] 152s Get:3 http://ftpmaster.internal/ubuntu plucky/universe pyepr 1.1.5-2build3 (diff) [6980 B] 152s Fetched 511 kB in 1s (818 kB/s) 152s Download complete and in download only mode 152s + grep ^Get: 152s Get:1 http://ftpmaster.internal/ubuntu plucky/universe pyepr 1.1.5-2build3 (dsc) [2900 B] 152s Get:2 http://ftpmaster.internal/ubuntu plucky/universe pyepr 1.1.5-2build3 (tar) [501 kB] 152s Get:3 http://ftpmaster.internal/ubuntu plucky/universe pyepr 1.1.5-2build3 (diff) [6980 B] 152s + dpkg-source -x pyepr_1.1.5-2build3.dsc src 152s gpgv: Signature made Tue Jan 28 11:36:08 2025 UTC 152s gpgv: using RSA key 25E3FF2D7F469DBE7D0D4E50AFCFEC8E669CE1C2 152s gpgv: Can't check signature: No public key 152s dpkg-source: warning: cannot verify inline signature for ./pyepr_1.1.5-2build3.dsc: no acceptable signature found 152s + chmod -R a+rX . 152s + cd src/. 152s + pwd 152s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest [12:29:23]: testing package pyepr version 1.1.5-2build3 152s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.oUusQr/build.TNr/src/debian/ /tmp/autopkgtest-work.u5acv382/out/pkg/debian/ 152s autopkgtest: DBG: got reply from testbed: ok 152s autopkgtest: DBG: autodep8 generated control: ----- 152s Test-Command: pybuild-autopkgtest 152s Depends: @, pybuild-plugin-autopkgtest, @builddeps@, 152s Restrictions: allow-stderr, skippable, 152s Features: test-name=pybuild-autopkgtest 152s 152s ------- 153s autopkgtest: DBG: processing dependency @ 153s autopkgtest: DBG: synthesised dependency python3-epr 153s autopkgtest: DBG: synthesised dependency python-epr-doc 153s autopkgtest: DBG: processing dependency pybuild-plugin-autopkgtest 153s autopkgtest: DBG: processing dependency @builddeps@ 153s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 153s autopkgtest: DBG: synthesised dependency dh-python 153s autopkgtest: DBG: synthesised dependency dh-sequence-numpy3 153s autopkgtest: DBG: synthesised dependency dh-sequence-python3 153s autopkgtest: DBG: synthesised dependency dh-sequence-sphinxdoc 153s autopkgtest: DBG: synthesised dependency cython3 153s autopkgtest: DBG: synthesised dependency libepr-api-dev 153s autopkgtest: DBG: synthesised dependency pybuild-plugin-pyproject 153s autopkgtest: DBG: synthesised dependency python3-all-dev 153s autopkgtest: DBG: synthesised dependency python3-doc 153s autopkgtest: DBG: synthesised dependency python3-ipython 153s autopkgtest: DBG: synthesised dependency python3-numpy 153s autopkgtest: DBG: synthesised dependency python3-packaging 153s autopkgtest: DBG: synthesised dependency python3-setuptools 153s autopkgtest: DBG: synthesised dependency python3-sphinx 153s autopkgtest: DBG: synthesised dependency python3-sphinx-rtd-theme 153s autopkgtest: DBG: synthesised dependency texlive-latex-extra 153s autopkgtest: DBG: synthesised dependency build-essential 153s autopkgtest: DBG: Test defined: name pybuild-autopkgtest path None command "pybuild-autopkgtest" restrictions ['allow-stderr', 'skippable'] features ['test-name=pybuild-autopkgtest'] depends ['python3-epr', 'python-epr-doc', 'pybuild-plugin-autopkgtest', 'debhelper-compat (= 13)', 'dh-python', 'dh-sequence-numpy3', 'dh-sequence-python3', 'dh-sequence-sphinxdoc', 'cython3', 'libepr-api-dev', 'pybuild-plugin-pyproject', 'python3-all-dev', 'python3-doc ', 'python3-ipython ', 'python3-numpy', 'python3-packaging', 'python3-setuptools', 'python3-sphinx ', 'python3-sphinx-rtd-theme ', 'texlive-latex-extra ', 'build-essential'] 153s autopkgtest [12:29:24]: build not needed 153s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.oUusQr/build.TNr/src/ /tmp/autopkgtest-work.u5acv382/out/tests-tree/ 153s autopkgtest: DBG: got reply from testbed: ok 153s autopkgtest: DBG: autodep8 generated control: ----- 153s Test-Command: pybuild-autopkgtest 153s Depends: @, pybuild-plugin-autopkgtest, @builddeps@, 153s Restrictions: allow-stderr, skippable, 153s Features: test-name=pybuild-autopkgtest 153s 153s ------- 153s autopkgtest: DBG: processing dependency @ 153s autopkgtest: DBG: synthesised dependency python3-epr 153s autopkgtest: DBG: synthesised dependency python-epr-doc 153s autopkgtest: DBG: processing dependency pybuild-plugin-autopkgtest 153s autopkgtest: DBG: processing dependency @builddeps@ 153s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 153s autopkgtest: DBG: synthesised dependency dh-python 153s autopkgtest: DBG: synthesised dependency dh-sequence-numpy3 153s autopkgtest: DBG: synthesised dependency dh-sequence-python3 153s autopkgtest: DBG: synthesised dependency dh-sequence-sphinxdoc 153s autopkgtest: DBG: synthesised dependency cython3 153s autopkgtest: DBG: synthesised dependency libepr-api-dev 153s autopkgtest: DBG: synthesised dependency pybuild-plugin-pyproject 153s autopkgtest: DBG: synthesised dependency python3-all-dev 153s autopkgtest: DBG: synthesised dependency python3-doc 153s autopkgtest: DBG: synthesised dependency python3-ipython 153s autopkgtest: DBG: synthesised dependency python3-numpy 153s autopkgtest: DBG: synthesised dependency python3-packaging 153s autopkgtest: DBG: synthesised dependency python3-setuptools 153s autopkgtest: DBG: synthesised dependency python3-sphinx 153s autopkgtest: DBG: synthesised dependency python3-sphinx-rtd-theme 153s autopkgtest: DBG: synthesised dependency texlive-latex-extra 153s autopkgtest: DBG: synthesised dependency build-essential 153s autopkgtest: DBG: Test defined: name pybuild-autopkgtest path None command "pybuild-autopkgtest" restrictions ['allow-stderr', 'skippable'] features ['test-name=pybuild-autopkgtest'] depends ['python3-epr', 'python-epr-doc', 'pybuild-plugin-autopkgtest', 'debhelper-compat (= 13)', 'dh-python', 'dh-sequence-numpy3', 'dh-sequence-python3', 'dh-sequence-sphinxdoc', 'cython3', 'libepr-api-dev', 'pybuild-plugin-pyproject', 'python3-all-dev', 'python3-doc ', 'python3-ipython ', 'python3-numpy', 'python3-packaging', 'python3-setuptools', 'python3-sphinx ', 'python3-sphinx-rtd-theme ', 'texlive-latex-extra ', 'build-essential'] 153s autopkgtest [12:29:24]: test pybuild-autopkgtest: preparing testbed 153s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['python3-epr', 'python-epr-doc', 'pybuild-plugin-autopkgtest', 'debhelper-compat (= 13)', 'dh-python', 'dh-sequence-numpy3', 'dh-sequence-python3', 'dh-sequence-sphinxdoc', 'cython3', 'libepr-api-dev', 'pybuild-plugin-pyproject', 'python3-all-dev', 'python3-doc ', 'python3-ipython ', 'python3-numpy', 'python3-packaging', 'python3-setuptools', 'python3-sphinx ', 'python3-sphinx-rtd-theme ', 'texlive-latex-extra ', 'build-essential'] 153s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 153s autopkgtest: DBG: install_deps: deps_new=['python3-epr', 'python-epr-doc', 'pybuild-plugin-autopkgtest', 'debhelper-compat (= 13)', 'dh-python', 'dh-sequence-numpy3', 'dh-sequence-python3', 'dh-sequence-sphinxdoc', 'cython3', 'libepr-api-dev', 'pybuild-plugin-pyproject', 'python3-all-dev', 'python3-doc ', 'python3-ipython ', 'python3-numpy', 'python3-packaging', 'python3-setuptools', 'python3-sphinx ', 'python3-sphinx-rtd-theme ', 'texlive-latex-extra ', 'build-essential'] 153s autopkgtest: DBG: install-deps: satisfying python3-epr, python-epr-doc, pybuild-plugin-autopkgtest, debhelper-compat (= 13), dh-python, dh-sequence-numpy3, dh-sequence-python3, dh-sequence-sphinxdoc, cython3, libepr-api-dev, pybuild-plugin-pyproject, python3-all-dev, python3-doc , python3-ipython , python3-numpy, python3-packaging, python3-setuptools, python3-sphinx , python3-sphinx-rtd-theme , texlive-latex-extra , build-essential 153s autopkgtest: DBG: can use apt-get on testbed: True 153s 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-epr, python-epr-doc, pybuild-plugin-autopkgtest, debhelper-compat (= 13), dh-python, dh-sequence-numpy3, dh-sequence-python3, dh-sequence-sphinxdoc, cython3, libepr-api-dev, pybuild-plugin-pyproject, python3-all-dev, python3-doc , python3-ipython , python3-numpy, python3-packaging, python3-setuptools, python3-sphinx , python3-sphinx-rtd-theme , texlive-latex-extra , build-essential'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 153s Reading package lists... 154s Building dependency tree... 154s Reading state information... 154s Starting pkgProblemResolver with broken count: 0 154s Starting 2 pkgProblemResolver with broken count: 0 154s Done 154s The following NEW packages will be installed: 154s autoconf automake autopoint autotools-dev build-essential cpp cpp-14 154s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu cython3 debhelper debugedit 154s dh-autoreconf dh-python dh-strip-nondeterminism docutils-common dwz 154s fontconfig-config fonts-dejavu-core fonts-dejavu-mono fonts-font-awesome 154s fonts-lato fonts-lmodern g++ g++-14 g++-14-s390x-linux-gnu 154s g++-s390x-linux-gnu gcc gcc-14 gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu 154s gettext intltool-debian libapache-pom-java libarchive-zip-perl libasan8 154s libblas3 libcairo2 libcc1-0 libcommons-logging-java libcommons-parent-java 154s libdebhelper-perl libepr-api-dev libepr-api2 libexpat1-dev 154s libfile-stripnondeterminism-perl libfontbox-java libfontconfig1 libfreetype6 154s libgcc-14-dev libgfortran5 libgomp1 libgraphite2-3 libharfbuzz0b libice6 154s libisl23 libitm1 libjs-jquery libjs-sphinxdoc libjs-underscore libjson-perl 154s libkpathsea6 liblapack3 libmpc3 libmpfi0 libnsl2 libpaper-utils libpaper2 154s libpdfbox-java libpixman-1-0 libpotrace0 libptexenc1 libpython3-all-dev 154s libpython3-dev libpython3.12-dev libpython3.12-minimal libpython3.12-stdlib 154s libpython3.12t64 libpython3.13-dev libsm6 libstdc++-14-dev libsynctex2 154s libteckit0 libtexlua53-5 libtool libubsan1 libxaw7 libxcb-render0 154s libxcb-shm0 libxi6 libxmu6 libxpm4 libxrender1 libxt6t64 libzzip-0-13t64 m4 154s po-debconf preview-latex-style pybuild-plugin-autopkgtest 154s pybuild-plugin-pyproject python-epr-doc python3-alabaster python3-all 154s python3-all-dev python3-asttokens python3-build python3-decorator 154s python3-defusedxml python3-dev python3-doc python3-docutils python3-epr 154s python3-executing python3-imagesize python3-installer python3-ipython 154s python3-jedi python3-matplotlib-inline python3-numpy python3-packaging 154s python3-parso python3-pexpect python3-prompt-toolkit python3-ptyprocess 154s python3-pure-eval python3-pyproject-hooks python3-roman 154s python3-snowballstemmer python3-sphinx python3-sphinx-rtd-theme 154s python3-sphinxcontrib.jquery python3-stack-data python3-toml 154s python3-traitlets python3-typeshed python3-wcwidth python3-wheel python3.12 154s python3.12-dev python3.12-minimal python3.13-dev python3.13-doc sgml-base 154s sphinx-common sphinx-rtd-theme-common t1utils tex-common texlive-base 154s texlive-binaries texlive-latex-base texlive-latex-extra 154s texlive-latex-recommended texlive-pictures x11-common xdg-utils xml-core 154s zlib1g-dev 154s 0 upgraded, 157 newly installed, 0 to remove and 0 not upgraded. 154s Need to get 212 MB of archives. 154s After this operation, 788 MB of additional disk space will be used. 154s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 155s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 155s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-lato all 2.015-1 [2781 kB] 156s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x sgml-base all 1.31 [11.4 kB] 156s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 156s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 156s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 156s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 156s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 156s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 156s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 156s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 156s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 156s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 156s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 157s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 157s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 157s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 157s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 15-20250213-1ubuntu1 [49.2 kB] 157s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 157s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 15-20250213-1ubuntu1 [31.2 kB] 157s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 15-20250213-1ubuntu1 [2970 kB] 157s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 15-20250213-1ubuntu1 [1213 kB] 157s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 157s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 158s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 158s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 158s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 158s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 158s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 159s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 159s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 159s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 159s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 159s Get:35 http://ftpmaster.internal/ubuntu plucky/universe s390x cython3 s390x 3.0.11+dfsg-2ubuntu1 [3276 kB] 159s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 159s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 159s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 159s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 159s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 159s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 159s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 159s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 159s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 159s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 159s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 159s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 159s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x dh-python all 6.20250108 [117 kB] 159s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x xml-core all 0.19 [20.3 kB] 159s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x docutils-common all 0.21.2+dfsg-2 [131 kB] 159s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 159s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 159s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 159s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-font-awesome all 5.0.10+really4.7.0~dfsg-4.1 [516 kB] 159s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x fonts-lmodern all 2.005-1 [4799 kB] 159s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x libapache-pom-java all 33-2 [5874 B] 159s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libblas3 s390x 3.12.1-2 [252 kB] 159s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 159s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 159s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-0 s390x 0.44.0-3 [201 kB] 159s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 159s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 159s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 159s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo2 s390x 1.18.2-2 [580 kB] 159s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x libcommons-parent-java all 56-1 [10.7 kB] 159s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x libcommons-logging-java all 1.3.0-1ubuntu1 [63.8 kB] 159s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x libepr-api2 s390x 2.3~dev20150708-13build1 [125 kB] 159s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x libepr-api-dev s390x 2.3~dev20150708-13build1 [262 kB] 159s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x libexpat1-dev s390x 2.6.4-1 [146 kB] 159s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran5 s390x 15-20250213-1ubuntu1 [620 kB] 159s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 159s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 159s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 159s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 159s Get:75 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 159s Get:76 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB] 159s Get:77 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libjs-sphinxdoc all 8.1.3-5 [31.0 kB] 159s Get:78 http://ftpmaster.internal/ubuntu plucky/main s390x libjson-perl all 4.10000-1 [81.9 kB] 159s Get:79 http://ftpmaster.internal/ubuntu plucky/main s390x libkpathsea6 s390x 2024.20240313.70630+ds-5build2 [66.9 kB] 159s Get:80 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack3 s390x 3.12.1-2 [2971 kB] 159s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x libmpfi0 s390x 1.5.4+ds-4 [34.1 kB] 159s Get:82 http://ftpmaster.internal/ubuntu plucky/main s390x libpaper2 s390x 2.2.5-0.3 [17.2 kB] 159s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x libpaper-utils s390x 2.2.5-0.3 [15.3 kB] 159s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x libpotrace0 s390x 1.16-2build1 [18.7 kB] 159s Get:85 http://ftpmaster.internal/ubuntu plucky/main s390x libptexenc1 s390x 2024.20240313.70630+ds-5build2 [43.4 kB] 159s Get:86 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 159s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.13-dev s390x 3.13.2-1 [5596 kB] 160s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3-dev s390x 3.13.1-1~exp2 [10.5 kB] 160s Get:89 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12t64 s390x 3.12.9-1 [2508 kB] 160s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-dev s390x 3.12.9-1 [5849 kB] 160s Get:91 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3-all-dev s390x 3.13.1-1~exp2 [922 B] 160s Get:92 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 160s Get:93 http://ftpmaster.internal/ubuntu plucky/main s390x libsynctex2 s390x 2024.20240313.70630+ds-5build2 [64.6 kB] 160s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x libteckit0 s390x 2.5.12+ds1-1 [433 kB] 160s Get:95 http://ftpmaster.internal/ubuntu plucky/main s390x libtexlua53-5 s390x 2024.20240313.70630+ds-5build2 [131 kB] 160s Get:96 http://ftpmaster.internal/ubuntu plucky/main s390x libxt6t64 s390x 1:1.2.1-1.2build1 [184 kB] 160s Get:97 http://ftpmaster.internal/ubuntu plucky/main s390x libxmu6 s390x 2:1.1.3-3build2 [53.0 kB] 160s Get:98 http://ftpmaster.internal/ubuntu plucky/main s390x libxpm4 s390x 1:3.5.17-1build2 [41.2 kB] 160s Get:99 http://ftpmaster.internal/ubuntu plucky/main s390x libxaw7 s390x 2:1.0.16-1 [201 kB] 160s Get:100 http://ftpmaster.internal/ubuntu plucky/main s390x libxi6 s390x 2:1.8.2-1 [35.4 kB] 160s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x libzzip-0-13t64 s390x 0.13.72+dfsg.1-1.2build1 [28.6 kB] 160s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x tex-common all 6.18 [32.8 kB] 160s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x preview-latex-style all 13.2-1 [347 kB] 160s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x pybuild-plugin-autopkgtest all 6.20250108 [1744 B] 160s Get:105 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 160s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyproject-hooks all 1.2.0-1 [10.2 kB] 160s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-toml all 0.10.2-1 [16.5 kB] 160s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-wheel all 0.45.1-1 [57.7 kB] 160s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-build all 1.2.2-1 [31.0 kB] 160s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-installer all 0.7.0+dfsg1-3 [17.4 kB] 160s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x pybuild-plugin-pyproject all 6.20250108 [1726 B] 160s Get:112 http://ftpmaster.internal/ubuntu plucky/main s390x sphinx-rtd-theme-common all 3.0.2+dfsg-2 [1014 kB] 161s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x python-epr-doc all 1.1.5-2build3 [482 kB] 161s Get:114 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B] 161s Get:115 http://ftpmaster.internal/ubuntu plucky/main s390x python3.13-dev s390x 3.13.2-1 [508 kB] 161s Get:116 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dev s390x 3.13.1-1~exp2 [26.7 kB] 161s Get:117 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-dev s390x 3.12.9-1 [504 kB] 161s Get:118 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all-dev s390x 3.13.1-1~exp2 [918 B] 161s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-asttokens all 3.0.0-1 [20.4 kB] 161s Get:120 http://ftpmaster.internal/ubuntu plucky/main s390x python3-decorator all 5.1.1-5 [10.1 kB] 161s Get:121 http://ftpmaster.internal/ubuntu plucky/main s390x python3-defusedxml all 0.7.1-3 [42.2 kB] 161s Get:122 http://ftpmaster.internal/ubuntu plucky/main s390x python3.13-doc all 3.13.2-1 [14.2 MB] 162s Get:123 http://ftpmaster.internal/ubuntu plucky/main s390x python3-doc all 3.13.1-1~exp2 [10.4 kB] 162s Get:124 http://ftpmaster.internal/ubuntu plucky/main s390x python3-roman all 5.0-1 [10.3 kB] 162s Get:125 http://ftpmaster.internal/ubuntu plucky/main s390x python3-docutils all 0.21.2+dfsg-2 [409 kB] 162s Get:126 http://ftpmaster.internal/ubuntu plucky/main s390x python3-numpy s390x 1:1.26.4+ds-13 [4601 kB] 162s Get:127 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-epr s390x 1.1.5-2build3 [265 kB] 162s Get:128 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-executing all 2.2.0-0.1 [25.0 kB] 162s Get:129 http://ftpmaster.internal/ubuntu plucky/main s390x python3-imagesize all 1.4.1-1 [6844 B] 162s Get:130 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-parso all 0.8.4-1 [67.6 kB] 162s Get:131 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-typeshed all 0.0~git20241223.ea91db2-1 [1548 kB] 162s Get:132 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-jedi all 0.19.1+ds1-1 [693 kB] 162s Get:133 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-traitlets all 5.14.3+really5.14.3-1 [71.5 kB] 162s Get:134 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-matplotlib-inline all 0.1.6-2 [8784 B] 162s Get:135 http://ftpmaster.internal/ubuntu plucky/main s390x python3-wcwidth all 0.2.13+dfsg1-1 [26.3 kB] 162s Get:136 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-prompt-toolkit all 3.0.50-1 [257 kB] 162s Get:137 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pure-eval all 0.2.3-1 [11.4 kB] 162s Get:138 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-stack-data all 0.6.3-1 [22.0 kB] 162s Get:139 http://ftpmaster.internal/ubuntu plucky/main s390x python3-ptyprocess all 0.7.0-6 [14.8 kB] 162s Get:140 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pexpect all 4.9-3 [48.1 kB] 162s Get:141 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-ipython all 8.30.0-2 [569 kB] 162s Get:142 http://ftpmaster.internal/ubuntu plucky/main s390x python3-snowballstemmer all 2.2.0-4build1 [59.8 kB] 162s Get:143 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x sphinx-common all 8.1.3-5 [663 kB] 162s Get:144 http://ftpmaster.internal/ubuntu plucky/main s390x python3-alabaster all 0.7.16-0.1 [18.5 kB] 162s Get:145 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x python3-sphinx all 8.1.3-5 [474 kB] 162s Get:146 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sphinxcontrib.jquery all 4.1-5 [6678 B] 162s Get:147 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sphinx-rtd-theme all 3.0.2+dfsg-2 [23.5 kB] 162s Get:148 http://ftpmaster.internal/ubuntu plucky/main s390x t1utils s390x 1.41-4build3 [65.6 kB] 162s Get:149 http://ftpmaster.internal/ubuntu plucky/universe s390x texlive-binaries s390x 2024.20240313.70630+ds-5build2 [9171 kB] 163s Get:150 http://ftpmaster.internal/ubuntu plucky/main s390x xdg-utils all 1.2.1-2ubuntu1 [66.0 kB] 163s Get:151 http://ftpmaster.internal/ubuntu plucky/universe s390x texlive-base all 2024.20241115-1 [22.5 MB] 164s Get:152 http://ftpmaster.internal/ubuntu plucky/universe s390x texlive-latex-base all 2024.20241115-1 [1260 kB] 164s Get:153 http://ftpmaster.internal/ubuntu plucky/universe s390x libfontbox-java all 1:1.8.16-5 [208 kB] 164s Get:154 http://ftpmaster.internal/ubuntu plucky/universe s390x libpdfbox-java all 1:1.8.16-5 [5521 kB] 164s Get:155 http://ftpmaster.internal/ubuntu plucky/universe s390x texlive-latex-recommended all 2024.20241115-1 [8739 kB] 164s Get:156 http://ftpmaster.internal/ubuntu plucky/universe s390x texlive-pictures all 2024.20241115-1 [17.0 MB] 165s Get:157 http://ftpmaster.internal/ubuntu plucky/universe s390x texlive-latex-extra all 2024.20250114-1 [24.3 MB] 166s Preconfiguring packages ... 166s Fetched 212 MB in 11s (18.4 MB/s) 166s Selecting previously unselected package libpython3.12-minimal:s390x. 166s (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.) 166s Preparing to unpack .../000-libpython3.12-minimal_3.12.9-1_s390x.deb ... 166s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 166s Selecting previously unselected package python3.12-minimal. 166s Preparing to unpack .../001-python3.12-minimal_3.12.9-1_s390x.deb ... 166s Unpacking python3.12-minimal (3.12.9-1) ... 166s Selecting previously unselected package fonts-lato. 166s Preparing to unpack .../002-fonts-lato_2.015-1_all.deb ... 166s Unpacking fonts-lato (2.015-1) ... 167s Selecting previously unselected package sgml-base. 167s Preparing to unpack .../003-sgml-base_1.31_all.deb ... 167s Unpacking sgml-base (1.31) ... 167s Selecting previously unselected package libnsl2:s390x. 167s Preparing to unpack .../004-libnsl2_1.3.0-3build3_s390x.deb ... 167s Unpacking libnsl2:s390x (1.3.0-3build3) ... 167s Selecting previously unselected package libpython3.12-stdlib:s390x. 167s Preparing to unpack .../005-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 167s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 167s Selecting previously unselected package python3.12. 167s Preparing to unpack .../006-python3.12_3.12.9-1_s390x.deb ... 167s Unpacking python3.12 (3.12.9-1) ... 167s Selecting previously unselected package m4. 167s Preparing to unpack .../007-m4_1.4.19-5_s390x.deb ... 167s Unpacking m4 (1.4.19-5) ... 167s Selecting previously unselected package autoconf. 167s Preparing to unpack .../008-autoconf_2.72-3_all.deb ... 167s Unpacking autoconf (2.72-3) ... 167s Selecting previously unselected package autotools-dev. 167s Preparing to unpack .../009-autotools-dev_20220109.1_all.deb ... 167s Unpacking autotools-dev (20220109.1) ... 167s Selecting previously unselected package automake. 167s Preparing to unpack .../010-automake_1%3a1.17-3_all.deb ... 167s Unpacking automake (1:1.17-3) ... 167s Selecting previously unselected package autopoint. 167s Preparing to unpack .../011-autopoint_0.23.1-1_all.deb ... 167s Unpacking autopoint (0.23.1-1) ... 167s Selecting previously unselected package libisl23:s390x. 167s Preparing to unpack .../012-libisl23_0.27-1_s390x.deb ... 167s Unpacking libisl23:s390x (0.27-1) ... 167s Selecting previously unselected package libmpc3:s390x. 167s Preparing to unpack .../013-libmpc3_1.3.1-1build2_s390x.deb ... 167s Unpacking libmpc3:s390x (1.3.1-1build2) ... 167s Selecting previously unselected package cpp-14-s390x-linux-gnu. 167s Preparing to unpack .../014-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 167s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 167s Selecting previously unselected package cpp-14. 167s Preparing to unpack .../015-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 167s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 167s Selecting previously unselected package cpp-s390x-linux-gnu. 167s Preparing to unpack .../016-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 167s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 167s Selecting previously unselected package cpp. 167s Preparing to unpack .../017-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 167s Unpacking cpp (4:14.2.0-1ubuntu1) ... 167s Selecting previously unselected package libcc1-0:s390x. 167s Preparing to unpack .../018-libcc1-0_15-20250213-1ubuntu1_s390x.deb ... 167s Unpacking libcc1-0:s390x (15-20250213-1ubuntu1) ... 167s Selecting previously unselected package libgomp1:s390x. 167s Preparing to unpack .../019-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 167s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 167s Selecting previously unselected package libitm1:s390x. 167s Preparing to unpack .../020-libitm1_15-20250213-1ubuntu1_s390x.deb ... 167s Unpacking libitm1:s390x (15-20250213-1ubuntu1) ... 167s Selecting previously unselected package libasan8:s390x. 167s Preparing to unpack .../021-libasan8_15-20250213-1ubuntu1_s390x.deb ... 167s Unpacking libasan8:s390x (15-20250213-1ubuntu1) ... 167s Selecting previously unselected package libubsan1:s390x. 167s Preparing to unpack .../022-libubsan1_15-20250213-1ubuntu1_s390x.deb ... 167s Unpacking libubsan1:s390x (15-20250213-1ubuntu1) ... 167s Selecting previously unselected package libgcc-14-dev:s390x. 167s Preparing to unpack .../023-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 167s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 167s Selecting previously unselected package gcc-14-s390x-linux-gnu. 167s Preparing to unpack .../024-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 167s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 168s Selecting previously unselected package gcc-14. 168s Preparing to unpack .../025-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 168s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 168s Selecting previously unselected package gcc-s390x-linux-gnu. 168s Preparing to unpack .../026-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 168s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 168s Selecting previously unselected package gcc. 168s Preparing to unpack .../027-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 168s Unpacking gcc (4:14.2.0-1ubuntu1) ... 168s Selecting previously unselected package libstdc++-14-dev:s390x. 168s Preparing to unpack .../028-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 168s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 168s Selecting previously unselected package g++-14-s390x-linux-gnu. 168s Preparing to unpack .../029-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 168s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 168s Selecting previously unselected package g++-14. 168s Preparing to unpack .../030-g++-14_14.2.0-17ubuntu1_s390x.deb ... 168s Unpacking g++-14 (14.2.0-17ubuntu1) ... 168s Selecting previously unselected package g++-s390x-linux-gnu. 168s Preparing to unpack .../031-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 168s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 168s Selecting previously unselected package g++. 168s Preparing to unpack .../032-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 168s Unpacking g++ (4:14.2.0-1ubuntu1) ... 168s Selecting previously unselected package build-essential. 168s Preparing to unpack .../033-build-essential_12.10ubuntu1_s390x.deb ... 168s Unpacking build-essential (12.10ubuntu1) ... 168s Selecting previously unselected package cython3. 168s Preparing to unpack .../034-cython3_3.0.11+dfsg-2ubuntu1_s390x.deb ... 168s Unpacking cython3 (3.0.11+dfsg-2ubuntu1) ... 168s Selecting previously unselected package libdebhelper-perl. 168s Preparing to unpack .../035-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 168s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 168s Selecting previously unselected package libtool. 168s Preparing to unpack .../036-libtool_2.5.4-3build1_all.deb ... 168s Unpacking libtool (2.5.4-3build1) ... 168s Selecting previously unselected package dh-autoreconf. 168s Preparing to unpack .../037-dh-autoreconf_20_all.deb ... 168s Unpacking dh-autoreconf (20) ... 168s Selecting previously unselected package libarchive-zip-perl. 168s Preparing to unpack .../038-libarchive-zip-perl_1.68-1_all.deb ... 168s Unpacking libarchive-zip-perl (1.68-1) ... 168s Selecting previously unselected package libfile-stripnondeterminism-perl. 168s Preparing to unpack .../039-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 168s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 168s Selecting previously unselected package dh-strip-nondeterminism. 168s Preparing to unpack .../040-dh-strip-nondeterminism_1.14.1-2_all.deb ... 168s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 168s Selecting previously unselected package debugedit. 168s Preparing to unpack .../041-debugedit_1%3a5.1-2_s390x.deb ... 168s Unpacking debugedit (1:5.1-2) ... 168s Selecting previously unselected package dwz. 168s Preparing to unpack .../042-dwz_0.15-1build6_s390x.deb ... 168s Unpacking dwz (0.15-1build6) ... 168s Selecting previously unselected package gettext. 168s Preparing to unpack .../043-gettext_0.23.1-1_s390x.deb ... 168s Unpacking gettext (0.23.1-1) ... 168s Selecting previously unselected package intltool-debian. 168s Preparing to unpack .../044-intltool-debian_0.35.0+20060710.6_all.deb ... 168s Unpacking intltool-debian (0.35.0+20060710.6) ... 168s Selecting previously unselected package po-debconf. 168s Preparing to unpack .../045-po-debconf_1.0.21+nmu1_all.deb ... 168s Unpacking po-debconf (1.0.21+nmu1) ... 168s Selecting previously unselected package debhelper. 168s Preparing to unpack .../046-debhelper_13.24.1ubuntu2_all.deb ... 168s Unpacking debhelper (13.24.1ubuntu2) ... 168s Selecting previously unselected package dh-python. 168s Preparing to unpack .../047-dh-python_6.20250108_all.deb ... 168s Unpacking dh-python (6.20250108) ... 168s Selecting previously unselected package xml-core. 168s Preparing to unpack .../048-xml-core_0.19_all.deb ... 168s Unpacking xml-core (0.19) ... 168s Selecting previously unselected package docutils-common. 168s Preparing to unpack .../049-docutils-common_0.21.2+dfsg-2_all.deb ... 168s Unpacking docutils-common (0.21.2+dfsg-2) ... 168s Selecting previously unselected package fonts-dejavu-mono. 168s Preparing to unpack .../050-fonts-dejavu-mono_2.37-8_all.deb ... 168s Unpacking fonts-dejavu-mono (2.37-8) ... 168s Selecting previously unselected package fonts-dejavu-core. 168s Preparing to unpack .../051-fonts-dejavu-core_2.37-8_all.deb ... 168s Unpacking fonts-dejavu-core (2.37-8) ... 168s Selecting previously unselected package fontconfig-config. 168s Preparing to unpack .../052-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 168s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 168s Selecting previously unselected package fonts-font-awesome. 168s Preparing to unpack .../053-fonts-font-awesome_5.0.10+really4.7.0~dfsg-4.1_all.deb ... 168s Unpacking fonts-font-awesome (5.0.10+really4.7.0~dfsg-4.1) ... 168s Selecting previously unselected package fonts-lmodern. 168s Preparing to unpack .../054-fonts-lmodern_2.005-1_all.deb ... 168s Unpacking fonts-lmodern (2.005-1) ... 169s Selecting previously unselected package libapache-pom-java. 169s Preparing to unpack .../055-libapache-pom-java_33-2_all.deb ... 169s Unpacking libapache-pom-java (33-2) ... 169s Selecting previously unselected package libblas3:s390x. 169s Preparing to unpack .../056-libblas3_3.12.1-2_s390x.deb ... 169s Unpacking libblas3:s390x (3.12.1-2) ... 169s Selecting previously unselected package libfreetype6:s390x. 169s Preparing to unpack .../057-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 169s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 169s Selecting previously unselected package libfontconfig1:s390x. 169s Preparing to unpack .../058-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 169s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 169s Selecting previously unselected package libpixman-1-0:s390x. 169s Preparing to unpack .../059-libpixman-1-0_0.44.0-3_s390x.deb ... 169s Unpacking libpixman-1-0:s390x (0.44.0-3) ... 169s Selecting previously unselected package libxcb-render0:s390x. 169s Preparing to unpack .../060-libxcb-render0_1.17.0-2_s390x.deb ... 169s Unpacking libxcb-render0:s390x (1.17.0-2) ... 169s Selecting previously unselected package libxcb-shm0:s390x. 169s Preparing to unpack .../061-libxcb-shm0_1.17.0-2_s390x.deb ... 169s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 169s Selecting previously unselected package libxrender1:s390x. 169s Preparing to unpack .../062-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 169s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 169s Selecting previously unselected package libcairo2:s390x. 169s Preparing to unpack .../063-libcairo2_1.18.2-2_s390x.deb ... 169s Unpacking libcairo2:s390x (1.18.2-2) ... 169s Selecting previously unselected package libcommons-parent-java. 169s Preparing to unpack .../064-libcommons-parent-java_56-1_all.deb ... 169s Unpacking libcommons-parent-java (56-1) ... 169s Selecting previously unselected package libcommons-logging-java. 169s Preparing to unpack .../065-libcommons-logging-java_1.3.0-1ubuntu1_all.deb ... 169s Unpacking libcommons-logging-java (1.3.0-1ubuntu1) ... 169s Selecting previously unselected package libepr-api2. 169s Preparing to unpack .../066-libepr-api2_2.3~dev20150708-13build1_s390x.deb ... 169s Unpacking libepr-api2 (2.3~dev20150708-13build1) ... 169s Selecting previously unselected package libepr-api-dev. 169s Preparing to unpack .../067-libepr-api-dev_2.3~dev20150708-13build1_s390x.deb ... 169s Unpacking libepr-api-dev (2.3~dev20150708-13build1) ... 169s Selecting previously unselected package libexpat1-dev:s390x. 169s Preparing to unpack .../068-libexpat1-dev_2.6.4-1_s390x.deb ... 169s Unpacking libexpat1-dev:s390x (2.6.4-1) ... 169s Selecting previously unselected package libgfortran5:s390x. 169s Preparing to unpack .../069-libgfortran5_15-20250213-1ubuntu1_s390x.deb ... 169s Unpacking libgfortran5:s390x (15-20250213-1ubuntu1) ... 169s Selecting previously unselected package libgraphite2-3:s390x. 169s Preparing to unpack .../070-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 169s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 169s Selecting previously unselected package libharfbuzz0b:s390x. 169s Preparing to unpack .../071-libharfbuzz0b_10.2.0-1_s390x.deb ... 169s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 169s Selecting previously unselected package x11-common. 169s Preparing to unpack .../072-x11-common_1%3a7.7+23ubuntu3_all.deb ... 169s Unpacking x11-common (1:7.7+23ubuntu3) ... 169s Selecting previously unselected package libice6:s390x. 169s Preparing to unpack .../073-libice6_2%3a1.1.1-1_s390x.deb ... 169s Unpacking libice6:s390x (2:1.1.1-1) ... 169s Selecting previously unselected package libjs-jquery. 169s Preparing to unpack .../074-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 169s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 169s Selecting previously unselected package libjs-underscore. 169s Preparing to unpack .../075-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ... 169s Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 169s Selecting previously unselected package libjs-sphinxdoc. 169s Preparing to unpack .../076-libjs-sphinxdoc_8.1.3-5_all.deb ... 169s Unpacking libjs-sphinxdoc (8.1.3-5) ... 169s Selecting previously unselected package libjson-perl. 169s Preparing to unpack .../077-libjson-perl_4.10000-1_all.deb ... 169s Unpacking libjson-perl (4.10000-1) ... 169s Selecting previously unselected package libkpathsea6:s390x. 169s Preparing to unpack .../078-libkpathsea6_2024.20240313.70630+ds-5build2_s390x.deb ... 169s Unpacking libkpathsea6:s390x (2024.20240313.70630+ds-5build2) ... 169s Selecting previously unselected package liblapack3:s390x. 169s Preparing to unpack .../079-liblapack3_3.12.1-2_s390x.deb ... 169s Unpacking liblapack3:s390x (3.12.1-2) ... 169s Selecting previously unselected package libmpfi0:s390x. 169s Preparing to unpack .../080-libmpfi0_1.5.4+ds-4_s390x.deb ... 169s Unpacking libmpfi0:s390x (1.5.4+ds-4) ... 169s Selecting previously unselected package libpaper2:s390x. 169s Preparing to unpack .../081-libpaper2_2.2.5-0.3_s390x.deb ... 169s Unpacking libpaper2:s390x (2.2.5-0.3) ... 169s Selecting previously unselected package libpaper-utils. 169s Preparing to unpack .../082-libpaper-utils_2.2.5-0.3_s390x.deb ... 169s Unpacking libpaper-utils (2.2.5-0.3) ... 169s Selecting previously unselected package libpotrace0:s390x. 169s Preparing to unpack .../083-libpotrace0_1.16-2build1_s390x.deb ... 169s Unpacking libpotrace0:s390x (1.16-2build1) ... 169s Selecting previously unselected package libptexenc1:s390x. 169s Preparing to unpack .../084-libptexenc1_2024.20240313.70630+ds-5build2_s390x.deb ... 169s Unpacking libptexenc1:s390x (2024.20240313.70630+ds-5build2) ... 169s Selecting previously unselected package zlib1g-dev:s390x. 169s Preparing to unpack .../085-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 169s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 169s Selecting previously unselected package libpython3.13-dev:s390x. 169s Preparing to unpack .../086-libpython3.13-dev_3.13.2-1_s390x.deb ... 169s Unpacking libpython3.13-dev:s390x (3.13.2-1) ... 169s Selecting previously unselected package libpython3-dev:s390x. 169s Preparing to unpack .../087-libpython3-dev_3.13.1-1~exp2_s390x.deb ... 169s Unpacking libpython3-dev:s390x (3.13.1-1~exp2) ... 169s Selecting previously unselected package libpython3.12t64:s390x. 169s Preparing to unpack .../088-libpython3.12t64_3.12.9-1_s390x.deb ... 169s Unpacking libpython3.12t64:s390x (3.12.9-1) ... 169s Selecting previously unselected package libpython3.12-dev:s390x. 169s Preparing to unpack .../089-libpython3.12-dev_3.12.9-1_s390x.deb ... 169s Unpacking libpython3.12-dev:s390x (3.12.9-1) ... 169s Selecting previously unselected package libpython3-all-dev:s390x. 169s Preparing to unpack .../090-libpython3-all-dev_3.13.1-1~exp2_s390x.deb ... 169s Unpacking libpython3-all-dev:s390x (3.13.1-1~exp2) ... 169s Selecting previously unselected package libsm6:s390x. 169s Preparing to unpack .../091-libsm6_2%3a1.2.4-1_s390x.deb ... 169s Unpacking libsm6:s390x (2:1.2.4-1) ... 169s Selecting previously unselected package libsynctex2:s390x. 169s Preparing to unpack .../092-libsynctex2_2024.20240313.70630+ds-5build2_s390x.deb ... 169s Unpacking libsynctex2:s390x (2024.20240313.70630+ds-5build2) ... 169s Selecting previously unselected package libteckit0:s390x. 169s Preparing to unpack .../093-libteckit0_2.5.12+ds1-1_s390x.deb ... 169s Unpacking libteckit0:s390x (2.5.12+ds1-1) ... 169s Selecting previously unselected package libtexlua53-5:s390x. 169s Preparing to unpack .../094-libtexlua53-5_2024.20240313.70630+ds-5build2_s390x.deb ... 169s Unpacking libtexlua53-5:s390x (2024.20240313.70630+ds-5build2) ... 169s Selecting previously unselected package libxt6t64:s390x. 169s Preparing to unpack .../095-libxt6t64_1%3a1.2.1-1.2build1_s390x.deb ... 169s Unpacking libxt6t64:s390x (1:1.2.1-1.2build1) ... 169s Selecting previously unselected package libxmu6:s390x. 169s Preparing to unpack .../096-libxmu6_2%3a1.1.3-3build2_s390x.deb ... 169s Unpacking libxmu6:s390x (2:1.1.3-3build2) ... 169s Selecting previously unselected package libxpm4:s390x. 169s Preparing to unpack .../097-libxpm4_1%3a3.5.17-1build2_s390x.deb ... 169s Unpacking libxpm4:s390x (1:3.5.17-1build2) ... 169s Selecting previously unselected package libxaw7:s390x. 169s Preparing to unpack .../098-libxaw7_2%3a1.0.16-1_s390x.deb ... 169s Unpacking libxaw7:s390x (2:1.0.16-1) ... 169s Selecting previously unselected package libxi6:s390x. 169s Preparing to unpack .../099-libxi6_2%3a1.8.2-1_s390x.deb ... 169s Unpacking libxi6:s390x (2:1.8.2-1) ... 169s Selecting previously unselected package libzzip-0-13t64:s390x. 169s Preparing to unpack .../100-libzzip-0-13t64_0.13.72+dfsg.1-1.2build1_s390x.deb ... 169s Unpacking libzzip-0-13t64:s390x (0.13.72+dfsg.1-1.2build1) ... 169s Selecting previously unselected package tex-common. 169s Preparing to unpack .../101-tex-common_6.18_all.deb ... 169s Unpacking tex-common (6.18) ... 169s Selecting previously unselected package preview-latex-style. 169s Preparing to unpack .../102-preview-latex-style_13.2-1_all.deb ... 169s Unpacking preview-latex-style (13.2-1) ... 169s Selecting previously unselected package pybuild-plugin-autopkgtest. 170s Preparing to unpack .../103-pybuild-plugin-autopkgtest_6.20250108_all.deb ... 170s Unpacking pybuild-plugin-autopkgtest (6.20250108) ... 170s Selecting previously unselected package python3-packaging. 170s Preparing to unpack .../104-python3-packaging_24.2-1_all.deb ... 170s Unpacking python3-packaging (24.2-1) ... 170s Selecting previously unselected package python3-pyproject-hooks. 170s Preparing to unpack .../105-python3-pyproject-hooks_1.2.0-1_all.deb ... 170s Unpacking python3-pyproject-hooks (1.2.0-1) ... 170s Selecting previously unselected package python3-toml. 170s Preparing to unpack .../106-python3-toml_0.10.2-1_all.deb ... 170s Unpacking python3-toml (0.10.2-1) ... 170s Selecting previously unselected package python3-wheel. 170s Preparing to unpack .../107-python3-wheel_0.45.1-1_all.deb ... 170s Unpacking python3-wheel (0.45.1-1) ... 170s Selecting previously unselected package python3-build. 170s Preparing to unpack .../108-python3-build_1.2.2-1_all.deb ... 170s Unpacking python3-build (1.2.2-1) ... 170s Selecting previously unselected package python3-installer. 170s Preparing to unpack .../109-python3-installer_0.7.0+dfsg1-3_all.deb ... 170s Unpacking python3-installer (0.7.0+dfsg1-3) ... 170s Selecting previously unselected package pybuild-plugin-pyproject. 170s Preparing to unpack .../110-pybuild-plugin-pyproject_6.20250108_all.deb ... 170s Unpacking pybuild-plugin-pyproject (6.20250108) ... 170s Selecting previously unselected package sphinx-rtd-theme-common. 170s Preparing to unpack .../111-sphinx-rtd-theme-common_3.0.2+dfsg-2_all.deb ... 170s Unpacking sphinx-rtd-theme-common (3.0.2+dfsg-2) ... 170s Selecting previously unselected package python-epr-doc. 170s Preparing to unpack .../112-python-epr-doc_1.1.5-2build3_all.deb ... 170s Unpacking python-epr-doc (1.1.5-2build3) ... 170s Selecting previously unselected package python3-all. 170s Preparing to unpack .../113-python3-all_3.13.1-1~exp2_s390x.deb ... 170s Unpacking python3-all (3.13.1-1~exp2) ... 170s Selecting previously unselected package python3.13-dev. 170s Preparing to unpack .../114-python3.13-dev_3.13.2-1_s390x.deb ... 170s Unpacking python3.13-dev (3.13.2-1) ... 170s Selecting previously unselected package python3-dev. 170s Preparing to unpack .../115-python3-dev_3.13.1-1~exp2_s390x.deb ... 170s Unpacking python3-dev (3.13.1-1~exp2) ... 170s Selecting previously unselected package python3.12-dev. 170s Preparing to unpack .../116-python3.12-dev_3.12.9-1_s390x.deb ... 170s Unpacking python3.12-dev (3.12.9-1) ... 170s Selecting previously unselected package python3-all-dev. 170s Preparing to unpack .../117-python3-all-dev_3.13.1-1~exp2_s390x.deb ... 170s Unpacking python3-all-dev (3.13.1-1~exp2) ... 170s Selecting previously unselected package python3-asttokens. 170s Preparing to unpack .../118-python3-asttokens_3.0.0-1_all.deb ... 170s Unpacking python3-asttokens (3.0.0-1) ... 170s Selecting previously unselected package python3-decorator. 170s Preparing to unpack .../119-python3-decorator_5.1.1-5_all.deb ... 170s Unpacking python3-decorator (5.1.1-5) ... 170s Selecting previously unselected package python3-defusedxml. 170s Preparing to unpack .../120-python3-defusedxml_0.7.1-3_all.deb ... 170s Unpacking python3-defusedxml (0.7.1-3) ... 170s Selecting previously unselected package python3.13-doc. 170s Preparing to unpack .../121-python3.13-doc_3.13.2-1_all.deb ... 170s Unpacking python3.13-doc (3.13.2-1) ... 170s Selecting previously unselected package python3-doc. 170s Preparing to unpack .../122-python3-doc_3.13.1-1~exp2_all.deb ... 170s Unpacking python3-doc (3.13.1-1~exp2) ... 170s Selecting previously unselected package python3-roman. 170s Preparing to unpack .../123-python3-roman_5.0-1_all.deb ... 170s Unpacking python3-roman (5.0-1) ... 170s Selecting previously unselected package python3-docutils. 170s Preparing to unpack .../124-python3-docutils_0.21.2+dfsg-2_all.deb ... 170s Unpacking python3-docutils (0.21.2+dfsg-2) ... 170s Selecting previously unselected package python3-numpy. 170s Preparing to unpack .../125-python3-numpy_1%3a1.26.4+ds-13_s390x.deb ... 170s Unpacking python3-numpy (1:1.26.4+ds-13) ... 170s Selecting previously unselected package python3-epr:s390x. 170s Preparing to unpack .../126-python3-epr_1.1.5-2build3_s390x.deb ... 170s Unpacking python3-epr:s390x (1.1.5-2build3) ... 170s Selecting previously unselected package python3-executing. 170s Preparing to unpack .../127-python3-executing_2.2.0-0.1_all.deb ... 170s Unpacking python3-executing (2.2.0-0.1) ... 170s Selecting previously unselected package python3-imagesize. 170s Preparing to unpack .../128-python3-imagesize_1.4.1-1_all.deb ... 170s Unpacking python3-imagesize (1.4.1-1) ... 170s Selecting previously unselected package python3-parso. 170s Preparing to unpack .../129-python3-parso_0.8.4-1_all.deb ... 170s Unpacking python3-parso (0.8.4-1) ... 170s Selecting previously unselected package python3-typeshed. 170s Preparing to unpack .../130-python3-typeshed_0.0~git20241223.ea91db2-1_all.deb ... 170s Unpacking python3-typeshed (0.0~git20241223.ea91db2-1) ... 171s Selecting previously unselected package python3-jedi. 171s Preparing to unpack .../131-python3-jedi_0.19.1+ds1-1_all.deb ... 171s Unpacking python3-jedi (0.19.1+ds1-1) ... 171s Selecting previously unselected package python3-traitlets. 171s Preparing to unpack .../132-python3-traitlets_5.14.3+really5.14.3-1_all.deb ... 171s Unpacking python3-traitlets (5.14.3+really5.14.3-1) ... 171s Selecting previously unselected package python3-matplotlib-inline. 171s Preparing to unpack .../133-python3-matplotlib-inline_0.1.6-2_all.deb ... 171s Unpacking python3-matplotlib-inline (0.1.6-2) ... 171s Selecting previously unselected package python3-wcwidth. 171s Preparing to unpack .../134-python3-wcwidth_0.2.13+dfsg1-1_all.deb ... 171s Unpacking python3-wcwidth (0.2.13+dfsg1-1) ... 171s Selecting previously unselected package python3-prompt-toolkit. 171s Preparing to unpack .../135-python3-prompt-toolkit_3.0.50-1_all.deb ... 171s Unpacking python3-prompt-toolkit (3.0.50-1) ... 171s Selecting previously unselected package python3-pure-eval. 171s Preparing to unpack .../136-python3-pure-eval_0.2.3-1_all.deb ... 171s Unpacking python3-pure-eval (0.2.3-1) ... 171s Selecting previously unselected package python3-stack-data. 171s Preparing to unpack .../137-python3-stack-data_0.6.3-1_all.deb ... 171s Unpacking python3-stack-data (0.6.3-1) ... 171s Selecting previously unselected package python3-ptyprocess. 171s Preparing to unpack .../138-python3-ptyprocess_0.7.0-6_all.deb ... 171s Unpacking python3-ptyprocess (0.7.0-6) ... 171s Selecting previously unselected package python3-pexpect. 171s Preparing to unpack .../139-python3-pexpect_4.9-3_all.deb ... 171s Unpacking python3-pexpect (4.9-3) ... 171s Selecting previously unselected package python3-ipython. 171s Preparing to unpack .../140-python3-ipython_8.30.0-2_all.deb ... 171s Unpacking python3-ipython (8.30.0-2) ... 171s Selecting previously unselected package python3-snowballstemmer. 171s Preparing to unpack .../141-python3-snowballstemmer_2.2.0-4build1_all.deb ... 171s Unpacking python3-snowballstemmer (2.2.0-4build1) ... 171s Selecting previously unselected package sphinx-common. 171s Preparing to unpack .../142-sphinx-common_8.1.3-5_all.deb ... 171s Unpacking sphinx-common (8.1.3-5) ... 171s Selecting previously unselected package python3-alabaster. 171s Preparing to unpack .../143-python3-alabaster_0.7.16-0.1_all.deb ... 171s Unpacking python3-alabaster (0.7.16-0.1) ... 171s Selecting previously unselected package python3-sphinx. 171s Preparing to unpack .../144-python3-sphinx_8.1.3-5_all.deb ... 171s Unpacking python3-sphinx (8.1.3-5) ... 171s Selecting previously unselected package python3-sphinxcontrib.jquery. 171s Preparing to unpack .../145-python3-sphinxcontrib.jquery_4.1-5_all.deb ... 171s Unpacking python3-sphinxcontrib.jquery (4.1-5) ... 171s Selecting previously unselected package python3-sphinx-rtd-theme. 171s Preparing to unpack .../146-python3-sphinx-rtd-theme_3.0.2+dfsg-2_all.deb ... 171s Unpacking python3-sphinx-rtd-theme (3.0.2+dfsg-2) ... 171s Selecting previously unselected package t1utils. 171s Preparing to unpack .../147-t1utils_1.41-4build3_s390x.deb ... 171s Unpacking t1utils (1.41-4build3) ... 171s Selecting previously unselected package texlive-binaries. 171s Preparing to unpack .../148-texlive-binaries_2024.20240313.70630+ds-5build2_s390x.deb ... 171s Unpacking texlive-binaries (2024.20240313.70630+ds-5build2) ... 171s Selecting previously unselected package xdg-utils. 171s Preparing to unpack .../149-xdg-utils_1.2.1-2ubuntu1_all.deb ... 171s Unpacking xdg-utils (1.2.1-2ubuntu1) ... 171s Selecting previously unselected package texlive-base. 171s Preparing to unpack .../150-texlive-base_2024.20241115-1_all.deb ... 171s Unpacking texlive-base (2024.20241115-1) ... 173s Selecting previously unselected package texlive-latex-base. 173s Preparing to unpack .../151-texlive-latex-base_2024.20241115-1_all.deb ... 173s Unpacking texlive-latex-base (2024.20241115-1) ... 173s Selecting previously unselected package libfontbox-java. 173s Preparing to unpack .../152-libfontbox-java_1%3a1.8.16-5_all.deb ... 173s Unpacking libfontbox-java (1:1.8.16-5) ... 173s Selecting previously unselected package libpdfbox-java. 173s Preparing to unpack .../153-libpdfbox-java_1%3a1.8.16-5_all.deb ... 173s Unpacking libpdfbox-java (1:1.8.16-5) ... 173s Selecting previously unselected package texlive-latex-recommended. 173s Preparing to unpack .../154-texlive-latex-recommended_2024.20241115-1_all.deb ... 173s Unpacking texlive-latex-recommended (2024.20241115-1) ... 173s Selecting previously unselected package texlive-pictures. 173s Preparing to unpack .../155-texlive-pictures_2024.20241115-1_all.deb ... 173s Unpacking texlive-pictures (2024.20241115-1) ... 175s Selecting previously unselected package texlive-latex-extra. 175s Preparing to unpack .../156-texlive-latex-extra_2024.20250114-1_all.deb ... 175s Unpacking texlive-latex-extra (2024.20250114-1) ... 176s Setting up dh-python (6.20250108) ... 176s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 176s Setting up libpixman-1-0:s390x (0.44.0-3) ... 176s Setting up python3-pure-eval (0.2.3-1) ... 177s Setting up fonts-lato (2.015-1) ... 177s Setting up libxpm4:s390x (1:3.5.17-1build2) ... 177s Setting up libxi6:s390x (2:1.8.2-1) ... 177s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 177s Setting up python3-parso (0.8.4-1) ... 177s Setting up libxcb-render0:s390x (1.17.0-2) ... 177s Setting up python3-defusedxml (0.7.1-3) ... 177s Setting up libarchive-zip-perl (1.68-1) ... 177s Setting up python3-asttokens (3.0.0-1) ... 177s Setting up python3-alabaster (0.7.16-0.1) ... 177s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 177s Setting up libfontbox-java (1:1.8.16-5) ... 177s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 177s Setting up x11-common (1:7.7+23ubuntu3) ... 177s Setting up m4 (1.4.19-5) ... 177s Setting up libxcb-shm0:s390x (1.17.0-2) ... 177s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 177s Setting up python3-wheel (0.45.1-1) ... 178s Setting up tex-common (6.18) ... 178s update-language: texlive-base not installed and configured, doing nothing! 178s Setting up python3-roman (5.0-1) ... 178s Setting up python3-decorator (5.1.1-5) ... 178s Setting up autotools-dev (20220109.1) ... 178s Setting up libblas3:s390x (3.12.1-2) ... 178s 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 178s Setting up python3-packaging (24.2-1) ... 178s Setting up libexpat1-dev:s390x (2.6.4-1) ... 178s Setting up python3-wcwidth (0.2.13+dfsg1-1) ... 178s Setting up python3-pyproject-hooks (1.2.0-1) ... 179s Setting up libzzip-0-13t64:s390x (0.13.72+dfsg.1-1.2build1) ... 179s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 179s Setting up python3-typeshed (0.0~git20241223.ea91db2-1) ... 179s Setting up python3-executing (2.2.0-0.1) ... 179s Setting up python3-snowballstemmer (2.2.0-4build1) ... 179s Setting up libteckit0:s390x (2.5.12+ds1-1) ... 179s Setting up libapache-pom-java (33-2) ... 179s Setting up t1utils (1.41-4build3) ... 179s Setting up libtexlua53-5:s390x (2024.20240313.70630+ds-5build2) ... 179s Setting up fonts-dejavu-mono (2.37-8) ... 179s Setting up libmpc3:s390x (1.3.1-1build2) ... 179s Setting up cython3 (3.0.11+dfsg-2ubuntu1) ... 181s Setting up autopoint (0.23.1-1) ... 181s Setting up libmpfi0:s390x (1.5.4+ds-4) ... 181s Setting up fonts-dejavu-core (2.37-8) ... 181s Setting up python3-toml (0.10.2-1) ... 181s Setting up libkpathsea6:s390x (2024.20240313.70630+ds-5build2) ... 181s Setting up python3-installer (0.7.0+dfsg1-3) ... 181s Setting up libgfortran5:s390x (15-20250213-1ubuntu1) ... 181s Setting up autoconf (2.72-3) ... 181s Setting up libubsan1:s390x (15-20250213-1ubuntu1) ... 181s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 181s Setting up dwz (0.15-1build6) ... 181s Setting up python3-traitlets (5.14.3+really5.14.3-1) ... 181s Setting up libasan8:s390x (15-20250213-1ubuntu1) ... 181s Setting up libjson-perl (4.10000-1) ... 181s Setting up libnsl2:s390x (1.3.0-3build3) ... 181s Setting up debugedit (1:5.1-2) ... 181s Setting up fonts-lmodern (2.005-1) ... 181s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 181s Setting up sgml-base (1.31) ... 181s Setting up libpaper2:s390x (2.2.5-0.3) ... 182s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 182s Setting up libisl23:s390x (0.27-1) ... 182s Setting up python3-build (1.2.2-1) ... 182s Setting up python3-stack-data (0.6.3-1) ... 182s Setting up fonts-font-awesome (5.0.10+really4.7.0~dfsg-4.1) ... 182s Setting up sphinx-rtd-theme-common (3.0.2+dfsg-2) ... 182s Setting up xdg-utils (1.2.1-2ubuntu1) ... 182s update-alternatives: using /usr/bin/xdg-open to provide /usr/bin/open (open) in auto mode 182s Setting up libcc1-0:s390x (15-20250213-1ubuntu1) ... 182s Setting up libitm1:s390x (15-20250213-1ubuntu1) ... 182s Setting up libsynctex2:s390x (2024.20240313.70630+ds-5build2) ... 182s Setting up libepr-api2 (2.3~dev20150708-13build1) ... 182s Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 182s Setting up python3-imagesize (1.4.1-1) ... 182s Setting up python3-ptyprocess (0.7.0-6) ... 182s Setting up libpotrace0:s390x (1.16-2build1) ... 182s Setting up automake (1:1.17-3) ... 182s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 182s Setting up python3-prompt-toolkit (3.0.50-1) ... 183s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 183s Setting up python3.12-minimal (3.12.9-1) ... 183s Setting up libice6:s390x (2:1.1.1-1) ... 183s Setting up liblapack3:s390x (3.12.1-2) ... 183s 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 183s Setting up gettext (0.23.1-1) ... 183s Setting up libpdfbox-java (1:1.8.16-5) ... 183s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 183s Setting up libepr-api-dev (2.3~dev20150708-13build1) ... 183s Setting up python3-jedi (0.19.1+ds1-1) ... 184s Setting up pybuild-plugin-pyproject (6.20250108) ... 184s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 184s Setting up preview-latex-style (13.2-1) ... 184s Setting up python3.12 (3.12.9-1) ... 185s Setting up libcommons-parent-java (56-1) ... 185s Setting up libcommons-logging-java (1.3.0-1ubuntu1) ... 185s Setting up python3-all (3.13.1-1~exp2) ... 185s Setting up libpaper-utils (2.2.5-0.3) ... 185s Setting up intltool-debian (0.35.0+20060710.6) ... 185s Setting up python3-matplotlib-inline (0.1.6-2) ... 185s Setting up libpython3.12t64:s390x (3.12.9-1) ... 185s Setting up python3.13-doc (3.13.2-1) ... 185s Setting up libptexenc1:s390x (2024.20240313.70630+ds-5build2) ... 185s Setting up python3-pexpect (4.9-3) ... 185s Setting up libpython3.13-dev:s390x (3.13.2-1) ... 185s Setting up python3-numpy (1:1.26.4+ds-13) ... 189s Setting up libjs-sphinxdoc (8.1.3-5) ... 189s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 189s Setting up cpp-14 (14.2.0-17ubuntu1) ... 189s Setting up dh-strip-nondeterminism (1.14.1-2) ... 189s Setting up xml-core (0.19) ... 189s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 189s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 189s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 189s Setting up libsm6:s390x (2:1.2.4-1) ... 189s Setting up python3-doc (3.13.1-1~exp2) ... 189s Setting up libpython3-dev:s390x (3.13.1-1~exp2) ... 189s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 189s Setting up python3.13-dev (3.13.2-1) ... 189s Setting up po-debconf (1.0.21+nmu1) ... 189s Setting up python-epr-doc (1.1.5-2build3) ... 189s Setting up libpython3.12-dev:s390x (3.12.9-1) ... 189s Setting up python3-epr:s390x (1.1.5-2build3) ... 189s Setting up libcairo2:s390x (1.18.2-2) ... 189s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 189s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 189s Setting up libpython3-all-dev:s390x (3.13.1-1~exp2) ... 189s Setting up python3-ipython (8.30.0-2) ... 190s Setting up sphinx-common (8.1.3-5) ... 190s Setting up python3-dev (3.13.1-1~exp2) ... 190s Setting up libxt6t64:s390x (1:1.2.1-1.2build1) ... 190s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 190s Setting up python3.12-dev (3.12.9-1) ... 190s Setting up cpp (4:14.2.0-1ubuntu1) ... 190s Setting up python3-all-dev (3.13.1-1~exp2) ... 190s Setting up libxmu6:s390x (2:1.1.3-3build2) ... 190s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 190s Setting up libxaw7:s390x (2:1.0.16-1) ... 190s Setting up gcc-14 (14.2.0-17ubuntu1) ... 190s Setting up texlive-binaries (2024.20240313.70630+ds-5build2) ... 190s update-alternatives: using /usr/bin/xdvi-xaw to provide /usr/bin/xdvi.bin (xdvi.bin) in auto mode 190s update-alternatives: using /usr/bin/bibtex.original to provide /usr/bin/bibtex (bibtex) in auto mode 190s Setting up g++-14 (14.2.0-17ubuntu1) ... 190s Setting up texlive-base (2024.20241115-1) ... 191s tl-paper: setting paper size for dvips to a4: /var/lib/texmf/dvips/config/config-paper.ps 191s tl-paper: setting paper size for dvipdfmx to a4: /var/lib/texmf/dvipdfmx/dvipdfmx-paper.cfg 191s tl-paper: setting paper size for xdvi to a4: /var/lib/texmf/xdvi/XDvi-paper 191s tl-paper: setting paper size for pdftex to a4: /var/lib/texmf/tex/generic/tex-ini-files/pdftexconfig.tex 192s Setting up libtool (2.5.4-3build1) ... 192s Setting up gcc (4:14.2.0-1ubuntu1) ... 192s Setting up dh-autoreconf (20) ... 192s Setting up texlive-latex-base (2024.20241115-1) ... 192s Setting up texlive-latex-recommended (2024.20241115-1) ... 192s Setting up texlive-pictures (2024.20241115-1) ... 192s Setting up g++ (4:14.2.0-1ubuntu1) ... 192s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 192s Setting up build-essential (12.10ubuntu1) ... 192s Setting up debhelper (13.24.1ubuntu2) ... 192s Setting up texlive-latex-extra (2024.20250114-1) ... 192s Setting up pybuild-plugin-autopkgtest (6.20250108) ... 192s Processing triggers for install-info (7.1.1-1) ... 192s Processing triggers for libc-bin (2.40-4ubuntu1) ... 192s Processing triggers for systemd (257.2-3ubuntu1) ... 192s Processing triggers for man-db (2.13.0-1) ... 194s Processing triggers for sgml-base (1.31) ... 194s Setting up docutils-common (0.21.2+dfsg-2) ... 194s Processing triggers for sgml-base (1.31) ... 194s Setting up python3-docutils (0.21.2+dfsg-2) ... 194s Setting up python3-sphinx (8.1.3-5) ... 195s Setting up python3-sphinxcontrib.jquery (4.1-5) ... 196s Setting up python3-sphinx-rtd-theme (3.0.2+dfsg-2) ... 196s Processing triggers for tex-common (6.18) ... 196s Running updmap-sys. This may take some time... done. 196s Running mktexlsr /var/lib/texmf ... done. 196s Building format(s) --all. 279s This may take some time... done. 280s autopkgtest: DBG: testbed command exited with code 0 280s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-epr'], kind short, sout pipe, serr pipe, env [] 280s autopkgtest: DBG: testbed command exited with code 0 280s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python-epr-doc'], kind short, sout pipe, serr pipe, env [] 280s autopkgtest: DBG: testbed command exited with code 0 280s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.oUusQr/pybuild-autopkgtest-packages.all"], kind short, sout raw, serr pipe, env [] 280s autopkgtest: DBG: testbed command exited with code 0 280s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.oUusQr/pybuild-autopkgtest-packages.all /tmp/autopkgtest-work.u5acv382/out/pybuild-autopkgtest-packages.all 281s autopkgtest: DBG: got reply from testbed: ok 281s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.oUusQr/build.TNr/src'], kind short, sout raw, serr raw, env [] 281s autopkgtest: DBG: testbed command exited with code 0 281s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.oUusQr/build.TNr/src already exists 281s autopkgtest [12:31:32]: test pybuild-autopkgtest: pybuild-autopkgtest 281s autopkgtest [12:31:32]: test pybuild-autopkgtest: [----------------------- 281s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.oUusQr/wrapper.sh --debug --artifacts=/tmp/autopkgtest.oUusQr/pybuild-autopkgtest-artifacts --chdir=/tmp/autopkgtest.oUusQr/build.TNr/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.oUusQr/pybuild-autopkgtest-stderr --stdout=/tmp/autopkgtest.oUusQr/pybuild-autopkgtest-stdout --tmp=/tmp/autopkgtest.oUusQr/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec pybuild-autopkgtest'], kind test, sout raw, serr raw, env [] 281s /tmp/autopkgtest.oUusQr/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.oUusQr/pybuild-autopkgtest-artifacts 281s /tmp/autopkgtest.oUusQr/wrapper.sh: changing to directory: /tmp/autopkgtest.oUusQr/build.TNr/src 281s /tmp/autopkgtest.oUusQr/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 281s /tmp/autopkgtest.oUusQr/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 281s /tmp/autopkgtest.oUusQr/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 281s /tmp/autopkgtest.oUusQr/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 281s /tmp/autopkgtest.oUusQr/wrapper.sh: setting environment: LANG=C.UTF-8 281s /tmp/autopkgtest.oUusQr/wrapper.sh: unsetting environment: LANGUAGE 281s /tmp/autopkgtest.oUusQr/wrapper.sh: unsetting environment: LC_ADDRESS 281s /tmp/autopkgtest.oUusQr/wrapper.sh: unsetting environment: LC_ALL 281s /tmp/autopkgtest.oUusQr/wrapper.sh: unsetting environment: LC_COLLATE 281s /tmp/autopkgtest.oUusQr/wrapper.sh: unsetting environment: LC_CTYPE 281s /tmp/autopkgtest.oUusQr/wrapper.sh: unsetting environment: LC_IDENTIFICATION 281s /tmp/autopkgtest.oUusQr/wrapper.sh: unsetting environment: LC_MEASUREMENT 281s /tmp/autopkgtest.oUusQr/wrapper.sh: unsetting environment: LC_MESSAGES 281s /tmp/autopkgtest.oUusQr/wrapper.sh: unsetting environment: LC_MONETARY 281s /tmp/autopkgtest.oUusQr/wrapper.sh: unsetting environment: LC_NAME 281s /tmp/autopkgtest.oUusQr/wrapper.sh: unsetting environment: LC_NUMERIC 281s /tmp/autopkgtest.oUusQr/wrapper.sh: unsetting environment: LC_PAPER 281s /tmp/autopkgtest.oUusQr/wrapper.sh: unsetting environment: LC_TELEPHONE 281s /tmp/autopkgtest.oUusQr/wrapper.sh: unsetting environment: LC_TIME 281s /tmp/autopkgtest.oUusQr/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 281s /tmp/autopkgtest.oUusQr/wrapper.sh: pretending to be a login shell 281s /tmp/autopkgtest.oUusQr/wrapper.sh: will write standard error to /tmp/autopkgtest.oUusQr/pybuild-autopkgtest-stderr 281s /tmp/autopkgtest.oUusQr/wrapper.sh: will write stdout to /tmp/autopkgtest.oUusQr/pybuild-autopkgtest-stdout 281s /tmp/autopkgtest.oUusQr/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.oUusQr/autopkgtest_tmp 281s /tmp/autopkgtest.oUusQr/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 281s /tmp/autopkgtest.oUusQr/wrapper.sh: command to run: bash -ec pybuild-autopkgtest 281s /tmp/autopkgtest.oUusQr/wrapper.sh: copying /tmp/tmp.CdXm2T2hn2/out to stdout and file: /tmp/autopkgtest.oUusQr/pybuild-autopkgtest-stdout 281s /tmp/autopkgtest.oUusQr/wrapper.sh: copying /tmp/tmp.CdXm2T2hn2/err to standard error and file: /tmp/autopkgtest.oUusQr/pybuild-autopkgtest-stdout 281s /tmp/autopkgtest.oUusQr/wrapper.sh: writing script pid 4349 to /tmp/autopkgtest_script_pid 281s pybuild-autopkgtest 281s /tmp/autopkgtest.oUusQr/wrapper.sh: checking for leaked background processes... 281s /tmp/autopkgtest.oUusQr/wrapper.sh: waiting for tee/cat subprocesses... 281s /tmp/autopkgtest.oUusQr/wrapper.sh: cleaning up... 281s /tmp/autopkgtest.oUusQr/wrapper.sh: Exit status: 0 281s autopkgtest: DBG: testbed command exited with code 0 282s autopkgtest [12:31:33]: test pybuild-autopkgtest: -----------------------] 282s autopkgtest: DBG: testbed executing test finished with exit status 0 282s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.oUusQr/pybuild-autopkgtest-stdout /tmp/autopkgtest-work.u5acv382/out/pybuild-autopkgtest-stdout 282s autopkgtest: DBG: got reply from testbed: ok 282s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.oUusQr/pybuild-autopkgtest-stderr /tmp/autopkgtest-work.u5acv382/out/pybuild-autopkgtest-stderr 282s autopkgtest: DBG: got reply from testbed: ok 282s pybuild-autopkgtest PASS 282s autopkgtest [12:31:33]: test pybuild-autopkgtest: - - - - - - - - - - results - - - - - - - - - - 282s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.oUusQr/pybuild-autopkgtest-artifacts/ /tmp/autopkgtest-work.u5acv382/out/artifacts/ 282s autopkgtest: DBG: got reply from testbed: ok 282s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.oUusQr/pybuild-autopkgtest-artifacts', '/tmp/autopkgtest.oUusQr/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 282s autopkgtest: DBG: testbed command exited with code 0 282s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 282s autopkgtest [12:31:33]: @@@@@@@@@@@@@@@@@@@@ summary 282s pybuild-autopkgtest PASS 282s autopkgtest: DBG: testbed stop 282s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.oUusQr 282s autopkgtest: DBG: sending command to testbed: close 301s autopkgtest: DBG: got reply from testbed: ok 301s autopkgtest: DBG: sending command to testbed: quit 301s nova [W] Using flock in prodstack6-s390x 301s Creating nova instance adt-plucky-s390x-pyepr-20250219-122651-juju-7f2275-prod-proposed-migration-environment-15-8a738da2-1e4a-45ee-9f25-b9803527f2fa from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 301s nova [W] Timed out waiting for 829c8fdc-38d0-4967-b141-8fb194331647 to get deleted.