0s autopkgtest: DBG: testbed init 0s autopkgtest [01:54:38]: starting date and time: 2025-02-16 01:54:38+0000 0s autopkgtest [01:54:38]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [01:54:38]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work._ngydvgr/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:glibc,src:iproute2,src:php-twig,src:postgresql-17,src:postgresql-common,src:roundcube --apt-upgrade python-av --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-28.secgroup --name adt-plucky-s390x-python-av-20250216-015438-juju-7f2275-prod-proposed-migration-environment-15-94dfeacd-033c-4b10-a3a5-755d24519761 --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 103s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.bCjqFT 103s autopkgtest: DBG: sending command to testbed: print-execute-command 103s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.saxzbw_u/runcmd 103s autopkgtest: DBG: sending command to testbed: capabilities 103s autopkgtest: DBG: got reply from testbed: ok revert-full-system reboot revert suggested-normal-user=ubuntu isolation-machine root-on-testbed 103s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'reboot', 'revert', 'suggested-normal-user=ubuntu', 'isolation-machine', 'root-on-testbed', 'has_internet'] 103s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.bCjqFT'], kind short, sout raw, serr pipe, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.bCjqFT/wrapper.sh 103s autopkgtest: DBG: got reply from testbed: ok 103s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.bCjqFT/wrapper.sh'], kind short, sout raw, serr pipe, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest [01:56:22]: testbed dpkg architecture: s390x 104s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest [01:56:22]: testbed apt version: 2.9.28 104s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest: DBG: testbed has eatmydata 104s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest [01:56:22]: @@@@@@@@@@@@@@@@@@@@ test bed setup 104s 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 [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest [01:56:22]: testbed release detected to be: None 104s 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 [] 104s autopkgtest: DBG: testbed command exited with code 0 104s 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 [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest: DBG: adding APT source: Types: deb deb-src 105s URIs: http://ftpmaster.internal/ubuntu/ 105s Suites: plucky-proposed 105s Components: main restricted universe multiverse 105s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 105s 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 [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 105s Package: * 105s Pin: release plucky-proposed 105s Pin-Priority: 500 105s 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 [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest [01:56:23]: updating testbed package index (apt update) 105s 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'] 105s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 106s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 106s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 106s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 106s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.0 kB] 106s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 106s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 106s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [842 kB] 106s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [166 kB] 106s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 106s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 106s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 106s Fetched 2083 kB in 1s (2087 kB/s) 107s Reading package lists... 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 107s Package: * 107s Pin: release plucky-proposed 107s Pin-Priority: 100 107s 107s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 107s Pin: release plucky-proposed 107s Pin-Priority: 995 107s 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:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s 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.bCjqFT/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s 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'] 107s + lsb_release --codename --short 107s + RELEASE=plucky 107s + cat 107s + [ plucky != trusty ] 107s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 107s Reading package lists... 108s Building dependency tree... 108s Reading state information... 108s Calculating upgrade... 108s The following packages were automatically installed and are no longer required: 108s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 108s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 108s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 108s linux-tools-6.11.0-8-generic 108s Use 'sudo apt autoremove' to remove them. 108s The following packages will be upgraded: 108s dash gcc-14-base libatomic1 libgcc-s1 libp11-kit0 libstdc++6 libtasn1-6 108s libxdmcp6 108s 8 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 108s Need to get 1471 kB of archives. 108s After this operation, 24.6 kB of additional disk space will be used. 108s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 108s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 108s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 108s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 108s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 108s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu2 [316 kB] 108s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 108s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 109s Preconfiguring packages ... 109s Fetched 1471 kB in 1s (2366 kB/s) 109s (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 ... 80969 files and directories currently installed.) 109s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 109s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 109s Setting up dash (0.5.12-12ubuntu1) ... 109s (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 ... 80969 files and directories currently installed.) 109s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 109s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 109s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 109s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 109s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 109s (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 ... 80969 files and directories currently installed.) 109s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 109s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 109s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 109s (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 ... 80969 files and directories currently installed.) 109s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 109s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 109s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 109s (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 ... 80969 files and directories currently installed.) 109s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu2_s390x.deb ... 109s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu2) over (0.25.5-2ubuntu1) ... 109s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 109s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 109s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 109s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 109s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 109s Setting up libp11-kit0:s390x (0.25.5-2ubuntu2) ... 109s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 109s Setting up libtasn1-6:s390x (4.20.0-2) ... 109s Processing triggers for libc-bin (2.40-4ubuntu1) ... 109s Processing triggers for man-db (2.13.0-1) ... 110s Processing triggers for debianutils (5.21) ... 110s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 110s + /usr/lib/apt/apt-helper analyze-pattern ?true 110s + uname -r 110s + sed s/\./\\./g 110s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 110s + apt list ?obsolete 110s + tail -n+2 110s + cut -d/ -f1 110s + grep -v ^linux-.*6\.12\.0-15-generic.* 110s + true 110s + obsolete_pkgs= 110s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 110s Reading package lists... 110s Building dependency tree... 110s Reading state information... 110s The following packages will be REMOVED: 110s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 110s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 110s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 110s linux-tools-6.11.0-8-generic* 111s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 111s After this operation, 167 MB disk space will be freed. 111s (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 ... 80969 files and directories currently installed.) 111s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 111s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 111s Removing libpython3.12t64:s390x (3.12.9-1) ... 111s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 111s Removing libnsl2:s390x (1.3.0-3build3) ... 111s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 111s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 111s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 112s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 112s Processing triggers for libc-bin (2.40-4ubuntu1) ... 112s (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 ... 55869 files and directories currently installed.) 112s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 112s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 112s + grep -q trusty /etc/lsb-release 112s + [ ! -d /usr/share/doc/unattended-upgrades ] 112s + [ ! -d /usr/share/doc/lxd ] 112s + [ ! -d /usr/share/doc/lxd-client ] 112s + [ ! -d /usr/share/doc/snapd ] 112s + type iptables 112s + cat 112s + chmod 755 /etc/rc.local 112s + . /etc/rc.local 112s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 112s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 112s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 112s + uname -m 112s + [ s390x = ppc64le ] 112s + [ -d /run/systemd/system ] 112s + systemd-detect-virt --quiet --vm 112s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 112s + cat 112s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 112s + echo COMPRESS=lz4 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest [01:56:30]: upgrading testbed (apt dist-upgrade and autopurge) 112s 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'] 112s Reading package lists... 113s Building dependency tree... 113s Reading state information... 113s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 113s Starting 2 pkgProblemResolver with broken count: 0 113s Done 113s Entering ResolveByKeep 113s 113s The following packages will be upgraded: 113s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 113s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 113s Need to get 10.7 MB of archives. 113s After this operation, 305 kB of additional disk space will be used. 113s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 114s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 114s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 114s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 115s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 115s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 115s Preconfiguring packages ... 115s Fetched 10.7 MB in 1s (8258 kB/s) 115s (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 ... 55867 files and directories currently installed.) 115s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 115s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 115s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 115s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 115s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 115s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 115s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 115s Checking for services that may need to be restarted... 115s Checking init scripts... 115s Checking for services that may need to be restarted... 115s Checking init scripts... 115s Stopping some services possibly affected by the upgrade (will be restarted later): 115s cron: stopping...done. 115s 115s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 115s Setting up libc6:s390x (2.41-1ubuntu1) ... 115s Checking for services that may need to be restarted... 115s Checking init scripts... 115s Restarting services possibly affected by the upgrade: 115s cron: restarting...done. 115s 115s Services restarted successfully. 116s (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 ... 55868 files and directories currently installed.) 116s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 116s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 116s Setting up libc-bin (2.41-1ubuntu1) ... 116s (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 ... 55868 files and directories currently installed.) 116s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 116s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 116s Setting up iproute2 (6.13.0-1ubuntu1) ... 116s Setting up locales (2.41-1ubuntu1) ... 116s Installing new version of config file /etc/locale.alias ... 116s Generating locales (this might take a while)... 117s en_US.UTF-8... done 117s Generation complete. 117s Setting up libc-dev-bin (2.41-1ubuntu1) ... 117s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 117s Processing triggers for man-db (2.13.0-1) ... 118s Processing triggers for systemd (257.2-3ubuntu1) ... 119s autopkgtest: DBG: testbed command exited with code 0 119s 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'] 119s Reading package lists... 119s Building dependency tree... 119s Reading state information... 119s Starting pkgProblemResolver with broken count: 0 119s Starting 2 pkgProblemResolver with broken count: 0 119s Done 120s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 120s autopkgtest: DBG: testbed command exited with code 0 120s 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.bCjqFT/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 120s autopkgtest: DBG: testbed command exited with code 1 120s autopkgtest [01:56:38]: rebooting testbed after setup commands that affected boot 120s autopkgtest: DBG: sending command to testbed: reboot 138s autopkgtest: DBG: got reply from testbed: ok 138s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 138s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.bCjqFT'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.bCjqFT/autopkgtest-reboot 138s autopkgtest: DBG: got reply from testbed: ok 138s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.bCjqFT/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.bCjqFT/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.bCjqFT/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.bCjqFT'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.bCjqFT/autopkgtest-reboot-prepare 139s autopkgtest: DBG: got reply from testbed: ok 139s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.bCjqFT/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.bCjqFT/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest [01:56:58]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 140s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.bCjqFT/testbed-packages"], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.bCjqFT/testbed-packages /tmp/autopkgtest-work._ngydvgr/out/testbed-packages 140s autopkgtest: DBG: got reply from testbed: ok 140s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 140s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.bCjqFT'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.bCjqFT/autopkgtest-reboot 141s autopkgtest: DBG: got reply from testbed: ok 141s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.bCjqFT/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.bCjqFT/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.bCjqFT/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.bCjqFT'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.bCjqFT/autopkgtest-reboot-prepare 141s autopkgtest: DBG: got reply from testbed: ok 141s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.bCjqFT/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.bCjqFT/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: Binaries: initialising 142s autopkgtest [01:57:00]: @@@@@@@@@@@@@@@@@@@@ apt-source python-av 142s autopkgtest: DBG: blame += python-av 142s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 142s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'python-av'], kind short, sout pipe, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-av$'], kind short, sout pipe, serr raw, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-av=12.3.0-2ubuntu1'], kind short, sout pipe, serr raw, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: install_deps: deps_new=[] 143s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s 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.bCjqFT/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source python-av=12.3.0-2ubuntu1 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 python-av_*.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=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1'] 143s + cd / 143s + mktemp -d /tmp/autopkgtest.bCjqFT/build.XXX 143s + builddir=/tmp/autopkgtest.bCjqFT/build.PCD 143s + cd /tmp/autopkgtest.bCjqFT/build.PCD 143s + apt-get source -d -q --only-source python-av=12.3.0-2ubuntu1 143s + OUT=Reading package lists... 143s NOTICE: 'python-av' packaging is maintained in the 'Git' version control system at: 143s https://salsa.debian.org/debian/python-av.git 143s Please use: 143s git clone https://salsa.debian.org/debian/python-av.git 143s to retrieve the latest (possibly unreleased) updates to the package. 143s Need to get 221 kB of source archives. 143s Get:1 http://ftpmaster.internal/ubuntu plucky/universe python-av 12.3.0-2ubuntu1 (dsc) [2298 B] 143s Get:2 http://ftpmaster.internal/ubuntu plucky/universe python-av 12.3.0-2ubuntu1 (tar) [200 kB] 143s Get:3 http://ftpmaster.internal/ubuntu plucky/universe python-av 12.3.0-2ubuntu1 (diff) [18.8 kB] 143s Fetched 221 kB in 0s (447 kB/s) 143s Download complete and in download only mode 143s + [ -n ] 143s + echo Reading package lists... 143s NOTICE: 'python-av' packaging is maintained in the 'Git' version control system at: 143s https://salsa.debian.org/debian/python-av.git 143s Please use: 143s git clone https://salsa.debian.org/debian/python-av.git 143s to retrieve the latest (possibly unreleased) updates to the package. 143s Need to get 221 kB of source archives. 143s Get:1 http://ftpmaster.internal/ubuntu plucky/universe python-av 12.3.0-2ubuntu1 (dsc) [2298 B] 143s Get:2 http://ftpmaster.internal/ubuntu plucky/universe python-av 12.3.0-2ubuntu1 (tar) [200 kB] 143s Get:3 http://ftpmaster.internal/ubuntu plucky/universe python-av 12.3.0-2ubuntu1 (diff) [18.8 kB] 143s Fetched 221 kB in 0s (447 kB/s) 143s Download complete and in download only mode 143s + grep ^Get: 143s Get:1 http://ftpmaster.internal/ubuntu plucky/universe python-av 12.3.0-2ubuntu1 (dsc) [2298 B] 143s Get:2 http://ftpmaster.internal/ubuntu plucky/universe python-av 12.3.0-2ubuntu1 (tar) [200 kB] 143s Get:3 http://ftpmaster.internal/ubuntu plucky/universe python-av 12.3.0-2ubuntu1 (diff) [18.8 kB] 143s + dpkg-source -x python-av_12.3.0-2ubuntu1.dsc src 144s gpgv: Signature made Fri Jan 10 20:55:33 2025 UTC 144s gpgv: using RSA key 5C7ABEA20F8630459CC8C8B5E27F2CF8458C2FA4 144s gpgv: Can't check signature: No public key 144s dpkg-source: warning: cannot verify inline signature for ./python-av_12.3.0-2ubuntu1.dsc: no acceptable signature found 144s + chmod -R a+rX . 144s + cd src/. 144s + pwd 144s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest [01:57:02]: testing package python-av version 12.3.0-2ubuntu1 144s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.bCjqFT/build.PCD/src/debian/ /tmp/autopkgtest-work._ngydvgr/out/pkg/debian/ 144s autopkgtest: DBG: got reply from testbed: ok 144s autopkgtest: DBG: autodep8 generated control: ----- 144s Test-Command: 144s set -e; 144s rm -rf av; 144s for py in $(py3versions -r 2>/dev/null); do 144s $py -m pytest --ignore=tests/test_doctests.py --ignore=tests/test_timeout.py 144s -k 'not test_audio_transcode 144s and not test_bits_per_coded_sample 144s and not test_codec_delay 144s and not test_codec_tag 144s and not test_container_probing 144s and not test_context_manager 144s and not test_data 144s and not test_decode_audio_sample_count 144s and not test_decode_close_then_use 144s and not test_decoded_motion_vectors 144s and not test_decoded_time_base 144s and not test_decoded_video_frame_count 144s and not test_decode_half 144s and not test_deprecated_stream_seek 144s and not test_encoding 144s and not test_filter_flush 144s and not test_filter_h264_mp4toannexb 144s and not test_filter_output_parameters 144s and not test_flush_decoded_video_frame_count 144s and not test_frame_index 144s and not test_is_corrupt 144s and not test_is_discard 144s and not test_is_disposable 144s and not test_is_keyframe 144s and not test_movtext 144s and not test_noside_data 144s and not test_parse 144s and not test_path_input 144s and not test_path_output 144s and not test_penguin_joke 144s and not test_reading 144s and not test_seek_end 144s and not test_seek_float 144s and not test_seek_int64 144s and not test_seek_middle 144s and not test_seek_start 144s and not test_selection 144s and not test_set_duration 144s and not test_side_data 144s and not test_sky_timelapse 144s and not test_stream_probing 144s and not test_stream_seek 144s and not test_stream_tuples 144s and not test_str_input 144s and not test_str_output 144s and not test_subtitle_flush 144s and not test_transcode 144s and not test_vobsub'; 144s done 144s Depends: 144s python3-all, 144s python3-av, 144s python3-pytest, 144s Architecture: !ppc64 !ppc64el 144s 144s Test-Command: 144s set -e; 144s rm -rf av; 144s for py in $(py3versions -r 2>/dev/null); do 144s $py -m pytest --ignore=tests/test_doctests.py --ignore=tests/test_timeout.py 144s -k 'not test_audio_transcode 144s and not test_bits_per_coded_sample 144s and not test_codec_delay 144s and not test_codec_tag 144s and not test_container_probing 144s and not test_context_manager 144s and not test_data 144s and not test_decode_audio_sample_count 144s and not test_decode_close_then_use 144s and not test_decoded_motion_vectors 144s and not test_decoded_time_base 144s and not test_decoded_video_frame_count 144s and not test_decode_half 144s and not test_deprecated_stream_seek 144s and not test_encoding 144s and not test_filter_flush 144s and not test_filter_h264_mp4toannexb 144s and not test_filter_output_parameters 144s and not test_flush_decoded_video_frame_count 144s and not test_frame_index 144s and not test_is_corrupt 144s and not test_is_discard 144s and not test_is_disposable 144s and not test_is_keyframe 144s and not test_movtext 144s and not test_noside_data 144s and not test_parse 144s and not test_path_input 144s and not test_path_output 144s and not test_penguin_joke 144s and not test_reading 144s and not test_seek_end 144s and not test_seek_float 144s and not test_seek_int64 144s and not test_seek_middle 144s and not test_seek_start 144s and not test_selection 144s and not test_set_duration 144s and not test_side_data 144s and not test_sky_timelapse 144s and not test_stream_probing 144s and not test_stream_seek 144s and not test_stream_tuples 144s and not test_str_input 144s and not test_str_output 144s and not test_subtitle_flush 144s and not test_transcode 144s and not test_vobsub 144s and not test_reformat_pixel_format_align 144s and not test_encoding_h264'; 144s done 144s Depends: 144s python3-all, 144s python3-av, 144s python3-pytest, 144s Architecture: ppc64 ppc64el 144s 144s Test-Command: 144s set -e; 144s rm -rf av; 144s for py in $(py3versions -r 2>/dev/null); do 144s $py -m pytest; 144s done 144s Restrictions: flaky, needs-internet 144s Depends: 144s ca-certificates, 144s python3-all, 144s python3-av, 144s python3-pytest, 144s Architecture: !ppc64 !ppc64el 144s 144s Test-Command: 144s set -e; 144s rm -rf av; 144s for py in $(py3versions -r 2>/dev/null); do 144s $py -m pytest 144s -k 'not test_reformat_pixel_format_align 144s and not test_encoding_h264'; 144s done 144s Restrictions: flaky, needs-internet 144s Depends: 144s ca-certificates, 144s python3-all, 144s python3-av, 144s python3-pytest, 144s Architecture: ppc64 ppc64el 144s 144s 144s Test-Command: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import av; print(av)" ; done 144s Depends: python3-all, python3-av, 144s Restrictions: allow-stderr, superficial, 144s Features: test-name=autodep8-python3 144s 144s 144s ------- 144s autopkgtest: DBG: processing dependency python3-all 144s autopkgtest: DBG: processing dependency python3-av 144s autopkgtest: DBG: marked alternatives ['python3-av'] as a synthesised dependency 144s autopkgtest: DBG: processing dependency python3-pytest 144s autopkgtest: DBG: Test defined: name command1 path None command " set -e; rm -rf av; for py in $(py3versions -r 2>/dev/null); do $py -m pytest --ignore=tests/test_doctests.py --ignore=tests/test_timeout.py -k 'not test_audio_transcode and not test_bits_per_coded_sample and not test_codec_delay and not test_codec_tag and not test_container_probing and not test_context_manager and not test_data and not test_decode_audio_sample_count and not test_decode_close_then_use and not test_decoded_motion_vectors and not test_decoded_time_base and not test_decoded_video_frame_count and not test_decode_half and not test_deprecated_stream_seek and not test_encoding and not test_filter_flush and not test_filter_h264_mp4toannexb and not test_filter_output_parameters and not test_flush_decoded_video_frame_count and not test_frame_index and not test_is_corrupt and not test_is_discard and not test_is_disposable and not test_is_keyframe and not test_movtext and not test_noside_data and not test_parse and not test_path_input and not test_path_output and not test_penguin_joke and not test_reading and not test_seek_end and not test_seek_float and not test_seek_int64 and not test_seek_middle and not test_seek_start and not test_selection and not test_set_duration and not test_side_data and not test_sky_timelapse and not test_stream_probing and not test_stream_seek and not test_stream_tuples and not test_str_input and not test_str_output and not test_subtitle_flush and not test_transcode and not test_vobsub'; done" restrictions [] features [] depends ['python3-all', 'python3-av', 'python3-pytest'] 144s autopkgtest: DBG: processing dependency python3-all 144s autopkgtest: DBG: processing dependency python3-av 144s autopkgtest: DBG: marked alternatives ['python3-av'] as a synthesised dependency 144s autopkgtest: DBG: processing dependency python3-pytest 144s command2 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 144s autopkgtest: DBG: processing dependency ca-certificates 144s autopkgtest: DBG: processing dependency python3-all 144s autopkgtest: DBG: processing dependency python3-av 144s autopkgtest: DBG: marked alternatives ['python3-av'] as a synthesised dependency 144s autopkgtest: DBG: processing dependency python3-pytest 145s autopkgtest: DBG: Test defined: name command3 path None command " set -e; rm -rf av; for py in $(py3versions -r 2>/dev/null); do $py -m pytest; done" restrictions ['flaky', 'needs-internet'] features [] depends ['ca-certificates', 'python3-all', 'python3-av', 'python3-pytest'] 145s autopkgtest: DBG: processing dependency ca-certificates 145s autopkgtest: DBG: processing dependency python3-all 145s autopkgtest: DBG: processing dependency python3-av 145s autopkgtest: DBG: marked alternatives ['python3-av'] as a synthesised dependency 145s autopkgtest: DBG: processing dependency python3-pytest 145s command4 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 145s autopkgtest: DBG: processing dependency python3-all 145s autopkgtest: DBG: processing dependency python3-av 145s autopkgtest: DBG: marked alternatives ['python3-av'] as a synthesised dependency 145s autopkgtest: DBG: Test defined: name autodep8-python3 path None command "set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import av; print(av)" ; done" restrictions ['allow-stderr', 'superficial'] features ['test-name=autodep8-python3'] depends ['python3-all', 'python3-av'] 145s autopkgtest [01:57:03]: build not needed 145s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.bCjqFT/build.PCD/src/ /tmp/autopkgtest-work._ngydvgr/out/tests-tree/ 146s autopkgtest: DBG: got reply from testbed: ok 146s autopkgtest: DBG: autodep8 generated control: ----- 146s Test-Command: 146s set -e; 146s rm -rf av; 146s for py in $(py3versions -r 2>/dev/null); do 146s $py -m pytest --ignore=tests/test_doctests.py --ignore=tests/test_timeout.py 146s -k 'not test_audio_transcode 146s and not test_bits_per_coded_sample 146s and not test_codec_delay 146s and not test_codec_tag 146s and not test_container_probing 146s and not test_context_manager 146s and not test_data 146s and not test_decode_audio_sample_count 146s and not test_decode_close_then_use 146s and not test_decoded_motion_vectors 146s and not test_decoded_time_base 146s and not test_decoded_video_frame_count 146s and not test_decode_half 146s and not test_deprecated_stream_seek 146s and not test_encoding 146s and not test_filter_flush 146s and not test_filter_h264_mp4toannexb 146s and not test_filter_output_parameters 146s and not test_flush_decoded_video_frame_count 146s and not test_frame_index 146s and not test_is_corrupt 146s and not test_is_discard 146s and not test_is_disposable 146s and not test_is_keyframe 146s and not test_movtext 146s and not test_noside_data 146s and not test_parse 146s and not test_path_input 146s and not test_path_output 146s and not test_penguin_joke 146s and not test_reading 146s and not test_seek_end 146s and not test_seek_float 146s and not test_seek_int64 146s and not test_seek_middle 146s and not test_seek_start 146s and not test_selection 146s and not test_set_duration 146s and not test_side_data 146s and not test_sky_timelapse 146s and not test_stream_probing 146s and not test_stream_seek 146s and not test_stream_tuples 146s and not test_str_input 146s and not test_str_output 146s and not test_subtitle_flush 146s and not test_transcode 146s and not test_vobsub'; 146s done 146s Depends: 146s python3-all, 146s python3-av, 146s python3-pytest, 146s Architecture: !ppc64 !ppc64el 146s 146s Test-Command: 146s set -e; 146s rm -rf av; 146s for py in $(py3versions -r 2>/dev/null); do 146s $py -m pytest --ignore=tests/test_doctests.py --ignore=tests/test_timeout.py 146s -k 'not test_audio_transcode 146s and not test_bits_per_coded_sample 146s and not test_codec_delay 146s and not test_codec_tag 146s and not test_container_probing 146s and not test_context_manager 146s and not test_data 146s and not test_decode_audio_sample_count 146s and not test_decode_close_then_use 146s and not test_decoded_motion_vectors 146s and not test_decoded_time_base 146s and not test_decoded_video_frame_count 146s and not test_decode_half 146s and not test_deprecated_stream_seek 146s and not test_encoding 146s and not test_filter_flush 146s and not test_filter_h264_mp4toannexb 146s and not test_filter_output_parameters 146s and not test_flush_decoded_video_frame_count 146s and not test_frame_index 146s and not test_is_corrupt 146s and not test_is_discard 146s and not test_is_disposable 146s and not test_is_keyframe 146s and not test_movtext 146s and not test_noside_data 146s and not test_parse 146s and not test_path_input 146s and not test_path_output 146s and not test_penguin_joke 146s and not test_reading 146s and not test_seek_end 146s and not test_seek_float 146s and not test_seek_int64 146s and not test_seek_middle 146s and not test_seek_start 146s and not test_selection 146s and not test_set_duration 146s and not test_side_data 146s and not test_sky_timelapse 146s and not test_stream_probing 146s and not test_stream_seek 146s and not test_stream_tuples 146s and not test_str_input 146s and not test_str_output 146s and not test_subtitle_flush 146s and not test_transcode 146s and not test_vobsub 146s and not test_reformat_pixel_format_align 146s and not test_encoding_h264'; 146s done 146s Depends: 146s python3-all, 146s python3-av, 146s python3-pytest, 146s Architecture: ppc64 ppc64el 146s 146s Test-Command: 146s set -e; 146s rm -rf av; 146s for py in $(py3versions -r 2>/dev/null); do 146s $py -m pytest; 146s done 146s Restrictions: flaky, needs-internet 146s Depends: 146s ca-certificates, 146s python3-all, 146s python3-av, 146s python3-pytest, 146s Architecture: !ppc64 !ppc64el 146s 146s Test-Command: 146s set -e; 146s rm -rf av; 146s for py in $(py3versions -r 2>/dev/null); do 146s $py -m pytest 146s -k 'not test_reformat_pixel_format_align 146s and not test_encoding_h264'; 146s done 146s Restrictions: flaky, needs-internet 146s Depends: 146s ca-certificates, 146s python3-all, 146s python3-av, 146s python3-pytest, 146s Architecture: ppc64 ppc64el 146s 146s 146s Test-Command: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import av; print(av)" ; done 146s Depends: python3-all, python3-av, 146s Restrictions: allow-stderr, superficial, 146s Features: test-name=autodep8-python3 146s 146s 146s ------- 146s autopkgtest: DBG: processing dependency python3-all 146s autopkgtest: DBG: processing dependency python3-av 146s autopkgtest: DBG: marked alternatives ['python3-av'] as a synthesised dependency 146s autopkgtest: DBG: processing dependency python3-pytest 146s autopkgtest: DBG: Test defined: name command1 path None command " set -e; rm -rf av; for py in $(py3versions -r 2>/dev/null); do $py -m pytest --ignore=tests/test_doctests.py --ignore=tests/test_timeout.py -k 'not test_audio_transcode and not test_bits_per_coded_sample and not test_codec_delay and not test_codec_tag and not test_container_probing and not test_context_manager and not test_data and not test_decode_audio_sample_count and not test_decode_close_then_use and not test_decoded_motion_vectors and not test_decoded_time_base and not test_decoded_video_frame_count and not test_decode_half and not test_deprecated_stream_seek and not test_encoding and not test_filter_flush and not test_filter_h264_mp4toannexb and not test_filter_output_parameters and not test_flush_decoded_video_frame_count and not test_frame_index and not test_is_corrupt and not test_is_discard and not test_is_disposable and not test_is_keyframe and not test_movtext and not test_noside_data and not test_parse and not test_path_input and not test_path_output and not test_penguin_joke and not test_reading and not test_seek_end and not test_seek_float and not test_seek_int64 and not test_seek_middle and not test_seek_start and not test_selection and not test_set_duration and not test_side_data and not test_sky_timelapse and not test_stream_probing and not test_stream_seek and not test_stream_tuples and not test_str_input and not test_str_output and not test_subtitle_flush and not test_transcode and not test_vobsub'; done" restrictions [] features [] depends ['python3-all', 'python3-av', 'python3-pytest'] 146s autopkgtest: DBG: processing dependency python3-all 146s autopkgtest: DBG: processing dependency python3-av 146s autopkgtest: DBG: marked alternatives ['python3-av'] as a synthesised dependency 146s autopkgtest: DBG: processing dependency python3-pytest 146s command2 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 146s autopkgtest: DBG: processing dependency ca-certificates 146s autopkgtest: DBG: processing dependency python3-all 146s autopkgtest: DBG: processing dependency python3-av 146s autopkgtest: DBG: marked alternatives ['python3-av'] as a synthesised dependency 146s autopkgtest: DBG: processing dependency python3-pytest 146s autopkgtest: DBG: Test defined: name command3 path None command " set -e; rm -rf av; for py in $(py3versions -r 2>/dev/null); do $py -m pytest; done" restrictions ['flaky', 'needs-internet'] features [] depends ['ca-certificates', 'python3-all', 'python3-av', 'python3-pytest'] 146s autopkgtest: DBG: processing dependency ca-certificates 146s autopkgtest: DBG: processing dependency python3-all 146s autopkgtest: DBG: processing dependency python3-av 146s autopkgtest: DBG: marked alternatives ['python3-av'] as a synthesised dependency 146s autopkgtest: DBG: processing dependency python3-pytest 146s command4 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 146s autopkgtest: DBG: processing dependency python3-all 146s autopkgtest: DBG: processing dependency python3-av 146s autopkgtest: DBG: marked alternatives ['python3-av'] as a synthesised dependency 146s autopkgtest: DBG: Test defined: name autodep8-python3 path None command "set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import av; print(av)" ; done" restrictions ['allow-stderr', 'superficial'] features ['test-name=autodep8-python3'] depends ['python3-all', 'python3-av'] 146s autopkgtest [01:57:04]: test command1: preparing testbed 146s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['python3-all', 'python3-av', 'python3-pytest'] 146s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 146s autopkgtest: DBG: install_deps: deps_new=['python3-all', 'python3-av', 'python3-pytest'] 146s autopkgtest: DBG: install-deps: satisfying python3-all, python3-av, python3-pytest 146s autopkgtest: DBG: can use apt-get on testbed: True 146s 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-all, python3-av, python3-pytest'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 147s Reading package lists... 147s Building dependency tree... 147s Reading state information... 147s Starting pkgProblemResolver with broken count: 0 147s Starting 2 pkgProblemResolver with broken count: 0 147s Done 147s The following NEW packages will be installed: 147s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono libaom3 147s libasound2-data libasound2t64 libass9 libasyncns0 libavc1394-0 libavcodec61 147s libavdevice61 libavfilter10 libavformat61 libavutil59 libblas3 libbluray2 147s libbs2b0 libcaca0 libcairo-gobject2 libcairo2 libcdio-cdda2t64 147s libcdio-paranoia2t64 libcdio19t64 libchromaprint1 libcjson1 libcodec2-1.2 147s libdatrie1 libdav1d7 libdc1394-25 libdecor-0-0 libdeflate0 libdrm-radeon1 147s libdvdnav4 libdvdread8t64 libfftw3-double3 libflac12t64 libflite1 147s libfontconfig1 libfreetype6 libgbm1 libgdk-pixbuf-2.0-0 147s libgdk-pixbuf2.0-common libgfortran5 libgl1 libgl1-mesa-dri libglapi-mesa 147s libglvnd0 libglx-mesa0 libglx0 libgme0 libgomp1 libgraphite2-3 libgsm1 147s libharfbuzz0b libiec61883-0 libjack-jackd2-0 libjbig0 libjpeg-turbo8 147s libjpeg8 libjxl0.11 liblapack3 liblcms2-2 liblilv-0-0 libmbedcrypto16 147s libmp3lame0 libmpg123-0t64 libmysofa1 libnorm1t64 libnsl2 libogg0 147s libopenal-data libopenal1 libopenjp2-7 libopenmpt0t64 libopus0 147s libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpgm-5.3-0t64 147s libpixman-1-0 libplacebo349 libpostproc58 libpulse0 libpython3.12-minimal 147s libpython3.12-stdlib librabbitmq4 librav1e0.7 libraw1394-11 librist4 147s librsvg2-2 librubberband2 libsamplerate0 libsdl2-2.0-0 libserd-0-0 147s libsharpyuv0 libshine3 libsnappy1v5 libsndfile1 libsodium23 libsord-0-0 147s libsoxr0 libspeex1 libsratom-0-0 libsrt1.5-gnutls libssh-4 libsvtav1enc2 147s libswresample5 libswscale8 libthai-data libthai0 libtheoradec1 libtheoraenc1 147s libtiff6 libtwolame0 libudfread0 libunibreak6 libva-drm2 libva-x11-2 libva2 147s libvdpau1 libvidstab1.1 libvorbis0a libvorbisenc2 libvorbisfile3 libvpx9 147s libvulkan1 libwayland-client0 libwayland-cursor0 libwayland-egl1 147s libwayland-server0 libwebp7 libwebpmux3 libx11-xcb1 libx264-164 libx265-215 147s libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-randr0 libxcb-render0 147s libxcb-shape0 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcursor1 libxfixes3 147s libxi6 libxrandr2 libxrender1 libxshmfence1 libxss1 libxv1 libxvidcore4 147s libxxf86vm1 libzimg2 libzix-0-0 libzmq5 libzvbi-common libzvbi0t64 147s mesa-libgallium ocl-icd-libopencl1 python3-all python3-av python3-iniconfig 147s python3-numpy python3-packaging python3-pluggy python3-pytest python3.12 147s python3.12-minimal x11-common 147s 0 upgraded, 172 newly installed, 0 to remove and 0 not upgraded. 147s Need to get 97.7 MB of archives. 147s After this operation, 292 MB of additional disk space will be used. 147s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 148s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 148s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 148s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 148s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 148s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 148s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 148s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 148s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-1.1ubuntu2 [37.4 kB] 148s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-1.1ubuntu2 [150 kB] 148s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-1.1ubuntu2 [191 kB] 148s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libaom3 s390x 3.12.0-1 [1492 kB] 148s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libasound2-data all 1.2.13-1build1 [21.1 kB] 148s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libasound2t64 s390x 1.2.13-1build1 [411 kB] 148s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 148s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 148s Get:17 http://ftpmaster.internal/ubuntu plucky/universe s390x libunibreak6 s390x 6.1-2 [26.1 kB] 148s Get:18 http://ftpmaster.internal/ubuntu plucky/universe s390x libass9 s390x 1:0.17.3-1 [110 kB] 149s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libasyncns0 s390x 0.8-6build4 [11.4 kB] 149s Get:20 http://ftpmaster.internal/ubuntu plucky/universe s390x libva2 s390x 2.22.0-2 [74.8 kB] 149s Get:21 http://ftpmaster.internal/ubuntu plucky/universe s390x libva-drm2 s390x 2.22.0-2 [7030 B] 149s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 149s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 149s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libxfixes3 s390x 1:6.0.0-2build1 [11.3 kB] 149s Get:25 http://ftpmaster.internal/ubuntu plucky/universe s390x libva-x11-2 s390x 2.22.0-2 [12.5 kB] 149s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libvdpau1 s390x 1.5-3 [28.2 kB] 149s Get:27 http://ftpmaster.internal/ubuntu plucky/universe s390x ocl-icd-libopencl1 s390x 2.3.2-1build1 [41.1 kB] 149s Get:28 http://ftpmaster.internal/ubuntu plucky/universe s390x libavutil59 s390x 7:7.1-3ubuntu3 [452 kB] 149s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-0 s390x 0.44.0-3 [201 kB] 149s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 149s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 149s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 149s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo2 s390x 1.18.2-2 [580 kB] 149s Get:34 http://ftpmaster.internal/ubuntu plucky/universe s390x libcodec2-1.2 s390x 1.2.0-3 [9027 kB] 149s Get:35 http://ftpmaster.internal/ubuntu plucky/universe s390x libdav1d7 s390x 1.5.1-1 [312 kB] 149s Get:36 http://ftpmaster.internal/ubuntu plucky/universe s390x libgsm1 s390x 1.0.22-1build1 [32.7 kB] 149s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x liblcms2-2 s390x 2.16-2 [175 kB] 149s Get:38 http://ftpmaster.internal/ubuntu plucky/universe s390x libjxl0.11 s390x 0.11.1-1 [1008 kB] 149s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libmp3lame0 s390x 3.100-6build1 [160 kB] 149s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libopenjp2-7 s390x 2.5.0-2ubuntu3 [208 kB] 149s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libopus0 s390x 1.5.2-2 [2928 kB] 149s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x librav1e0.7 s390x 0.7.1-9 [845 kB] 149s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo-gobject2 s390x 1.18.2-2 [127 kB] 149s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libgdk-pixbuf2.0-common all 2.42.12+dfsg-2 [8004 B] 149s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 149s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 149s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 149s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 149s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 149s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 149s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 149s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libgdk-pixbuf-2.0-0 s390x 2.42.12+dfsg-2 [154 kB] 149s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libthai-data all 0.1.29-2build1 [158 kB] 149s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libdatrie1 s390x 0.2.13-3build1 [20.6 kB] 149s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libthai0 s390x 0.1.29-2build1 [20.7 kB] 149s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libpango-1.0-0 s390x 1.56.1-1 [253 kB] 149s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libpangoft2-1.0-0 s390x 1.56.1-1 [50.3 kB] 149s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libpangocairo-1.0-0 s390x 1.56.1-1 [28.3 kB] 149s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x librsvg2-2 s390x 2.59.90+dfsg-2 [1986 kB] 149s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x libshine3 s390x 3.1.1-2build1 [45.7 kB] 149s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libsnappy1v5 s390x 1.2.1-1 [33.0 kB] 149s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libspeex1 s390x 1.2.1-3 [70.7 kB] 149s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x libsvtav1enc2 s390x 2.3.0+dfsg-1 [2294 kB] 150s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 150s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x libsoxr0 s390x 0.1.3-4build3 [69.5 kB] 150s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x libswresample5 s390x 7:7.1-3ubuntu3 [63.2 kB] 150s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x libtheoradec1 s390x 1.2.0~alpha1+dfsg-5 [68.5 kB] 150s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x libogg0 s390x 1.3.5-3build1 [24.4 kB] 150s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x libtheoraenc1 s390x 1.2.0~alpha1+dfsg-5 [142 kB] 150s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x libtwolame0 s390x 0.4.0-2build3 [56.4 kB] 150s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbis0a s390x 1.3.7-2 [112 kB] 150s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbisenc2 s390x 1.3.7-2 [80.6 kB] 150s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x libvpx9 s390x 1.15.0-1ubuntu1 [1604 kB] 150s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpmux3 s390x 1.5.0-0.1 [25.8 kB] 150s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x libx264-164 s390x 2:0.164.3108+git31e19f9-2build1 [592 kB] 150s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x libx265-215 s390x 4.1-2 [904 kB] 150s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x libxvidcore4 s390x 2:1.3.7-1build1 [214 kB] 150s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x libzvbi-common all 0.2.43-2ubuntu1 [42.7 kB] 150s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x libzvbi0t64 s390x 0.2.43-2ubuntu1 [275 kB] 150s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x libavcodec61 s390x 7:7.1-3ubuntu3 [8121 kB] 150s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x libraw1394-11 s390x 2.1.2-2build3 [28.3 kB] 150s Get:82 http://ftpmaster.internal/ubuntu plucky/main s390x libavc1394-0 s390x 0.5.4-5build3 [15.8 kB] 150s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x libudfread0 s390x 1.1.2-1build1 [18.5 kB] 150s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x libbluray2 s390x 1:1.3.4-1build1 [173 kB] 150s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x libchromaprint1 s390x 1.5.1-7 [34.2 kB] 150s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x libdvdread8t64 s390x 6.1.3-2 [54.6 kB] 150s Get:87 http://ftpmaster.internal/ubuntu plucky/universe s390x libdvdnav4 s390x 6.1.1-3build1 [40.3 kB] 150s Get:88 http://ftpmaster.internal/ubuntu plucky/universe s390x libgme0 s390x 0.6.3-7build1 [150 kB] 150s Get:89 http://ftpmaster.internal/ubuntu plucky/main s390x libmpg123-0t64 s390x 1.32.10-1 [179 kB] 150s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbisfile3 s390x 1.3.7-2 [18.2 kB] 150s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x libopenmpt0t64 s390x 0.7.13-1 [732 kB] 150s Get:92 http://ftpmaster.internal/ubuntu plucky/main s390x librabbitmq4 s390x 0.15.0-1 [37.9 kB] 150s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x libcjson1 s390x 1.7.18-3 [22.9 kB] 150s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x libmbedcrypto16 s390x 3.6.2-3ubuntu1 [261 kB] 150s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x librist4 s390x 0.2.11+dfsg-1 [77.5 kB] 150s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x libsrt1.5-gnutls s390x 1.5.4-1 [345 kB] 150s Get:97 http://ftpmaster.internal/ubuntu plucky/main s390x libssh-4 s390x 0.11.1-1 [203 kB] 150s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x libnorm1t64 s390x 1.5.9+dfsg-3.1build1 [158 kB] 150s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x libpgm-5.3-0t64 s390x 5.3.128~dfsg-2.1build1 [169 kB] 150s Get:100 http://ftpmaster.internal/ubuntu plucky/main s390x libsodium23 s390x 1.0.18-1build3 [138 kB] 150s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x libzmq5 s390x 4.3.5-1build2 [258 kB] 150s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x libavformat61 s390x 7:7.1-3ubuntu3 [1315 kB] 151s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x libbs2b0 s390x 3.1.0+dfsg-8 [10.8 kB] 151s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x libflite1 s390x 2.2-7 [13.6 MB] 151s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x libserd-0-0 s390x 0.32.4-1 [44.1 kB] 151s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x libzix-0-0 s390x 0.6.2-1 [27.1 kB] 151s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x libsord-0-0 s390x 0.16.18-1 [15.8 kB] 151s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x libsratom-0-0 s390x 0.6.18-1 [17.0 kB] 151s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x liblilv-0-0 s390x 0.24.26-1 [41.4 kB] 151s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x libmysofa1 s390x 1.3.2+dfsg-2ubuntu2 [1160 kB] 151s Get:111 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 151s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x libplacebo349 s390x 7.349.0-3 [3077 kB] 152s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x libpostproc58 s390x 7:7.1-3ubuntu3 [69.4 kB] 152s Get:114 http://ftpmaster.internal/ubuntu plucky/main s390x libfftw3-double3 s390x 3.3.10-2fakesync1build1 [511 kB] 152s Get:115 http://ftpmaster.internal/ubuntu plucky/main s390x libsamplerate0 s390x 0.2.2-4build1 [1344 kB] 152s Get:116 http://ftpmaster.internal/ubuntu plucky/universe s390x librubberband2 s390x 3.3.0+dfsg-2build2 [139 kB] 152s Get:117 http://ftpmaster.internal/ubuntu plucky/universe s390x libswscale8 s390x 7:7.1-3ubuntu3 [216 kB] 152s Get:118 http://ftpmaster.internal/ubuntu plucky/universe s390x libvidstab1.1 s390x 1.1.0-2build1 [45.8 kB] 152s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x libzimg2 s390x 3.0.5+ds1-1build1 [86.6 kB] 152s Get:120 http://ftpmaster.internal/ubuntu plucky/universe s390x libavfilter10 s390x 7:7.1-3ubuntu3 [4868 kB] 152s Get:121 http://ftpmaster.internal/ubuntu plucky/main s390x libcaca0 s390x 0.99.beta20-5 [215 kB] 152s Get:122 http://ftpmaster.internal/ubuntu plucky/main s390x libcdio19t64 s390x 2.2.0-1~exp1 [64.4 kB] 152s Get:123 http://ftpmaster.internal/ubuntu plucky/main s390x libcdio-cdda2t64 s390x 10.2+2.0.2-1 [17.6 kB] 152s Get:124 http://ftpmaster.internal/ubuntu plucky/main s390x libcdio-paranoia2t64 s390x 10.2+2.0.2-1 [18.8 kB] 152s Get:125 http://ftpmaster.internal/ubuntu plucky/universe s390x libdc1394-25 s390x 2.2.6-4build1 [101 kB] 152s Get:126 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 152s Get:127 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 152s Get:128 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 152s Get:129 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 152s Get:130 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 152s Get:131 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 152s Get:132 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 152s Get:133 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 152s Get:134 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 152s Get:135 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 152s Get:136 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 152s Get:137 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 152s Get:138 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 152s Get:139 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 152s Get:140 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 152s Get:141 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 152s Get:142 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 152s Get:143 http://ftpmaster.internal/ubuntu plucky/main s390x libiec61883-0 s390x 1.2.0-7 [26.1 kB] 152s Get:144 http://ftpmaster.internal/ubuntu plucky/main s390x libjack-jackd2-0 s390x 1.9.22~dfsg-4 [292 kB] 152s Get:145 http://ftpmaster.internal/ubuntu plucky/universe s390x libopenal-data all 1:1.24.2-1 [162 kB] 152s Get:146 http://ftpmaster.internal/ubuntu plucky/universe s390x libopenal1 s390x 1:1.24.2-1 [708 kB] 152s Get:147 http://ftpmaster.internal/ubuntu plucky/main s390x libflac12t64 s390x 1.4.3+ds-4 [161 kB] 152s Get:148 http://ftpmaster.internal/ubuntu plucky/main s390x libsndfile1 s390x 1.2.2-2 [238 kB] 152s Get:149 http://ftpmaster.internal/ubuntu plucky/main s390x libpulse0 s390x 1:17.0+dfsg1-2ubuntu1 [312 kB] 152s Get:150 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-1 [27.8 kB] 152s Get:151 http://ftpmaster.internal/ubuntu plucky/main s390x libdecor-0-0 s390x 0.2.2-2 [16.2 kB] 152s Get:152 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-cursor0 s390x 1.23.1-1 [11.5 kB] 152s Get:153 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-egl1 s390x 1.23.1-1 [5654 B] 152s Get:154 http://ftpmaster.internal/ubuntu plucky/main s390x libxcursor1 s390x 1:1.2.3-1 [23.4 kB] 152s Get:155 http://ftpmaster.internal/ubuntu plucky/main s390x libxi6 s390x 2:1.8.2-1 [35.4 kB] 152s Get:156 http://ftpmaster.internal/ubuntu plucky/main s390x libxrandr2 s390x 2:1.5.4-1 [20.8 kB] 152s Get:157 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 152s Get:158 http://ftpmaster.internal/ubuntu plucky/main s390x libxss1 s390x 1:1.2.3-1build3 [7396 B] 152s Get:159 http://ftpmaster.internal/ubuntu plucky/main s390x libsdl2-2.0-0 s390x 2.32.0+dfsg-1 [776 kB] 152s Get:160 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 152s Get:161 http://ftpmaster.internal/ubuntu plucky/main s390x libxv1 s390x 2:1.0.11-1.1build1 [11.3 kB] 152s Get:162 http://ftpmaster.internal/ubuntu plucky/universe s390x libavdevice61 s390x 7:7.1-3ubuntu3 [83.6 kB] 152s Get:163 http://ftpmaster.internal/ubuntu plucky/main s390x libblas3 s390x 3.12.1-2 [252 kB] 153s Get:164 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran5 s390x 14.2.0-17ubuntu1 [588 kB] 153s Get:165 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack3 s390x 3.12.1-2 [2971 kB] 153s Get:166 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B] 153s Get:167 http://ftpmaster.internal/ubuntu plucky/main s390x python3-numpy s390x 1:1.26.4+ds-13 [4601 kB] 153s Get:168 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-av s390x 12.3.0-2ubuntu1 [1554 kB] 153s Get:169 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-iniconfig all 1.1.1-2 [6024 B] 153s Get:170 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 153s Get:171 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pluggy all 1.5.0-1 [21.0 kB] 153s Get:172 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest all 8.3.4-1 [252 kB] 154s Fetched 97.7 MB in 6s (16.9 MB/s) 154s Selecting previously unselected package libpython3.12-minimal:s390x. 154s (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 ... 55869 files and directories currently installed.) 154s Preparing to unpack .../000-libpython3.12-minimal_3.12.9-1_s390x.deb ... 154s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 154s Selecting previously unselected package python3.12-minimal. 154s Preparing to unpack .../001-python3.12-minimal_3.12.9-1_s390x.deb ... 154s Unpacking python3.12-minimal (3.12.9-1) ... 154s Selecting previously unselected package libnsl2:s390x. 154s Preparing to unpack .../002-libnsl2_1.3.0-3build3_s390x.deb ... 154s Unpacking libnsl2:s390x (1.3.0-3build3) ... 154s Selecting previously unselected package libpython3.12-stdlib:s390x. 154s Preparing to unpack .../003-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 154s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 154s Selecting previously unselected package python3.12. 154s Preparing to unpack .../004-python3.12_3.12.9-1_s390x.deb ... 154s Unpacking python3.12 (3.12.9-1) ... 154s Selecting previously unselected package libfreetype6:s390x. 154s Preparing to unpack .../005-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 154s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 154s Selecting previously unselected package fonts-dejavu-mono. 154s Preparing to unpack .../006-fonts-dejavu-mono_2.37-8_all.deb ... 154s Unpacking fonts-dejavu-mono (2.37-8) ... 154s Selecting previously unselected package fonts-dejavu-core. 154s Preparing to unpack .../007-fonts-dejavu-core_2.37-8_all.deb ... 154s Unpacking fonts-dejavu-core (2.37-8) ... 154s Selecting previously unselected package fontconfig-config. 154s Preparing to unpack .../008-fontconfig-config_2.15.0-1.1ubuntu2_s390x.deb ... 154s Unpacking fontconfig-config (2.15.0-1.1ubuntu2) ... 154s Selecting previously unselected package libfontconfig1:s390x. 154s Preparing to unpack .../009-libfontconfig1_2.15.0-1.1ubuntu2_s390x.deb ... 154s Unpacking libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 154s Selecting previously unselected package fontconfig. 154s Preparing to unpack .../010-fontconfig_2.15.0-1.1ubuntu2_s390x.deb ... 154s Unpacking fontconfig (2.15.0-1.1ubuntu2) ... 154s Selecting previously unselected package libaom3:s390x. 154s Preparing to unpack .../011-libaom3_3.12.0-1_s390x.deb ... 154s Unpacking libaom3:s390x (3.12.0-1) ... 154s Selecting previously unselected package libasound2-data. 154s Preparing to unpack .../012-libasound2-data_1.2.13-1build1_all.deb ... 154s Unpacking libasound2-data (1.2.13-1build1) ... 154s Selecting previously unselected package libasound2t64:s390x. 154s Preparing to unpack .../013-libasound2t64_1.2.13-1build1_s390x.deb ... 154s Unpacking libasound2t64:s390x (1.2.13-1build1) ... 154s Selecting previously unselected package libgraphite2-3:s390x. 154s Preparing to unpack .../014-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 154s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 154s Selecting previously unselected package libharfbuzz0b:s390x. 154s Preparing to unpack .../015-libharfbuzz0b_10.2.0-1_s390x.deb ... 154s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 154s Selecting previously unselected package libunibreak6:s390x. 154s Preparing to unpack .../016-libunibreak6_6.1-2_s390x.deb ... 154s Unpacking libunibreak6:s390x (6.1-2) ... 154s Selecting previously unselected package libass9:s390x. 154s Preparing to unpack .../017-libass9_1%3a0.17.3-1_s390x.deb ... 154s Unpacking libass9:s390x (1:0.17.3-1) ... 154s Selecting previously unselected package libasyncns0:s390x. 154s Preparing to unpack .../018-libasyncns0_0.8-6build4_s390x.deb ... 154s Unpacking libasyncns0:s390x (0.8-6build4) ... 154s Selecting previously unselected package libva2:s390x. 154s Preparing to unpack .../019-libva2_2.22.0-2_s390x.deb ... 154s Unpacking libva2:s390x (2.22.0-2) ... 154s Selecting previously unselected package libva-drm2:s390x. 154s Preparing to unpack .../020-libva-drm2_2.22.0-2_s390x.deb ... 154s Unpacking libva-drm2:s390x (2.22.0-2) ... 154s Selecting previously unselected package libx11-xcb1:s390x. 154s Preparing to unpack .../021-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 154s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 154s Selecting previously unselected package libxcb-dri3-0:s390x. 154s Preparing to unpack .../022-libxcb-dri3-0_1.17.0-2_s390x.deb ... 154s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 154s Selecting previously unselected package libxfixes3:s390x. 154s Preparing to unpack .../023-libxfixes3_1%3a6.0.0-2build1_s390x.deb ... 154s Unpacking libxfixes3:s390x (1:6.0.0-2build1) ... 154s Selecting previously unselected package libva-x11-2:s390x. 154s Preparing to unpack .../024-libva-x11-2_2.22.0-2_s390x.deb ... 154s Unpacking libva-x11-2:s390x (2.22.0-2) ... 154s Selecting previously unselected package libvdpau1:s390x. 154s Preparing to unpack .../025-libvdpau1_1.5-3_s390x.deb ... 154s Unpacking libvdpau1:s390x (1.5-3) ... 154s Selecting previously unselected package ocl-icd-libopencl1:s390x. 154s Preparing to unpack .../026-ocl-icd-libopencl1_2.3.2-1build1_s390x.deb ... 154s Unpacking ocl-icd-libopencl1:s390x (2.3.2-1build1) ... 154s Selecting previously unselected package libavutil59:s390x. 154s Preparing to unpack .../027-libavutil59_7%3a7.1-3ubuntu3_s390x.deb ... 154s Unpacking libavutil59:s390x (7:7.1-3ubuntu3) ... 154s Selecting previously unselected package libpixman-1-0:s390x. 154s Preparing to unpack .../028-libpixman-1-0_0.44.0-3_s390x.deb ... 154s Unpacking libpixman-1-0:s390x (0.44.0-3) ... 154s Selecting previously unselected package libxcb-render0:s390x. 154s Preparing to unpack .../029-libxcb-render0_1.17.0-2_s390x.deb ... 154s Unpacking libxcb-render0:s390x (1.17.0-2) ... 154s Selecting previously unselected package libxcb-shm0:s390x. 154s Preparing to unpack .../030-libxcb-shm0_1.17.0-2_s390x.deb ... 154s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 154s Selecting previously unselected package libxrender1:s390x. 154s Preparing to unpack .../031-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 154s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 154s Selecting previously unselected package libcairo2:s390x. 154s Preparing to unpack .../032-libcairo2_1.18.2-2_s390x.deb ... 154s Unpacking libcairo2:s390x (1.18.2-2) ... 154s Selecting previously unselected package libcodec2-1.2:s390x. 154s Preparing to unpack .../033-libcodec2-1.2_1.2.0-3_s390x.deb ... 154s Unpacking libcodec2-1.2:s390x (1.2.0-3) ... 154s Selecting previously unselected package libdav1d7:s390x. 154s Preparing to unpack .../034-libdav1d7_1.5.1-1_s390x.deb ... 154s Unpacking libdav1d7:s390x (1.5.1-1) ... 154s Selecting previously unselected package libgsm1:s390x. 154s Preparing to unpack .../035-libgsm1_1.0.22-1build1_s390x.deb ... 154s Unpacking libgsm1:s390x (1.0.22-1build1) ... 154s Selecting previously unselected package liblcms2-2:s390x. 154s Preparing to unpack .../036-liblcms2-2_2.16-2_s390x.deb ... 154s Unpacking liblcms2-2:s390x (2.16-2) ... 155s Selecting previously unselected package libjxl0.11:s390x. 155s Preparing to unpack .../037-libjxl0.11_0.11.1-1_s390x.deb ... 155s Unpacking libjxl0.11:s390x (0.11.1-1) ... 155s Selecting previously unselected package libmp3lame0:s390x. 155s Preparing to unpack .../038-libmp3lame0_3.100-6build1_s390x.deb ... 155s Unpacking libmp3lame0:s390x (3.100-6build1) ... 155s Selecting previously unselected package libopenjp2-7:s390x. 155s Preparing to unpack .../039-libopenjp2-7_2.5.0-2ubuntu3_s390x.deb ... 155s Unpacking libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 155s Selecting previously unselected package libopus0:s390x. 155s Preparing to unpack .../040-libopus0_1.5.2-2_s390x.deb ... 155s Unpacking libopus0:s390x (1.5.2-2) ... 155s Selecting previously unselected package librav1e0.7:s390x. 155s Preparing to unpack .../041-librav1e0.7_0.7.1-9_s390x.deb ... 155s Unpacking librav1e0.7:s390x (0.7.1-9) ... 155s Selecting previously unselected package libcairo-gobject2:s390x. 155s Preparing to unpack .../042-libcairo-gobject2_1.18.2-2_s390x.deb ... 155s Unpacking libcairo-gobject2:s390x (1.18.2-2) ... 155s Selecting previously unselected package libgdk-pixbuf2.0-common. 155s Preparing to unpack .../043-libgdk-pixbuf2.0-common_2.42.12+dfsg-2_all.deb ... 155s Unpacking libgdk-pixbuf2.0-common (2.42.12+dfsg-2) ... 155s Selecting previously unselected package libjpeg-turbo8:s390x. 155s Preparing to unpack .../044-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 155s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 155s Selecting previously unselected package libjpeg8:s390x. 155s Preparing to unpack .../045-libjpeg8_8c-2ubuntu11_s390x.deb ... 155s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 155s Selecting previously unselected package libdeflate0:s390x. 155s Preparing to unpack .../046-libdeflate0_1.23-1_s390x.deb ... 155s Unpacking libdeflate0:s390x (1.23-1) ... 155s Selecting previously unselected package libjbig0:s390x. 155s Preparing to unpack .../047-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 155s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 155s Selecting previously unselected package libsharpyuv0:s390x. 155s Preparing to unpack .../048-libsharpyuv0_1.5.0-0.1_s390x.deb ... 155s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 155s Selecting previously unselected package libwebp7:s390x. 155s Preparing to unpack .../049-libwebp7_1.5.0-0.1_s390x.deb ... 155s Unpacking libwebp7:s390x (1.5.0-0.1) ... 155s Selecting previously unselected package libtiff6:s390x. 155s Preparing to unpack .../050-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 155s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 155s Selecting previously unselected package libgdk-pixbuf-2.0-0:s390x. 155s Preparing to unpack .../051-libgdk-pixbuf-2.0-0_2.42.12+dfsg-2_s390x.deb ... 155s Unpacking libgdk-pixbuf-2.0-0:s390x (2.42.12+dfsg-2) ... 155s Selecting previously unselected package libthai-data. 155s Preparing to unpack .../052-libthai-data_0.1.29-2build1_all.deb ... 155s Unpacking libthai-data (0.1.29-2build1) ... 155s Selecting previously unselected package libdatrie1:s390x. 155s Preparing to unpack .../053-libdatrie1_0.2.13-3build1_s390x.deb ... 155s Unpacking libdatrie1:s390x (0.2.13-3build1) ... 155s Selecting previously unselected package libthai0:s390x. 155s Preparing to unpack .../054-libthai0_0.1.29-2build1_s390x.deb ... 155s Unpacking libthai0:s390x (0.1.29-2build1) ... 155s Selecting previously unselected package libpango-1.0-0:s390x. 155s Preparing to unpack .../055-libpango-1.0-0_1.56.1-1_s390x.deb ... 155s Unpacking libpango-1.0-0:s390x (1.56.1-1) ... 155s Selecting previously unselected package libpangoft2-1.0-0:s390x. 155s Preparing to unpack .../056-libpangoft2-1.0-0_1.56.1-1_s390x.deb ... 155s Unpacking libpangoft2-1.0-0:s390x (1.56.1-1) ... 155s Selecting previously unselected package libpangocairo-1.0-0:s390x. 155s Preparing to unpack .../057-libpangocairo-1.0-0_1.56.1-1_s390x.deb ... 155s Unpacking libpangocairo-1.0-0:s390x (1.56.1-1) ... 155s Selecting previously unselected package librsvg2-2:s390x. 155s Preparing to unpack .../058-librsvg2-2_2.59.90+dfsg-2_s390x.deb ... 155s Unpacking librsvg2-2:s390x (2.59.90+dfsg-2) ... 155s Selecting previously unselected package libshine3:s390x. 155s Preparing to unpack .../059-libshine3_3.1.1-2build1_s390x.deb ... 155s Unpacking libshine3:s390x (3.1.1-2build1) ... 155s Selecting previously unselected package libsnappy1v5:s390x. 155s Preparing to unpack .../060-libsnappy1v5_1.2.1-1_s390x.deb ... 155s Unpacking libsnappy1v5:s390x (1.2.1-1) ... 155s Selecting previously unselected package libspeex1:s390x. 155s Preparing to unpack .../061-libspeex1_1.2.1-3_s390x.deb ... 155s Unpacking libspeex1:s390x (1.2.1-3) ... 155s Selecting previously unselected package libsvtav1enc2:s390x. 155s Preparing to unpack .../062-libsvtav1enc2_2.3.0+dfsg-1_s390x.deb ... 155s Unpacking libsvtav1enc2:s390x (2.3.0+dfsg-1) ... 155s Selecting previously unselected package libgomp1:s390x. 155s Preparing to unpack .../063-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 155s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 155s Selecting previously unselected package libsoxr0:s390x. 155s Preparing to unpack .../064-libsoxr0_0.1.3-4build3_s390x.deb ... 155s Unpacking libsoxr0:s390x (0.1.3-4build3) ... 155s Selecting previously unselected package libswresample5:s390x. 155s Preparing to unpack .../065-libswresample5_7%3a7.1-3ubuntu3_s390x.deb ... 155s Unpacking libswresample5:s390x (7:7.1-3ubuntu3) ... 155s Selecting previously unselected package libtheoradec1:s390x. 155s Preparing to unpack .../066-libtheoradec1_1.2.0~alpha1+dfsg-5_s390x.deb ... 155s Unpacking libtheoradec1:s390x (1.2.0~alpha1+dfsg-5) ... 155s Selecting previously unselected package libogg0:s390x. 155s Preparing to unpack .../067-libogg0_1.3.5-3build1_s390x.deb ... 155s Unpacking libogg0:s390x (1.3.5-3build1) ... 155s Selecting previously unselected package libtheoraenc1:s390x. 155s Preparing to unpack .../068-libtheoraenc1_1.2.0~alpha1+dfsg-5_s390x.deb ... 155s Unpacking libtheoraenc1:s390x (1.2.0~alpha1+dfsg-5) ... 155s Selecting previously unselected package libtwolame0:s390x. 155s Preparing to unpack .../069-libtwolame0_0.4.0-2build3_s390x.deb ... 155s Unpacking libtwolame0:s390x (0.4.0-2build3) ... 155s Selecting previously unselected package libvorbis0a:s390x. 155s Preparing to unpack .../070-libvorbis0a_1.3.7-2_s390x.deb ... 155s Unpacking libvorbis0a:s390x (1.3.7-2) ... 155s Selecting previously unselected package libvorbisenc2:s390x. 155s Preparing to unpack .../071-libvorbisenc2_1.3.7-2_s390x.deb ... 155s Unpacking libvorbisenc2:s390x (1.3.7-2) ... 155s Selecting previously unselected package libvpx9:s390x. 155s Preparing to unpack .../072-libvpx9_1.15.0-1ubuntu1_s390x.deb ... 155s Unpacking libvpx9:s390x (1.15.0-1ubuntu1) ... 155s Selecting previously unselected package libwebpmux3:s390x. 155s Preparing to unpack .../073-libwebpmux3_1.5.0-0.1_s390x.deb ... 155s Unpacking libwebpmux3:s390x (1.5.0-0.1) ... 155s Selecting previously unselected package libx264-164:s390x. 155s Preparing to unpack .../074-libx264-164_2%3a0.164.3108+git31e19f9-2build1_s390x.deb ... 155s Unpacking libx264-164:s390x (2:0.164.3108+git31e19f9-2build1) ... 155s Selecting previously unselected package libx265-215:s390x. 155s Preparing to unpack .../075-libx265-215_4.1-2_s390x.deb ... 155s Unpacking libx265-215:s390x (4.1-2) ... 155s Selecting previously unselected package libxvidcore4:s390x. 155s Preparing to unpack .../076-libxvidcore4_2%3a1.3.7-1build1_s390x.deb ... 155s Unpacking libxvidcore4:s390x (2:1.3.7-1build1) ... 155s Selecting previously unselected package libzvbi-common. 155s Preparing to unpack .../077-libzvbi-common_0.2.43-2ubuntu1_all.deb ... 155s Unpacking libzvbi-common (0.2.43-2ubuntu1) ... 155s Selecting previously unselected package libzvbi0t64:s390x. 155s Preparing to unpack .../078-libzvbi0t64_0.2.43-2ubuntu1_s390x.deb ... 155s Unpacking libzvbi0t64:s390x (0.2.43-2ubuntu1) ... 155s Selecting previously unselected package libavcodec61:s390x. 155s Preparing to unpack .../079-libavcodec61_7%3a7.1-3ubuntu3_s390x.deb ... 155s Unpacking libavcodec61:s390x (7:7.1-3ubuntu3) ... 155s Selecting previously unselected package libraw1394-11:s390x. 155s Preparing to unpack .../080-libraw1394-11_2.1.2-2build3_s390x.deb ... 155s Unpacking libraw1394-11:s390x (2.1.2-2build3) ... 155s Selecting previously unselected package libavc1394-0:s390x. 155s Preparing to unpack .../081-libavc1394-0_0.5.4-5build3_s390x.deb ... 155s Unpacking libavc1394-0:s390x (0.5.4-5build3) ... 155s Selecting previously unselected package libudfread0:s390x. 155s Preparing to unpack .../082-libudfread0_1.1.2-1build1_s390x.deb ... 155s Unpacking libudfread0:s390x (1.1.2-1build1) ... 155s Selecting previously unselected package libbluray2:s390x. 155s Preparing to unpack .../083-libbluray2_1%3a1.3.4-1build1_s390x.deb ... 155s Unpacking libbluray2:s390x (1:1.3.4-1build1) ... 155s Selecting previously unselected package libchromaprint1:s390x. 155s Preparing to unpack .../084-libchromaprint1_1.5.1-7_s390x.deb ... 155s Unpacking libchromaprint1:s390x (1.5.1-7) ... 155s Selecting previously unselected package libdvdread8t64:s390x. 155s Preparing to unpack .../085-libdvdread8t64_6.1.3-2_s390x.deb ... 155s Unpacking libdvdread8t64:s390x (6.1.3-2) ... 155s Selecting previously unselected package libdvdnav4:s390x. 155s Preparing to unpack .../086-libdvdnav4_6.1.1-3build1_s390x.deb ... 155s Unpacking libdvdnav4:s390x (6.1.1-3build1) ... 155s Selecting previously unselected package libgme0:s390x. 155s Preparing to unpack .../087-libgme0_0.6.3-7build1_s390x.deb ... 155s Unpacking libgme0:s390x (0.6.3-7build1) ... 155s Selecting previously unselected package libmpg123-0t64:s390x. 155s Preparing to unpack .../088-libmpg123-0t64_1.32.10-1_s390x.deb ... 155s Unpacking libmpg123-0t64:s390x (1.32.10-1) ... 155s Selecting previously unselected package libvorbisfile3:s390x. 155s Preparing to unpack .../089-libvorbisfile3_1.3.7-2_s390x.deb ... 155s Unpacking libvorbisfile3:s390x (1.3.7-2) ... 155s Selecting previously unselected package libopenmpt0t64:s390x. 155s Preparing to unpack .../090-libopenmpt0t64_0.7.13-1_s390x.deb ... 155s Unpacking libopenmpt0t64:s390x (0.7.13-1) ... 155s Selecting previously unselected package librabbitmq4:s390x. 155s Preparing to unpack .../091-librabbitmq4_0.15.0-1_s390x.deb ... 155s Unpacking librabbitmq4:s390x (0.15.0-1) ... 155s Selecting previously unselected package libcjson1:s390x. 155s Preparing to unpack .../092-libcjson1_1.7.18-3_s390x.deb ... 155s Unpacking libcjson1:s390x (1.7.18-3) ... 155s Selecting previously unselected package libmbedcrypto16:s390x. 155s Preparing to unpack .../093-libmbedcrypto16_3.6.2-3ubuntu1_s390x.deb ... 155s Unpacking libmbedcrypto16:s390x (3.6.2-3ubuntu1) ... 155s Selecting previously unselected package librist4:s390x. 155s Preparing to unpack .../094-librist4_0.2.11+dfsg-1_s390x.deb ... 155s Unpacking librist4:s390x (0.2.11+dfsg-1) ... 155s Selecting previously unselected package libsrt1.5-gnutls:s390x. 155s Preparing to unpack .../095-libsrt1.5-gnutls_1.5.4-1_s390x.deb ... 155s Unpacking libsrt1.5-gnutls:s390x (1.5.4-1) ... 155s Selecting previously unselected package libssh-4:s390x. 155s Preparing to unpack .../096-libssh-4_0.11.1-1_s390x.deb ... 155s Unpacking libssh-4:s390x (0.11.1-1) ... 155s Selecting previously unselected package libnorm1t64:s390x. 155s Preparing to unpack .../097-libnorm1t64_1.5.9+dfsg-3.1build1_s390x.deb ... 155s Unpacking libnorm1t64:s390x (1.5.9+dfsg-3.1build1) ... 155s Selecting previously unselected package libpgm-5.3-0t64:s390x. 155s Preparing to unpack .../098-libpgm-5.3-0t64_5.3.128~dfsg-2.1build1_s390x.deb ... 155s Unpacking libpgm-5.3-0t64:s390x (5.3.128~dfsg-2.1build1) ... 155s Selecting previously unselected package libsodium23:s390x. 155s Preparing to unpack .../099-libsodium23_1.0.18-1build3_s390x.deb ... 155s Unpacking libsodium23:s390x (1.0.18-1build3) ... 155s Selecting previously unselected package libzmq5:s390x. 155s Preparing to unpack .../100-libzmq5_4.3.5-1build2_s390x.deb ... 155s Unpacking libzmq5:s390x (4.3.5-1build2) ... 155s Selecting previously unselected package libavformat61:s390x. 155s Preparing to unpack .../101-libavformat61_7%3a7.1-3ubuntu3_s390x.deb ... 155s Unpacking libavformat61:s390x (7:7.1-3ubuntu3) ... 156s Selecting previously unselected package libbs2b0:s390x. 156s Preparing to unpack .../102-libbs2b0_3.1.0+dfsg-8_s390x.deb ... 156s Unpacking libbs2b0:s390x (3.1.0+dfsg-8) ... 156s Selecting previously unselected package libflite1:s390x. 156s Preparing to unpack .../103-libflite1_2.2-7_s390x.deb ... 156s Unpacking libflite1:s390x (2.2-7) ... 156s Selecting previously unselected package libserd-0-0:s390x. 156s Preparing to unpack .../104-libserd-0-0_0.32.4-1_s390x.deb ... 156s Unpacking libserd-0-0:s390x (0.32.4-1) ... 156s Selecting previously unselected package libzix-0-0:s390x. 156s Preparing to unpack .../105-libzix-0-0_0.6.2-1_s390x.deb ... 156s Unpacking libzix-0-0:s390x (0.6.2-1) ... 156s Selecting previously unselected package libsord-0-0:s390x. 156s Preparing to unpack .../106-libsord-0-0_0.16.18-1_s390x.deb ... 156s Unpacking libsord-0-0:s390x (0.16.18-1) ... 156s Selecting previously unselected package libsratom-0-0:s390x. 156s Preparing to unpack .../107-libsratom-0-0_0.6.18-1_s390x.deb ... 156s Unpacking libsratom-0-0:s390x (0.6.18-1) ... 156s Selecting previously unselected package liblilv-0-0:s390x. 156s Preparing to unpack .../108-liblilv-0-0_0.24.26-1_s390x.deb ... 156s Unpacking liblilv-0-0:s390x (0.24.26-1) ... 156s Selecting previously unselected package libmysofa1:s390x. 156s Preparing to unpack .../109-libmysofa1_1.3.2+dfsg-2ubuntu2_s390x.deb ... 156s Unpacking libmysofa1:s390x (1.3.2+dfsg-2ubuntu2) ... 156s Selecting previously unselected package libvulkan1:s390x. 156s Preparing to unpack .../110-libvulkan1_1.4.304.0-1_s390x.deb ... 156s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 156s Selecting previously unselected package libplacebo349:s390x. 156s Preparing to unpack .../111-libplacebo349_7.349.0-3_s390x.deb ... 156s Unpacking libplacebo349:s390x (7.349.0-3) ... 156s Selecting previously unselected package libpostproc58:s390x. 156s Preparing to unpack .../112-libpostproc58_7%3a7.1-3ubuntu3_s390x.deb ... 156s Unpacking libpostproc58:s390x (7:7.1-3ubuntu3) ... 156s Selecting previously unselected package libfftw3-double3:s390x. 156s Preparing to unpack .../113-libfftw3-double3_3.3.10-2fakesync1build1_s390x.deb ... 156s Unpacking libfftw3-double3:s390x (3.3.10-2fakesync1build1) ... 156s Selecting previously unselected package libsamplerate0:s390x. 156s Preparing to unpack .../114-libsamplerate0_0.2.2-4build1_s390x.deb ... 156s Unpacking libsamplerate0:s390x (0.2.2-4build1) ... 156s Selecting previously unselected package librubberband2:s390x. 156s Preparing to unpack .../115-librubberband2_3.3.0+dfsg-2build2_s390x.deb ... 156s Unpacking librubberband2:s390x (3.3.0+dfsg-2build2) ... 156s Selecting previously unselected package libswscale8:s390x. 156s Preparing to unpack .../116-libswscale8_7%3a7.1-3ubuntu3_s390x.deb ... 156s Unpacking libswscale8:s390x (7:7.1-3ubuntu3) ... 156s Selecting previously unselected package libvidstab1.1:s390x. 156s Preparing to unpack .../117-libvidstab1.1_1.1.0-2build1_s390x.deb ... 156s Unpacking libvidstab1.1:s390x (1.1.0-2build1) ... 156s Selecting previously unselected package libzimg2:s390x. 156s Preparing to unpack .../118-libzimg2_3.0.5+ds1-1build1_s390x.deb ... 156s Unpacking libzimg2:s390x (3.0.5+ds1-1build1) ... 156s Selecting previously unselected package libavfilter10:s390x. 156s Preparing to unpack .../119-libavfilter10_7%3a7.1-3ubuntu3_s390x.deb ... 156s Unpacking libavfilter10:s390x (7:7.1-3ubuntu3) ... 156s Selecting previously unselected package libcaca0:s390x. 156s Preparing to unpack .../120-libcaca0_0.99.beta20-5_s390x.deb ... 156s Unpacking libcaca0:s390x (0.99.beta20-5) ... 156s Selecting previously unselected package libcdio19t64:s390x. 156s Preparing to unpack .../121-libcdio19t64_2.2.0-1~exp1_s390x.deb ... 156s Unpacking libcdio19t64:s390x (2.2.0-1~exp1) ... 156s Selecting previously unselected package libcdio-cdda2t64:s390x. 156s Preparing to unpack .../122-libcdio-cdda2t64_10.2+2.0.2-1_s390x.deb ... 156s Unpacking libcdio-cdda2t64:s390x (10.2+2.0.2-1) ... 156s Selecting previously unselected package libcdio-paranoia2t64:s390x. 156s Preparing to unpack .../123-libcdio-paranoia2t64_10.2+2.0.2-1_s390x.deb ... 156s Unpacking libcdio-paranoia2t64:s390x (10.2+2.0.2-1) ... 156s Selecting previously unselected package libdc1394-25:s390x. 156s Preparing to unpack .../124-libdc1394-25_2.2.6-4build1_s390x.deb ... 156s Unpacking libdc1394-25:s390x (2.2.6-4build1) ... 156s Selecting previously unselected package libglvnd0:s390x. 156s Preparing to unpack .../125-libglvnd0_1.7.0-1build1_s390x.deb ... 156s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 156s Selecting previously unselected package libglapi-mesa:s390x. 156s Preparing to unpack .../126-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 156s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 156s Selecting previously unselected package libxcb-glx0:s390x. 156s Preparing to unpack .../127-libxcb-glx0_1.17.0-2_s390x.deb ... 156s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 156s Selecting previously unselected package libxcb-present0:s390x. 156s Preparing to unpack .../128-libxcb-present0_1.17.0-2_s390x.deb ... 156s Unpacking libxcb-present0:s390x (1.17.0-2) ... 156s Selecting previously unselected package libxcb-xfixes0:s390x. 156s Preparing to unpack .../129-libxcb-xfixes0_1.17.0-2_s390x.deb ... 156s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 156s Selecting previously unselected package libxxf86vm1:s390x. 156s Preparing to unpack .../130-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 156s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 156s Selecting previously unselected package libdrm-radeon1:s390x. 156s Preparing to unpack .../131-libdrm-radeon1_2.4.123-1_s390x.deb ... 156s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 156s Selecting previously unselected package libxcb-randr0:s390x. 156s Preparing to unpack .../132-libxcb-randr0_1.17.0-2_s390x.deb ... 156s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 156s Selecting previously unselected package libxcb-sync1:s390x. 156s Preparing to unpack .../133-libxcb-sync1_1.17.0-2_s390x.deb ... 156s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 156s Selecting previously unselected package libxshmfence1:s390x. 156s Preparing to unpack .../134-libxshmfence1_1.3-1build5_s390x.deb ... 156s Unpacking libxshmfence1:s390x (1.3-1build5) ... 156s Selecting previously unselected package mesa-libgallium:s390x. 156s Preparing to unpack .../135-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 156s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 156s Selecting previously unselected package libwayland-server0:s390x. 156s Preparing to unpack .../136-libwayland-server0_1.23.1-1_s390x.deb ... 156s Unpacking libwayland-server0:s390x (1.23.1-1) ... 156s Selecting previously unselected package libgbm1:s390x. 156s Preparing to unpack .../137-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 156s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 156s Selecting previously unselected package libgl1-mesa-dri:s390x. 156s Preparing to unpack .../138-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 156s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 156s Selecting previously unselected package libglx-mesa0:s390x. 156s Preparing to unpack .../139-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 156s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 156s Selecting previously unselected package libglx0:s390x. 156s Preparing to unpack .../140-libglx0_1.7.0-1build1_s390x.deb ... 156s Unpacking libglx0:s390x (1.7.0-1build1) ... 156s Selecting previously unselected package libgl1:s390x. 156s Preparing to unpack .../141-libgl1_1.7.0-1build1_s390x.deb ... 156s Unpacking libgl1:s390x (1.7.0-1build1) ... 156s Selecting previously unselected package libiec61883-0:s390x. 156s Preparing to unpack .../142-libiec61883-0_1.2.0-7_s390x.deb ... 156s Unpacking libiec61883-0:s390x (1.2.0-7) ... 156s Selecting previously unselected package libjack-jackd2-0:s390x. 156s Preparing to unpack .../143-libjack-jackd2-0_1.9.22~dfsg-4_s390x.deb ... 156s Unpacking libjack-jackd2-0:s390x (1.9.22~dfsg-4) ... 156s Selecting previously unselected package libopenal-data. 156s Preparing to unpack .../144-libopenal-data_1%3a1.24.2-1_all.deb ... 156s Unpacking libopenal-data (1:1.24.2-1) ... 156s Selecting previously unselected package libopenal1:s390x. 156s Preparing to unpack .../145-libopenal1_1%3a1.24.2-1_s390x.deb ... 156s Unpacking libopenal1:s390x (1:1.24.2-1) ... 156s Selecting previously unselected package libflac12t64:s390x. 156s Preparing to unpack .../146-libflac12t64_1.4.3+ds-4_s390x.deb ... 156s Unpacking libflac12t64:s390x (1.4.3+ds-4) ... 156s Selecting previously unselected package libsndfile1:s390x. 156s Preparing to unpack .../147-libsndfile1_1.2.2-2_s390x.deb ... 156s Unpacking libsndfile1:s390x (1.2.2-2) ... 156s Selecting previously unselected package libpulse0:s390x. 156s Preparing to unpack .../148-libpulse0_1%3a17.0+dfsg1-2ubuntu1_s390x.deb ... 156s Unpacking libpulse0:s390x (1:17.0+dfsg1-2ubuntu1) ... 156s Selecting previously unselected package libwayland-client0:s390x. 156s Preparing to unpack .../149-libwayland-client0_1.23.1-1_s390x.deb ... 156s Unpacking libwayland-client0:s390x (1.23.1-1) ... 157s Selecting previously unselected package libdecor-0-0:s390x. 157s Preparing to unpack .../150-libdecor-0-0_0.2.2-2_s390x.deb ... 157s Unpacking libdecor-0-0:s390x (0.2.2-2) ... 157s Selecting previously unselected package libwayland-cursor0:s390x. 157s Preparing to unpack .../151-libwayland-cursor0_1.23.1-1_s390x.deb ... 157s Unpacking libwayland-cursor0:s390x (1.23.1-1) ... 157s Selecting previously unselected package libwayland-egl1:s390x. 157s Preparing to unpack .../152-libwayland-egl1_1.23.1-1_s390x.deb ... 157s Unpacking libwayland-egl1:s390x (1.23.1-1) ... 157s Selecting previously unselected package libxcursor1:s390x. 157s Preparing to unpack .../153-libxcursor1_1%3a1.2.3-1_s390x.deb ... 157s Unpacking libxcursor1:s390x (1:1.2.3-1) ... 157s Selecting previously unselected package libxi6:s390x. 157s Preparing to unpack .../154-libxi6_2%3a1.8.2-1_s390x.deb ... 157s Unpacking libxi6:s390x (2:1.8.2-1) ... 157s Selecting previously unselected package libxrandr2:s390x. 157s Preparing to unpack .../155-libxrandr2_2%3a1.5.4-1_s390x.deb ... 157s Unpacking libxrandr2:s390x (2:1.5.4-1) ... 157s Selecting previously unselected package x11-common. 157s Preparing to unpack .../156-x11-common_1%3a7.7+23ubuntu3_all.deb ... 157s Unpacking x11-common (1:7.7+23ubuntu3) ... 157s Selecting previously unselected package libxss1:s390x. 157s Preparing to unpack .../157-libxss1_1%3a1.2.3-1build3_s390x.deb ... 157s Unpacking libxss1:s390x (1:1.2.3-1build3) ... 157s Selecting previously unselected package libsdl2-2.0-0:s390x. 157s Preparing to unpack .../158-libsdl2-2.0-0_2.32.0+dfsg-1_s390x.deb ... 157s Unpacking libsdl2-2.0-0:s390x (2.32.0+dfsg-1) ... 157s Selecting previously unselected package libxcb-shape0:s390x. 157s Preparing to unpack .../159-libxcb-shape0_1.17.0-2_s390x.deb ... 157s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 157s Selecting previously unselected package libxv1:s390x. 157s Preparing to unpack .../160-libxv1_2%3a1.0.11-1.1build1_s390x.deb ... 157s Unpacking libxv1:s390x (2:1.0.11-1.1build1) ... 157s Selecting previously unselected package libavdevice61:s390x. 157s Preparing to unpack .../161-libavdevice61_7%3a7.1-3ubuntu3_s390x.deb ... 157s Unpacking libavdevice61:s390x (7:7.1-3ubuntu3) ... 157s Selecting previously unselected package libblas3:s390x. 157s Preparing to unpack .../162-libblas3_3.12.1-2_s390x.deb ... 157s Unpacking libblas3:s390x (3.12.1-2) ... 157s Selecting previously unselected package libgfortran5:s390x. 157s Preparing to unpack .../163-libgfortran5_14.2.0-17ubuntu1_s390x.deb ... 157s Unpacking libgfortran5:s390x (14.2.0-17ubuntu1) ... 157s Selecting previously unselected package liblapack3:s390x. 157s Preparing to unpack .../164-liblapack3_3.12.1-2_s390x.deb ... 157s Unpacking liblapack3:s390x (3.12.1-2) ... 157s Selecting previously unselected package python3-all. 157s Preparing to unpack .../165-python3-all_3.13.1-1~exp2_s390x.deb ... 157s Unpacking python3-all (3.13.1-1~exp2) ... 157s Selecting previously unselected package python3-numpy. 157s Preparing to unpack .../166-python3-numpy_1%3a1.26.4+ds-13_s390x.deb ... 157s Unpacking python3-numpy (1:1.26.4+ds-13) ... 157s Selecting previously unselected package python3-av. 157s Preparing to unpack .../167-python3-av_12.3.0-2ubuntu1_s390x.deb ... 157s Unpacking python3-av (12.3.0-2ubuntu1) ... 157s Selecting previously unselected package python3-iniconfig. 157s Preparing to unpack .../168-python3-iniconfig_1.1.1-2_all.deb ... 157s Unpacking python3-iniconfig (1.1.1-2) ... 157s Selecting previously unselected package python3-packaging. 157s Preparing to unpack .../169-python3-packaging_24.2-1_all.deb ... 157s Unpacking python3-packaging (24.2-1) ... 157s Selecting previously unselected package python3-pluggy. 157s Preparing to unpack .../170-python3-pluggy_1.5.0-1_all.deb ... 157s Unpacking python3-pluggy (1.5.0-1) ... 157s Selecting previously unselected package python3-pytest. 157s Preparing to unpack .../171-python3-pytest_8.3.4-1_all.deb ... 157s Unpacking python3-pytest (8.3.4-1) ... 157s Setting up libgme0:s390x (0.6.3-7build1) ... 157s Setting up libchromaprint1:s390x (1.5.1-7) ... 157s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 157s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 157s Setting up liblcms2-2:s390x (2.16-2) ... 157s Setting up python3-iniconfig (1.1.1-2) ... 157s Setting up libpixman-1-0:s390x (0.44.0-3) ... 157s Setting up libdvdread8t64:s390x (6.1.3-2) ... 157s Setting up libudfread0:s390x (1.1.2-1build1) ... 157s Setting up libnorm1t64:s390x (1.5.9+dfsg-3.1build1) ... 157s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 157s Setting up libwayland-server0:s390x (1.23.1-1) ... 157s Setting up libaom3:s390x (3.12.0-1) ... 157s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 157s Setting up librabbitmq4:s390x (0.15.0-1) ... 157s Setting up libraw1394-11:s390x (2.1.2-2build3) ... 157s Setting up libsodium23:s390x (1.0.18-1build3) ... 157s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 157s Setting up libogg0:s390x (1.3.5-3build1) ... 157s Setting up libspeex1:s390x (1.2.1-3) ... 157s Setting up libshine3:s390x (3.1.1-2build1) ... 157s Setting up libcaca0:s390x (0.99.beta20-5) ... 157s Setting up libxi6:s390x (2:1.8.2-1) ... 157s Setting up libx264-164:s390x (2:0.164.3108+git31e19f9-2build1) ... 157s Setting up libtwolame0:s390x (0.4.0-2build3) ... 157s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 157s Setting up libdatrie1:s390x (0.2.13-3build1) ... 157s Setting up libgsm1:s390x (1.0.22-1build1) ... 157s Setting up libxcb-render0:s390x (1.17.0-2) ... 157s Setting up libzix-0-0:s390x (0.6.2-1) ... 157s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 157s Setting up libglvnd0:s390x (1.7.0-1build1) ... 157s Setting up libcodec2-1.2:s390x (1.2.0-3) ... 157s Setting up libxcb-glx0:s390x (1.17.0-2) ... 157s Setting up libgdk-pixbuf2.0-common (2.42.12+dfsg-2) ... 157s Setting up libmysofa1:s390x (1.3.2+dfsg-2ubuntu2) ... 157s Setting up libxcb-shape0:s390x (1.17.0-2) ... 157s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 157s Setting up x11-common (1:7.7+23ubuntu3) ... 158s Setting up libcdio19t64:s390x (2.2.0-1~exp1) ... 158s Setting up libdeflate0:s390x (1.23-1) ... 158s Setting up libxcb-shm0:s390x (1.17.0-2) ... 158s Setting up libmpg123-0t64:s390x (1.32.10-1) ... 158s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 158s Setting up libcjson1:s390x (1.7.18-3) ... 158s Setting up libxvidcore4:s390x (2:1.3.7-1build1) ... 158s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 158s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 158s Setting up libsnappy1v5:s390x (1.2.1-1) ... 158s Setting up libcdio-cdda2t64:s390x (10.2+2.0.2-1) ... 158s Setting up libxcb-present0:s390x (1.17.0-2) ... 158s Setting up libasound2-data (1.2.13-1build1) ... 158s Setting up libpgm-5.3-0t64:s390x (5.3.128~dfsg-2.1build1) ... 158s Setting up libtheoraenc1:s390x (1.2.0~alpha1+dfsg-5) ... 158s Setting up libblas3:s390x (3.12.1-2) ... 158s 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 158s Setting up python3-packaging (24.2-1) ... 158s Setting up libasound2t64:s390x (1.2.13-1build1) ... 158s Setting up libva2:s390x (2.22.0-2) ... 158s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 158s Setting up libsvtav1enc2:s390x (2.3.0+dfsg-1) ... 158s Setting up libxfixes3:s390x (1:6.0.0-2build1) ... 158s Setting up libxcb-sync1:s390x (1.17.0-2) ... 158s Setting up libopus0:s390x (1.5.2-2) ... 158s Setting up libcdio-paranoia2t64:s390x (10.2+2.0.2-1) ... 158s Setting up libdc1394-25:s390x (2.2.6-4build1) ... 158s Setting up libxv1:s390x (2:1.0.11-1.1build1) ... 158s Setting up fonts-dejavu-mono (2.37-8) ... 158s Setting up libvorbis0a:s390x (1.3.7-2) ... 158s Setting up libxrandr2:s390x (2:1.5.4-1) ... 158s Setting up fonts-dejavu-core (2.37-8) ... 158s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 158s Setting up libfftw3-double3:s390x (3.3.10-2fakesync1build1) ... 158s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 158s Setting up libssh-4:s390x (0.11.1-1) ... 158s Setting up libgfortran5:s390x (14.2.0-17ubuntu1) ... 158s Setting up libvulkan1:s390x (1.4.304.0-1) ... 158s Setting up python3-pluggy (1.5.0-1) ... 158s Setting up libwebp7:s390x (1.5.0-0.1) ... 158s Setting up libvidstab1.1:s390x (1.1.0-2build1) ... 158s Setting up libvpx9:s390x (1.15.0-1ubuntu1) ... 158s Setting up libsrt1.5-gnutls:s390x (1.5.4-1) ... 158s Setting up libflite1:s390x (2.2-7) ... 158s Setting up libdav1d7:s390x (1.5.1-1) ... 158s Setting up libva-drm2:s390x (2.22.0-2) ... 158s Setting up ocl-icd-libopencl1:s390x (2.3.2-1build1) ... 158s Setting up libasyncns0:s390x (0.8-6build4) ... 158s Setting up libxshmfence1:s390x (1.3-1build5) ... 158s Setting up libvdpau1:s390x (1.5-3) ... 158s Setting up libbs2b0:s390x (3.1.0+dfsg-8) ... 158s Setting up libxcb-randr0:s390x (1.17.0-2) ... 158s Setting up librav1e0.7:s390x (0.7.1-9) ... 158s Setting up libnsl2:s390x (1.3.0-3build3) ... 158s Setting up libzimg2:s390x (3.0.5+ds1-1build1) ... 158s Setting up libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 158s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 158s Setting up libopenal-data (1:1.24.2-1) ... 158s Setting up libthai-data (0.1.29-2build1) ... 158s Setting up libunibreak6:s390x (6.1-2) ... 158s Setting up libflac12t64:s390x (1.4.3+ds-4) ... 158s Setting up libwayland-egl1:s390x (1.23.1-1) ... 158s Setting up libxss1:s390x (1:1.2.3-1build3) ... 158s Setting up libmbedcrypto16:s390x (3.6.2-3ubuntu1) ... 158s Setting up libx265-215:s390x (4.1-2) ... 158s Setting up libsamplerate0:s390x (0.2.2-4build1) ... 158s Setting up libva-x11-2:s390x (2.22.0-2) ... 158s Setting up libwebpmux3:s390x (1.5.0-0.1) ... 158s Setting up libjxl0.11:s390x (0.11.1-1) ... 158s Setting up libzvbi-common (0.2.43-2ubuntu1) ... 158s Setting up libmp3lame0:s390x (3.100-6build1) ... 158s Setting up libvorbisenc2:s390x (1.3.7-2) ... 158s Setting up libdvdnav4:s390x (6.1.1-3build1) ... 158s Setting up libiec61883-0:s390x (1.2.0-7) ... 158s Setting up libserd-0-0:s390x (0.32.4-1) ... 158s Setting up libwayland-client0:s390x (1.23.1-1) ... 158s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 158s Setting up libavc1394-0:s390x (0.5.4-5build3) ... 158s Setting up python3.12-minimal (3.12.9-1) ... 159s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 159s Setting up liblapack3:s390x (3.12.1-2) ... 159s 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 159s Setting up libzmq5:s390x (4.3.5-1build2) ... 159s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 159s Setting up libzvbi0t64:s390x (0.2.43-2ubuntu1) ... 159s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 159s Setting up libsoxr0:s390x (0.1.3-4build3) ... 159s Setting up fontconfig-config (2.15.0-1.1ubuntu2) ... 159s Setting up python3-pytest (8.3.4-1) ... 159s Setting up python3.12 (3.12.9-1) ... 160s Setting up libxcursor1:s390x (1:1.2.3-1) ... 160s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 160s Setting up python3-all (3.13.1-1~exp2) ... 160s Setting up libopenal1:s390x (1:1.24.2-1) ... 160s Setting up libavutil59:s390x (7:7.1-3ubuntu3) ... 160s Setting up libpostproc58:s390x (7:7.1-3ubuntu3) ... 160s Setting up librist4:s390x (0.2.11+dfsg-1) ... 160s Setting up libthai0:s390x (0.1.29-2build1) ... 160s Setting up libvorbisfile3:s390x (1.3.7-2) ... 160s Setting up libswresample5:s390x (7:7.1-3ubuntu3) ... 160s Setting up libswscale8:s390x (7:7.1-3ubuntu3) ... 160s Setting up libplacebo349:s390x (7.349.0-3) ... 160s Setting up python3-numpy (1:1.26.4+ds-13) ... 164s Setting up librubberband2:s390x (3.3.0+dfsg-2build2) ... 164s Setting up libjack-jackd2-0:s390x (1.9.22~dfsg-4) ... 164s Setting up libsord-0-0:s390x (0.16.18-1) ... 164s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 164s Setting up libwayland-cursor0:s390x (1.23.1-1) ... 164s Setting up libsratom-0-0:s390x (0.6.18-1) ... 164s Setting up libdecor-0-0:s390x (0.2.2-2) ... 164s Setting up libgdk-pixbuf-2.0-0:s390x (2.42.12+dfsg-2) ... 164s Setting up libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 164s Setting up libsndfile1:s390x (1.2.2-2) ... 164s Setting up libbluray2:s390x (1:1.3.4-1build1) ... 164s Setting up liblilv-0-0:s390x (0.24.26-1) ... 164s Setting up libopenmpt0t64:s390x (0.7.13-1) ... 164s Setting up fontconfig (2.15.0-1.1ubuntu2) ... 166s Regenerating fonts cache... done. 166s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 166s Setting up libglx0:s390x (1.7.0-1build1) ... 166s Setting up libpulse0:s390x (1:17.0+dfsg1-2ubuntu1) ... 166s Setting up libpango-1.0-0:s390x (1.56.1-1) ... 166s Setting up libcairo2:s390x (1.18.2-2) ... 166s Setting up libgl1:s390x (1.7.0-1build1) ... 166s Setting up libass9:s390x (1:0.17.3-1) ... 166s Setting up libtheoradec1:s390x (1.2.0~alpha1+dfsg-5) ... 166s Setting up libcairo-gobject2:s390x (1.18.2-2) ... 166s Setting up libpangoft2-1.0-0:s390x (1.56.1-1) ... 166s Setting up libsdl2-2.0-0:s390x (2.32.0+dfsg-1) ... 166s Setting up libpangocairo-1.0-0:s390x (1.56.1-1) ... 166s Setting up librsvg2-2:s390x (2.59.90+dfsg-2) ... 166s Setting up libavcodec61:s390x (7:7.1-3ubuntu3) ... 166s Setting up libavformat61:s390x (7:7.1-3ubuntu3) ... 166s Setting up libavfilter10:s390x (7:7.1-3ubuntu3) ... 166s Setting up libavdevice61:s390x (7:7.1-3ubuntu3) ... 166s Setting up python3-av (12.3.0-2ubuntu1) ... 166s Processing triggers for systemd (257.2-3ubuntu1) ... 166s Processing triggers for man-db (2.13.0-1) ... 167s Processing triggers for libc-bin (2.41-1ubuntu1) ... 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-av'], kind short, sout pipe, serr pipe, env [] 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.bCjqFT/command1-packages.all"], kind short, sout raw, serr pipe, env [] 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.bCjqFT/command1-packages.all /tmp/autopkgtest-work._ngydvgr/out/command1-packages.all 168s autopkgtest: DBG: got reply from testbed: ok 168s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.bCjqFT/build.PCD/src'], kind short, sout raw, serr raw, env [] 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.bCjqFT/build.PCD/src already exists 168s autopkgtest [01:57:26]: test command1: set -e; rm -rf av; for py in $(py3versions -r 2>/dev/null); do $py -m pytest --ignore=tests/test_doctests.py --ignore=tests/test_timeout.py -k 'not test_audio_transcode and not test_bits_per_coded_sample and not test_codec_delay and not test_codec_tag and not test_container_probing and not test_context_manager and not test_data and not test_decode_audio_sample_count and not test_decode_close_then_use and not test_decoded_motion_vectors and not test_decoded_time_base and not test_decoded_video_frame_count and not test_decode_half and not test_deprecated_stream_seek and not test_encoding and not test_filter_flush and not test_filter_h264_mp4toannexb and not test_filter_output_parameters and not test_flush_decoded_video_frame_count and not test_frame_index and not test_is_corrupt and not test_is_discard and not test_is_disposable and not test_is_keyframe and not test_movtext and not test_noside_data and not test_parse and not test_path_input and not test_path_output and not test_penguin_joke and not test_reading and not test_seek_end and not test_seek_float and not test_seek_int64 and not test_seek_middle and not test_seek_start and not test_selection and not test_set_duration and not test_side_data and not test_sky_timelapse and not test_stream_probing and not test_stream_seek and not test_stream_tuples and not test_str_input and not test_str_output and not test_subtitle_flush and not test_transcode and not test_vobsub'; done 168s autopkgtest [01:57:26]: test command1: [----------------------- 168s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.bCjqFT/wrapper.sh --debug --artifacts=/tmp/autopkgtest.bCjqFT/command1-artifacts --chdir=/tmp/autopkgtest.bCjqFT/build.PCD/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.bCjqFT/command1-stderr --stdout=/tmp/autopkgtest.bCjqFT/command1-stdout --tmp=/tmp/autopkgtest.bCjqFT/autopkgtest_tmp \'--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1\' -- bash -ec \' set -e; rm -rf av; for py in $(py3versions -r 2>/dev/null); do $py -m pytest --ignore=tests/test_doctests.py --ignore=tests/test_timeout.py -k \'"\'"\'not test_audio_transcode and not test_bits_per_coded_sample and not test_codec_delay and not test_codec_tag and not test_container_probing and not test_context_manager and not test_data and not test_decode_audio_sample_count and not test_decode_close_then_use and not test_decoded_motion_vectors and not test_decoded_time_base and not test_decoded_video_frame_count and not test_decode_half and not test_deprecated_stream_seek and not test_encoding and not test_filter_flush and not test_filter_h264_mp4toannexb and not test_filter_output_parameters and not test_flush_decoded_video_frame_count and not test_frame_index and not test_is_corrupt and not test_is_discard and not test_is_disposable and not test_is_keyframe and not test_movtext and not test_noside_data and not test_parse and not test_path_input and not test_path_output and not test_penguin_joke and not test_reading and not test_seek_end and not test_seek_float and not test_seek_int64 and not test_seek_middle and not test_seek_start and not test_selection and not test_set_duration and not test_side_data and not test_sky_timelapse and not test_stream_probing and not test_stream_seek and not test_stream_tuples and not test_str_input and not test_str_output and not test_subtitle_flush and not test_transcode and not test_vobsub\'"\'"\'; done\''], kind test, sout raw, serr raw, env [] 168s /tmp/autopkgtest.bCjqFT/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.bCjqFT/command1-artifacts 168s /tmp/autopkgtest.bCjqFT/wrapper.sh: changing to directory: /tmp/autopkgtest.bCjqFT/build.PCD/src 168s /tmp/autopkgtest.bCjqFT/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 168s /tmp/autopkgtest.bCjqFT/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 168s /tmp/autopkgtest.bCjqFT/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 168s /tmp/autopkgtest.bCjqFT/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 168s /tmp/autopkgtest.bCjqFT/wrapper.sh: setting environment: LANG=C.UTF-8 168s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LANGUAGE 168s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_ADDRESS 168s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_ALL 168s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_COLLATE 168s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_CTYPE 168s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_IDENTIFICATION 168s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_MEASUREMENT 168s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_MESSAGES 168s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_MONETARY 168s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_NAME 168s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_NUMERIC 168s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_PAPER 168s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_TELEPHONE 168s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_TIME 168s /tmp/autopkgtest.bCjqFT/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 168s /tmp/autopkgtest.bCjqFT/wrapper.sh: pretending to be a login shell 168s /tmp/autopkgtest.bCjqFT/wrapper.sh: will write standard error to /tmp/autopkgtest.bCjqFT/command1-stderr 168s /tmp/autopkgtest.bCjqFT/wrapper.sh: will write stdout to /tmp/autopkgtest.bCjqFT/command1-stdout 168s /tmp/autopkgtest.bCjqFT/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.bCjqFT/autopkgtest_tmp 168s /tmp/autopkgtest.bCjqFT/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 168s /tmp/autopkgtest.bCjqFT/wrapper.sh: command to run: bash -ec set -e; rm -rf av; for py in $(py3versions -r 2>/dev/null); do $py -m pytest --ignore=tests/test_doctests.py --ignore=tests/test_timeout.py -k 'not test_audio_transcode and not test_bits_per_coded_sample and not test_codec_delay and not test_codec_tag and not test_container_probing and not test_context_manager and not test_data and not test_decode_audio_sample_count and not test_decode_close_then_use and not test_decoded_motion_vectors and not test_decoded_time_base and not test_decoded_video_frame_count and not test_decode_half and not test_deprecated_stream_seek and not test_encoding and not test_filter_flush and not test_filter_h264_mp4toannexb and not test_filter_output_parameters and not test_flush_decoded_video_frame_count and not test_frame_index and not test_is_corrupt and not test_is_discard and not test_is_disposable and not test_is_keyframe and not test_movtext and not test_noside_data and not test_parse and not test_path_input and not test_path_output and not test_penguin_joke and not test_reading and not test_seek_end and not test_seek_float and not test_seek_int64 and not test_seek_middle and not test_seek_start and not test_selection and not test_set_duration and not test_side_data and not test_sky_timelapse and not test_stream_probing and not test_stream_seek and not test_stream_tuples and not test_str_input and not test_str_output and not test_subtitle_flush and not test_transcode and not test_vobsub'; done 168s /tmp/autopkgtest.bCjqFT/wrapper.sh: copying /tmp/tmp.qr3H8F5Q7i/out to stdout and file: /tmp/autopkgtest.bCjqFT/command1-stdout 168s /tmp/autopkgtest.bCjqFT/wrapper.sh: copying /tmp/tmp.qr3H8F5Q7i/err to standard error and file: /tmp/autopkgtest.bCjqFT/command1-stdout 168s /tmp/autopkgtest.bCjqFT/wrapper.sh: writing script pid 3344 to /tmp/autopkgtest_script_pid 169s ============================= test session starts ============================== 169s platform linux -- Python 3.12.9, pytest-8.3.4, pluggy-1.5.0 169s rootdir: /tmp/autopkgtest.bCjqFT/build.PCD/src 169s configfile: pyproject.toml 169s plugins: typeguard-4.4.1 169s collected 247 items / 73 deselected / 174 selected 169s 169s tests/test_audiofifo.py .... [ 2%] 169s tests/test_audioformat.py .. [ 3%] 169s tests/test_audioframe.py ................ [ 12%] 169s tests/test_audiolayout.py .. [ 13%] 169s tests/test_audioresampler.py ........ [ 18%] 169s tests/test_bitstream.py ... [ 20%] 169s tests/test_codec.py ...... [ 23%] 169s tests/test_codec_context.py ...... [ 27%] 169s tests/test_containerformat.py ..... [ 29%] 169s tests/test_decode.py .. [ 31%] 169s tests/test_deprecation.py .. [ 32%] 169s tests/test_dictionary.py . [ 32%] 178s tests/test_encode.py ...... [ 36%] 178s tests/test_enums.py ............. [ 43%] 178s tests/test_errors.py .... [ 45%] 178s tests/test_filters.py .......... [ 51%] 178s tests/test_logging.py ..... [ 54%] 178s tests/test_options.py . [ 55%] 178s tests/test_python_io.py .ssssss.s [ 60%] 178s tests/test_videoformat.py ...... [ 63%] 178s tests/test_videoframe.py .........sss................................... [ 90%] 178s ................ [100%] 178s 178s ================ 164 passed, 10 skipped, 73 deselected in 9.54s ================ 179s ============================= test session starts ============================== 179s platform linux -- Python 3.13.2, pytest-8.3.4, pluggy-1.5.0 179s rootdir: /tmp/autopkgtest.bCjqFT/build.PCD/src 179s configfile: pyproject.toml 179s plugins: typeguard-4.4.1 179s collected 247 items / 73 deselected / 174 selected 179s 179s tests/test_audiofifo.py .... [ 2%] 179s tests/test_audioformat.py .. [ 3%] 179s tests/test_audioframe.py ................ [ 12%] 179s tests/test_audiolayout.py .. [ 13%] 179s tests/test_audioresampler.py ........ [ 18%] 179s tests/test_bitstream.py ... [ 20%] 179s tests/test_codec.py ...... [ 23%] 179s tests/test_codec_context.py ...... [ 27%] 179s tests/test_containerformat.py ..... [ 29%] 179s tests/test_decode.py .. [ 31%] 179s tests/test_deprecation.py .. [ 32%] 179s tests/test_dictionary.py . [ 32%] 187s tests/test_encode.py ...... [ 36%] 187s tests/test_enums.py ............. [ 43%] 187s tests/test_errors.py .... [ 45%] 187s tests/test_filters.py .......... [ 51%] 187s tests/test_logging.py ..... [ 54%] 187s tests/test_options.py . [ 55%] 187s tests/test_python_io.py .ssssss.s [ 60%] 187s tests/test_videoformat.py ...... [ 63%] 187s tests/test_videoframe.py .........sss................................... [ 90%] 187s ................ [100%] 187s 187s ================ 164 passed, 10 skipped, 73 deselected in 8.72s ================ 187s /tmp/autopkgtest.bCjqFT/wrapper.sh: checking for leaked background processes... 187s /tmp/autopkgtest.bCjqFT/wrapper.sh: waiting for tee/cat subprocesses... 187s /tmp/autopkgtest.bCjqFT/wrapper.sh: cleaning up... 187s /tmp/autopkgtest.bCjqFT/wrapper.sh: Exit status: 0 187s autopkgtest: DBG: testbed command exited with code 0 188s autopkgtest [01:57:46]: test command1: -----------------------] 188s autopkgtest: DBG: testbed executing test finished with exit status 0 188s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.bCjqFT/command1-stdout /tmp/autopkgtest-work._ngydvgr/out/command1-stdout 188s autopkgtest: DBG: got reply from testbed: ok 188s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.bCjqFT/command1-stderr /tmp/autopkgtest-work._ngydvgr/out/command1-stderr 188s autopkgtest: DBG: got reply from testbed: ok 188s command1 PASS 188s autopkgtest [01:57:46]: test command1: - - - - - - - - - - results - - - - - - - - - - 188s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.bCjqFT/command1-artifacts/ /tmp/autopkgtest-work._ngydvgr/out/artifacts/ 188s autopkgtest: DBG: got reply from testbed: ok 188s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.bCjqFT/command1-artifacts', '/tmp/autopkgtest.bCjqFT/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 188s autopkgtest: DBG: testbed command exited with code 0 188s autopkgtest [01:57:46]: test command3: preparing testbed 188s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-all', 'python3-av', 'python3-pytest'], deps_new=['ca-certificates', 'python3-all', 'python3-av', 'python3-pytest'] 188s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 188s autopkgtest: DBG: install_deps: deps_new=['ca-certificates', 'python3-all', 'python3-av', 'python3-pytest'] 188s autopkgtest: DBG: install-deps: satisfying ca-certificates, python3-all, python3-av, python3-pytest 188s autopkgtest: DBG: can use apt-get on testbed: True 188s 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', 'ca-certificates, python3-all, python3-av, python3-pytest'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 189s Reading package lists... 189s Building dependency tree... 189s Reading state information... 189s Starting pkgProblemResolver with broken count: 0 189s Starting 2 pkgProblemResolver with broken count: 0 189s Done 189s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 189s autopkgtest: DBG: testbed command exited with code 0 189s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-av'], kind short, sout pipe, serr pipe, env [] 189s autopkgtest: DBG: testbed command exited with code 0 189s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.bCjqFT/command3-packages.all"], kind short, sout raw, serr pipe, env [] 190s autopkgtest: DBG: testbed command exited with code 0 190s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.bCjqFT/command3-packages.all /tmp/autopkgtest-work._ngydvgr/out/command3-packages.all 190s autopkgtest: DBG: got reply from testbed: ok 190s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.bCjqFT/build.PCD/src'], kind short, sout raw, serr raw, env [] 190s autopkgtest: DBG: testbed command exited with code 0 190s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.bCjqFT/build.PCD/src already exists 190s autopkgtest [01:57:48]: test command3: set -e; rm -rf av; for py in $(py3versions -r 2>/dev/null); do $py -m pytest; done 190s autopkgtest [01:57:48]: test command3: [----------------------- 190s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.bCjqFT/wrapper.sh --debug --artifacts=/tmp/autopkgtest.bCjqFT/command3-artifacts --chdir=/tmp/autopkgtest.bCjqFT/build.PCD/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.bCjqFT/command3-stderr --stdout=/tmp/autopkgtest.bCjqFT/command3-stdout --tmp=/tmp/autopkgtest.bCjqFT/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- bash -ec ' set -e; rm -rf av; for py in $(py3versions -r 2>/dev/null); do $py -m pytest; done'"], kind test, sout raw, serr raw, env [] 190s /tmp/autopkgtest.bCjqFT/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.bCjqFT/command3-artifacts 190s /tmp/autopkgtest.bCjqFT/wrapper.sh: changing to directory: /tmp/autopkgtest.bCjqFT/build.PCD/src 190s /tmp/autopkgtest.bCjqFT/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 190s /tmp/autopkgtest.bCjqFT/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 190s /tmp/autopkgtest.bCjqFT/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 190s /tmp/autopkgtest.bCjqFT/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 190s /tmp/autopkgtest.bCjqFT/wrapper.sh: setting environment: LANG=C.UTF-8 190s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LANGUAGE 190s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_ADDRESS 190s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_ALL 190s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_COLLATE 190s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_CTYPE 190s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_IDENTIFICATION 190s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_MEASUREMENT 190s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_MESSAGES 190s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_MONETARY 190s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_NAME 190s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_NUMERIC 190s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_PAPER 190s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_TELEPHONE 190s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_TIME 190s /tmp/autopkgtest.bCjqFT/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 190s /tmp/autopkgtest.bCjqFT/wrapper.sh: pretending to be a login shell 190s /tmp/autopkgtest.bCjqFT/wrapper.sh: will write standard error to /tmp/autopkgtest.bCjqFT/command3-stderr 190s /tmp/autopkgtest.bCjqFT/wrapper.sh: will write stdout to /tmp/autopkgtest.bCjqFT/command3-stdout 190s /tmp/autopkgtest.bCjqFT/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.bCjqFT/autopkgtest_tmp 190s /tmp/autopkgtest.bCjqFT/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 190s /tmp/autopkgtest.bCjqFT/wrapper.sh: command to run: bash -ec set -e; rm -rf av; for py in $(py3versions -r 2>/dev/null); do $py -m pytest; done 190s /tmp/autopkgtest.bCjqFT/wrapper.sh: copying /tmp/tmp.WEigMrAXq0/out to stdout and file: /tmp/autopkgtest.bCjqFT/command3-stdout 190s /tmp/autopkgtest.bCjqFT/wrapper.sh: copying /tmp/tmp.WEigMrAXq0/err to standard error and file: /tmp/autopkgtest.bCjqFT/command3-stdout 190s /tmp/autopkgtest.bCjqFT/wrapper.sh: writing script pid 3624 to /tmp/autopkgtest_script_pid 194s ============================= test session starts ============================== 194s platform linux -- Python 3.12.9, pytest-8.3.4, pluggy-1.5.0 194s rootdir: /tmp/autopkgtest.bCjqFT/build.PCD/src 194s configfile: pyproject.toml 194s plugins: typeguard-4.4.1 194s collected 268 items 194s 194s tests/test_audiofifo.py ..... [ 1%] 194s tests/test_audioformat.py .. [ 2%] 194s tests/test_audioframe.py ................ [ 8%] 194s tests/test_audiolayout.py .. [ 9%] 194s tests/test_audioresampler.py ........ [ 12%] 195s tests/test_bitstream.py ...... [ 14%] 195s tests/test_codec.py ...... [ 16%] 203s tests/test_codec_context.py ...........ss......... [ 25%] 204s tests/test_colorspace.py .. [ 25%] 204s tests/test_containerformat.py ..... [ 27%] 204s tests/test_decode.py ......... [ 30%] 204s tests/test_deprecation.py .. [ 31%] 204s tests/test_dictionary.py . [ 32%] 204s tests/test_doctests.py .................. [ 38%] 213s tests/test_encode.py .s.s...... [ 42%] 213s tests/test_enums.py ............. [ 47%] 213s tests/test_errors.py .... [ 48%] 214s tests/test_file_probing.py ............ [ 53%] 214s tests/test_filters.py .......... [ 57%] 214s tests/test_logging.py ..... [ 58%] 214s tests/test_open.py .... [ 60%] 214s tests/test_options.py . [ 60%] 215s tests/test_packet.py ..... [ 62%] 215s tests/test_python_io.py ......ssssss.s [ 67%] 216s tests/test_seek.py ....... [ 70%] 216s tests/test_streams.py .... [ 72%] 217s tests/test_subtitles.py ... [ 73%] 220s tests/test_timeout.py ... [ 74%] 220s tests/test_videoformat.py ...... [ 76%] 220s tests/test_videoframe.py .........sss................................... [ 94%] 220s ................ [100%] 220s 220s ======================= 254 passed, 14 skipped in 29.89s ======================= 221s ============================= test session starts ============================== 221s platform linux -- Python 3.13.2, pytest-8.3.4, pluggy-1.5.0 221s rootdir: /tmp/autopkgtest.bCjqFT/build.PCD/src 221s configfile: pyproject.toml 221s plugins: typeguard-4.4.1 221s collected 268 items 221s 221s tests/test_audiofifo.py ..... [ 1%] 221s tests/test_audioformat.py .. [ 2%] 221s tests/test_audioframe.py ................ [ 8%] 221s tests/test_audiolayout.py .. [ 9%] 221s tests/test_audioresampler.py ........ [ 12%] 221s tests/test_bitstream.py ...... [ 14%] 221s tests/test_codec.py ...... [ 16%] 229s tests/test_codec_context.py ...........ss......... [ 25%] 229s tests/test_colorspace.py .. [ 25%] 229s tests/test_containerformat.py ..... [ 27%] 229s tests/test_decode.py ......... [ 30%] 229s tests/test_deprecation.py .. [ 31%] 229s tests/test_dictionary.py . [ 32%] 229s tests/test_doctests.py ......ss.......... [ 38%] 239s tests/test_encode.py .s.s...... [ 42%] 239s tests/test_enums.py ............. [ 47%] 239s tests/test_errors.py .... [ 48%] 239s tests/test_file_probing.py ............ [ 53%] 239s tests/test_filters.py .......... [ 57%] 239s tests/test_logging.py ..... [ 58%] 239s tests/test_open.py .... [ 60%] 239s tests/test_options.py . [ 60%] 239s tests/test_packet.py ..... [ 62%] 239s tests/test_python_io.py ......ssssss.s [ 67%] 240s tests/test_seek.py ....... [ 70%] 240s tests/test_streams.py .... [ 72%] 240s tests/test_subtitles.py ... [ 73%] 243s tests/test_timeout.py ... [ 74%] 243s tests/test_videoformat.py ...... [ 76%] 243s tests/test_videoframe.py .........sss................................... [ 94%] 243s ................ [100%] 243s 243s ======================= 252 passed, 16 skipped in 22.77s ======================= 243s /tmp/autopkgtest.bCjqFT/wrapper.sh: checking for leaked background processes... 243s /tmp/autopkgtest.bCjqFT/wrapper.sh: waiting for tee/cat subprocesses... 243s /tmp/autopkgtest.bCjqFT/wrapper.sh: cleaning up... 243s /tmp/autopkgtest.bCjqFT/wrapper.sh: Exit status: 0 243s autopkgtest: DBG: testbed command exited with code 0 244s autopkgtest [01:58:42]: test command3: -----------------------] 244s autopkgtest: DBG: testbed executing test finished with exit status 0 244s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.bCjqFT/command3-stdout /tmp/autopkgtest-work._ngydvgr/out/command3-stdout 244s autopkgtest: DBG: got reply from testbed: ok 244s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.bCjqFT/command3-stderr /tmp/autopkgtest-work._ngydvgr/out/command3-stderr 244s autopkgtest: DBG: got reply from testbed: ok 244s command3 PASS 244s autopkgtest [01:58:42]: test command3: - - - - - - - - - - results - - - - - - - - - - 244s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.bCjqFT/command3-artifacts/ /tmp/autopkgtest-work._ngydvgr/out/artifacts/ 244s autopkgtest: DBG: got reply from testbed: ok 244s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.bCjqFT/command3-artifacts', '/tmp/autopkgtest.bCjqFT/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 244s autopkgtest: DBG: testbed command exited with code 0 244s autopkgtest [01:58:42]: test autodep8-python3: preparing testbed 244s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['ca-certificates', 'python3-all', 'python3-av', 'python3-pytest'], deps_new=['python3-all', 'python3-av'] 244s autopkgtest: DBG: testbed reset 244s autopkgtest: DBG: sending command to testbed: revert 361s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.bCjqFT 361s autopkgtest: DBG: sending command to testbed: print-execute-command 361s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.saxzbw_u/runcmd 361s autopkgtest: DBG: sending command to testbed: capabilities 361s autopkgtest: DBG: got reply from testbed: ok ok revert-full-system reboot revert suggested-normal-user=ubuntu root-on-testbed isolation-machine 361s autopkgtest: DBG: testbed capabilities: ['ok', 'revert-full-system', 'reboot', 'revert', 'suggested-normal-user=ubuntu', 'root-on-testbed', 'isolation-machine', 'has_internet'] 361s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.bCjqFT'], kind short, sout raw, serr pipe, env [] 361s autopkgtest: DBG: testbed command exited with code 0 361s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.bCjqFT/wrapper.sh 362s autopkgtest: DBG: got reply from testbed: ok 362s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.bCjqFT/wrapper.sh'], kind short, sout raw, serr pipe, env [] 362s autopkgtest: DBG: testbed command exited with code 0 362s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 362s autopkgtest: DBG: testbed command exited with code 0 362s autopkgtest [02:00:40]: testbed dpkg architecture: s390x 362s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 362s autopkgtest: DBG: testbed command exited with code 0 362s autopkgtest [02:00:40]: testbed apt version: 2.9.28 362s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 362s autopkgtest: DBG: testbed command exited with code 0 362s autopkgtest: DBG: testbed has eatmydata 362s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 362s autopkgtest: DBG: testbed command exited with code 0 362s autopkgtest [02:00:40]: @@@@@@@@@@@@@@@@@@@@ test bed setup 362s 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 [] 363s autopkgtest: DBG: testbed command exited with code 0 363s autopkgtest [02:00:41]: testbed release detected to be: plucky 363s 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 [] 363s autopkgtest: DBG: testbed command exited with code 0 363s 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 [] 363s autopkgtest: DBG: testbed command exited with code 0 363s autopkgtest: DBG: adding APT source: Types: deb deb-src 363s URIs: http://ftpmaster.internal/ubuntu/ 363s Suites: plucky-proposed 363s Components: main restricted universe multiverse 363s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 363s 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 [] 363s autopkgtest: DBG: testbed command exited with code 0 363s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 363s Package: * 363s Pin: release plucky-proposed 363s Pin-Priority: 500 363s 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 [] 363s autopkgtest: DBG: testbed command exited with code 0 363s autopkgtest [02:00:41]: updating testbed package index (apt update) 363s 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'] 364s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 364s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 364s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 364s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 364s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [842 kB] 364s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.0 kB] 364s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 364s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 364s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [166 kB] 364s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 364s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 364s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 365s Fetched 2083 kB in 1s (2146 kB/s) 365s Reading package lists... 365s autopkgtest: DBG: testbed command exited with code 0 365s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 365s Package: * 365s Pin: release plucky-proposed 365s Pin-Priority: 100 365s 365s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 365s Pin: release plucky-proposed 365s Pin-Priority: 995 365s 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:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 365s autopkgtest: DBG: testbed command exited with code 0 365s 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.bCjqFT/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 366s autopkgtest: DBG: testbed command exited with code 0 366s 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'] 366s + lsb_release --codename --short 366s + RELEASE=plucky 366s + cat 366s + [ plucky != trusty ] 366s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 366s Reading package lists... 366s Building dependency tree... 366s Reading state information... 366s Calculating upgrade... 366s The following packages were automatically installed and are no longer required: 366s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 366s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 366s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 366s linux-tools-6.11.0-8-generic 366s Use 'sudo apt autoremove' to remove them. 366s The following packages will be upgraded: 366s dash gcc-14-base libatomic1 libgcc-s1 libp11-kit0 libstdc++6 libtasn1-6 366s libxdmcp6 366s 8 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 366s Need to get 1471 kB of archives. 366s After this operation, 24.6 kB of additional disk space will be used. 366s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 367s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 367s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 367s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 367s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 367s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu2 [316 kB] 367s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 367s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 367s Preconfiguring packages ... 367s Fetched 1471 kB in 1s (2093 kB/s) 367s (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 ... 80969 files and directories currently installed.) 367s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 367s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 367s Setting up dash (0.5.12-12ubuntu1) ... 367s (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 ... 80969 files and directories currently installed.) 367s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 367s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 367s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 367s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 367s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 368s (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 ... 80969 files and directories currently installed.) 368s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 368s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 368s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 368s (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 ... 80969 files and directories currently installed.) 368s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 368s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 368s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 368s (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 ... 80969 files and directories currently installed.) 368s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu2_s390x.deb ... 368s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu2) over (0.25.5-2ubuntu1) ... 368s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 368s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 368s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 368s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 368s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 368s Setting up libp11-kit0:s390x (0.25.5-2ubuntu2) ... 368s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 368s Setting up libtasn1-6:s390x (4.20.0-2) ... 368s Processing triggers for libc-bin (2.40-4ubuntu1) ... 368s Processing triggers for man-db (2.13.0-1) ... 368s Processing triggers for debianutils (5.21) ... 368s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 368s + /usr/lib/apt/apt-helper analyze-pattern ?true 368s + uname -r 368s + sed s/\./\\./g 368s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 368s + apt list ?obsolete 368s + + cut -d/ -f1 368s tail -n+2 368s + grep -v ^linux-.*6\.12\.0-15-generic.* 369s + true 369s + obsolete_pkgs= 369s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 369s Reading package lists... 369s Building dependency tree... 369s Reading state information... 369s The following packages will be REMOVED: 369s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 369s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 369s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 369s linux-tools-6.11.0-8-generic* 369s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 369s After this operation, 167 MB disk space will be freed. 369s (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 ... 80969 files and directories currently installed.) 369s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 369s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 369s Removing libpython3.12t64:s390x (3.12.9-1) ... 369s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 369s Removing libnsl2:s390x (1.3.0-3build3) ... 369s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 369s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 369s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 370s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 370s Processing triggers for libc-bin (2.40-4ubuntu1) ... 371s (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 ... 55869 files and directories currently installed.) 371s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 371s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 371s + grep -q trusty /etc/lsb-release 371s + [ ! -d /usr/share/doc/unattended-upgrades ] 371s + [ ! -d /usr/share/doc/lxd ] 371s + [ ! -d /usr/share/doc/lxd-client ] 371s + [ ! -d /usr/share/doc/snapd ] 371s + type iptables 371s + cat 371s + chmod 755 /etc/rc.local 371s + . /etc/rc.local 371s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 371s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 371s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 371s + uname -m 371s + [ s390x = ppc64le ] 371s + [ -d /run/systemd/system ] 371s + systemd-detect-virt --quiet --vm 371s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 371s + cat 371s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 371s + echo COMPRESS=lz4 371s autopkgtest: DBG: testbed command exited with code 0 371s autopkgtest [02:00:49]: upgrading testbed (apt dist-upgrade and autopurge) 371s 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'] 371s Reading package lists... 371s Building dependency tree... 371s Reading state information... 371s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 371s Starting 2 pkgProblemResolver with broken count: 0 371s Done 371s Entering ResolveByKeep 372s 372s The following packages will be upgraded: 372s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 372s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 372s Need to get 10.7 MB of archives. 372s After this operation, 305 kB of additional disk space will be used. 372s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 372s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 372s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 372s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 373s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 373s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 373s Preconfiguring packages ... 373s Fetched 10.7 MB in 1s (10.6 MB/s) 373s (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 ... 55867 files and directories currently installed.) 373s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 373s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 373s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 373s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 373s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 373s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 373s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 373s Checking for services that may need to be restarted... 373s Checking init scripts... 373s Checking for services that may need to be restarted... 373s Checking init scripts... 373s Stopping some services possibly affected by the upgrade (will be restarted later): 373s cron: stopping...done. 373s 373s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 374s Setting up libc6:s390x (2.41-1ubuntu1) ... 374s Checking for services that may need to be restarted... 374s Checking init scripts... 374s Restarting services possibly affected by the upgrade: 374s cron: restarting...done. 374s 374s Services restarted successfully. 374s (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 ... 55868 files and directories currently installed.) 374s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 374s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 374s Setting up libc-bin (2.41-1ubuntu1) ... 374s (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 ... 55868 files and directories currently installed.) 374s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 374s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 374s Setting up iproute2 (6.13.0-1ubuntu1) ... 374s Setting up locales (2.41-1ubuntu1) ... 374s Installing new version of config file /etc/locale.alias ... 374s Generating locales (this might take a while)... 375s en_US.UTF-8... done 375s Generation complete. 375s Setting up libc-dev-bin (2.41-1ubuntu1) ... 375s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 375s Processing triggers for man-db (2.13.0-1) ... 376s Processing triggers for systemd (257.2-3ubuntu1) ... 377s autopkgtest: DBG: testbed command exited with code 0 377s 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'] 377s Reading package lists... 378s Building dependency tree... 378s Reading state information... 378s Starting pkgProblemResolver with broken count: 0 378s Starting 2 pkgProblemResolver with broken count: 0 378s Done 378s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 378s autopkgtest: DBG: testbed command exited with code 0 378s 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.bCjqFT/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 378s autopkgtest: DBG: testbed command exited with code 1 378s autopkgtest [02:00:56]: rebooting testbed after setup commands that affected boot 378s autopkgtest: DBG: sending command to testbed: reboot 395s autopkgtest: DBG: got reply from testbed: ok 395s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 395s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.bCjqFT'], kind short, sout raw, serr pipe, env [] 395s autopkgtest: DBG: testbed command exited with code 0 395s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.bCjqFT/autopkgtest-reboot 395s autopkgtest: DBG: got reply from testbed: ok 395s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.bCjqFT/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 396s autopkgtest: DBG: testbed command exited with code 0 396s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.bCjqFT/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 396s autopkgtest: DBG: testbed command exited with code 0 396s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.bCjqFT/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 396s autopkgtest: DBG: testbed command exited with code 0 396s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.bCjqFT'], kind short, sout raw, serr pipe, env [] 396s autopkgtest: DBG: testbed command exited with code 0 396s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.bCjqFT/autopkgtest-reboot-prepare 396s autopkgtest: DBG: got reply from testbed: ok 396s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.bCjqFT/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 396s autopkgtest: DBG: testbed command exited with code 0 396s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.bCjqFT/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 397s autopkgtest: DBG: testbed command exited with code 0 397s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 397s autopkgtest: DBG: testbed command exited with code 0 397s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.bCjqFT/testbed-packages"], kind short, sout raw, serr pipe, env [] 397s autopkgtest: DBG: testbed command exited with code 0 397s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.bCjqFT/testbed-packages /tmp/autopkgtest-work._ngydvgr/out/testbed-packages 397s autopkgtest: DBG: got reply from testbed: ok 397s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 397s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.bCjqFT'], kind short, sout raw, serr pipe, env [] 397s autopkgtest: DBG: testbed command exited with code 0 397s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.bCjqFT/autopkgtest-reboot 397s autopkgtest: DBG: got reply from testbed: ok 397s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.bCjqFT/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 398s autopkgtest: DBG: testbed command exited with code 0 398s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.bCjqFT/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 398s autopkgtest: DBG: testbed command exited with code 0 398s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.bCjqFT/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 398s autopkgtest: DBG: testbed command exited with code 0 398s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.bCjqFT'], kind short, sout raw, serr pipe, env [] 398s autopkgtest: DBG: testbed command exited with code 0 398s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.bCjqFT/autopkgtest-reboot-prepare 398s autopkgtest: DBG: got reply from testbed: ok 398s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.bCjqFT/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 398s autopkgtest: DBG: testbed command exited with code 0 398s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.bCjqFT/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 399s autopkgtest: DBG: testbed command exited with code 0 399s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 399s autopkgtest: DBG: testbed command exited with code 0 399s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 399s autopkgtest: DBG: install_deps: deps_new=['python3-all', 'python3-av'] 399s autopkgtest: DBG: install-deps: satisfying python3-all, python3-av 399s autopkgtest: DBG: can use apt-get on testbed: True 399s 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-all, python3-av'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 399s Reading package lists... 399s Building dependency tree... 399s Reading state information... 399s Starting pkgProblemResolver with broken count: 0 399s Starting 2 pkgProblemResolver with broken count: 0 399s Done 400s The following NEW packages will be installed: 400s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono libaom3 400s libasound2-data libasound2t64 libass9 libasyncns0 libavc1394-0 libavcodec61 400s libavdevice61 libavfilter10 libavformat61 libavutil59 libblas3 libbluray2 400s libbs2b0 libcaca0 libcairo-gobject2 libcairo2 libcdio-cdda2t64 400s libcdio-paranoia2t64 libcdio19t64 libchromaprint1 libcjson1 libcodec2-1.2 400s libdatrie1 libdav1d7 libdc1394-25 libdecor-0-0 libdeflate0 libdrm-radeon1 400s libdvdnav4 libdvdread8t64 libfftw3-double3 libflac12t64 libflite1 400s libfontconfig1 libfreetype6 libgbm1 libgdk-pixbuf-2.0-0 400s libgdk-pixbuf2.0-common libgfortran5 libgl1 libgl1-mesa-dri libglapi-mesa 400s libglvnd0 libglx-mesa0 libglx0 libgme0 libgomp1 libgraphite2-3 libgsm1 400s libharfbuzz0b libiec61883-0 libjack-jackd2-0 libjbig0 libjpeg-turbo8 400s libjpeg8 libjxl0.11 liblapack3 liblcms2-2 liblilv-0-0 libmbedcrypto16 400s libmp3lame0 libmpg123-0t64 libmysofa1 libnorm1t64 libnsl2 libogg0 400s libopenal-data libopenal1 libopenjp2-7 libopenmpt0t64 libopus0 400s libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpgm-5.3-0t64 400s libpixman-1-0 libplacebo349 libpostproc58 libpulse0 libpython3.12-minimal 400s libpython3.12-stdlib librabbitmq4 librav1e0.7 libraw1394-11 librist4 400s librsvg2-2 librubberband2 libsamplerate0 libsdl2-2.0-0 libserd-0-0 400s libsharpyuv0 libshine3 libsnappy1v5 libsndfile1 libsodium23 libsord-0-0 400s libsoxr0 libspeex1 libsratom-0-0 libsrt1.5-gnutls libssh-4 libsvtav1enc2 400s libswresample5 libswscale8 libthai-data libthai0 libtheoradec1 libtheoraenc1 400s libtiff6 libtwolame0 libudfread0 libunibreak6 libva-drm2 libva-x11-2 libva2 400s libvdpau1 libvidstab1.1 libvorbis0a libvorbisenc2 libvorbisfile3 libvpx9 400s libvulkan1 libwayland-client0 libwayland-cursor0 libwayland-egl1 400s libwayland-server0 libwebp7 libwebpmux3 libx11-xcb1 libx264-164 libx265-215 400s libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-randr0 libxcb-render0 400s libxcb-shape0 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcursor1 libxfixes3 400s libxi6 libxrandr2 libxrender1 libxshmfence1 libxss1 libxv1 libxvidcore4 400s libxxf86vm1 libzimg2 libzix-0-0 libzmq5 libzvbi-common libzvbi0t64 400s mesa-libgallium ocl-icd-libopencl1 python3-all python3-av python3-numpy 400s python3.12 python3.12-minimal x11-common 400s 0 upgraded, 168 newly installed, 0 to remove and 0 not upgraded. 400s Need to get 97.3 MB of archives. 400s After this operation, 290 MB of additional disk space will be used. 400s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 400s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 400s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 400s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 401s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 401s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 401s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 401s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 401s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-1.1ubuntu2 [37.4 kB] 401s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-1.1ubuntu2 [150 kB] 401s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-1.1ubuntu2 [191 kB] 401s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libaom3 s390x 3.12.0-1 [1492 kB] 401s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libasound2-data all 1.2.13-1build1 [21.1 kB] 401s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libasound2t64 s390x 1.2.13-1build1 [411 kB] 401s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 401s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 401s Get:17 http://ftpmaster.internal/ubuntu plucky/universe s390x libunibreak6 s390x 6.1-2 [26.1 kB] 401s Get:18 http://ftpmaster.internal/ubuntu plucky/universe s390x libass9 s390x 1:0.17.3-1 [110 kB] 401s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libasyncns0 s390x 0.8-6build4 [11.4 kB] 401s Get:20 http://ftpmaster.internal/ubuntu plucky/universe s390x libva2 s390x 2.22.0-2 [74.8 kB] 401s Get:21 http://ftpmaster.internal/ubuntu plucky/universe s390x libva-drm2 s390x 2.22.0-2 [7030 B] 401s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 401s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 401s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libxfixes3 s390x 1:6.0.0-2build1 [11.3 kB] 401s Get:25 http://ftpmaster.internal/ubuntu plucky/universe s390x libva-x11-2 s390x 2.22.0-2 [12.5 kB] 401s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libvdpau1 s390x 1.5-3 [28.2 kB] 401s Get:27 http://ftpmaster.internal/ubuntu plucky/universe s390x ocl-icd-libopencl1 s390x 2.3.2-1build1 [41.1 kB] 401s Get:28 http://ftpmaster.internal/ubuntu plucky/universe s390x libavutil59 s390x 7:7.1-3ubuntu3 [452 kB] 401s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-0 s390x 0.44.0-3 [201 kB] 401s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 401s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 401s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 401s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo2 s390x 1.18.2-2 [580 kB] 401s Get:34 http://ftpmaster.internal/ubuntu plucky/universe s390x libcodec2-1.2 s390x 1.2.0-3 [9027 kB] 401s Get:35 http://ftpmaster.internal/ubuntu plucky/universe s390x libdav1d7 s390x 1.5.1-1 [312 kB] 401s Get:36 http://ftpmaster.internal/ubuntu plucky/universe s390x libgsm1 s390x 1.0.22-1build1 [32.7 kB] 401s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x liblcms2-2 s390x 2.16-2 [175 kB] 401s Get:38 http://ftpmaster.internal/ubuntu plucky/universe s390x libjxl0.11 s390x 0.11.1-1 [1008 kB] 401s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libmp3lame0 s390x 3.100-6build1 [160 kB] 401s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libopenjp2-7 s390x 2.5.0-2ubuntu3 [208 kB] 401s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libopus0 s390x 1.5.2-2 [2928 kB] 402s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x librav1e0.7 s390x 0.7.1-9 [845 kB] 402s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo-gobject2 s390x 1.18.2-2 [127 kB] 402s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libgdk-pixbuf2.0-common all 2.42.12+dfsg-2 [8004 B] 402s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 402s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 402s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 402s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 402s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 402s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 402s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 402s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libgdk-pixbuf-2.0-0 s390x 2.42.12+dfsg-2 [154 kB] 402s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libthai-data all 0.1.29-2build1 [158 kB] 402s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libdatrie1 s390x 0.2.13-3build1 [20.6 kB] 402s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libthai0 s390x 0.1.29-2build1 [20.7 kB] 402s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libpango-1.0-0 s390x 1.56.1-1 [253 kB] 402s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libpangoft2-1.0-0 s390x 1.56.1-1 [50.3 kB] 402s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libpangocairo-1.0-0 s390x 1.56.1-1 [28.3 kB] 402s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x librsvg2-2 s390x 2.59.90+dfsg-2 [1986 kB] 402s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x libshine3 s390x 3.1.1-2build1 [45.7 kB] 402s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libsnappy1v5 s390x 1.2.1-1 [33.0 kB] 402s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libspeex1 s390x 1.2.1-3 [70.7 kB] 402s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x libsvtav1enc2 s390x 2.3.0+dfsg-1 [2294 kB] 402s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 402s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x libsoxr0 s390x 0.1.3-4build3 [69.5 kB] 402s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x libswresample5 s390x 7:7.1-3ubuntu3 [63.2 kB] 402s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x libtheoradec1 s390x 1.2.0~alpha1+dfsg-5 [68.5 kB] 402s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x libogg0 s390x 1.3.5-3build1 [24.4 kB] 402s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x libtheoraenc1 s390x 1.2.0~alpha1+dfsg-5 [142 kB] 402s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x libtwolame0 s390x 0.4.0-2build3 [56.4 kB] 402s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbis0a s390x 1.3.7-2 [112 kB] 402s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbisenc2 s390x 1.3.7-2 [80.6 kB] 402s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x libvpx9 s390x 1.15.0-1ubuntu1 [1604 kB] 402s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpmux3 s390x 1.5.0-0.1 [25.8 kB] 402s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x libx264-164 s390x 2:0.164.3108+git31e19f9-2build1 [592 kB] 402s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x libx265-215 s390x 4.1-2 [904 kB] 402s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x libxvidcore4 s390x 2:1.3.7-1build1 [214 kB] 402s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x libzvbi-common all 0.2.43-2ubuntu1 [42.7 kB] 402s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x libzvbi0t64 s390x 0.2.43-2ubuntu1 [275 kB] 402s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x libavcodec61 s390x 7:7.1-3ubuntu3 [8121 kB] 403s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x libraw1394-11 s390x 2.1.2-2build3 [28.3 kB] 403s Get:82 http://ftpmaster.internal/ubuntu plucky/main s390x libavc1394-0 s390x 0.5.4-5build3 [15.8 kB] 403s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x libudfread0 s390x 1.1.2-1build1 [18.5 kB] 403s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x libbluray2 s390x 1:1.3.4-1build1 [173 kB] 403s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x libchromaprint1 s390x 1.5.1-7 [34.2 kB] 403s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x libdvdread8t64 s390x 6.1.3-2 [54.6 kB] 403s Get:87 http://ftpmaster.internal/ubuntu plucky/universe s390x libdvdnav4 s390x 6.1.1-3build1 [40.3 kB] 403s Get:88 http://ftpmaster.internal/ubuntu plucky/universe s390x libgme0 s390x 0.6.3-7build1 [150 kB] 403s Get:89 http://ftpmaster.internal/ubuntu plucky/main s390x libmpg123-0t64 s390x 1.32.10-1 [179 kB] 403s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbisfile3 s390x 1.3.7-2 [18.2 kB] 403s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x libopenmpt0t64 s390x 0.7.13-1 [732 kB] 403s Get:92 http://ftpmaster.internal/ubuntu plucky/main s390x librabbitmq4 s390x 0.15.0-1 [37.9 kB] 403s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x libcjson1 s390x 1.7.18-3 [22.9 kB] 403s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x libmbedcrypto16 s390x 3.6.2-3ubuntu1 [261 kB] 403s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x librist4 s390x 0.2.11+dfsg-1 [77.5 kB] 403s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x libsrt1.5-gnutls s390x 1.5.4-1 [345 kB] 403s Get:97 http://ftpmaster.internal/ubuntu plucky/main s390x libssh-4 s390x 0.11.1-1 [203 kB] 403s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x libnorm1t64 s390x 1.5.9+dfsg-3.1build1 [158 kB] 403s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x libpgm-5.3-0t64 s390x 5.3.128~dfsg-2.1build1 [169 kB] 403s Get:100 http://ftpmaster.internal/ubuntu plucky/main s390x libsodium23 s390x 1.0.18-1build3 [138 kB] 403s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x libzmq5 s390x 4.3.5-1build2 [258 kB] 403s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x libavformat61 s390x 7:7.1-3ubuntu3 [1315 kB] 403s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x libbs2b0 s390x 3.1.0+dfsg-8 [10.8 kB] 403s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x libflite1 s390x 2.2-7 [13.6 MB] 404s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x libserd-0-0 s390x 0.32.4-1 [44.1 kB] 404s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x libzix-0-0 s390x 0.6.2-1 [27.1 kB] 404s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x libsord-0-0 s390x 0.16.18-1 [15.8 kB] 404s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x libsratom-0-0 s390x 0.6.18-1 [17.0 kB] 404s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x liblilv-0-0 s390x 0.24.26-1 [41.4 kB] 404s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x libmysofa1 s390x 1.3.2+dfsg-2ubuntu2 [1160 kB] 404s Get:111 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 404s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x libplacebo349 s390x 7.349.0-3 [3077 kB] 404s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x libpostproc58 s390x 7:7.1-3ubuntu3 [69.4 kB] 404s Get:114 http://ftpmaster.internal/ubuntu plucky/main s390x libfftw3-double3 s390x 3.3.10-2fakesync1build1 [511 kB] 404s Get:115 http://ftpmaster.internal/ubuntu plucky/main s390x libsamplerate0 s390x 0.2.2-4build1 [1344 kB] 404s Get:116 http://ftpmaster.internal/ubuntu plucky/universe s390x librubberband2 s390x 3.3.0+dfsg-2build2 [139 kB] 404s Get:117 http://ftpmaster.internal/ubuntu plucky/universe s390x libswscale8 s390x 7:7.1-3ubuntu3 [216 kB] 404s Get:118 http://ftpmaster.internal/ubuntu plucky/universe s390x libvidstab1.1 s390x 1.1.0-2build1 [45.8 kB] 404s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x libzimg2 s390x 3.0.5+ds1-1build1 [86.6 kB] 404s Get:120 http://ftpmaster.internal/ubuntu plucky/universe s390x libavfilter10 s390x 7:7.1-3ubuntu3 [4868 kB] 405s Get:121 http://ftpmaster.internal/ubuntu plucky/main s390x libcaca0 s390x 0.99.beta20-5 [215 kB] 405s Get:122 http://ftpmaster.internal/ubuntu plucky/main s390x libcdio19t64 s390x 2.2.0-1~exp1 [64.4 kB] 405s Get:123 http://ftpmaster.internal/ubuntu plucky/main s390x libcdio-cdda2t64 s390x 10.2+2.0.2-1 [17.6 kB] 405s Get:124 http://ftpmaster.internal/ubuntu plucky/main s390x libcdio-paranoia2t64 s390x 10.2+2.0.2-1 [18.8 kB] 405s Get:125 http://ftpmaster.internal/ubuntu plucky/universe s390x libdc1394-25 s390x 2.2.6-4build1 [101 kB] 405s Get:126 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 405s Get:127 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 405s Get:128 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 405s Get:129 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 405s Get:130 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 405s Get:131 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 405s Get:132 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 405s Get:133 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 405s Get:134 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 405s Get:135 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 405s Get:136 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 405s Get:137 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 405s Get:138 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 405s Get:139 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 405s Get:140 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 405s Get:141 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 405s Get:142 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 405s Get:143 http://ftpmaster.internal/ubuntu plucky/main s390x libiec61883-0 s390x 1.2.0-7 [26.1 kB] 405s Get:144 http://ftpmaster.internal/ubuntu plucky/main s390x libjack-jackd2-0 s390x 1.9.22~dfsg-4 [292 kB] 405s Get:145 http://ftpmaster.internal/ubuntu plucky/universe s390x libopenal-data all 1:1.24.2-1 [162 kB] 405s Get:146 http://ftpmaster.internal/ubuntu plucky/universe s390x libopenal1 s390x 1:1.24.2-1 [708 kB] 405s Get:147 http://ftpmaster.internal/ubuntu plucky/main s390x libflac12t64 s390x 1.4.3+ds-4 [161 kB] 405s Get:148 http://ftpmaster.internal/ubuntu plucky/main s390x libsndfile1 s390x 1.2.2-2 [238 kB] 405s Get:149 http://ftpmaster.internal/ubuntu plucky/main s390x libpulse0 s390x 1:17.0+dfsg1-2ubuntu1 [312 kB] 405s Get:150 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-1 [27.8 kB] 405s Get:151 http://ftpmaster.internal/ubuntu plucky/main s390x libdecor-0-0 s390x 0.2.2-2 [16.2 kB] 405s Get:152 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-cursor0 s390x 1.23.1-1 [11.5 kB] 405s Get:153 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-egl1 s390x 1.23.1-1 [5654 B] 405s Get:154 http://ftpmaster.internal/ubuntu plucky/main s390x libxcursor1 s390x 1:1.2.3-1 [23.4 kB] 405s Get:155 http://ftpmaster.internal/ubuntu plucky/main s390x libxi6 s390x 2:1.8.2-1 [35.4 kB] 405s Get:156 http://ftpmaster.internal/ubuntu plucky/main s390x libxrandr2 s390x 2:1.5.4-1 [20.8 kB] 405s Get:157 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 405s Get:158 http://ftpmaster.internal/ubuntu plucky/main s390x libxss1 s390x 1:1.2.3-1build3 [7396 B] 405s Get:159 http://ftpmaster.internal/ubuntu plucky/main s390x libsdl2-2.0-0 s390x 2.32.0+dfsg-1 [776 kB] 405s Get:160 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 405s Get:161 http://ftpmaster.internal/ubuntu plucky/main s390x libxv1 s390x 2:1.0.11-1.1build1 [11.3 kB] 405s Get:162 http://ftpmaster.internal/ubuntu plucky/universe s390x libavdevice61 s390x 7:7.1-3ubuntu3 [83.6 kB] 405s Get:163 http://ftpmaster.internal/ubuntu plucky/main s390x libblas3 s390x 3.12.1-2 [252 kB] 405s Get:164 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran5 s390x 14.2.0-17ubuntu1 [588 kB] 405s Get:165 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack3 s390x 3.12.1-2 [2971 kB] 405s Get:166 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B] 405s Get:167 http://ftpmaster.internal/ubuntu plucky/main s390x python3-numpy s390x 1:1.26.4+ds-13 [4601 kB] 406s Get:168 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-av s390x 12.3.0-2ubuntu1 [1554 kB] 406s Fetched 97.3 MB in 6s (16.8 MB/s) 406s Selecting previously unselected package libpython3.12-minimal:s390x. 406s (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 ... 55869 files and directories currently installed.) 406s Preparing to unpack .../000-libpython3.12-minimal_3.12.9-1_s390x.deb ... 406s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 406s Selecting previously unselected package python3.12-minimal. 406s Preparing to unpack .../001-python3.12-minimal_3.12.9-1_s390x.deb ... 406s Unpacking python3.12-minimal (3.12.9-1) ... 406s Selecting previously unselected package libnsl2:s390x. 406s Preparing to unpack .../002-libnsl2_1.3.0-3build3_s390x.deb ... 406s Unpacking libnsl2:s390x (1.3.0-3build3) ... 406s Selecting previously unselected package libpython3.12-stdlib:s390x. 406s Preparing to unpack .../003-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 406s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 406s Selecting previously unselected package python3.12. 406s Preparing to unpack .../004-python3.12_3.12.9-1_s390x.deb ... 406s Unpacking python3.12 (3.12.9-1) ... 406s Selecting previously unselected package libfreetype6:s390x. 406s Preparing to unpack .../005-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 406s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 406s Selecting previously unselected package fonts-dejavu-mono. 406s Preparing to unpack .../006-fonts-dejavu-mono_2.37-8_all.deb ... 406s Unpacking fonts-dejavu-mono (2.37-8) ... 406s Selecting previously unselected package fonts-dejavu-core. 406s Preparing to unpack .../007-fonts-dejavu-core_2.37-8_all.deb ... 407s Unpacking fonts-dejavu-core (2.37-8) ... 407s Selecting previously unselected package fontconfig-config. 407s Preparing to unpack .../008-fontconfig-config_2.15.0-1.1ubuntu2_s390x.deb ... 407s Unpacking fontconfig-config (2.15.0-1.1ubuntu2) ... 407s Selecting previously unselected package libfontconfig1:s390x. 407s Preparing to unpack .../009-libfontconfig1_2.15.0-1.1ubuntu2_s390x.deb ... 407s Unpacking libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 407s Selecting previously unselected package fontconfig. 407s Preparing to unpack .../010-fontconfig_2.15.0-1.1ubuntu2_s390x.deb ... 407s Unpacking fontconfig (2.15.0-1.1ubuntu2) ... 407s Selecting previously unselected package libaom3:s390x. 407s Preparing to unpack .../011-libaom3_3.12.0-1_s390x.deb ... 407s Unpacking libaom3:s390x (3.12.0-1) ... 407s Selecting previously unselected package libasound2-data. 407s Preparing to unpack .../012-libasound2-data_1.2.13-1build1_all.deb ... 407s Unpacking libasound2-data (1.2.13-1build1) ... 407s Selecting previously unselected package libasound2t64:s390x. 407s Preparing to unpack .../013-libasound2t64_1.2.13-1build1_s390x.deb ... 407s Unpacking libasound2t64:s390x (1.2.13-1build1) ... 407s Selecting previously unselected package libgraphite2-3:s390x. 407s Preparing to unpack .../014-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 407s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 407s Selecting previously unselected package libharfbuzz0b:s390x. 407s Preparing to unpack .../015-libharfbuzz0b_10.2.0-1_s390x.deb ... 407s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 407s Selecting previously unselected package libunibreak6:s390x. 407s Preparing to unpack .../016-libunibreak6_6.1-2_s390x.deb ... 407s Unpacking libunibreak6:s390x (6.1-2) ... 407s Selecting previously unselected package libass9:s390x. 407s Preparing to unpack .../017-libass9_1%3a0.17.3-1_s390x.deb ... 407s Unpacking libass9:s390x (1:0.17.3-1) ... 407s Selecting previously unselected package libasyncns0:s390x. 407s Preparing to unpack .../018-libasyncns0_0.8-6build4_s390x.deb ... 407s Unpacking libasyncns0:s390x (0.8-6build4) ... 407s Selecting previously unselected package libva2:s390x. 407s Preparing to unpack .../019-libva2_2.22.0-2_s390x.deb ... 407s Unpacking libva2:s390x (2.22.0-2) ... 407s Selecting previously unselected package libva-drm2:s390x. 407s Preparing to unpack .../020-libva-drm2_2.22.0-2_s390x.deb ... 407s Unpacking libva-drm2:s390x (2.22.0-2) ... 407s Selecting previously unselected package libx11-xcb1:s390x. 407s Preparing to unpack .../021-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 407s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 407s Selecting previously unselected package libxcb-dri3-0:s390x. 407s Preparing to unpack .../022-libxcb-dri3-0_1.17.0-2_s390x.deb ... 407s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 407s Selecting previously unselected package libxfixes3:s390x. 407s Preparing to unpack .../023-libxfixes3_1%3a6.0.0-2build1_s390x.deb ... 407s Unpacking libxfixes3:s390x (1:6.0.0-2build1) ... 407s Selecting previously unselected package libva-x11-2:s390x. 407s Preparing to unpack .../024-libva-x11-2_2.22.0-2_s390x.deb ... 407s Unpacking libva-x11-2:s390x (2.22.0-2) ... 407s Selecting previously unselected package libvdpau1:s390x. 407s Preparing to unpack .../025-libvdpau1_1.5-3_s390x.deb ... 407s Unpacking libvdpau1:s390x (1.5-3) ... 407s Selecting previously unselected package ocl-icd-libopencl1:s390x. 407s Preparing to unpack .../026-ocl-icd-libopencl1_2.3.2-1build1_s390x.deb ... 407s Unpacking ocl-icd-libopencl1:s390x (2.3.2-1build1) ... 407s Selecting previously unselected package libavutil59:s390x. 407s Preparing to unpack .../027-libavutil59_7%3a7.1-3ubuntu3_s390x.deb ... 407s Unpacking libavutil59:s390x (7:7.1-3ubuntu3) ... 407s Selecting previously unselected package libpixman-1-0:s390x. 407s Preparing to unpack .../028-libpixman-1-0_0.44.0-3_s390x.deb ... 407s Unpacking libpixman-1-0:s390x (0.44.0-3) ... 407s Selecting previously unselected package libxcb-render0:s390x. 407s Preparing to unpack .../029-libxcb-render0_1.17.0-2_s390x.deb ... 407s Unpacking libxcb-render0:s390x (1.17.0-2) ... 407s Selecting previously unselected package libxcb-shm0:s390x. 407s Preparing to unpack .../030-libxcb-shm0_1.17.0-2_s390x.deb ... 407s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 407s Selecting previously unselected package libxrender1:s390x. 407s Preparing to unpack .../031-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 407s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 407s Selecting previously unselected package libcairo2:s390x. 407s Preparing to unpack .../032-libcairo2_1.18.2-2_s390x.deb ... 407s Unpacking libcairo2:s390x (1.18.2-2) ... 407s Selecting previously unselected package libcodec2-1.2:s390x. 407s Preparing to unpack .../033-libcodec2-1.2_1.2.0-3_s390x.deb ... 407s Unpacking libcodec2-1.2:s390x (1.2.0-3) ... 407s Selecting previously unselected package libdav1d7:s390x. 407s Preparing to unpack .../034-libdav1d7_1.5.1-1_s390x.deb ... 407s Unpacking libdav1d7:s390x (1.5.1-1) ... 407s Selecting previously unselected package libgsm1:s390x. 407s Preparing to unpack .../035-libgsm1_1.0.22-1build1_s390x.deb ... 407s Unpacking libgsm1:s390x (1.0.22-1build1) ... 407s Selecting previously unselected package liblcms2-2:s390x. 407s Preparing to unpack .../036-liblcms2-2_2.16-2_s390x.deb ... 407s Unpacking liblcms2-2:s390x (2.16-2) ... 407s Selecting previously unselected package libjxl0.11:s390x. 407s Preparing to unpack .../037-libjxl0.11_0.11.1-1_s390x.deb ... 407s Unpacking libjxl0.11:s390x (0.11.1-1) ... 407s Selecting previously unselected package libmp3lame0:s390x. 407s Preparing to unpack .../038-libmp3lame0_3.100-6build1_s390x.deb ... 407s Unpacking libmp3lame0:s390x (3.100-6build1) ... 407s Selecting previously unselected package libopenjp2-7:s390x. 407s Preparing to unpack .../039-libopenjp2-7_2.5.0-2ubuntu3_s390x.deb ... 407s Unpacking libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 407s Selecting previously unselected package libopus0:s390x. 407s Preparing to unpack .../040-libopus0_1.5.2-2_s390x.deb ... 407s Unpacking libopus0:s390x (1.5.2-2) ... 407s Selecting previously unselected package librav1e0.7:s390x. 407s Preparing to unpack .../041-librav1e0.7_0.7.1-9_s390x.deb ... 407s Unpacking librav1e0.7:s390x (0.7.1-9) ... 407s Selecting previously unselected package libcairo-gobject2:s390x. 407s Preparing to unpack .../042-libcairo-gobject2_1.18.2-2_s390x.deb ... 407s Unpacking libcairo-gobject2:s390x (1.18.2-2) ... 407s Selecting previously unselected package libgdk-pixbuf2.0-common. 407s Preparing to unpack .../043-libgdk-pixbuf2.0-common_2.42.12+dfsg-2_all.deb ... 407s Unpacking libgdk-pixbuf2.0-common (2.42.12+dfsg-2) ... 407s Selecting previously unselected package libjpeg-turbo8:s390x. 407s Preparing to unpack .../044-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 407s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 407s Selecting previously unselected package libjpeg8:s390x. 407s Preparing to unpack .../045-libjpeg8_8c-2ubuntu11_s390x.deb ... 407s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 407s Selecting previously unselected package libdeflate0:s390x. 407s Preparing to unpack .../046-libdeflate0_1.23-1_s390x.deb ... 407s Unpacking libdeflate0:s390x (1.23-1) ... 407s Selecting previously unselected package libjbig0:s390x. 407s Preparing to unpack .../047-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 407s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 407s Selecting previously unselected package libsharpyuv0:s390x. 407s Preparing to unpack .../048-libsharpyuv0_1.5.0-0.1_s390x.deb ... 407s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 407s Selecting previously unselected package libwebp7:s390x. 407s Preparing to unpack .../049-libwebp7_1.5.0-0.1_s390x.deb ... 407s Unpacking libwebp7:s390x (1.5.0-0.1) ... 407s Selecting previously unselected package libtiff6:s390x. 407s Preparing to unpack .../050-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 407s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 407s Selecting previously unselected package libgdk-pixbuf-2.0-0:s390x. 407s Preparing to unpack .../051-libgdk-pixbuf-2.0-0_2.42.12+dfsg-2_s390x.deb ... 407s Unpacking libgdk-pixbuf-2.0-0:s390x (2.42.12+dfsg-2) ... 407s Selecting previously unselected package libthai-data. 407s Preparing to unpack .../052-libthai-data_0.1.29-2build1_all.deb ... 407s Unpacking libthai-data (0.1.29-2build1) ... 407s Selecting previously unselected package libdatrie1:s390x. 407s Preparing to unpack .../053-libdatrie1_0.2.13-3build1_s390x.deb ... 407s Unpacking libdatrie1:s390x (0.2.13-3build1) ... 407s Selecting previously unselected package libthai0:s390x. 407s Preparing to unpack .../054-libthai0_0.1.29-2build1_s390x.deb ... 407s Unpacking libthai0:s390x (0.1.29-2build1) ... 407s Selecting previously unselected package libpango-1.0-0:s390x. 407s Preparing to unpack .../055-libpango-1.0-0_1.56.1-1_s390x.deb ... 407s Unpacking libpango-1.0-0:s390x (1.56.1-1) ... 407s Selecting previously unselected package libpangoft2-1.0-0:s390x. 407s Preparing to unpack .../056-libpangoft2-1.0-0_1.56.1-1_s390x.deb ... 407s Unpacking libpangoft2-1.0-0:s390x (1.56.1-1) ... 407s Selecting previously unselected package libpangocairo-1.0-0:s390x. 407s Preparing to unpack .../057-libpangocairo-1.0-0_1.56.1-1_s390x.deb ... 407s Unpacking libpangocairo-1.0-0:s390x (1.56.1-1) ... 407s Selecting previously unselected package librsvg2-2:s390x. 407s Preparing to unpack .../058-librsvg2-2_2.59.90+dfsg-2_s390x.deb ... 407s Unpacking librsvg2-2:s390x (2.59.90+dfsg-2) ... 407s Selecting previously unselected package libshine3:s390x. 407s Preparing to unpack .../059-libshine3_3.1.1-2build1_s390x.deb ... 407s Unpacking libshine3:s390x (3.1.1-2build1) ... 407s Selecting previously unselected package libsnappy1v5:s390x. 407s Preparing to unpack .../060-libsnappy1v5_1.2.1-1_s390x.deb ... 407s Unpacking libsnappy1v5:s390x (1.2.1-1) ... 407s Selecting previously unselected package libspeex1:s390x. 407s Preparing to unpack .../061-libspeex1_1.2.1-3_s390x.deb ... 407s Unpacking libspeex1:s390x (1.2.1-3) ... 407s Selecting previously unselected package libsvtav1enc2:s390x. 407s Preparing to unpack .../062-libsvtav1enc2_2.3.0+dfsg-1_s390x.deb ... 407s Unpacking libsvtav1enc2:s390x (2.3.0+dfsg-1) ... 407s Selecting previously unselected package libgomp1:s390x. 408s Preparing to unpack .../063-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 408s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 408s Selecting previously unselected package libsoxr0:s390x. 408s Preparing to unpack .../064-libsoxr0_0.1.3-4build3_s390x.deb ... 408s Unpacking libsoxr0:s390x (0.1.3-4build3) ... 408s Selecting previously unselected package libswresample5:s390x. 408s Preparing to unpack .../065-libswresample5_7%3a7.1-3ubuntu3_s390x.deb ... 408s Unpacking libswresample5:s390x (7:7.1-3ubuntu3) ... 408s Selecting previously unselected package libtheoradec1:s390x. 408s Preparing to unpack .../066-libtheoradec1_1.2.0~alpha1+dfsg-5_s390x.deb ... 408s Unpacking libtheoradec1:s390x (1.2.0~alpha1+dfsg-5) ... 408s Selecting previously unselected package libogg0:s390x. 408s Preparing to unpack .../067-libogg0_1.3.5-3build1_s390x.deb ... 408s Unpacking libogg0:s390x (1.3.5-3build1) ... 408s Selecting previously unselected package libtheoraenc1:s390x. 408s Preparing to unpack .../068-libtheoraenc1_1.2.0~alpha1+dfsg-5_s390x.deb ... 408s Unpacking libtheoraenc1:s390x (1.2.0~alpha1+dfsg-5) ... 408s Selecting previously unselected package libtwolame0:s390x. 408s Preparing to unpack .../069-libtwolame0_0.4.0-2build3_s390x.deb ... 408s Unpacking libtwolame0:s390x (0.4.0-2build3) ... 408s Selecting previously unselected package libvorbis0a:s390x. 408s Preparing to unpack .../070-libvorbis0a_1.3.7-2_s390x.deb ... 408s Unpacking libvorbis0a:s390x (1.3.7-2) ... 408s Selecting previously unselected package libvorbisenc2:s390x. 408s Preparing to unpack .../071-libvorbisenc2_1.3.7-2_s390x.deb ... 408s Unpacking libvorbisenc2:s390x (1.3.7-2) ... 408s Selecting previously unselected package libvpx9:s390x. 408s Preparing to unpack .../072-libvpx9_1.15.0-1ubuntu1_s390x.deb ... 408s Unpacking libvpx9:s390x (1.15.0-1ubuntu1) ... 408s Selecting previously unselected package libwebpmux3:s390x. 408s Preparing to unpack .../073-libwebpmux3_1.5.0-0.1_s390x.deb ... 408s Unpacking libwebpmux3:s390x (1.5.0-0.1) ... 408s Selecting previously unselected package libx264-164:s390x. 408s Preparing to unpack .../074-libx264-164_2%3a0.164.3108+git31e19f9-2build1_s390x.deb ... 408s Unpacking libx264-164:s390x (2:0.164.3108+git31e19f9-2build1) ... 408s Selecting previously unselected package libx265-215:s390x. 408s Preparing to unpack .../075-libx265-215_4.1-2_s390x.deb ... 408s Unpacking libx265-215:s390x (4.1-2) ... 408s Selecting previously unselected package libxvidcore4:s390x. 408s Preparing to unpack .../076-libxvidcore4_2%3a1.3.7-1build1_s390x.deb ... 408s Unpacking libxvidcore4:s390x (2:1.3.7-1build1) ... 408s Selecting previously unselected package libzvbi-common. 408s Preparing to unpack .../077-libzvbi-common_0.2.43-2ubuntu1_all.deb ... 408s Unpacking libzvbi-common (0.2.43-2ubuntu1) ... 408s Selecting previously unselected package libzvbi0t64:s390x. 408s Preparing to unpack .../078-libzvbi0t64_0.2.43-2ubuntu1_s390x.deb ... 408s Unpacking libzvbi0t64:s390x (0.2.43-2ubuntu1) ... 408s Selecting previously unselected package libavcodec61:s390x. 408s Preparing to unpack .../079-libavcodec61_7%3a7.1-3ubuntu3_s390x.deb ... 408s Unpacking libavcodec61:s390x (7:7.1-3ubuntu3) ... 408s Selecting previously unselected package libraw1394-11:s390x. 408s Preparing to unpack .../080-libraw1394-11_2.1.2-2build3_s390x.deb ... 408s Unpacking libraw1394-11:s390x (2.1.2-2build3) ... 408s Selecting previously unselected package libavc1394-0:s390x. 408s Preparing to unpack .../081-libavc1394-0_0.5.4-5build3_s390x.deb ... 408s Unpacking libavc1394-0:s390x (0.5.4-5build3) ... 408s Selecting previously unselected package libudfread0:s390x. 408s Preparing to unpack .../082-libudfread0_1.1.2-1build1_s390x.deb ... 408s Unpacking libudfread0:s390x (1.1.2-1build1) ... 408s Selecting previously unselected package libbluray2:s390x. 408s Preparing to unpack .../083-libbluray2_1%3a1.3.4-1build1_s390x.deb ... 408s Unpacking libbluray2:s390x (1:1.3.4-1build1) ... 408s Selecting previously unselected package libchromaprint1:s390x. 408s Preparing to unpack .../084-libchromaprint1_1.5.1-7_s390x.deb ... 408s Unpacking libchromaprint1:s390x (1.5.1-7) ... 408s Selecting previously unselected package libdvdread8t64:s390x. 408s Preparing to unpack .../085-libdvdread8t64_6.1.3-2_s390x.deb ... 408s Unpacking libdvdread8t64:s390x (6.1.3-2) ... 408s Selecting previously unselected package libdvdnav4:s390x. 408s Preparing to unpack .../086-libdvdnav4_6.1.1-3build1_s390x.deb ... 408s Unpacking libdvdnav4:s390x (6.1.1-3build1) ... 408s Selecting previously unselected package libgme0:s390x. 408s Preparing to unpack .../087-libgme0_0.6.3-7build1_s390x.deb ... 408s Unpacking libgme0:s390x (0.6.3-7build1) ... 408s Selecting previously unselected package libmpg123-0t64:s390x. 408s Preparing to unpack .../088-libmpg123-0t64_1.32.10-1_s390x.deb ... 408s Unpacking libmpg123-0t64:s390x (1.32.10-1) ... 408s Selecting previously unselected package libvorbisfile3:s390x. 408s Preparing to unpack .../089-libvorbisfile3_1.3.7-2_s390x.deb ... 408s Unpacking libvorbisfile3:s390x (1.3.7-2) ... 408s Selecting previously unselected package libopenmpt0t64:s390x. 408s Preparing to unpack .../090-libopenmpt0t64_0.7.13-1_s390x.deb ... 408s Unpacking libopenmpt0t64:s390x (0.7.13-1) ... 408s Selecting previously unselected package librabbitmq4:s390x. 408s Preparing to unpack .../091-librabbitmq4_0.15.0-1_s390x.deb ... 408s Unpacking librabbitmq4:s390x (0.15.0-1) ... 408s Selecting previously unselected package libcjson1:s390x. 408s Preparing to unpack .../092-libcjson1_1.7.18-3_s390x.deb ... 408s Unpacking libcjson1:s390x (1.7.18-3) ... 408s Selecting previously unselected package libmbedcrypto16:s390x. 408s Preparing to unpack .../093-libmbedcrypto16_3.6.2-3ubuntu1_s390x.deb ... 408s Unpacking libmbedcrypto16:s390x (3.6.2-3ubuntu1) ... 408s Selecting previously unselected package librist4:s390x. 408s Preparing to unpack .../094-librist4_0.2.11+dfsg-1_s390x.deb ... 408s Unpacking librist4:s390x (0.2.11+dfsg-1) ... 408s Selecting previously unselected package libsrt1.5-gnutls:s390x. 408s Preparing to unpack .../095-libsrt1.5-gnutls_1.5.4-1_s390x.deb ... 408s Unpacking libsrt1.5-gnutls:s390x (1.5.4-1) ... 408s Selecting previously unselected package libssh-4:s390x. 408s Preparing to unpack .../096-libssh-4_0.11.1-1_s390x.deb ... 408s Unpacking libssh-4:s390x (0.11.1-1) ... 408s Selecting previously unselected package libnorm1t64:s390x. 408s Preparing to unpack .../097-libnorm1t64_1.5.9+dfsg-3.1build1_s390x.deb ... 408s Unpacking libnorm1t64:s390x (1.5.9+dfsg-3.1build1) ... 408s Selecting previously unselected package libpgm-5.3-0t64:s390x. 408s Preparing to unpack .../098-libpgm-5.3-0t64_5.3.128~dfsg-2.1build1_s390x.deb ... 408s Unpacking libpgm-5.3-0t64:s390x (5.3.128~dfsg-2.1build1) ... 408s Selecting previously unselected package libsodium23:s390x. 408s Preparing to unpack .../099-libsodium23_1.0.18-1build3_s390x.deb ... 408s Unpacking libsodium23:s390x (1.0.18-1build3) ... 408s Selecting previously unselected package libzmq5:s390x. 408s Preparing to unpack .../100-libzmq5_4.3.5-1build2_s390x.deb ... 408s Unpacking libzmq5:s390x (4.3.5-1build2) ... 408s Selecting previously unselected package libavformat61:s390x. 408s Preparing to unpack .../101-libavformat61_7%3a7.1-3ubuntu3_s390x.deb ... 408s Unpacking libavformat61:s390x (7:7.1-3ubuntu3) ... 408s Selecting previously unselected package libbs2b0:s390x. 408s Preparing to unpack .../102-libbs2b0_3.1.0+dfsg-8_s390x.deb ... 408s Unpacking libbs2b0:s390x (3.1.0+dfsg-8) ... 408s Selecting previously unselected package libflite1:s390x. 408s Preparing to unpack .../103-libflite1_2.2-7_s390x.deb ... 408s Unpacking libflite1:s390x (2.2-7) ... 408s Selecting previously unselected package libserd-0-0:s390x. 408s Preparing to unpack .../104-libserd-0-0_0.32.4-1_s390x.deb ... 408s Unpacking libserd-0-0:s390x (0.32.4-1) ... 408s Selecting previously unselected package libzix-0-0:s390x. 408s Preparing to unpack .../105-libzix-0-0_0.6.2-1_s390x.deb ... 408s Unpacking libzix-0-0:s390x (0.6.2-1) ... 408s Selecting previously unselected package libsord-0-0:s390x. 408s Preparing to unpack .../106-libsord-0-0_0.16.18-1_s390x.deb ... 408s Unpacking libsord-0-0:s390x (0.16.18-1) ... 408s Selecting previously unselected package libsratom-0-0:s390x. 408s Preparing to unpack .../107-libsratom-0-0_0.6.18-1_s390x.deb ... 408s Unpacking libsratom-0-0:s390x (0.6.18-1) ... 408s Selecting previously unselected package liblilv-0-0:s390x. 408s Preparing to unpack .../108-liblilv-0-0_0.24.26-1_s390x.deb ... 408s Unpacking liblilv-0-0:s390x (0.24.26-1) ... 408s Selecting previously unselected package libmysofa1:s390x. 408s Preparing to unpack .../109-libmysofa1_1.3.2+dfsg-2ubuntu2_s390x.deb ... 408s Unpacking libmysofa1:s390x (1.3.2+dfsg-2ubuntu2) ... 408s Selecting previously unselected package libvulkan1:s390x. 408s Preparing to unpack .../110-libvulkan1_1.4.304.0-1_s390x.deb ... 408s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 408s Selecting previously unselected package libplacebo349:s390x. 408s Preparing to unpack .../111-libplacebo349_7.349.0-3_s390x.deb ... 408s Unpacking libplacebo349:s390x (7.349.0-3) ... 408s Selecting previously unselected package libpostproc58:s390x. 408s Preparing to unpack .../112-libpostproc58_7%3a7.1-3ubuntu3_s390x.deb ... 408s Unpacking libpostproc58:s390x (7:7.1-3ubuntu3) ... 408s Selecting previously unselected package libfftw3-double3:s390x. 408s Preparing to unpack .../113-libfftw3-double3_3.3.10-2fakesync1build1_s390x.deb ... 408s Unpacking libfftw3-double3:s390x (3.3.10-2fakesync1build1) ... 408s Selecting previously unselected package libsamplerate0:s390x. 408s Preparing to unpack .../114-libsamplerate0_0.2.2-4build1_s390x.deb ... 408s Unpacking libsamplerate0:s390x (0.2.2-4build1) ... 408s Selecting previously unselected package librubberband2:s390x. 408s Preparing to unpack .../115-librubberband2_3.3.0+dfsg-2build2_s390x.deb ... 408s Unpacking librubberband2:s390x (3.3.0+dfsg-2build2) ... 408s Selecting previously unselected package libswscale8:s390x. 408s Preparing to unpack .../116-libswscale8_7%3a7.1-3ubuntu3_s390x.deb ... 408s Unpacking libswscale8:s390x (7:7.1-3ubuntu3) ... 408s Selecting previously unselected package libvidstab1.1:s390x. 408s Preparing to unpack .../117-libvidstab1.1_1.1.0-2build1_s390x.deb ... 408s Unpacking libvidstab1.1:s390x (1.1.0-2build1) ... 408s Selecting previously unselected package libzimg2:s390x. 408s Preparing to unpack .../118-libzimg2_3.0.5+ds1-1build1_s390x.deb ... 408s Unpacking libzimg2:s390x (3.0.5+ds1-1build1) ... 408s Selecting previously unselected package libavfilter10:s390x. 409s Preparing to unpack .../119-libavfilter10_7%3a7.1-3ubuntu3_s390x.deb ... 409s Unpacking libavfilter10:s390x (7:7.1-3ubuntu3) ... 409s Selecting previously unselected package libcaca0:s390x. 409s Preparing to unpack .../120-libcaca0_0.99.beta20-5_s390x.deb ... 409s Unpacking libcaca0:s390x (0.99.beta20-5) ... 409s Selecting previously unselected package libcdio19t64:s390x. 409s Preparing to unpack .../121-libcdio19t64_2.2.0-1~exp1_s390x.deb ... 409s Unpacking libcdio19t64:s390x (2.2.0-1~exp1) ... 409s Selecting previously unselected package libcdio-cdda2t64:s390x. 409s Preparing to unpack .../122-libcdio-cdda2t64_10.2+2.0.2-1_s390x.deb ... 409s Unpacking libcdio-cdda2t64:s390x (10.2+2.0.2-1) ... 409s Selecting previously unselected package libcdio-paranoia2t64:s390x. 409s Preparing to unpack .../123-libcdio-paranoia2t64_10.2+2.0.2-1_s390x.deb ... 409s Unpacking libcdio-paranoia2t64:s390x (10.2+2.0.2-1) ... 409s Selecting previously unselected package libdc1394-25:s390x. 409s Preparing to unpack .../124-libdc1394-25_2.2.6-4build1_s390x.deb ... 409s Unpacking libdc1394-25:s390x (2.2.6-4build1) ... 409s Selecting previously unselected package libglvnd0:s390x. 409s Preparing to unpack .../125-libglvnd0_1.7.0-1build1_s390x.deb ... 409s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 409s Selecting previously unselected package libglapi-mesa:s390x. 409s Preparing to unpack .../126-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 409s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 409s Selecting previously unselected package libxcb-glx0:s390x. 409s Preparing to unpack .../127-libxcb-glx0_1.17.0-2_s390x.deb ... 409s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 409s Selecting previously unselected package libxcb-present0:s390x. 409s Preparing to unpack .../128-libxcb-present0_1.17.0-2_s390x.deb ... 409s Unpacking libxcb-present0:s390x (1.17.0-2) ... 409s Selecting previously unselected package libxcb-xfixes0:s390x. 409s Preparing to unpack .../129-libxcb-xfixes0_1.17.0-2_s390x.deb ... 409s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 409s Selecting previously unselected package libxxf86vm1:s390x. 409s Preparing to unpack .../130-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 409s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 409s Selecting previously unselected package libdrm-radeon1:s390x. 409s Preparing to unpack .../131-libdrm-radeon1_2.4.123-1_s390x.deb ... 409s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 409s Selecting previously unselected package libxcb-randr0:s390x. 409s Preparing to unpack .../132-libxcb-randr0_1.17.0-2_s390x.deb ... 409s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 409s Selecting previously unselected package libxcb-sync1:s390x. 409s Preparing to unpack .../133-libxcb-sync1_1.17.0-2_s390x.deb ... 409s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 409s Selecting previously unselected package libxshmfence1:s390x. 409s Preparing to unpack .../134-libxshmfence1_1.3-1build5_s390x.deb ... 409s Unpacking libxshmfence1:s390x (1.3-1build5) ... 409s Selecting previously unselected package mesa-libgallium:s390x. 409s Preparing to unpack .../135-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 409s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 409s Selecting previously unselected package libwayland-server0:s390x. 409s Preparing to unpack .../136-libwayland-server0_1.23.1-1_s390x.deb ... 409s Unpacking libwayland-server0:s390x (1.23.1-1) ... 409s Selecting previously unselected package libgbm1:s390x. 409s Preparing to unpack .../137-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 409s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 409s Selecting previously unselected package libgl1-mesa-dri:s390x. 409s Preparing to unpack .../138-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 409s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 409s Selecting previously unselected package libglx-mesa0:s390x. 409s Preparing to unpack .../139-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 409s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 409s Selecting previously unselected package libglx0:s390x. 409s Preparing to unpack .../140-libglx0_1.7.0-1build1_s390x.deb ... 409s Unpacking libglx0:s390x (1.7.0-1build1) ... 409s Selecting previously unselected package libgl1:s390x. 409s Preparing to unpack .../141-libgl1_1.7.0-1build1_s390x.deb ... 409s Unpacking libgl1:s390x (1.7.0-1build1) ... 409s Selecting previously unselected package libiec61883-0:s390x. 409s Preparing to unpack .../142-libiec61883-0_1.2.0-7_s390x.deb ... 409s Unpacking libiec61883-0:s390x (1.2.0-7) ... 409s Selecting previously unselected package libjack-jackd2-0:s390x. 409s Preparing to unpack .../143-libjack-jackd2-0_1.9.22~dfsg-4_s390x.deb ... 409s Unpacking libjack-jackd2-0:s390x (1.9.22~dfsg-4) ... 409s Selecting previously unselected package libopenal-data. 409s Preparing to unpack .../144-libopenal-data_1%3a1.24.2-1_all.deb ... 409s Unpacking libopenal-data (1:1.24.2-1) ... 409s Selecting previously unselected package libopenal1:s390x. 409s Preparing to unpack .../145-libopenal1_1%3a1.24.2-1_s390x.deb ... 409s Unpacking libopenal1:s390x (1:1.24.2-1) ... 409s Selecting previously unselected package libflac12t64:s390x. 409s Preparing to unpack .../146-libflac12t64_1.4.3+ds-4_s390x.deb ... 409s Unpacking libflac12t64:s390x (1.4.3+ds-4) ... 409s Selecting previously unselected package libsndfile1:s390x. 409s Preparing to unpack .../147-libsndfile1_1.2.2-2_s390x.deb ... 409s Unpacking libsndfile1:s390x (1.2.2-2) ... 409s Selecting previously unselected package libpulse0:s390x. 409s Preparing to unpack .../148-libpulse0_1%3a17.0+dfsg1-2ubuntu1_s390x.deb ... 409s Unpacking libpulse0:s390x (1:17.0+dfsg1-2ubuntu1) ... 409s Selecting previously unselected package libwayland-client0:s390x. 409s Preparing to unpack .../149-libwayland-client0_1.23.1-1_s390x.deb ... 409s Unpacking libwayland-client0:s390x (1.23.1-1) ... 409s Selecting previously unselected package libdecor-0-0:s390x. 409s Preparing to unpack .../150-libdecor-0-0_0.2.2-2_s390x.deb ... 409s Unpacking libdecor-0-0:s390x (0.2.2-2) ... 409s Selecting previously unselected package libwayland-cursor0:s390x. 409s Preparing to unpack .../151-libwayland-cursor0_1.23.1-1_s390x.deb ... 409s Unpacking libwayland-cursor0:s390x (1.23.1-1) ... 409s Selecting previously unselected package libwayland-egl1:s390x. 409s Preparing to unpack .../152-libwayland-egl1_1.23.1-1_s390x.deb ... 409s Unpacking libwayland-egl1:s390x (1.23.1-1) ... 409s Selecting previously unselected package libxcursor1:s390x. 409s Preparing to unpack .../153-libxcursor1_1%3a1.2.3-1_s390x.deb ... 409s Unpacking libxcursor1:s390x (1:1.2.3-1) ... 409s Selecting previously unselected package libxi6:s390x. 409s Preparing to unpack .../154-libxi6_2%3a1.8.2-1_s390x.deb ... 409s Unpacking libxi6:s390x (2:1.8.2-1) ... 409s Selecting previously unselected package libxrandr2:s390x. 409s Preparing to unpack .../155-libxrandr2_2%3a1.5.4-1_s390x.deb ... 409s Unpacking libxrandr2:s390x (2:1.5.4-1) ... 409s Selecting previously unselected package x11-common. 409s Preparing to unpack .../156-x11-common_1%3a7.7+23ubuntu3_all.deb ... 409s Unpacking x11-common (1:7.7+23ubuntu3) ... 409s Selecting previously unselected package libxss1:s390x. 409s Preparing to unpack .../157-libxss1_1%3a1.2.3-1build3_s390x.deb ... 409s Unpacking libxss1:s390x (1:1.2.3-1build3) ... 409s Selecting previously unselected package libsdl2-2.0-0:s390x. 409s Preparing to unpack .../158-libsdl2-2.0-0_2.32.0+dfsg-1_s390x.deb ... 409s Unpacking libsdl2-2.0-0:s390x (2.32.0+dfsg-1) ... 409s Selecting previously unselected package libxcb-shape0:s390x. 409s Preparing to unpack .../159-libxcb-shape0_1.17.0-2_s390x.deb ... 409s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 409s Selecting previously unselected package libxv1:s390x. 409s Preparing to unpack .../160-libxv1_2%3a1.0.11-1.1build1_s390x.deb ... 409s Unpacking libxv1:s390x (2:1.0.11-1.1build1) ... 409s Selecting previously unselected package libavdevice61:s390x. 409s Preparing to unpack .../161-libavdevice61_7%3a7.1-3ubuntu3_s390x.deb ... 409s Unpacking libavdevice61:s390x (7:7.1-3ubuntu3) ... 409s Selecting previously unselected package libblas3:s390x. 409s Preparing to unpack .../162-libblas3_3.12.1-2_s390x.deb ... 409s Unpacking libblas3:s390x (3.12.1-2) ... 409s Selecting previously unselected package libgfortran5:s390x. 409s Preparing to unpack .../163-libgfortran5_14.2.0-17ubuntu1_s390x.deb ... 409s Unpacking libgfortran5:s390x (14.2.0-17ubuntu1) ... 409s Selecting previously unselected package liblapack3:s390x. 409s Preparing to unpack .../164-liblapack3_3.12.1-2_s390x.deb ... 409s Unpacking liblapack3:s390x (3.12.1-2) ... 409s Selecting previously unselected package python3-all. 409s Preparing to unpack .../165-python3-all_3.13.1-1~exp2_s390x.deb ... 409s Unpacking python3-all (3.13.1-1~exp2) ... 409s Selecting previously unselected package python3-numpy. 409s Preparing to unpack .../166-python3-numpy_1%3a1.26.4+ds-13_s390x.deb ... 409s Unpacking python3-numpy (1:1.26.4+ds-13) ... 410s Selecting previously unselected package python3-av. 410s Preparing to unpack .../167-python3-av_12.3.0-2ubuntu1_s390x.deb ... 410s Unpacking python3-av (12.3.0-2ubuntu1) ... 410s Setting up libgme0:s390x (0.6.3-7build1) ... 410s Setting up libchromaprint1:s390x (1.5.1-7) ... 410s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 410s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 410s Setting up liblcms2-2:s390x (2.16-2) ... 410s Setting up libpixman-1-0:s390x (0.44.0-3) ... 410s Setting up libdvdread8t64:s390x (6.1.3-2) ... 410s Setting up libudfread0:s390x (1.1.2-1build1) ... 410s Setting up libnorm1t64:s390x (1.5.9+dfsg-3.1build1) ... 410s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 410s Setting up libwayland-server0:s390x (1.23.1-1) ... 410s Setting up libaom3:s390x (3.12.0-1) ... 410s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 410s Setting up librabbitmq4:s390x (0.15.0-1) ... 410s Setting up libraw1394-11:s390x (2.1.2-2build3) ... 410s Setting up libsodium23:s390x (1.0.18-1build3) ... 410s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 410s Setting up libogg0:s390x (1.3.5-3build1) ... 410s Setting up libspeex1:s390x (1.2.1-3) ... 410s Setting up libshine3:s390x (3.1.1-2build1) ... 410s Setting up libcaca0:s390x (0.99.beta20-5) ... 410s Setting up libxi6:s390x (2:1.8.2-1) ... 410s Setting up libx264-164:s390x (2:0.164.3108+git31e19f9-2build1) ... 410s Setting up libtwolame0:s390x (0.4.0-2build3) ... 410s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 410s Setting up libdatrie1:s390x (0.2.13-3build1) ... 410s Setting up libgsm1:s390x (1.0.22-1build1) ... 410s Setting up libxcb-render0:s390x (1.17.0-2) ... 410s Setting up libzix-0-0:s390x (0.6.2-1) ... 410s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 410s Setting up libglvnd0:s390x (1.7.0-1build1) ... 410s Setting up libcodec2-1.2:s390x (1.2.0-3) ... 410s Setting up libxcb-glx0:s390x (1.17.0-2) ... 410s Setting up libgdk-pixbuf2.0-common (2.42.12+dfsg-2) ... 410s Setting up libmysofa1:s390x (1.3.2+dfsg-2ubuntu2) ... 410s Setting up libxcb-shape0:s390x (1.17.0-2) ... 410s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 410s Setting up x11-common (1:7.7+23ubuntu3) ... 410s Setting up libcdio19t64:s390x (2.2.0-1~exp1) ... 410s Setting up libdeflate0:s390x (1.23-1) ... 410s Setting up libxcb-shm0:s390x (1.17.0-2) ... 410s Setting up libmpg123-0t64:s390x (1.32.10-1) ... 410s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 410s Setting up libcjson1:s390x (1.7.18-3) ... 410s Setting up libxvidcore4:s390x (2:1.3.7-1build1) ... 410s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 410s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 410s Setting up libsnappy1v5:s390x (1.2.1-1) ... 410s Setting up libcdio-cdda2t64:s390x (10.2+2.0.2-1) ... 410s Setting up libxcb-present0:s390x (1.17.0-2) ... 410s Setting up libasound2-data (1.2.13-1build1) ... 410s Setting up libpgm-5.3-0t64:s390x (5.3.128~dfsg-2.1build1) ... 410s Setting up libtheoraenc1:s390x (1.2.0~alpha1+dfsg-5) ... 410s Setting up libblas3:s390x (3.12.1-2) ... 410s 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 410s Setting up libasound2t64:s390x (1.2.13-1build1) ... 410s Setting up libva2:s390x (2.22.0-2) ... 410s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 410s Setting up libsvtav1enc2:s390x (2.3.0+dfsg-1) ... 410s Setting up libxfixes3:s390x (1:6.0.0-2build1) ... 410s Setting up libxcb-sync1:s390x (1.17.0-2) ... 410s Setting up libopus0:s390x (1.5.2-2) ... 410s Setting up libcdio-paranoia2t64:s390x (10.2+2.0.2-1) ... 410s Setting up libdc1394-25:s390x (2.2.6-4build1) ... 410s Setting up libxv1:s390x (2:1.0.11-1.1build1) ... 410s Setting up fonts-dejavu-mono (2.37-8) ... 410s Setting up libvorbis0a:s390x (1.3.7-2) ... 410s Setting up libxrandr2:s390x (2:1.5.4-1) ... 410s Setting up fonts-dejavu-core (2.37-8) ... 410s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 410s Setting up libfftw3-double3:s390x (3.3.10-2fakesync1build1) ... 410s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 410s Setting up libssh-4:s390x (0.11.1-1) ... 410s Setting up libgfortran5:s390x (14.2.0-17ubuntu1) ... 410s Setting up libvulkan1:s390x (1.4.304.0-1) ... 410s Setting up libwebp7:s390x (1.5.0-0.1) ... 410s Setting up libvidstab1.1:s390x (1.1.0-2build1) ... 410s Setting up libvpx9:s390x (1.15.0-1ubuntu1) ... 410s Setting up libsrt1.5-gnutls:s390x (1.5.4-1) ... 410s Setting up libflite1:s390x (2.2-7) ... 410s Setting up libdav1d7:s390x (1.5.1-1) ... 410s Setting up libva-drm2:s390x (2.22.0-2) ... 410s Setting up ocl-icd-libopencl1:s390x (2.3.2-1build1) ... 410s Setting up libasyncns0:s390x (0.8-6build4) ... 410s Setting up libxshmfence1:s390x (1.3-1build5) ... 410s Setting up libvdpau1:s390x (1.5-3) ... 410s Setting up libbs2b0:s390x (3.1.0+dfsg-8) ... 410s Setting up libxcb-randr0:s390x (1.17.0-2) ... 410s Setting up librav1e0.7:s390x (0.7.1-9) ... 410s Setting up libnsl2:s390x (1.3.0-3build3) ... 410s Setting up libzimg2:s390x (3.0.5+ds1-1build1) ... 410s Setting up libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 410s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 410s Setting up libopenal-data (1:1.24.2-1) ... 410s Setting up libthai-data (0.1.29-2build1) ... 410s Setting up libunibreak6:s390x (6.1-2) ... 410s Setting up libflac12t64:s390x (1.4.3+ds-4) ... 410s Setting up libwayland-egl1:s390x (1.23.1-1) ... 410s Setting up libxss1:s390x (1:1.2.3-1build3) ... 410s Setting up libmbedcrypto16:s390x (3.6.2-3ubuntu1) ... 410s Setting up libx265-215:s390x (4.1-2) ... 410s Setting up libsamplerate0:s390x (0.2.2-4build1) ... 410s Setting up libva-x11-2:s390x (2.22.0-2) ... 410s Setting up libwebpmux3:s390x (1.5.0-0.1) ... 410s Setting up libjxl0.11:s390x (0.11.1-1) ... 410s Setting up libzvbi-common (0.2.43-2ubuntu1) ... 410s Setting up libmp3lame0:s390x (3.100-6build1) ... 410s Setting up libvorbisenc2:s390x (1.3.7-2) ... 410s Setting up libdvdnav4:s390x (6.1.1-3build1) ... 410s Setting up libiec61883-0:s390x (1.2.0-7) ... 410s Setting up libserd-0-0:s390x (0.32.4-1) ... 410s Setting up libwayland-client0:s390x (1.23.1-1) ... 410s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 410s Setting up libavc1394-0:s390x (0.5.4-5build3) ... 410s Setting up python3.12-minimal (3.12.9-1) ... 411s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 411s Setting up liblapack3:s390x (3.12.1-2) ... 411s 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 411s Setting up libzmq5:s390x (4.3.5-1build2) ... 411s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 411s Setting up libzvbi0t64:s390x (0.2.43-2ubuntu1) ... 411s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 411s Setting up libsoxr0:s390x (0.1.3-4build3) ... 411s Setting up fontconfig-config (2.15.0-1.1ubuntu2) ... 411s Setting up python3.12 (3.12.9-1) ... 413s Setting up libxcursor1:s390x (1:1.2.3-1) ... 413s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 413s Setting up python3-all (3.13.1-1~exp2) ... 413s Setting up libopenal1:s390x (1:1.24.2-1) ... 413s Setting up libavutil59:s390x (7:7.1-3ubuntu3) ... 413s Setting up libpostproc58:s390x (7:7.1-3ubuntu3) ... 413s Setting up librist4:s390x (0.2.11+dfsg-1) ... 413s Setting up libthai0:s390x (0.1.29-2build1) ... 413s Setting up libvorbisfile3:s390x (1.3.7-2) ... 413s Setting up libswresample5:s390x (7:7.1-3ubuntu3) ... 413s Setting up libswscale8:s390x (7:7.1-3ubuntu3) ... 413s Setting up libplacebo349:s390x (7.349.0-3) ... 413s Setting up python3-numpy (1:1.26.4+ds-13) ... 417s Setting up librubberband2:s390x (3.3.0+dfsg-2build2) ... 417s Setting up libjack-jackd2-0:s390x (1.9.22~dfsg-4) ... 417s Setting up libsord-0-0:s390x (0.16.18-1) ... 417s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 417s Setting up libwayland-cursor0:s390x (1.23.1-1) ... 417s Setting up libsratom-0-0:s390x (0.6.18-1) ... 417s Setting up libdecor-0-0:s390x (0.2.2-2) ... 417s Setting up libgdk-pixbuf-2.0-0:s390x (2.42.12+dfsg-2) ... 417s Setting up libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 417s Setting up libsndfile1:s390x (1.2.2-2) ... 417s Setting up libbluray2:s390x (1:1.3.4-1build1) ... 417s Setting up liblilv-0-0:s390x (0.24.26-1) ... 417s Setting up libopenmpt0t64:s390x (0.7.13-1) ... 417s Setting up fontconfig (2.15.0-1.1ubuntu2) ... 419s Regenerating fonts cache... done. 419s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 419s Setting up libglx0:s390x (1.7.0-1build1) ... 419s Setting up libpulse0:s390x (1:17.0+dfsg1-2ubuntu1) ... 419s Setting up libpango-1.0-0:s390x (1.56.1-1) ... 419s Setting up libcairo2:s390x (1.18.2-2) ... 419s Setting up libgl1:s390x (1.7.0-1build1) ... 419s Setting up libass9:s390x (1:0.17.3-1) ... 419s Setting up libtheoradec1:s390x (1.2.0~alpha1+dfsg-5) ... 419s Setting up libcairo-gobject2:s390x (1.18.2-2) ... 419s Setting up libpangoft2-1.0-0:s390x (1.56.1-1) ... 419s Setting up libsdl2-2.0-0:s390x (2.32.0+dfsg-1) ... 419s Setting up libpangocairo-1.0-0:s390x (1.56.1-1) ... 419s Setting up librsvg2-2:s390x (2.59.90+dfsg-2) ... 419s Setting up libavcodec61:s390x (7:7.1-3ubuntu3) ... 419s Setting up libavformat61:s390x (7:7.1-3ubuntu3) ... 419s Setting up libavfilter10:s390x (7:7.1-3ubuntu3) ... 419s Setting up libavdevice61:s390x (7:7.1-3ubuntu3) ... 419s Setting up python3-av (12.3.0-2ubuntu1) ... 419s Processing triggers for systemd (257.2-3ubuntu1) ... 419s Processing triggers for man-db (2.13.0-1) ... 420s Processing triggers for libc-bin (2.41-1ubuntu1) ... 420s autopkgtest: DBG: testbed command exited with code 0 420s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-av'], kind short, sout pipe, serr pipe, env [] 420s autopkgtest: DBG: testbed command exited with code 0 420s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.bCjqFT/autodep8-python3-packages.all"], kind short, sout raw, serr pipe, env [] 421s autopkgtest: DBG: testbed command exited with code 0 421s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.bCjqFT/autodep8-python3-packages.all /tmp/autopkgtest-work._ngydvgr/out/autodep8-python3-packages.all 421s autopkgtest: DBG: got reply from testbed: ok 421s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.bCjqFT/build.PCD/src'], kind short, sout raw, serr raw, env [] 421s autopkgtest: DBG: testbed command exited with code 1 421s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.bCjqFT/build.PCD'], kind short, sout raw, serr pipe, env [] 421s autopkgtest: DBG: testbed command exited with code 0 421s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work._ngydvgr/out/tests-tree/ /tmp/autopkgtest.bCjqFT/build.PCD/src/ 422s autopkgtest: DBG: got reply from testbed: ok 422s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.bCjqFT/build.PCD/src'], kind short, sout raw, serr pipe, env [] 423s autopkgtest: DBG: testbed command exited with code 0 423s autopkgtest [02:01:41]: test autodep8-python3: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import av; print(av)" ; done 423s autopkgtest [02:01:41]: test autodep8-python3: [----------------------- 423s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.bCjqFT/wrapper.sh --debug --artifacts=/tmp/autopkgtest.bCjqFT/autodep8-python3-artifacts --chdir=/tmp/autopkgtest.bCjqFT/build.PCD/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.bCjqFT/autodep8-python3-stderr --stdout=/tmp/autopkgtest.bCjqFT/autodep8-python3-stdout --tmp=/tmp/autopkgtest.bCjqFT/autopkgtest_tmp \'--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1\' -- bash -ec \'set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import av; print(av)" ; done\''], kind test, sout raw, serr raw, env [] 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.bCjqFT/autodep8-python3-artifacts 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: changing to directory: /tmp/autopkgtest.bCjqFT/build.PCD/src 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: setting environment: LANG=C.UTF-8 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LANGUAGE 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_ADDRESS 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_ALL 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_COLLATE 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_CTYPE 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_IDENTIFICATION 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_MEASUREMENT 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_MESSAGES 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_MONETARY 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_NAME 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_NUMERIC 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_PAPER 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_TELEPHONE 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: unsetting environment: LC_TIME 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: pretending to be a login shell 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: will write standard error to /tmp/autopkgtest.bCjqFT/autodep8-python3-stderr 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: will write stdout to /tmp/autopkgtest.bCjqFT/autodep8-python3-stdout 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.bCjqFT/autopkgtest_tmp 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: command to run: bash -ec set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import av; print(av)" ; done 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: copying /tmp/tmp.8XrS3cFQfo/out to stdout and file: /tmp/autopkgtest.bCjqFT/autodep8-python3-stdout 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: copying /tmp/tmp.8XrS3cFQfo/err to standard error and file: /tmp/autopkgtest.bCjqFT/autodep8-python3-stdout 423s Testing with python3.12: 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: writing script pid 3181 to /tmp/autopkgtest_script_pid 423s 423s Testing with python3.13: 423s 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: checking for leaked background processes... 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: waiting for tee/cat subprocesses... 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: cleaning up... 423s /tmp/autopkgtest.bCjqFT/wrapper.sh: Exit status: 0 423s autopkgtest: DBG: testbed command exited with code 0 423s autopkgtest [02:01:41]: test autodep8-python3: -----------------------] 423s autopkgtest: DBG: testbed executing test finished with exit status 0 423s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.bCjqFT/autodep8-python3-stdout /tmp/autopkgtest-work._ngydvgr/out/autodep8-python3-stdout 423s autopkgtest: DBG: got reply from testbed: ok 423s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.bCjqFT/autodep8-python3-stderr /tmp/autopkgtest-work._ngydvgr/out/autodep8-python3-stderr 424s autopkgtest: DBG: got reply from testbed: ok 424s autopkgtest [02:01:42]: test autodep8-python3: - - - - - - - - - - results - - - - - - - - - - 424s autodep8-python3 PASS (superficial) 424s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.bCjqFT/autodep8-python3-artifacts/ /tmp/autopkgtest-work._ngydvgr/out/artifacts/ 424s autopkgtest: DBG: got reply from testbed: ok 424s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.bCjqFT/autodep8-python3-artifacts', '/tmp/autopkgtest.bCjqFT/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 424s autopkgtest: DBG: testbed command exited with code 0 424s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 424s autopkgtest [02:01:42]: @@@@@@@@@@@@@@@@@@@@ summary 424s command2 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 424s command4 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 424s command2 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 424s command4 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 424s command1 PASS 424s command3 PASS 424s autodep8-python3 PASS (superficial) 424s autopkgtest: DBG: testbed stop 424s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.bCjqFT 424s autopkgtest: DBG: sending command to testbed: close 442s autopkgtest: DBG: got reply from testbed: ok 442s autopkgtest: DBG: sending command to testbed: quit 442s nova [W] Using flock in prodstack6-s390x 442s flock: timeout while waiting to get lock 442s Creating nova instance adt-plucky-s390x-python-av-20250216-015438-juju-7f2275-prod-proposed-migration-environment-15-94dfeacd-033c-4b10-a3a5-755d24519761 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 442s nova [W] Timed out waiting for cd57bcf1-4fcb-4596-a197-34bb2b1cfa47 to get deleted. 442s nova [W] Using flock in prodstack6-s390x 442s flock: timeout while waiting to get lock 442s Creating nova instance adt-plucky-s390x-python-av-20250216-015438-juju-7f2275-prod-proposed-migration-environment-15-94dfeacd-033c-4b10-a3a5-755d24519761 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 442s nova [W] Timed out waiting for 5e19421e-a79d-4939-a103-d0f2bab1bf74 to get deleted.