0s autopkgtest: DBG: testbed init 0s autopkgtest [21:30:10]: starting date and time: 2025-02-15 21:30:10+0000 0s autopkgtest [21:30:10]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [21:30:10]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.ta5d0b6d/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 auto-multiple-choice --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-10.secgroup --name adt-plucky-s390x-auto-multiple-choice-20250215-213010-juju-7f2275-prod-proposed-migration-environment-15-6af3ccac-87c4-4871-bb53-4ca5ea28e035 --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 123s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.O8gTWx 123s autopkgtest: DBG: sending command to testbed: print-execute-command 123s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.9d8i7q16/runcmd 123s autopkgtest: DBG: sending command to testbed: capabilities 123s autopkgtest: DBG: got reply from testbed: ok reboot revert isolation-machine suggested-normal-user=ubuntu revert-full-system root-on-testbed 123s autopkgtest: DBG: testbed capabilities: ['reboot', 'revert', 'isolation-machine', 'suggested-normal-user=ubuntu', 'revert-full-system', 'root-on-testbed', 'has_internet'] 123s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.O8gTWx'], kind short, sout raw, serr pipe, env [] 123s autopkgtest: DBG: testbed command exited with code 0 123s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.O8gTWx/wrapper.sh 124s autopkgtest: DBG: got reply from testbed: ok 124s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.O8gTWx/wrapper.sh'], kind short, sout raw, serr pipe, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest [21:32:14]: testbed dpkg architecture: s390x 124s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest [21:32:14]: testbed apt version: 2.9.28 124s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest: DBG: testbed has eatmydata 124s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest [21:32:14]: @@@@@@@@@@@@@@@@@@@@ test bed setup 124s 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 [] 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest [21:32:15]: testbed release detected to be: None 125s 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 [] 125s autopkgtest: DBG: testbed command exited with code 0 125s 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 [] 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest: DBG: adding APT source: Types: deb deb-src 125s URIs: http://ftpmaster.internal/ubuntu/ 125s Suites: plucky-proposed 125s Components: main restricted universe multiverse 125s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 125s 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 [] 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 125s Package: * 125s Pin: release plucky-proposed 125s Pin-Priority: 500 125s 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 [] 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest [21:32:15]: updating testbed package index (apt update) 125s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 126s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 126s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 126s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 126s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 126s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [62.8 kB] 126s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 126s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 126s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [820 kB] 126s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [80.2 kB] 126s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 126s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [795 kB] 126s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 126s Fetched 1889 kB in 1s (1949 kB/s) 127s Reading package lists... 127s autopkgtest: DBG: testbed command exited with code 0 127s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 127s Package: * 127s Pin: release plucky-proposed 127s Pin-Priority: 100 127s 127s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 127s Pin: release plucky-proposed 127s Pin-Priority: 995 127s 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 [] 127s autopkgtest: DBG: testbed command exited with code 0 127s 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.O8gTWx/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 127s autopkgtest: DBG: testbed command exited with code 0 127s 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'] 128s + lsb_release --codename --short 128s + RELEASE=plucky 128s + cat 128s + [ plucky != trusty ] 128s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 128s Reading package lists... 128s Building dependency tree... 128s Reading state information... 128s Calculating upgrade... 128s The following packages were automatically installed and are no longer required: 128s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 128s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 128s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 128s linux-tools-6.11.0-8-generic 128s Use 'sudo apt autoremove' to remove them. 128s The following packages will be upgraded: 128s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 128s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 128s Need to get 1155 kB of archives. 128s After this operation, 16.4 kB of additional disk space will be used. 128s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 128s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 128s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 128s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 129s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 129s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 129s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 129s Preconfiguring packages ... 129s Fetched 1155 kB in 1s (1834 kB/s) 129s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 129s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 129s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 129s Setting up dash (0.5.12-12ubuntu1) ... 129s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 129s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 129s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 129s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 129s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 129s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 129s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 129s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 129s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 129s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 129s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 129s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 129s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 129s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 129s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 129s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 129s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 129s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 129s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 129s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 129s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 129s Setting up libtasn1-6:s390x (4.20.0-2) ... 129s Processing triggers for libc-bin (2.40-4ubuntu1) ... 129s Processing triggers for man-db (2.13.0-1) ... 130s Processing triggers for debianutils (5.21) ... 130s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 130s + /usr/lib/apt/apt-helper analyze-pattern ?true 130s + uname -r 130s + sed s/\./\\./g 130s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 130s + apt list ?obsolete 130s + tail -n+2 130s + cut -d/ -f1 130s + grep -v ^linux-.*6\.12\.0-15-generic.* 130s + true 130s + obsolete_pkgs= 130s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 130s Reading package lists... 130s Building dependency tree... 130s Reading state information... 130s The following packages will be REMOVED: 130s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 130s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 130s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 130s linux-tools-6.11.0-8-generic* 131s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 131s After this operation, 167 MB disk space will be freed. 131s (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.) 131s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 131s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 131s Removing libpython3.12t64:s390x (3.12.9-1) ... 131s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 131s Removing libnsl2:s390x (1.3.0-3build3) ... 131s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 131s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 131s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 132s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 132s Processing triggers for libc-bin (2.40-4ubuntu1) ... 132s (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.) 132s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 132s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 132s + grep -q trusty /etc/lsb-release 132s + [ ! -d /usr/share/doc/unattended-upgrades ] 132s + [ ! -d /usr/share/doc/lxd ] 132s + [ ! -d /usr/share/doc/lxd-client ] 132s + [ ! -d /usr/share/doc/snapd ] 132s + type iptables 132s + cat 132s + chmod 755 /etc/rc.local 132s + . /etc/rc.local 132s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 132s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 132s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 132s + uname -m 132s + [ s390x = ppc64le ] 132s + [ -d /run/systemd/system ] 132s + systemd-detect-virt --quiet --vm 132s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 132s + cat 132s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 132s + echo COMPRESS=lz4 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest [21:32:22]: upgrading testbed (apt dist-upgrade and autopurge) 132s 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'] 132s Reading package lists... 132s Building dependency tree... 132s Reading state information... 133s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 133s Starting 2 pkgProblemResolver with broken count: 0 133s Done 133s Entering ResolveByKeep 133s 133s The following packages will be upgraded: 133s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 133s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 133s Need to get 10.7 MB of archives. 133s After this operation, 305 kB of additional disk space will be used. 133s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 133s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 134s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 134s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 134s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 134s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 134s Preconfiguring packages ... 134s Fetched 10.7 MB in 1s (10.4 MB/s) 134s (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.) 134s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 134s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 134s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 134s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 134s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 134s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 135s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 135s Checking for services that may need to be restarted... 135s Checking init scripts... 135s Checking for services that may need to be restarted... 135s Checking init scripts... 135s Stopping some services possibly affected by the upgrade (will be restarted later): 135s cron: stopping...done. 135s 135s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 135s Setting up libc6:s390x (2.41-1ubuntu1) ... 135s Checking for services that may need to be restarted... 135s Checking init scripts... 135s Restarting services possibly affected by the upgrade: 135s cron: restarting...done. 135s 135s Services restarted successfully. 135s (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.) 135s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 135s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 135s Setting up libc-bin (2.41-1ubuntu1) ... 135s (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.) 135s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 135s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 135s Setting up iproute2 (6.13.0-1ubuntu1) ... 135s Setting up locales (2.41-1ubuntu1) ... 135s Installing new version of config file /etc/locale.alias ... 136s Generating locales (this might take a while)... 137s en_US.UTF-8... done 137s Generation complete. 137s Setting up libc-dev-bin (2.41-1ubuntu1) ... 137s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 137s Processing triggers for man-db (2.13.0-1) ... 138s Processing triggers for systemd (257.2-3ubuntu1) ... 138s autopkgtest: DBG: testbed command exited with code 0 138s 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'] 138s Reading package lists... 138s Building dependency tree... 138s Reading state information... 139s Starting pkgProblemResolver with broken count: 0 139s Starting 2 pkgProblemResolver with broken count: 0 139s Done 139s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 139s autopkgtest: DBG: testbed command exited with code 0 139s 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.O8gTWx/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 139s autopkgtest: DBG: testbed command exited with code 1 139s autopkgtest [21:32:29]: rebooting testbed after setup commands that affected boot 139s autopkgtest: DBG: sending command to testbed: reboot 159s autopkgtest: DBG: got reply from testbed: ok 159s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 159s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.O8gTWx'], kind short, sout raw, serr pipe, env [] 159s autopkgtest: DBG: testbed command exited with code 0 159s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.O8gTWx/autopkgtest-reboot 159s autopkgtest: DBG: got reply from testbed: ok 159s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.O8gTWx/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 159s autopkgtest: DBG: testbed command exited with code 0 159s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.O8gTWx/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 159s autopkgtest: DBG: testbed command exited with code 0 159s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.O8gTWx/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 160s autopkgtest: DBG: testbed command exited with code 0 160s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.O8gTWx'], kind short, sout raw, serr pipe, env [] 160s autopkgtest: DBG: testbed command exited with code 0 160s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.O8gTWx/autopkgtest-reboot-prepare 160s autopkgtest: DBG: got reply from testbed: ok 160s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.O8gTWx/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 160s autopkgtest: DBG: testbed command exited with code 0 160s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.O8gTWx/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 160s autopkgtest: DBG: testbed command exited with code 0 160s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 160s autopkgtest: DBG: testbed command exited with code 0 160s autopkgtest [21:32:50]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 160s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 161s autopkgtest: DBG: testbed command exited with code 0 161s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.O8gTWx/testbed-packages"], kind short, sout raw, serr pipe, env [] 161s autopkgtest: DBG: testbed command exited with code 0 161s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.O8gTWx/testbed-packages /tmp/autopkgtest-work.ta5d0b6d/out/testbed-packages 162s autopkgtest: DBG: got reply from testbed: ok 162s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 162s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.O8gTWx'], kind short, sout raw, serr pipe, env [] 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.O8gTWx/autopkgtest-reboot 162s autopkgtest: DBG: got reply from testbed: ok 162s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.O8gTWx/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.O8gTWx/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.O8gTWx/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.O8gTWx'], kind short, sout raw, serr pipe, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.O8gTWx/autopkgtest-reboot-prepare 163s autopkgtest: DBG: got reply from testbed: ok 163s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.O8gTWx/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.O8gTWx/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest: DBG: Binaries: initialising 163s autopkgtest [21:32:53]: @@@@@@@@@@@@@@@@@@@@ apt-source auto-multiple-choice 163s autopkgtest: DBG: blame += auto-multiple-choice 163s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 163s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'auto-multiple-choice'], kind short, sout pipe, serr pipe, env [] 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^auto-multiple-choice-doc-pdf$'], kind short, sout pipe, serr raw, env [] 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'auto-multiple-choice-doc-pdf=1.6.0-4'], kind short, sout pipe, serr raw, env [] 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^auto-multiple-choice$'], kind short, sout pipe, serr raw, env [] 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'auto-multiple-choice=1.6.0-4'], kind short, sout pipe, serr raw, env [] 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^auto-multiple-choice-common$'], kind short, sout pipe, serr raw, env [] 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'auto-multiple-choice-common=1.6.0-4'], kind short, sout pipe, serr raw, env [] 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^auto-multiple-choice-doc$'], kind short, sout pipe, serr raw, env [] 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'auto-multiple-choice-doc=1.6.0-4'], kind short, sout pipe, serr raw, env [] 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest: DBG: install_deps: deps_new=[] 166s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 166s autopkgtest: DBG: testbed command exited with code 0 166s 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.O8gTWx/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source auto-multiple-choice=1.6.0-4 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 auto-multiple-choice_*.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'] 166s + cd / 166s + mktemp -d /tmp/autopkgtest.O8gTWx/build.XXX 166s + builddir=/tmp/autopkgtest.O8gTWx/build.YSI 166s + cd /tmp/autopkgtest.O8gTWx/build.YSI 166s + apt-get source -d -q --only-source auto-multiple-choice=1.6.0-4 167s + OUT=Reading package lists... 167s NOTICE: 'auto-multiple-choice' packaging is maintained in the 'Git' version control system at: 167s https://salsa.debian.org/georgesk/auto-multiple-choice.git 167s Please use: 167s git clone https://salsa.debian.org/georgesk/auto-multiple-choice.git 167s to retrieve the latest (possibly unreleased) updates to the package. 167s Need to get 9615 kB of source archives. 167s Get:1 http://ftpmaster.internal/ubuntu plucky/universe auto-multiple-choice 1.6.0-4 (dsc) [3143 B] 167s Get:2 http://ftpmaster.internal/ubuntu plucky/universe auto-multiple-choice 1.6.0-4 (tar) [9598 kB] 167s Get:3 http://ftpmaster.internal/ubuntu plucky/universe auto-multiple-choice 1.6.0-4 (asc) [833 B] 167s Get:4 http://ftpmaster.internal/ubuntu plucky/universe auto-multiple-choice 1.6.0-4 (diff) [13.7 kB] 167s Fetched 9615 kB in 1s (9887 kB/s) 167s Download complete and in download only mode 167s + [ -n ] 167s + grep ^Get: 167s + echo Reading package lists... 167s NOTICE: 'auto-multiple-choice' packaging is maintained in the 'Git' version control system at: 167s https://salsa.debian.org/georgesk/auto-multiple-choice.git 167s Please use: 167s git clone https://salsa.debian.org/georgesk/auto-multiple-choice.git 167s to retrieve the latest (possibly unreleased) updates to the package. 167s Need to get 9615 kB of source archives. 167s Get:1 http://ftpmaster.internal/ubuntu plucky/universe auto-multiple-choice 1.6.0-4 (dsc) [3143 B] 167s Get:2 http://ftpmaster.internal/ubuntu plucky/universe auto-multiple-choice 1.6.0-4 (tar) [9598 kB] 167s Get:3 http://ftpmaster.internal/ubuntu plucky/universe auto-multiple-choice 1.6.0-4 (asc) [833 B] 167s Get:4 http://ftpmaster.internal/ubuntu plucky/universe auto-multiple-choice 1.6.0-4 (diff) [13.7 kB] 167s Fetched 9615 kB in 1s (9887 kB/s) 167s Download complete and in download only mode 167s Get:1 http://ftpmaster.internal/ubuntu plucky/universe auto-multiple-choice 1.6.0-4 (dsc) [3143 B] 167s Get:2 http://ftpmaster.internal/ubuntu plucky/universe auto-multiple-choice 1.6.0-4 (tar) [9598 kB] 167s Get:3 http://ftpmaster.internal/ubuntu plucky/universe auto-multiple-choice 1.6.0-4 (asc) [833 B] 167s Get:4 http://ftpmaster.internal/ubuntu plucky/universe auto-multiple-choice 1.6.0-4 (diff) [13.7 kB] 167s + dpkg-source -x auto-multiple-choice_1.6.0-4.dsc src 167s gpgv: Signature made Sun Oct 27 17:59:01 2024 UTC 167s gpgv: using RSA key AA222B227899319ECA3C1A364AD58E3068E669E2 167s gpgv: issuer "pado@passoire.fr" 167s gpgv: Can't check signature: No public key 167s dpkg-source: warning: cannot verify inline signature for ./auto-multiple-choice_1.6.0-4.dsc: no acceptable signature found 167s + chmod -R a+rX . 167s + cd src/. 168s + pwd 168s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest [21:32:58]: testing package auto-multiple-choice version 1.6.0-4 168s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.O8gTWx/build.YSI/src/debian/ /tmp/autopkgtest-work.ta5d0b6d/out/pkg/debian/ 168s autopkgtest: DBG: got reply from testbed: ok 168s autopkgtest: DBG: processing dependency @ 168s autopkgtest: DBG: synthesised dependency auto-multiple-choice 168s autopkgtest: DBG: synthesised dependency auto-multiple-choice-common 168s autopkgtest: DBG: synthesised dependency auto-multiple-choice-doc 168s autopkgtest: DBG: synthesised dependency auto-multiple-choice-doc-pdf 168s autopkgtest: DBG: processing dependency libipc-run-perl 168s autopkgtest: DBG: processing dependency locales-all 168s autopkgtest: DBG: Test defined: name simple path debian/tests/simple command "None" restrictions [] features [] depends ['auto-multiple-choice', 'auto-multiple-choice-common', 'auto-multiple-choice-doc', 'auto-multiple-choice-doc-pdf', 'libipc-run-perl', 'locales-all'] 168s autopkgtest: DBG: processing dependency @ 168s autopkgtest: DBG: synthesised dependency auto-multiple-choice 168s autopkgtest: DBG: synthesised dependency auto-multiple-choice-common 168s autopkgtest: DBG: synthesised dependency auto-multiple-choice-doc 168s autopkgtest: DBG: synthesised dependency auto-multiple-choice-doc-pdf 168s autopkgtest: DBG: processing dependency xvfb 168s autopkgtest: DBG: processing dependency xauth 168s autopkgtest: DBG: processing dependency at-spi2-core 168s autopkgtest: DBG: processing dependency gir1.2-notify-0.7 168s autopkgtest: DBG: Test defined: name gui path debian/tests/gui command "None" restrictions [] features [] depends ['auto-multiple-choice', 'auto-multiple-choice-common', 'auto-multiple-choice-doc', 'auto-multiple-choice-doc-pdf', 'xvfb', 'xauth', 'at-spi2-core', 'gir1.2-notify-0.7'] 168s autopkgtest [21:32:58]: build not needed 168s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.O8gTWx/build.YSI/src/ /tmp/autopkgtest-work.ta5d0b6d/out/tests-tree/ 171s autopkgtest: DBG: got reply from testbed: ok 171s autopkgtest: DBG: processing dependency @ 171s autopkgtest: DBG: synthesised dependency auto-multiple-choice 171s autopkgtest: DBG: synthesised dependency auto-multiple-choice-common 171s autopkgtest: DBG: synthesised dependency auto-multiple-choice-doc 171s autopkgtest: DBG: synthesised dependency auto-multiple-choice-doc-pdf 171s autopkgtest: DBG: processing dependency libipc-run-perl 171s autopkgtest: DBG: processing dependency locales-all 171s autopkgtest: DBG: Test defined: name simple path debian/tests/simple command "None" restrictions [] features [] depends ['auto-multiple-choice', 'auto-multiple-choice-common', 'auto-multiple-choice-doc', 'auto-multiple-choice-doc-pdf', 'libipc-run-perl', 'locales-all'] 171s autopkgtest: DBG: processing dependency @ 171s autopkgtest: DBG: synthesised dependency auto-multiple-choice 171s autopkgtest: DBG: synthesised dependency auto-multiple-choice-common 171s autopkgtest: DBG: synthesised dependency auto-multiple-choice-doc 171s autopkgtest: DBG: synthesised dependency auto-multiple-choice-doc-pdf 171s autopkgtest: DBG: processing dependency xvfb 171s autopkgtest: DBG: processing dependency xauth 171s autopkgtest: DBG: processing dependency at-spi2-core 171s autopkgtest: DBG: processing dependency gir1.2-notify-0.7 171s autopkgtest: DBG: Test defined: name gui path debian/tests/gui command "None" restrictions [] features [] depends ['auto-multiple-choice', 'auto-multiple-choice-common', 'auto-multiple-choice-doc', 'auto-multiple-choice-doc-pdf', 'xvfb', 'xauth', 'at-spi2-core', 'gir1.2-notify-0.7'] 171s autopkgtest [21:33:01]: test simple: preparing testbed 171s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['auto-multiple-choice', 'auto-multiple-choice-common', 'auto-multiple-choice-doc', 'auto-multiple-choice-doc-pdf', 'libipc-run-perl', 'locales-all'] 171s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 171s autopkgtest: DBG: install_deps: deps_new=['auto-multiple-choice', 'auto-multiple-choice-common', 'auto-multiple-choice-doc', 'auto-multiple-choice-doc-pdf', 'libipc-run-perl', 'locales-all'] 171s autopkgtest: DBG: install-deps: satisfying auto-multiple-choice, auto-multiple-choice-common, auto-multiple-choice-doc, auto-multiple-choice-doc-pdf, libipc-run-perl, locales-all 171s autopkgtest: DBG: can use apt-get on testbed: True 171s 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', 'auto-multiple-choice, auto-multiple-choice-common, auto-multiple-choice-doc, auto-multiple-choice-doc-pdf, libipc-run-perl, locales-all'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 171s Reading package lists... 171s Building dependency tree... 171s Reading state information... 172s Starting pkgProblemResolver with broken count: 0 172s Starting 2 pkgProblemResolver with broken count: 0 172s Done 172s The following NEW packages will be installed: 172s adwaita-icon-theme at-spi2-common auto-multiple-choice 172s auto-multiple-choice-common auto-multiple-choice-doc 172s auto-multiple-choice-doc-pdf dconf-gsettings-backend dconf-service 172s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono 172s fonts-lmodern fonts-urw-base35 gdal-data gdal-plugins ghostscript 172s gir1.2-atk-1.0 gir1.2-freedesktop gir1.2-gdkpixbuf-2.0 gir1.2-gtk-3.0 172s gir1.2-harfbuzz-0.0 gir1.2-pango-1.0 gtk-update-icon-cache 172s hicolor-icon-theme imagemagick imagemagick-7-common imagemagick-7.q16 172s libaec0 libaom3 libapache-pom-java libarchive-zip-perl libarmadillo14 172s libarpack2t64 libatk-bridge2.0-0t64 libatk1.0-0t64 libatspi2.0-0t64 172s libavahi-client3 libavahi-common-data libavahi-common3 libavif16 libblas3 172s libblosc1 libcairo-gobject-perl libcairo-gobject2 libcairo-perl libcairo2 172s libcfitsio10t64 libcharls2 libclone-perl libcolord2 libcommons-logging-java 172s libcommons-parent-java libcups2t64 libdatrie1 libdav1d7 libdbd-sqlite3-perl 172s libdbi-perl libdconf1 libde265-0 libdeflate0 libdrm-radeon1 172s libencode-locale-perl libepoxy0 libextutils-depends-perl libfftw3-double3 172s libfile-basedir-perl libfile-desktopentry-perl libfile-mimeinfo-perl 172s libfontbox-java libfontconfig1 libfontenc1 libfreetype6 libfreexl1 172s libfyba0t64 libgbm1 libgdal36 libgdcm3.0t64 libgdk-pixbuf-2.0-0 172s libgdk-pixbuf2.0-common libgeos-c1t64 libgeos3.13.0 libgeotiff5 libgfortran5 172s libgif7 libgl1-mesa-dri libglapi-mesa libglib-object-introspection-perl 172s libglib-perl libglvnd0 libglx-mesa0 libglx0 libgomp1 libgpgmepp6t64 172s libgraphics-magick-perl libgraphicsmagick-q16-3t64 libgraphite2-3 172s libgs-common libgs10 libgs10-common libgtk-3-0t64 libgtk-3-common 172s libgtk3-perl libharfbuzz-gobject0 libharfbuzz0b libhdf4-0-alt libhdf5-310 172s libhdf5-hl-310 libheif-plugin-aomdec libheif-plugin-libde265 libheif1 172s libhwloc15 libice6 libidn12 libijs-0.35 libimath-3-1-29t64 libio-pty-perl 172s libipc-run-perl libipc-system-simple-perl libjbig0 libjbig2dec0 172s libjpeg-turbo8 libjpeg8 libjxl0.11 libkmlbase1t64 libkmldom1t64 172s libkmlengine1t64 libkpathsea6 liblapack3 liblcms2-2 liblocale-codes-perl 172s liblqr-1-0 libltdl7 libmagickcore-7.q16-10 libmagickwand-7.q16-10 172s libminizip1t64 libmpfi0 libmysqlclient24 libnetcdf19t64 libnetpbm11t64 172s libodbc2 libodbcinst2 libogdi4.1 libopencv-core406t64 172s libopencv-imgcodecs406t64 libopencv-imgproc406t64 libopenexr-3-1-30 172s libopenjp2-7 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 172s libpangoxft-1.0-0 libpaper-utils libpaper2 libpdfbox-java libpixman-1-0 172s libpoppler-glib8t64 libpoppler145 libpotrace0 libpq5 libproj25 libptexenc1 172s libqhull-r8.0 librav1e0.7 libraw23t64 librsvg2-2 librsvg2-common librttopo1 172s libsharpyuv0 libsm6 libsnappy1v5 libsocket++1 libspatialite8t64 172s libsvtav1enc2 libsynctex2 libsz2 libtbb12 libtbbbind-2-5 libtbbmalloc2 172s libteckit0 libtexlua53-5 libtext-csv-perl libthai-data libthai0 libtiff6 172s liburi-perl liburiparser1 libvulkan1 libwayland-client0 libwayland-cursor0 172s libwayland-egl1 libwayland-server0 libwebp7 libwebpdemux2 libwebpmux3 172s libwmflite-0.2-7 libx11-xcb1 libxaw7 libxcb-dri3-0 libxcb-glx0 172s libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shm0 libxcb-sync1 172s libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 libxerces-c3.2t64 172s libxfixes3 libxft2 libxi6 libxinerama1 libxml-libxml-perl 172s libxml-namespacesupport-perl libxml-sax-base-perl libxml-sax-perl 172s libxml-simple-perl libxml-writer-perl libxmu6 libxpm4 libxrandr2 libxrender1 172s libxshmfence1 libxt6t64 libxxf86vm1 libyuv0 libzzip-0-13t64 locales-all 172s mesa-libgallium mysql-common netpbm poppler-data poppler-utils 172s preview-latex-style proj-data t1utils tex-common texlive-base 172s texlive-binaries texlive-fonts-extra texlive-fonts-recommended 172s texlive-latex-base texlive-latex-extra texlive-latex-recommended 172s texlive-pictures unixodbc-common unzip x11-common xdg-utils xfonts-encodings 172s xfonts-utils 172s 0 upgraded, 253 newly installed, 0 to remove and 0 not upgraded. 172s Need to get 841 MB of archives. 172s After this operation, 2686 MB of additional disk space will be used. 172s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 172s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libfftw3-double3 s390x 3.3.10-2fakesync1build1 [511 kB] 172s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 173s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 173s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 173s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libfontenc1 s390x 1:1.1.8-1build1 [14.8 kB] 173s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 173s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x xfonts-encodings all 1:1.0.5-0ubuntu2 [578 kB] 173s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x xfonts-utils s390x 1:7.7+7 [101 kB] 173s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-urw-base35 all 20200910-8 [11.0 MB] 173s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-1.1ubuntu2 [37.4 kB] 173s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-1.1ubuntu2 [150 kB] 173s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 173s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libaom3 s390x 3.12.0-1 [1492 kB] 173s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libheif-plugin-aomdec s390x 1.19.5-1build1 [11.6 kB] 173s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libde265-0 s390x 1.0.15-1build4 [175 kB] 173s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libheif-plugin-libde265 s390x 1.19.5-1build1 [9066 B] 173s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libheif1 s390x 1.19.5-1build1 [410 kB] 173s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 173s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 173s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 173s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x liblcms2-2 s390x 2.16-2 [175 kB] 173s Get:23 http://ftpmaster.internal/ubuntu plucky/universe s390x liblqr-1-0 s390x 0.4.2-2.1build2 [32.6 kB] 173s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libltdl7 s390x 2.5.4-3build1 [43.9 kB] 173s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libopenjp2-7 s390x 2.5.0-2ubuntu3 [208 kB] 173s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libraw23t64 s390x 0.21.3-1 [415 kB] 173s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 173s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 173s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 173s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpdemux2 s390x 1.5.0-0.1 [12.6 kB] 173s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpmux3 s390x 1.5.0-0.1 [25.8 kB] 173s Get:32 http://ftpmaster.internal/ubuntu plucky/universe s390x imagemagick-7-common all 8:7.1.1.43+dfsg1-1 [69.7 kB] 173s Get:33 http://ftpmaster.internal/ubuntu plucky/universe s390x libmagickcore-7.q16-10 s390x 8:7.1.1.43+dfsg1-1 [2040 kB] 173s Get:34 http://ftpmaster.internal/ubuntu plucky/universe s390x libmagickwand-7.q16-10 s390x 8:7.1.1.43+dfsg1-1 [375 kB] 173s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x poppler-data all 0.4.12-1 [2060 kB] 173s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libgdk-pixbuf2.0-common all 2.42.12+dfsg-2 [8004 B] 173s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libgdk-pixbuf-2.0-0 s390x 2.42.12+dfsg-2 [154 kB] 173s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x gtk-update-icon-cache s390x 4.17.4+ds-4 [52.9 kB] 173s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x hicolor-icon-theme all 0.18-2 [13.3 kB] 173s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x adwaita-icon-theme all 48~beta-3 [578 kB] 173s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x at-spi2-common all 2.55.2-1 [8916 B] 173s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-0 s390x 0.44.0-3 [201 kB] 173s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 173s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 173s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 173s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo2 s390x 1.18.2-2 [580 kB] 173s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libblas3 s390x 3.12.1-2 [252 kB] 173s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 173s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 173s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 173s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 173s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 173s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 173s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 173s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 173s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 173s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 173s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 173s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 174s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 174s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 174s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 174s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 174s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 174s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 174s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 174s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran5 s390x 14.2.0-17ubuntu1 [588 kB] 174s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack3 s390x 3.12.1-2 [2971 kB] 174s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x libtbbmalloc2 s390x 2022.0.0-1 [57.6 kB] 174s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x libhwloc15 s390x 2.11.2-1build1 [176 kB] 174s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x libtbbbind-2-5 s390x 2022.0.0-1 [15.3 kB] 174s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x libtbb12 s390x 2022.0.0-1 [99.9 kB] 174s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x libopencv-core406t64 s390x 4.6.0+dfsg-14build3 [1164 kB] 174s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x gdal-data all 3.10.1+dfsg-1build2 [269 kB] 174s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x gdal-plugins s390x 3.10.1+dfsg-1build2 [25.6 kB] 174s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x libaec0 s390x 1.1.3-1 [25.7 kB] 174s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x libarpack2t64 s390x 3.9.1-4 [110 kB] 174s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x libarmadillo14 s390x 1:14.2.1+dfsg-1 [110 kB] 174s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x libdav1d7 s390x 1.5.1-1 [312 kB] 174s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x librav1e0.7 s390x 0.7.1-9 [845 kB] 174s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x libsvtav1enc2 s390x 2.3.0+dfsg-1 [2294 kB] 174s Get:82 http://ftpmaster.internal/ubuntu plucky/main s390x libyuv0 s390x 0.0.1904.20250204-1 [127 kB] 174s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x libavif16 s390x 1.1.1-1ubuntu1 [103 kB] 174s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x libsnappy1v5 s390x 1.2.1-1 [33.0 kB] 174s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x libblosc1 s390x 1.21.5+ds-1build1 [27.7 kB] 174s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x libcfitsio10t64 s390x 4.5.0-5 [607 kB] 174s Get:87 http://ftpmaster.internal/ubuntu plucky/universe s390x libminizip1t64 s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [24.6 kB] 174s Get:88 http://ftpmaster.internal/ubuntu plucky/universe s390x libfreexl1 s390x 2.0.0-1build2 [46.5 kB] 174s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x libfyba0t64 s390x 4.1.1-11build1 [125 kB] 174s Get:90 http://ftpmaster.internal/ubuntu plucky/universe s390x libgeos3.13.0 s390x 3.13.0-1 [966 kB] 174s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x libgeos-c1t64 s390x 3.13.0-1 [93.3 kB] 174s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x proj-data all 9.5.1-1 [7924 kB] 174s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x libproj25 s390x 9.5.1-1 [1452 kB] 174s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x libgeotiff5 s390x 1.7.3-1 [66.4 kB] 174s Get:95 http://ftpmaster.internal/ubuntu plucky/main s390x libgif7 s390x 5.2.2-1ubuntu1 [38.0 kB] 174s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x libsz2 s390x 1.1.3-1 [5442 B] 174s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x libhdf4-0-alt s390x 4.3.0-1 [300 kB] 174s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x libhdf5-310 s390x 1.14.5+repack-3 [1477 kB] 175s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x liburiparser1 s390x 0.9.8+dfsg-2 [42.4 kB] 175s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x libkmlbase1t64 s390x 1.3.0-12build1 [50.5 kB] 175s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x libkmldom1t64 s390x 1.3.0-12build1 [151 kB] 175s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x libkmlengine1t64 s390x 1.3.0-12build1 [68.9 kB] 175s Get:103 http://ftpmaster.internal/ubuntu plucky/main s390x mysql-common all 5.8+1.1.1 [6800 B] 175s Get:104 http://ftpmaster.internal/ubuntu plucky/main s390x libmysqlclient24 s390x 8.4.4-0ubuntu1 [1295 kB] 175s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x libhdf5-hl-310 s390x 1.14.5+repack-3 [61.0 kB] 175s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x libnetcdf19t64 s390x 1:4.9.2-6ubuntu2 [497 kB] 175s Get:107 http://ftpmaster.internal/ubuntu plucky/main s390x libodbc2 s390x 2.3.12-2ubuntu1 [163 kB] 175s Get:108 http://ftpmaster.internal/ubuntu plucky/main s390x unixodbc-common all 2.3.12-2ubuntu1 [9044 B] 175s Get:109 http://ftpmaster.internal/ubuntu plucky/main s390x libodbcinst2 s390x 2.3.12-2ubuntu1 [32.2 kB] 175s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x libogdi4.1 s390x 4.1.1+ds-5 [219 kB] 175s Get:111 http://ftpmaster.internal/ubuntu plucky/main s390x libgpgmepp6t64 s390x 1.24.1-4ubuntu1 [125 kB] 175s Get:112 http://ftpmaster.internal/ubuntu plucky/main s390x libpoppler145 s390x 25.01.0-4 [1233 kB] 175s Get:113 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libpq5 s390x 17.3-2 [147 kB] 175s Get:114 http://ftpmaster.internal/ubuntu plucky/universe s390x libqhull-r8.0 s390x 2020.2-6build1 [199 kB] 175s Get:115 http://ftpmaster.internal/ubuntu plucky/universe s390x librttopo1 s390x 1.1.0-3build2 [200 kB] 175s Get:116 http://ftpmaster.internal/ubuntu plucky/universe s390x libspatialite8t64 s390x 5.1.0-3build1 [2050 kB] 175s Get:117 http://ftpmaster.internal/ubuntu plucky/universe s390x libxerces-c3.2t64 s390x 3.2.4+debian-1.3build1 [938 kB] 175s Get:118 http://ftpmaster.internal/ubuntu plucky/universe s390x libgdal36 s390x 3.10.1+dfsg-1build2 [9637 kB] 176s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x libcharls2 s390x 2.4.2-2build2 [101 kB] 176s Get:120 http://ftpmaster.internal/ubuntu plucky/universe s390x libsocket++1 s390x 1.12.13+git20131030.5d039ba-1build1 [79.5 kB] 176s Get:121 http://ftpmaster.internal/ubuntu plucky/universe s390x libgdcm3.0t64 s390x 3.0.24-5ubuntu1 [2239 kB] 176s Get:122 http://ftpmaster.internal/ubuntu plucky/universe s390x libopencv-imgproc406t64 s390x 4.6.0+dfsg-14build3 [1138 kB] 176s Get:123 http://ftpmaster.internal/ubuntu plucky/universe s390x libimath-3-1-29t64 s390x 3.1.12-1ubuntu1 [73.0 kB] 176s Get:124 http://ftpmaster.internal/ubuntu plucky/universe s390x libopenexr-3-1-30 s390x 3.1.5-5.1build3 [1042 kB] 176s Get:125 http://ftpmaster.internal/ubuntu plucky/universe s390x libopencv-imgcodecs406t64 s390x 4.6.0+dfsg-14build3 [137 kB] 176s Get:126 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-1.1ubuntu2 [191 kB] 176s Get:127 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 176s Get:128 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 176s Get:129 http://ftpmaster.internal/ubuntu plucky/main s390x libthai-data all 0.1.29-2build1 [158 kB] 176s Get:130 http://ftpmaster.internal/ubuntu plucky/main s390x libdatrie1 s390x 0.2.13-3build1 [20.6 kB] 176s Get:131 http://ftpmaster.internal/ubuntu plucky/main s390x libthai0 s390x 0.1.29-2build1 [20.7 kB] 176s Get:132 http://ftpmaster.internal/ubuntu plucky/main s390x libpango-1.0-0 s390x 1.56.1-1 [253 kB] 176s Get:133 http://ftpmaster.internal/ubuntu plucky/main s390x libpangoft2-1.0-0 s390x 1.56.1-1 [50.3 kB] 176s Get:134 http://ftpmaster.internal/ubuntu plucky/main s390x libpangocairo-1.0-0 s390x 1.56.1-1 [28.3 kB] 176s Get:135 http://ftpmaster.internal/ubuntu plucky/main s390x libpoppler-glib8t64 s390x 25.01.0-4 [164 kB] 176s Get:136 http://ftpmaster.internal/ubuntu plucky/universe s390x tex-common all 6.18 [32.8 kB] 176s Get:137 http://ftpmaster.internal/ubuntu plucky/main s390x libxml-namespacesupport-perl all 1.12-2 [13.5 kB] 176s Get:138 http://ftpmaster.internal/ubuntu plucky/main s390x libxml-sax-base-perl all 1.09-3 [18.9 kB] 176s Get:139 http://ftpmaster.internal/ubuntu plucky/main s390x libxml-sax-perl all 1.02+dfsg-4 [52.4 kB] 176s Get:140 http://ftpmaster.internal/ubuntu plucky/main s390x libxml-libxml-perl s390x 2.0207+dfsg+really+2.0134-5build1 [312 kB] 176s Get:141 http://ftpmaster.internal/ubuntu plucky/main s390x libxml-simple-perl all 2.25-2 [64.1 kB] 176s Get:142 http://ftpmaster.internal/ubuntu plucky/universe s390x libxml-writer-perl all 0.900-2 [24.0 kB] 176s Get:143 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-gdkpixbuf-2.0 s390x 2.42.12+dfsg-2 [9330 B] 176s Get:144 http://ftpmaster.internal/ubuntu plucky/main s390x libatk1.0-0t64 s390x 2.55.2-1 [54.8 kB] 176s Get:145 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-atk-1.0 s390x 2.55.2-1 [22.9 kB] 176s Get:146 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo-gobject2 s390x 1.18.2-2 [127 kB] 176s Get:147 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-freedesktop s390x 1.82.0-4 [64.0 kB] 176s Get:148 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz-gobject0 s390x 10.2.0-1 [35.1 kB] 176s Get:149 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-harfbuzz-0.0 s390x 10.2.0-1 [44.4 kB] 176s Get:150 http://ftpmaster.internal/ubuntu plucky/main s390x libxft2 s390x 2.3.6-1build1 [49.6 kB] 176s Get:151 http://ftpmaster.internal/ubuntu plucky/main s390x libpangoxft-1.0-0 s390x 1.56.1-1 [20.2 kB] 176s Get:152 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-pango-1.0 s390x 1.56.1-1 [34.4 kB] 176s Get:153 http://ftpmaster.internal/ubuntu plucky/main s390x libxi6 s390x 2:1.8.2-1 [35.4 kB] 176s Get:154 http://ftpmaster.internal/ubuntu plucky/main s390x libatspi2.0-0t64 s390x 2.55.2-1 [80.3 kB] 176s Get:155 http://ftpmaster.internal/ubuntu plucky/main s390x libatk-bridge2.0-0t64 s390x 2.55.2-1 [66.7 kB] 176s Get:156 http://ftpmaster.internal/ubuntu plucky/main s390x libcolord2 s390x 1.4.7-1build2 [151 kB] 176s Get:157 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-common-data s390x 0.8-14ubuntu1 [30.5 kB] 176s Get:158 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-common3 s390x 0.8-14ubuntu1 [23.6 kB] 176s Get:159 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-client3 s390x 0.8-14ubuntu1 [26.8 kB] 176s Get:160 http://ftpmaster.internal/ubuntu plucky/main s390x libcups2t64 s390x 2.4.11-0ubuntu2 [282 kB] 176s Get:161 http://ftpmaster.internal/ubuntu plucky/main s390x libepoxy0 s390x 1.5.10-2 [222 kB] 176s Get:162 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-1 [27.8 kB] 176s Get:163 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-cursor0 s390x 1.23.1-1 [11.5 kB] 176s Get:164 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-egl1 s390x 1.23.1-1 [5654 B] 176s Get:165 http://ftpmaster.internal/ubuntu plucky/main s390x libxcomposite1 s390x 1:0.4.6-1 [6588 B] 176s Get:166 http://ftpmaster.internal/ubuntu plucky/main s390x libxfixes3 s390x 1:6.0.0-2build1 [11.3 kB] 176s Get:167 http://ftpmaster.internal/ubuntu plucky/main s390x libxcursor1 s390x 1:1.2.3-1 [23.4 kB] 176s Get:168 http://ftpmaster.internal/ubuntu plucky/main s390x libxdamage1 s390x 1:1.1.6-1build1 [6156 B] 176s Get:169 http://ftpmaster.internal/ubuntu plucky/main s390x libxinerama1 s390x 2:1.1.4-3build1 [6476 B] 176s Get:170 http://ftpmaster.internal/ubuntu plucky/main s390x libxrandr2 s390x 2:1.5.4-1 [20.8 kB] 176s Get:171 http://ftpmaster.internal/ubuntu plucky/main s390x libdconf1 s390x 0.40.0-5 [40.0 kB] 176s Get:172 http://ftpmaster.internal/ubuntu plucky/main s390x dconf-service s390x 0.40.0-5 [28.4 kB] 176s Get:173 http://ftpmaster.internal/ubuntu plucky/main s390x dconf-gsettings-backend s390x 0.40.0-5 [22.8 kB] 176s Get:174 http://ftpmaster.internal/ubuntu plucky/main s390x libgtk-3-common all 3.24.48-3ubuntu1 [1424 kB] 177s Get:175 http://ftpmaster.internal/ubuntu plucky/main s390x libgtk-3-0t64 s390x 3.24.48-3ubuntu1 [2949 kB] 177s Get:176 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-gtk-3.0 s390x 3.24.48-3ubuntu1 [241 kB] 177s Get:177 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo-perl s390x 1.109-5build1 [97.3 kB] 177s Get:178 http://ftpmaster.internal/ubuntu plucky/main s390x libextutils-depends-perl all 0.8001-2 [14.4 kB] 177s Get:179 http://ftpmaster.internal/ubuntu plucky/main s390x libglib-perl s390x 3:1.329.3-3build4 [326 kB] 177s Get:180 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo-gobject-perl s390x 1.005-4build4 [11.8 kB] 177s Get:181 http://ftpmaster.internal/ubuntu plucky/main s390x libglib-object-introspection-perl s390x 0.051-2build1 [69.2 kB] 177s Get:182 http://ftpmaster.internal/ubuntu plucky/main s390x libgtk3-perl all 0.038-3 [29.2 kB] 177s Get:183 http://ftpmaster.internal/ubuntu plucky/universe s390x libjxl0.11 s390x 0.11.1-1 [1008 kB] 177s Get:184 http://ftpmaster.internal/ubuntu plucky/main s390x libwmflite-0.2-7 s390x 0.2.13-1.1build3 [72.1 kB] 177s Get:185 http://ftpmaster.internal/ubuntu plucky/universe s390x libgraphicsmagick-q16-3t64 s390x 1.4+really1.3.45-1build2 [1323 kB] 177s Get:186 http://ftpmaster.internal/ubuntu plucky/universe s390x libgraphics-magick-perl s390x 1.4+really1.3.45-1build2 [61.5 kB] 177s Get:187 http://ftpmaster.internal/ubuntu plucky/main s390x libdbi-perl s390x 1.647-1 [832 kB] 177s Get:188 http://ftpmaster.internal/ubuntu plucky/universe s390x libdbd-sqlite3-perl s390x 1.76-1 [166 kB] 177s Get:189 http://ftpmaster.internal/ubuntu plucky/universe s390x liblocale-codes-perl all 3.81-1 [289 kB] 177s Get:190 http://ftpmaster.internal/ubuntu plucky/main s390x libencode-locale-perl all 1.05-3 [11.6 kB] 177s Get:191 http://ftpmaster.internal/ubuntu plucky/main s390x libipc-system-simple-perl all 1.30-2 [22.3 kB] 177s Get:192 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-basedir-perl all 0.09-2 [14.4 kB] 177s Get:193 http://ftpmaster.internal/ubuntu plucky/main s390x liburi-perl all 5.30-1 [94.4 kB] 177s Get:194 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-desktopentry-perl all 0.22-3 [16.8 kB] 177s Get:195 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-mimeinfo-perl all 0.35-1 [40.3 kB] 177s Get:196 http://ftpmaster.internal/ubuntu plucky/universe s390x libtext-csv-perl all 2.05-1 [113 kB] 177s Get:197 http://ftpmaster.internal/ubuntu plucky/universe s390x fonts-lmodern all 2.005-1 [4799 kB] 177s Get:198 http://ftpmaster.internal/ubuntu plucky/main s390x libpaper2 s390x 2.2.5-0.3 [17.2 kB] 177s Get:199 http://ftpmaster.internal/ubuntu plucky/main s390x libpaper-utils s390x 2.2.5-0.3 [15.3 kB] 177s Get:200 http://ftpmaster.internal/ubuntu plucky/main s390x libkpathsea6 s390x 2024.20240313.70630+ds-5build2 [66.9 kB] 177s Get:201 http://ftpmaster.internal/ubuntu plucky/main s390x libptexenc1 s390x 2024.20240313.70630+ds-5build2 [43.4 kB] 177s Get:202 http://ftpmaster.internal/ubuntu plucky/main s390x libsynctex2 s390x 2024.20240313.70630+ds-5build2 [64.6 kB] 177s Get:203 http://ftpmaster.internal/ubuntu plucky/main s390x libtexlua53-5 s390x 2024.20240313.70630+ds-5build2 [131 kB] 177s Get:204 http://ftpmaster.internal/ubuntu plucky/main s390x t1utils s390x 1.41-4build3 [65.6 kB] 177s Get:205 http://ftpmaster.internal/ubuntu plucky/universe s390x libmpfi0 s390x 1.5.4+ds-4 [34.1 kB] 177s Get:206 http://ftpmaster.internal/ubuntu plucky/universe s390x libpotrace0 s390x 1.16-2build1 [18.7 kB] 177s Get:207 http://ftpmaster.internal/ubuntu plucky/universe s390x libteckit0 s390x 2.5.12+ds1-1 [433 kB] 178s Get:208 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 178s Get:209 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 178s Get:210 http://ftpmaster.internal/ubuntu plucky/main s390x libxt6t64 s390x 1:1.2.1-1.2build1 [184 kB] 178s Get:211 http://ftpmaster.internal/ubuntu plucky/main s390x libxmu6 s390x 2:1.1.3-3build2 [53.0 kB] 178s Get:212 http://ftpmaster.internal/ubuntu plucky/main s390x libxpm4 s390x 1:3.5.17-1build2 [41.2 kB] 178s Get:213 http://ftpmaster.internal/ubuntu plucky/main s390x libxaw7 s390x 2:1.0.16-1 [201 kB] 178s Get:214 http://ftpmaster.internal/ubuntu plucky/universe s390x libzzip-0-13t64 s390x 0.13.72+dfsg.1-1.2build1 [28.6 kB] 178s Get:215 http://ftpmaster.internal/ubuntu plucky/universe s390x texlive-binaries s390x 2024.20240313.70630+ds-5build2 [9171 kB] 178s Get:216 http://ftpmaster.internal/ubuntu plucky/main s390x xdg-utils all 1.2.1-2ubuntu1 [66.0 kB] 178s Get:217 http://ftpmaster.internal/ubuntu plucky/universe s390x texlive-base all 2024.20241115-1 [22.5 MB] 180s Get:218 http://ftpmaster.internal/ubuntu plucky/universe s390x texlive-latex-base all 2024.20241115-1 [1260 kB] 180s Get:219 http://ftpmaster.internal/ubuntu plucky/universe s390x texlive-latex-recommended all 2024.20241115-1 [8739 kB] 181s Get:220 http://ftpmaster.internal/ubuntu plucky/universe s390x libapache-pom-java all 33-2 [5874 B] 181s Get:221 http://ftpmaster.internal/ubuntu plucky/universe s390x libcommons-parent-java all 56-1 [10.7 kB] 181s Get:222 http://ftpmaster.internal/ubuntu plucky/universe s390x libcommons-logging-java all 1.3.0-1ubuntu1 [63.8 kB] 181s Get:223 http://ftpmaster.internal/ubuntu plucky/universe s390x libfontbox-java all 1:1.8.16-5 [208 kB] 181s Get:224 http://ftpmaster.internal/ubuntu plucky/universe s390x libpdfbox-java all 1:1.8.16-5 [5521 kB] 181s Get:225 http://ftpmaster.internal/ubuntu plucky/universe s390x preview-latex-style all 13.2-1 [347 kB] 182s Get:226 http://ftpmaster.internal/ubuntu plucky/universe s390x texlive-pictures all 2024.20241115-1 [17.0 MB] 183s Get:227 http://ftpmaster.internal/ubuntu plucky/universe s390x texlive-latex-extra all 2024.20250114-1 [24.3 MB] 185s Get:228 http://ftpmaster.internal/ubuntu plucky/universe s390x texlive-fonts-recommended all 2024.20241115-1 [4973 kB] 185s Get:229 http://ftpmaster.internal/ubuntu plucky/universe s390x texlive-fonts-extra all 2024.20250114-1 [624 MB] 229s Get:230 http://ftpmaster.internal/ubuntu plucky/universe s390x imagemagick-7.q16 s390x 8:7.1.1.43+dfsg1-1 [703 kB] 229s Get:231 http://ftpmaster.internal/ubuntu plucky/universe s390x imagemagick s390x 8:7.1.1.43+dfsg1-1 [14.1 kB] 229s Get:232 http://ftpmaster.internal/ubuntu plucky/universe s390x libnetpbm11t64 s390x 2:11.09.02-2 [124 kB] 229s Get:233 http://ftpmaster.internal/ubuntu plucky/universe s390x netpbm s390x 2:11.09.02-2 [2207 kB] 229s Get:234 http://ftpmaster.internal/ubuntu plucky/main s390x libgs-common all 10.04.0~dfsg1-2ubuntu1 [176 kB] 229s Get:235 http://ftpmaster.internal/ubuntu plucky/main s390x libgs10-common all 10.04.0~dfsg1-2ubuntu1 [488 kB] 229s Get:236 http://ftpmaster.internal/ubuntu plucky/main s390x libidn12 s390x 1.42-3 [56.9 kB] 229s Get:237 http://ftpmaster.internal/ubuntu plucky/main s390x libijs-0.35 s390x 0.35-15.1build1 [15.5 kB] 229s Get:238 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig2dec0 s390x 0.20-1build3 [69.3 kB] 229s Get:239 http://ftpmaster.internal/ubuntu plucky/main s390x libgs10 s390x 10.04.0~dfsg1-2ubuntu1 [3964 kB] 229s Get:240 http://ftpmaster.internal/ubuntu plucky/main s390x ghostscript s390x 10.04.0~dfsg1-2ubuntu1 [43.7 kB] 229s Get:241 http://ftpmaster.internal/ubuntu plucky/main s390x poppler-utils s390x 25.01.0-4 [227 kB] 229s Get:242 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 229s Get:243 http://ftpmaster.internal/ubuntu plucky/main s390x librsvg2-2 s390x 2.59.90+dfsg-2 [1986 kB] 229s Get:244 http://ftpmaster.internal/ubuntu plucky/main s390x librsvg2-common s390x 2.59.90+dfsg-2 [181 kB] 229s Get:245 http://ftpmaster.internal/ubuntu plucky/main s390x unzip s390x 6.0-28ubuntu6 [186 kB] 229s Get:246 http://ftpmaster.internal/ubuntu plucky/main s390x libclone-perl s390x 0.47-1 [10.7 kB] 229s Get:247 http://ftpmaster.internal/ubuntu plucky/universe s390x auto-multiple-choice-common all 1.6.0-4 [550 kB] 229s Get:248 http://ftpmaster.internal/ubuntu plucky/universe s390x auto-multiple-choice s390x 1.6.0-4 [34.2 kB] 229s Get:249 http://ftpmaster.internal/ubuntu plucky/universe s390x auto-multiple-choice-doc all 1.6.0-4 [179 kB] 229s Get:250 http://ftpmaster.internal/ubuntu plucky/universe s390x auto-multiple-choice-doc-pdf all 1.6.0-4 [3050 kB] 230s Get:251 http://ftpmaster.internal/ubuntu plucky/main s390x libio-pty-perl s390x 1:1.20-1build3 [31.6 kB] 230s Get:252 http://ftpmaster.internal/ubuntu plucky/main s390x libipc-run-perl all 20231003.0-2 [91.5 kB] 230s Get:253 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x locales-all s390x 2.41-1ubuntu1 [11.5 MB] 231s Preconfiguring packages ... 231s Fetched 841 MB in 58s (14.4 MB/s) 231s Selecting previously unselected package libgomp1:s390x. 231s (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.) 231s Preparing to unpack .../000-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 231s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 231s Selecting previously unselected package libfftw3-double3:s390x. 231s Preparing to unpack .../001-libfftw3-double3_3.3.10-2fakesync1build1_s390x.deb ... 231s Unpacking libfftw3-double3:s390x (3.3.10-2fakesync1build1) ... 231s Selecting previously unselected package libfreetype6:s390x. 231s Preparing to unpack .../002-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 231s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 231s Selecting previously unselected package fonts-dejavu-mono. 231s Preparing to unpack .../003-fonts-dejavu-mono_2.37-8_all.deb ... 231s Unpacking fonts-dejavu-mono (2.37-8) ... 231s Selecting previously unselected package fonts-dejavu-core. 231s Preparing to unpack .../004-fonts-dejavu-core_2.37-8_all.deb ... 231s Unpacking fonts-dejavu-core (2.37-8) ... 231s Selecting previously unselected package libfontenc1:s390x. 231s Preparing to unpack .../005-libfontenc1_1%3a1.1.8-1build1_s390x.deb ... 231s Unpacking libfontenc1:s390x (1:1.1.8-1build1) ... 231s Selecting previously unselected package x11-common. 231s Preparing to unpack .../006-x11-common_1%3a7.7+23ubuntu3_all.deb ... 231s Unpacking x11-common (1:7.7+23ubuntu3) ... 231s Selecting previously unselected package xfonts-encodings. 231s Preparing to unpack .../007-xfonts-encodings_1%3a1.0.5-0ubuntu2_all.deb ... 231s Unpacking xfonts-encodings (1:1.0.5-0ubuntu2) ... 231s Selecting previously unselected package xfonts-utils. 231s Preparing to unpack .../008-xfonts-utils_1%3a7.7+7_s390x.deb ... 231s Unpacking xfonts-utils (1:7.7+7) ... 231s Selecting previously unselected package fonts-urw-base35. 231s Preparing to unpack .../009-fonts-urw-base35_20200910-8_all.deb ... 231s Unpacking fonts-urw-base35 (20200910-8) ... 231s Selecting previously unselected package fontconfig-config. 231s Preparing to unpack .../010-fontconfig-config_2.15.0-1.1ubuntu2_s390x.deb ... 232s Unpacking fontconfig-config (2.15.0-1.1ubuntu2) ... 232s Selecting previously unselected package libfontconfig1:s390x. 232s Preparing to unpack .../011-libfontconfig1_2.15.0-1.1ubuntu2_s390x.deb ... 232s Unpacking libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 232s Selecting previously unselected package libsharpyuv0:s390x. 232s Preparing to unpack .../012-libsharpyuv0_1.5.0-0.1_s390x.deb ... 232s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 232s Selecting previously unselected package libaom3:s390x. 232s Preparing to unpack .../013-libaom3_3.12.0-1_s390x.deb ... 232s Unpacking libaom3:s390x (3.12.0-1) ... 232s Selecting previously unselected package libheif-plugin-aomdec:s390x. 232s Preparing to unpack .../014-libheif-plugin-aomdec_1.19.5-1build1_s390x.deb ... 232s Unpacking libheif-plugin-aomdec:s390x (1.19.5-1build1) ... 232s Selecting previously unselected package libde265-0:s390x. 232s Preparing to unpack .../015-libde265-0_1.0.15-1build4_s390x.deb ... 232s Unpacking libde265-0:s390x (1.0.15-1build4) ... 232s Selecting previously unselected package libheif-plugin-libde265:s390x. 232s Preparing to unpack .../016-libheif-plugin-libde265_1.19.5-1build1_s390x.deb ... 232s Unpacking libheif-plugin-libde265:s390x (1.19.5-1build1) ... 232s Selecting previously unselected package libheif1:s390x. 232s Preparing to unpack .../017-libheif1_1.19.5-1build1_s390x.deb ... 232s Unpacking libheif1:s390x (1.19.5-1build1) ... 232s Selecting previously unselected package libjbig0:s390x. 232s Preparing to unpack .../018-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 232s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 232s Selecting previously unselected package libjpeg-turbo8:s390x. 232s Preparing to unpack .../019-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 232s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 232s Selecting previously unselected package libjpeg8:s390x. 232s Preparing to unpack .../020-libjpeg8_8c-2ubuntu11_s390x.deb ... 232s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 232s Selecting previously unselected package liblcms2-2:s390x. 232s Preparing to unpack .../021-liblcms2-2_2.16-2_s390x.deb ... 232s Unpacking liblcms2-2:s390x (2.16-2) ... 232s Selecting previously unselected package liblqr-1-0:s390x. 232s Preparing to unpack .../022-liblqr-1-0_0.4.2-2.1build2_s390x.deb ... 232s Unpacking liblqr-1-0:s390x (0.4.2-2.1build2) ... 232s Selecting previously unselected package libltdl7:s390x. 232s Preparing to unpack .../023-libltdl7_2.5.4-3build1_s390x.deb ... 232s Unpacking libltdl7:s390x (2.5.4-3build1) ... 232s Selecting previously unselected package libopenjp2-7:s390x. 232s Preparing to unpack .../024-libopenjp2-7_2.5.0-2ubuntu3_s390x.deb ... 232s Unpacking libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 232s Selecting previously unselected package libraw23t64:s390x. 232s Preparing to unpack .../025-libraw23t64_0.21.3-1_s390x.deb ... 232s Unpacking libraw23t64:s390x (0.21.3-1) ... 232s Selecting previously unselected package libdeflate0:s390x. 232s Preparing to unpack .../026-libdeflate0_1.23-1_s390x.deb ... 232s Unpacking libdeflate0:s390x (1.23-1) ... 232s Selecting previously unselected package libwebp7:s390x. 232s Preparing to unpack .../027-libwebp7_1.5.0-0.1_s390x.deb ... 232s Unpacking libwebp7:s390x (1.5.0-0.1) ... 232s Selecting previously unselected package libtiff6:s390x. 232s Preparing to unpack .../028-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 232s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 232s Selecting previously unselected package libwebpdemux2:s390x. 232s Preparing to unpack .../029-libwebpdemux2_1.5.0-0.1_s390x.deb ... 232s Unpacking libwebpdemux2:s390x (1.5.0-0.1) ... 232s Selecting previously unselected package libwebpmux3:s390x. 232s Preparing to unpack .../030-libwebpmux3_1.5.0-0.1_s390x.deb ... 232s Unpacking libwebpmux3:s390x (1.5.0-0.1) ... 232s Selecting previously unselected package imagemagick-7-common. 232s Preparing to unpack .../031-imagemagick-7-common_8%3a7.1.1.43+dfsg1-1_all.deb ... 232s Unpacking imagemagick-7-common (8:7.1.1.43+dfsg1-1) ... 232s Selecting previously unselected package libmagickcore-7.q16-10:s390x. 232s Preparing to unpack .../032-libmagickcore-7.q16-10_8%3a7.1.1.43+dfsg1-1_s390x.deb ... 232s Unpacking libmagickcore-7.q16-10:s390x (8:7.1.1.43+dfsg1-1) ... 232s Selecting previously unselected package libmagickwand-7.q16-10:s390x. 232s Preparing to unpack .../033-libmagickwand-7.q16-10_8%3a7.1.1.43+dfsg1-1_s390x.deb ... 232s Unpacking libmagickwand-7.q16-10:s390x (8:7.1.1.43+dfsg1-1) ... 232s Selecting previously unselected package poppler-data. 232s Preparing to unpack .../034-poppler-data_0.4.12-1_all.deb ... 232s Unpacking poppler-data (0.4.12-1) ... 232s Selecting previously unselected package libgdk-pixbuf2.0-common. 232s Preparing to unpack .../035-libgdk-pixbuf2.0-common_2.42.12+dfsg-2_all.deb ... 232s Unpacking libgdk-pixbuf2.0-common (2.42.12+dfsg-2) ... 232s Selecting previously unselected package libgdk-pixbuf-2.0-0:s390x. 232s Preparing to unpack .../036-libgdk-pixbuf-2.0-0_2.42.12+dfsg-2_s390x.deb ... 232s Unpacking libgdk-pixbuf-2.0-0:s390x (2.42.12+dfsg-2) ... 232s Selecting previously unselected package gtk-update-icon-cache. 232s Preparing to unpack .../037-gtk-update-icon-cache_4.17.4+ds-4_s390x.deb ... 232s No diversion 'diversion of /usr/sbin/update-icon-caches to /usr/sbin/update-icon-caches.gtk2 by libgtk-3-bin', none removed. 232s No diversion 'diversion of /usr/share/man/man8/update-icon-caches.8.gz to /usr/share/man/man8/update-icon-caches.gtk2.8.gz by libgtk-3-bin', none removed. 232s Unpacking gtk-update-icon-cache (4.17.4+ds-4) ... 232s Selecting previously unselected package hicolor-icon-theme. 232s Preparing to unpack .../038-hicolor-icon-theme_0.18-2_all.deb ... 232s Unpacking hicolor-icon-theme (0.18-2) ... 232s Selecting previously unselected package adwaita-icon-theme. 232s Preparing to unpack .../039-adwaita-icon-theme_48~beta-3_all.deb ... 232s Unpacking adwaita-icon-theme (48~beta-3) ... 232s Selecting previously unselected package at-spi2-common. 232s Preparing to unpack .../040-at-spi2-common_2.55.2-1_all.deb ... 232s Unpacking at-spi2-common (2.55.2-1) ... 232s Selecting previously unselected package libpixman-1-0:s390x. 232s Preparing to unpack .../041-libpixman-1-0_0.44.0-3_s390x.deb ... 232s Unpacking libpixman-1-0:s390x (0.44.0-3) ... 232s Selecting previously unselected package libxcb-render0:s390x. 232s Preparing to unpack .../042-libxcb-render0_1.17.0-2_s390x.deb ... 232s Unpacking libxcb-render0:s390x (1.17.0-2) ... 232s Selecting previously unselected package libxcb-shm0:s390x. 232s Preparing to unpack .../043-libxcb-shm0_1.17.0-2_s390x.deb ... 232s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 232s Selecting previously unselected package libxrender1:s390x. 232s Preparing to unpack .../044-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 232s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 232s Selecting previously unselected package libcairo2:s390x. 232s Preparing to unpack .../045-libcairo2_1.18.2-2_s390x.deb ... 232s Unpacking libcairo2:s390x (1.18.2-2) ... 232s Selecting previously unselected package libblas3:s390x. 232s Preparing to unpack .../046-libblas3_3.12.1-2_s390x.deb ... 232s Unpacking libblas3:s390x (3.12.1-2) ... 232s Selecting previously unselected package libglvnd0:s390x. 232s Preparing to unpack .../047-libglvnd0_1.7.0-1build1_s390x.deb ... 232s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 232s Selecting previously unselected package libglapi-mesa:s390x. 232s Preparing to unpack .../048-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 232s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 232s Selecting previously unselected package libx11-xcb1:s390x. 232s Preparing to unpack .../049-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 232s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 232s Selecting previously unselected package libxcb-dri3-0:s390x. 232s Preparing to unpack .../050-libxcb-dri3-0_1.17.0-2_s390x.deb ... 232s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 232s Selecting previously unselected package libxcb-glx0:s390x. 232s Preparing to unpack .../051-libxcb-glx0_1.17.0-2_s390x.deb ... 232s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 232s Selecting previously unselected package libxcb-present0:s390x. 232s Preparing to unpack .../052-libxcb-present0_1.17.0-2_s390x.deb ... 232s Unpacking libxcb-present0:s390x (1.17.0-2) ... 232s Selecting previously unselected package libxcb-xfixes0:s390x. 232s Preparing to unpack .../053-libxcb-xfixes0_1.17.0-2_s390x.deb ... 232s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 232s Selecting previously unselected package libxxf86vm1:s390x. 232s Preparing to unpack .../054-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 232s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 232s Selecting previously unselected package libdrm-radeon1:s390x. 232s Preparing to unpack .../055-libdrm-radeon1_2.4.123-1_s390x.deb ... 232s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 232s Selecting previously unselected package libxcb-randr0:s390x. 232s Preparing to unpack .../056-libxcb-randr0_1.17.0-2_s390x.deb ... 232s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 232s Selecting previously unselected package libxcb-sync1:s390x. 232s Preparing to unpack .../057-libxcb-sync1_1.17.0-2_s390x.deb ... 232s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 232s Selecting previously unselected package libxshmfence1:s390x. 232s Preparing to unpack .../058-libxshmfence1_1.3-1build5_s390x.deb ... 232s Unpacking libxshmfence1:s390x (1.3-1build5) ... 232s Selecting previously unselected package mesa-libgallium:s390x. 232s Preparing to unpack .../059-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 232s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 232s Selecting previously unselected package libwayland-server0:s390x. 232s Preparing to unpack .../060-libwayland-server0_1.23.1-1_s390x.deb ... 232s Unpacking libwayland-server0:s390x (1.23.1-1) ... 232s Selecting previously unselected package libgbm1:s390x. 232s Preparing to unpack .../061-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 232s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 232s Selecting previously unselected package libvulkan1:s390x. 232s Preparing to unpack .../062-libvulkan1_1.4.304.0-1_s390x.deb ... 232s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 232s Selecting previously unselected package libgl1-mesa-dri:s390x. 232s Preparing to unpack .../063-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 232s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 232s Selecting previously unselected package libglx-mesa0:s390x. 232s Preparing to unpack .../064-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 232s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 233s Selecting previously unselected package libglx0:s390x. 233s Preparing to unpack .../065-libglx0_1.7.0-1build1_s390x.deb ... 233s Unpacking libglx0:s390x (1.7.0-1build1) ... 233s Selecting previously unselected package libgfortran5:s390x. 233s Preparing to unpack .../066-libgfortran5_14.2.0-17ubuntu1_s390x.deb ... 233s Unpacking libgfortran5:s390x (14.2.0-17ubuntu1) ... 233s Selecting previously unselected package liblapack3:s390x. 233s Preparing to unpack .../067-liblapack3_3.12.1-2_s390x.deb ... 233s Unpacking liblapack3:s390x (3.12.1-2) ... 233s Selecting previously unselected package libtbbmalloc2:s390x. 233s Preparing to unpack .../068-libtbbmalloc2_2022.0.0-1_s390x.deb ... 233s Unpacking libtbbmalloc2:s390x (2022.0.0-1) ... 233s Selecting previously unselected package libhwloc15:s390x. 233s Preparing to unpack .../069-libhwloc15_2.11.2-1build1_s390x.deb ... 233s Unpacking libhwloc15:s390x (2.11.2-1build1) ... 233s Selecting previously unselected package libtbbbind-2-5:s390x. 233s Preparing to unpack .../070-libtbbbind-2-5_2022.0.0-1_s390x.deb ... 233s Unpacking libtbbbind-2-5:s390x (2022.0.0-1) ... 233s Selecting previously unselected package libtbb12:s390x. 233s Preparing to unpack .../071-libtbb12_2022.0.0-1_s390x.deb ... 233s Unpacking libtbb12:s390x (2022.0.0-1) ... 233s Selecting previously unselected package libopencv-core406t64:s390x. 233s Preparing to unpack .../072-libopencv-core406t64_4.6.0+dfsg-14build3_s390x.deb ... 233s Unpacking libopencv-core406t64:s390x (4.6.0+dfsg-14build3) ... 233s Selecting previously unselected package gdal-data. 233s Preparing to unpack .../073-gdal-data_3.10.1+dfsg-1build2_all.deb ... 233s Unpacking gdal-data (3.10.1+dfsg-1build2) ... 233s Selecting previously unselected package gdal-plugins:s390x. 233s Preparing to unpack .../074-gdal-plugins_3.10.1+dfsg-1build2_s390x.deb ... 233s Unpacking gdal-plugins:s390x (3.10.1+dfsg-1build2) ... 233s Selecting previously unselected package libaec0:s390x. 233s Preparing to unpack .../075-libaec0_1.1.3-1_s390x.deb ... 233s Unpacking libaec0:s390x (1.1.3-1) ... 233s Selecting previously unselected package libarpack2t64:s390x. 233s Preparing to unpack .../076-libarpack2t64_3.9.1-4_s390x.deb ... 233s Unpacking libarpack2t64:s390x (3.9.1-4) ... 233s Selecting previously unselected package libarmadillo14. 233s Preparing to unpack .../077-libarmadillo14_1%3a14.2.1+dfsg-1_s390x.deb ... 233s Unpacking libarmadillo14 (1:14.2.1+dfsg-1) ... 233s Selecting previously unselected package libdav1d7:s390x. 233s Preparing to unpack .../078-libdav1d7_1.5.1-1_s390x.deb ... 233s Unpacking libdav1d7:s390x (1.5.1-1) ... 233s Selecting previously unselected package librav1e0.7:s390x. 233s Preparing to unpack .../079-librav1e0.7_0.7.1-9_s390x.deb ... 233s Unpacking librav1e0.7:s390x (0.7.1-9) ... 233s Selecting previously unselected package libsvtav1enc2:s390x. 233s Preparing to unpack .../080-libsvtav1enc2_2.3.0+dfsg-1_s390x.deb ... 233s Unpacking libsvtav1enc2:s390x (2.3.0+dfsg-1) ... 233s Selecting previously unselected package libyuv0:s390x. 233s Preparing to unpack .../081-libyuv0_0.0.1904.20250204-1_s390x.deb ... 233s Unpacking libyuv0:s390x (0.0.1904.20250204-1) ... 233s Selecting previously unselected package libavif16:s390x. 233s Preparing to unpack .../082-libavif16_1.1.1-1ubuntu1_s390x.deb ... 233s Unpacking libavif16:s390x (1.1.1-1ubuntu1) ... 233s Selecting previously unselected package libsnappy1v5:s390x. 233s Preparing to unpack .../083-libsnappy1v5_1.2.1-1_s390x.deb ... 233s Unpacking libsnappy1v5:s390x (1.2.1-1) ... 233s Selecting previously unselected package libblosc1:s390x. 233s Preparing to unpack .../084-libblosc1_1.21.5+ds-1build1_s390x.deb ... 233s Unpacking libblosc1:s390x (1.21.5+ds-1build1) ... 233s Selecting previously unselected package libcfitsio10t64:s390x. 233s Preparing to unpack .../085-libcfitsio10t64_4.5.0-5_s390x.deb ... 233s Unpacking libcfitsio10t64:s390x (4.5.0-5) ... 233s Selecting previously unselected package libminizip1t64:s390x. 233s Preparing to unpack .../086-libminizip1t64_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 233s Unpacking libminizip1t64:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 233s Selecting previously unselected package libfreexl1:s390x. 233s Preparing to unpack .../087-libfreexl1_2.0.0-1build2_s390x.deb ... 233s Unpacking libfreexl1:s390x (2.0.0-1build2) ... 233s Selecting previously unselected package libfyba0t64:s390x. 233s Preparing to unpack .../088-libfyba0t64_4.1.1-11build1_s390x.deb ... 233s Unpacking libfyba0t64:s390x (4.1.1-11build1) ... 233s Selecting previously unselected package libgeos3.13.0:s390x. 233s Preparing to unpack .../089-libgeos3.13.0_3.13.0-1_s390x.deb ... 233s Unpacking libgeos3.13.0:s390x (3.13.0-1) ... 233s Selecting previously unselected package libgeos-c1t64:s390x. 233s Preparing to unpack .../090-libgeos-c1t64_3.13.0-1_s390x.deb ... 233s Unpacking libgeos-c1t64:s390x (3.13.0-1) ... 233s Selecting previously unselected package proj-data. 233s Preparing to unpack .../091-proj-data_9.5.1-1_all.deb ... 233s Unpacking proj-data (9.5.1-1) ... 233s Selecting previously unselected package libproj25:s390x. 233s Preparing to unpack .../092-libproj25_9.5.1-1_s390x.deb ... 233s Unpacking libproj25:s390x (9.5.1-1) ... 233s Selecting previously unselected package libgeotiff5:s390x. 233s Preparing to unpack .../093-libgeotiff5_1.7.3-1_s390x.deb ... 233s Unpacking libgeotiff5:s390x (1.7.3-1) ... 233s Selecting previously unselected package libgif7:s390x. 233s Preparing to unpack .../094-libgif7_5.2.2-1ubuntu1_s390x.deb ... 233s Unpacking libgif7:s390x (5.2.2-1ubuntu1) ... 233s Selecting previously unselected package libsz2:s390x. 233s Preparing to unpack .../095-libsz2_1.1.3-1_s390x.deb ... 233s Unpacking libsz2:s390x (1.1.3-1) ... 233s Selecting previously unselected package libhdf4-0-alt:s390x. 233s Preparing to unpack .../096-libhdf4-0-alt_4.3.0-1_s390x.deb ... 233s Unpacking libhdf4-0-alt:s390x (4.3.0-1) ... 233s Selecting previously unselected package libhdf5-310:s390x. 233s Preparing to unpack .../097-libhdf5-310_1.14.5+repack-3_s390x.deb ... 233s Unpacking libhdf5-310:s390x (1.14.5+repack-3) ... 233s Selecting previously unselected package liburiparser1:s390x. 233s Preparing to unpack .../098-liburiparser1_0.9.8+dfsg-2_s390x.deb ... 233s Unpacking liburiparser1:s390x (0.9.8+dfsg-2) ... 233s Selecting previously unselected package libkmlbase1t64:s390x. 233s Preparing to unpack .../099-libkmlbase1t64_1.3.0-12build1_s390x.deb ... 233s Unpacking libkmlbase1t64:s390x (1.3.0-12build1) ... 233s Selecting previously unselected package libkmldom1t64:s390x. 233s Preparing to unpack .../100-libkmldom1t64_1.3.0-12build1_s390x.deb ... 233s Unpacking libkmldom1t64:s390x (1.3.0-12build1) ... 233s Selecting previously unselected package libkmlengine1t64:s390x. 233s Preparing to unpack .../101-libkmlengine1t64_1.3.0-12build1_s390x.deb ... 233s Unpacking libkmlengine1t64:s390x (1.3.0-12build1) ... 233s Selecting previously unselected package mysql-common. 233s Preparing to unpack .../102-mysql-common_5.8+1.1.1_all.deb ... 233s Unpacking mysql-common (5.8+1.1.1) ... 233s Selecting previously unselected package libmysqlclient24:s390x. 233s Preparing to unpack .../103-libmysqlclient24_8.4.4-0ubuntu1_s390x.deb ... 233s Unpacking libmysqlclient24:s390x (8.4.4-0ubuntu1) ... 233s Selecting previously unselected package libhdf5-hl-310:s390x. 233s Preparing to unpack .../104-libhdf5-hl-310_1.14.5+repack-3_s390x.deb ... 233s Unpacking libhdf5-hl-310:s390x (1.14.5+repack-3) ... 233s Selecting previously unselected package libnetcdf19t64:s390x. 233s Preparing to unpack .../105-libnetcdf19t64_1%3a4.9.2-6ubuntu2_s390x.deb ... 233s Unpacking libnetcdf19t64:s390x (1:4.9.2-6ubuntu2) ... 233s Selecting previously unselected package libodbc2:s390x. 233s Preparing to unpack .../106-libodbc2_2.3.12-2ubuntu1_s390x.deb ... 233s Unpacking libodbc2:s390x (2.3.12-2ubuntu1) ... 233s Selecting previously unselected package unixodbc-common. 233s Preparing to unpack .../107-unixodbc-common_2.3.12-2ubuntu1_all.deb ... 233s Unpacking unixodbc-common (2.3.12-2ubuntu1) ... 233s Selecting previously unselected package libodbcinst2:s390x. 233s Preparing to unpack .../108-libodbcinst2_2.3.12-2ubuntu1_s390x.deb ... 233s Unpacking libodbcinst2:s390x (2.3.12-2ubuntu1) ... 233s Selecting previously unselected package libogdi4.1:s390x. 233s Preparing to unpack .../109-libogdi4.1_4.1.1+ds-5_s390x.deb ... 233s Unpacking libogdi4.1:s390x (4.1.1+ds-5) ... 233s Selecting previously unselected package libgpgmepp6t64:s390x. 233s Preparing to unpack .../110-libgpgmepp6t64_1.24.1-4ubuntu1_s390x.deb ... 233s Unpacking libgpgmepp6t64:s390x (1.24.1-4ubuntu1) ... 233s Selecting previously unselected package libpoppler145:s390x. 233s Preparing to unpack .../111-libpoppler145_25.01.0-4_s390x.deb ... 233s Unpacking libpoppler145:s390x (25.01.0-4) ... 233s Selecting previously unselected package libpq5:s390x. 233s Preparing to unpack .../112-libpq5_17.3-2_s390x.deb ... 233s Unpacking libpq5:s390x (17.3-2) ... 233s Selecting previously unselected package libqhull-r8.0:s390x. 233s Preparing to unpack .../113-libqhull-r8.0_2020.2-6build1_s390x.deb ... 233s Unpacking libqhull-r8.0:s390x (2020.2-6build1) ... 233s Selecting previously unselected package librttopo1:s390x. 233s Preparing to unpack .../114-librttopo1_1.1.0-3build2_s390x.deb ... 233s Unpacking librttopo1:s390x (1.1.0-3build2) ... 233s Selecting previously unselected package libspatialite8t64:s390x. 233s Preparing to unpack .../115-libspatialite8t64_5.1.0-3build1_s390x.deb ... 233s Unpacking libspatialite8t64:s390x (5.1.0-3build1) ... 233s Selecting previously unselected package libxerces-c3.2t64:s390x. 233s Preparing to unpack .../116-libxerces-c3.2t64_3.2.4+debian-1.3build1_s390x.deb ... 233s Unpacking libxerces-c3.2t64:s390x (3.2.4+debian-1.3build1) ... 233s Selecting previously unselected package libgdal36:s390x. 233s Preparing to unpack .../117-libgdal36_3.10.1+dfsg-1build2_s390x.deb ... 233s Unpacking libgdal36:s390x (3.10.1+dfsg-1build2) ... 234s Selecting previously unselected package libcharls2:s390x. 234s Preparing to unpack .../118-libcharls2_2.4.2-2build2_s390x.deb ... 234s Unpacking libcharls2:s390x (2.4.2-2build2) ... 234s Selecting previously unselected package libsocket++1:s390x. 234s Preparing to unpack .../119-libsocket++1_1.12.13+git20131030.5d039ba-1build1_s390x.deb ... 234s Unpacking libsocket++1:s390x (1.12.13+git20131030.5d039ba-1build1) ... 234s Selecting previously unselected package libgdcm3.0t64:s390x. 234s Preparing to unpack .../120-libgdcm3.0t64_3.0.24-5ubuntu1_s390x.deb ... 234s Unpacking libgdcm3.0t64:s390x (3.0.24-5ubuntu1) ... 234s Selecting previously unselected package libopencv-imgproc406t64:s390x. 234s Preparing to unpack .../121-libopencv-imgproc406t64_4.6.0+dfsg-14build3_s390x.deb ... 234s Unpacking libopencv-imgproc406t64:s390x (4.6.0+dfsg-14build3) ... 234s Selecting previously unselected package libimath-3-1-29t64:s390x. 234s Preparing to unpack .../122-libimath-3-1-29t64_3.1.12-1ubuntu1_s390x.deb ... 234s Unpacking libimath-3-1-29t64:s390x (3.1.12-1ubuntu1) ... 234s Selecting previously unselected package libopenexr-3-1-30:s390x. 234s Preparing to unpack .../123-libopenexr-3-1-30_3.1.5-5.1build3_s390x.deb ... 234s Unpacking libopenexr-3-1-30:s390x (3.1.5-5.1build3) ... 234s Selecting previously unselected package libopencv-imgcodecs406t64:s390x. 234s Preparing to unpack .../124-libopencv-imgcodecs406t64_4.6.0+dfsg-14build3_s390x.deb ... 234s Unpacking libopencv-imgcodecs406t64:s390x (4.6.0+dfsg-14build3) ... 234s Selecting previously unselected package fontconfig. 234s Preparing to unpack .../125-fontconfig_2.15.0-1.1ubuntu2_s390x.deb ... 234s Unpacking fontconfig (2.15.0-1.1ubuntu2) ... 234s Selecting previously unselected package libgraphite2-3:s390x. 234s Preparing to unpack .../126-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 234s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 234s Selecting previously unselected package libharfbuzz0b:s390x. 234s Preparing to unpack .../127-libharfbuzz0b_10.2.0-1_s390x.deb ... 234s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 234s Selecting previously unselected package libthai-data. 234s Preparing to unpack .../128-libthai-data_0.1.29-2build1_all.deb ... 234s Unpacking libthai-data (0.1.29-2build1) ... 234s Selecting previously unselected package libdatrie1:s390x. 234s Preparing to unpack .../129-libdatrie1_0.2.13-3build1_s390x.deb ... 234s Unpacking libdatrie1:s390x (0.2.13-3build1) ... 234s Selecting previously unselected package libthai0:s390x. 234s Preparing to unpack .../130-libthai0_0.1.29-2build1_s390x.deb ... 234s Unpacking libthai0:s390x (0.1.29-2build1) ... 234s Selecting previously unselected package libpango-1.0-0:s390x. 234s Preparing to unpack .../131-libpango-1.0-0_1.56.1-1_s390x.deb ... 234s Unpacking libpango-1.0-0:s390x (1.56.1-1) ... 234s Selecting previously unselected package libpangoft2-1.0-0:s390x. 234s Preparing to unpack .../132-libpangoft2-1.0-0_1.56.1-1_s390x.deb ... 234s Unpacking libpangoft2-1.0-0:s390x (1.56.1-1) ... 234s Selecting previously unselected package libpangocairo-1.0-0:s390x. 234s Preparing to unpack .../133-libpangocairo-1.0-0_1.56.1-1_s390x.deb ... 234s Unpacking libpangocairo-1.0-0:s390x (1.56.1-1) ... 234s Selecting previously unselected package libpoppler-glib8t64:s390x. 234s Preparing to unpack .../134-libpoppler-glib8t64_25.01.0-4_s390x.deb ... 234s Unpacking libpoppler-glib8t64:s390x (25.01.0-4) ... 234s Selecting previously unselected package tex-common. 234s Preparing to unpack .../135-tex-common_6.18_all.deb ... 234s Unpacking tex-common (6.18) ... 234s Selecting previously unselected package libxml-namespacesupport-perl. 234s Preparing to unpack .../136-libxml-namespacesupport-perl_1.12-2_all.deb ... 234s Unpacking libxml-namespacesupport-perl (1.12-2) ... 234s Selecting previously unselected package libxml-sax-base-perl. 234s Preparing to unpack .../137-libxml-sax-base-perl_1.09-3_all.deb ... 234s Unpacking libxml-sax-base-perl (1.09-3) ... 234s Selecting previously unselected package libxml-sax-perl. 234s Preparing to unpack .../138-libxml-sax-perl_1.02+dfsg-4_all.deb ... 234s Unpacking libxml-sax-perl (1.02+dfsg-4) ... 234s Selecting previously unselected package libxml-libxml-perl. 234s Preparing to unpack .../139-libxml-libxml-perl_2.0207+dfsg+really+2.0134-5build1_s390x.deb ... 234s Unpacking libxml-libxml-perl (2.0207+dfsg+really+2.0134-5build1) ... 234s Selecting previously unselected package libxml-simple-perl. 234s Preparing to unpack .../140-libxml-simple-perl_2.25-2_all.deb ... 234s Unpacking libxml-simple-perl (2.25-2) ... 234s Selecting previously unselected package libxml-writer-perl. 234s Preparing to unpack .../141-libxml-writer-perl_0.900-2_all.deb ... 234s Unpacking libxml-writer-perl (0.900-2) ... 234s Selecting previously unselected package gir1.2-gdkpixbuf-2.0:s390x. 234s Preparing to unpack .../142-gir1.2-gdkpixbuf-2.0_2.42.12+dfsg-2_s390x.deb ... 234s Unpacking gir1.2-gdkpixbuf-2.0:s390x (2.42.12+dfsg-2) ... 234s Selecting previously unselected package libatk1.0-0t64:s390x. 234s Preparing to unpack .../143-libatk1.0-0t64_2.55.2-1_s390x.deb ... 234s Unpacking libatk1.0-0t64:s390x (2.55.2-1) ... 234s Selecting previously unselected package gir1.2-atk-1.0:s390x. 234s Preparing to unpack .../144-gir1.2-atk-1.0_2.55.2-1_s390x.deb ... 234s Unpacking gir1.2-atk-1.0:s390x (2.55.2-1) ... 234s Selecting previously unselected package libcairo-gobject2:s390x. 234s Preparing to unpack .../145-libcairo-gobject2_1.18.2-2_s390x.deb ... 234s Unpacking libcairo-gobject2:s390x (1.18.2-2) ... 234s Selecting previously unselected package gir1.2-freedesktop:s390x. 234s Preparing to unpack .../146-gir1.2-freedesktop_1.82.0-4_s390x.deb ... 234s Unpacking gir1.2-freedesktop:s390x (1.82.0-4) ... 234s Selecting previously unselected package libharfbuzz-gobject0:s390x. 234s Preparing to unpack .../147-libharfbuzz-gobject0_10.2.0-1_s390x.deb ... 234s Unpacking libharfbuzz-gobject0:s390x (10.2.0-1) ... 234s Selecting previously unselected package gir1.2-harfbuzz-0.0:s390x. 234s Preparing to unpack .../148-gir1.2-harfbuzz-0.0_10.2.0-1_s390x.deb ... 234s Unpacking gir1.2-harfbuzz-0.0:s390x (10.2.0-1) ... 234s Selecting previously unselected package libxft2:s390x. 234s Preparing to unpack .../149-libxft2_2.3.6-1build1_s390x.deb ... 234s Unpacking libxft2:s390x (2.3.6-1build1) ... 234s Selecting previously unselected package libpangoxft-1.0-0:s390x. 234s Preparing to unpack .../150-libpangoxft-1.0-0_1.56.1-1_s390x.deb ... 234s Unpacking libpangoxft-1.0-0:s390x (1.56.1-1) ... 234s Selecting previously unselected package gir1.2-pango-1.0:s390x. 234s Preparing to unpack .../151-gir1.2-pango-1.0_1.56.1-1_s390x.deb ... 234s Unpacking gir1.2-pango-1.0:s390x (1.56.1-1) ... 234s Selecting previously unselected package libxi6:s390x. 234s Preparing to unpack .../152-libxi6_2%3a1.8.2-1_s390x.deb ... 234s Unpacking libxi6:s390x (2:1.8.2-1) ... 234s Selecting previously unselected package libatspi2.0-0t64:s390x. 234s Preparing to unpack .../153-libatspi2.0-0t64_2.55.2-1_s390x.deb ... 234s Unpacking libatspi2.0-0t64:s390x (2.55.2-1) ... 234s Selecting previously unselected package libatk-bridge2.0-0t64:s390x. 234s Preparing to unpack .../154-libatk-bridge2.0-0t64_2.55.2-1_s390x.deb ... 234s Unpacking libatk-bridge2.0-0t64:s390x (2.55.2-1) ... 234s Selecting previously unselected package libcolord2:s390x. 234s Preparing to unpack .../155-libcolord2_1.4.7-1build2_s390x.deb ... 234s Unpacking libcolord2:s390x (1.4.7-1build2) ... 234s Selecting previously unselected package libavahi-common-data:s390x. 234s Preparing to unpack .../156-libavahi-common-data_0.8-14ubuntu1_s390x.deb ... 234s Unpacking libavahi-common-data:s390x (0.8-14ubuntu1) ... 234s Selecting previously unselected package libavahi-common3:s390x. 234s Preparing to unpack .../157-libavahi-common3_0.8-14ubuntu1_s390x.deb ... 234s Unpacking libavahi-common3:s390x (0.8-14ubuntu1) ... 234s Selecting previously unselected package libavahi-client3:s390x. 234s Preparing to unpack .../158-libavahi-client3_0.8-14ubuntu1_s390x.deb ... 234s Unpacking libavahi-client3:s390x (0.8-14ubuntu1) ... 234s Selecting previously unselected package libcups2t64:s390x. 234s Preparing to unpack .../159-libcups2t64_2.4.11-0ubuntu2_s390x.deb ... 234s Unpacking libcups2t64:s390x (2.4.11-0ubuntu2) ... 234s Selecting previously unselected package libepoxy0:s390x. 234s Preparing to unpack .../160-libepoxy0_1.5.10-2_s390x.deb ... 234s Unpacking libepoxy0:s390x (1.5.10-2) ... 234s Selecting previously unselected package libwayland-client0:s390x. 234s Preparing to unpack .../161-libwayland-client0_1.23.1-1_s390x.deb ... 234s Unpacking libwayland-client0:s390x (1.23.1-1) ... 234s Selecting previously unselected package libwayland-cursor0:s390x. 234s Preparing to unpack .../162-libwayland-cursor0_1.23.1-1_s390x.deb ... 234s Unpacking libwayland-cursor0:s390x (1.23.1-1) ... 234s Selecting previously unselected package libwayland-egl1:s390x. 234s Preparing to unpack .../163-libwayland-egl1_1.23.1-1_s390x.deb ... 234s Unpacking libwayland-egl1:s390x (1.23.1-1) ... 234s Selecting previously unselected package libxcomposite1:s390x. 234s Preparing to unpack .../164-libxcomposite1_1%3a0.4.6-1_s390x.deb ... 234s Unpacking libxcomposite1:s390x (1:0.4.6-1) ... 234s Selecting previously unselected package libxfixes3:s390x. 234s Preparing to unpack .../165-libxfixes3_1%3a6.0.0-2build1_s390x.deb ... 234s Unpacking libxfixes3:s390x (1:6.0.0-2build1) ... 234s Selecting previously unselected package libxcursor1:s390x. 234s Preparing to unpack .../166-libxcursor1_1%3a1.2.3-1_s390x.deb ... 234s Unpacking libxcursor1:s390x (1:1.2.3-1) ... 234s Selecting previously unselected package libxdamage1:s390x. 234s Preparing to unpack .../167-libxdamage1_1%3a1.1.6-1build1_s390x.deb ... 234s Unpacking libxdamage1:s390x (1:1.1.6-1build1) ... 234s Selecting previously unselected package libxinerama1:s390x. 234s Preparing to unpack .../168-libxinerama1_2%3a1.1.4-3build1_s390x.deb ... 234s Unpacking libxinerama1:s390x (2:1.1.4-3build1) ... 234s Selecting previously unselected package libxrandr2:s390x. 234s Preparing to unpack .../169-libxrandr2_2%3a1.5.4-1_s390x.deb ... 234s Unpacking libxrandr2:s390x (2:1.5.4-1) ... 234s Selecting previously unselected package libdconf1:s390x. 234s Preparing to unpack .../170-libdconf1_0.40.0-5_s390x.deb ... 234s Unpacking libdconf1:s390x (0.40.0-5) ... 234s Selecting previously unselected package dconf-service. 234s Preparing to unpack .../171-dconf-service_0.40.0-5_s390x.deb ... 234s Unpacking dconf-service (0.40.0-5) ... 234s Selecting previously unselected package dconf-gsettings-backend:s390x. 234s Preparing to unpack .../172-dconf-gsettings-backend_0.40.0-5_s390x.deb ... 234s Unpacking dconf-gsettings-backend:s390x (0.40.0-5) ... 234s Selecting previously unselected package libgtk-3-common. 234s Preparing to unpack .../173-libgtk-3-common_3.24.48-3ubuntu1_all.deb ... 234s Unpacking libgtk-3-common (3.24.48-3ubuntu1) ... 234s Selecting previously unselected package libgtk-3-0t64:s390x. 234s Preparing to unpack .../174-libgtk-3-0t64_3.24.48-3ubuntu1_s390x.deb ... 234s Unpacking libgtk-3-0t64:s390x (3.24.48-3ubuntu1) ... 234s Selecting previously unselected package gir1.2-gtk-3.0:s390x. 234s Preparing to unpack .../175-gir1.2-gtk-3.0_3.24.48-3ubuntu1_s390x.deb ... 234s Unpacking gir1.2-gtk-3.0:s390x (3.24.48-3ubuntu1) ... 234s Selecting previously unselected package libcairo-perl. 234s Preparing to unpack .../176-libcairo-perl_1.109-5build1_s390x.deb ... 234s Unpacking libcairo-perl (1.109-5build1) ... 234s Selecting previously unselected package libextutils-depends-perl. 234s Preparing to unpack .../177-libextutils-depends-perl_0.8001-2_all.deb ... 234s Unpacking libextutils-depends-perl (0.8001-2) ... 234s Selecting previously unselected package libglib-perl:s390x. 234s Preparing to unpack .../178-libglib-perl_3%3a1.329.3-3build4_s390x.deb ... 234s Unpacking libglib-perl:s390x (3:1.329.3-3build4) ... 234s Selecting previously unselected package libcairo-gobject-perl. 234s Preparing to unpack .../179-libcairo-gobject-perl_1.005-4build4_s390x.deb ... 234s Unpacking libcairo-gobject-perl (1.005-4build4) ... 235s Selecting previously unselected package libglib-object-introspection-perl. 235s Preparing to unpack .../180-libglib-object-introspection-perl_0.051-2build1_s390x.deb ... 235s Unpacking libglib-object-introspection-perl (0.051-2build1) ... 235s Selecting previously unselected package libgtk3-perl. 235s Preparing to unpack .../181-libgtk3-perl_0.038-3_all.deb ... 235s Unpacking libgtk3-perl (0.038-3) ... 235s Selecting previously unselected package libjxl0.11:s390x. 235s Preparing to unpack .../182-libjxl0.11_0.11.1-1_s390x.deb ... 235s Unpacking libjxl0.11:s390x (0.11.1-1) ... 235s Selecting previously unselected package libwmflite-0.2-7:s390x. 235s Preparing to unpack .../183-libwmflite-0.2-7_0.2.13-1.1build3_s390x.deb ... 235s Unpacking libwmflite-0.2-7:s390x (0.2.13-1.1build3) ... 235s Selecting previously unselected package libgraphicsmagick-q16-3t64. 235s Preparing to unpack .../184-libgraphicsmagick-q16-3t64_1.4+really1.3.45-1build2_s390x.deb ... 235s Unpacking libgraphicsmagick-q16-3t64 (1.4+really1.3.45-1build2) ... 235s Selecting previously unselected package libgraphics-magick-perl. 235s Preparing to unpack .../185-libgraphics-magick-perl_1.4+really1.3.45-1build2_s390x.deb ... 235s Unpacking libgraphics-magick-perl (1.4+really1.3.45-1build2) ... 235s Selecting previously unselected package libdbi-perl:s390x. 235s Preparing to unpack .../186-libdbi-perl_1.647-1_s390x.deb ... 235s Unpacking libdbi-perl:s390x (1.647-1) ... 235s Selecting previously unselected package libdbd-sqlite3-perl:s390x. 235s Preparing to unpack .../187-libdbd-sqlite3-perl_1.76-1_s390x.deb ... 235s Unpacking libdbd-sqlite3-perl:s390x (1.76-1) ... 235s Selecting previously unselected package liblocale-codes-perl. 235s Preparing to unpack .../188-liblocale-codes-perl_3.81-1_all.deb ... 235s Unpacking liblocale-codes-perl (3.81-1) ... 235s Selecting previously unselected package libencode-locale-perl. 235s Preparing to unpack .../189-libencode-locale-perl_1.05-3_all.deb ... 235s Unpacking libencode-locale-perl (1.05-3) ... 235s Selecting previously unselected package libipc-system-simple-perl. 235s Preparing to unpack .../190-libipc-system-simple-perl_1.30-2_all.deb ... 235s Unpacking libipc-system-simple-perl (1.30-2) ... 235s Selecting previously unselected package libfile-basedir-perl. 235s Preparing to unpack .../191-libfile-basedir-perl_0.09-2_all.deb ... 235s Unpacking libfile-basedir-perl (0.09-2) ... 235s Selecting previously unselected package liburi-perl. 235s Preparing to unpack .../192-liburi-perl_5.30-1_all.deb ... 235s Unpacking liburi-perl (5.30-1) ... 235s Selecting previously unselected package libfile-desktopentry-perl. 235s Preparing to unpack .../193-libfile-desktopentry-perl_0.22-3_all.deb ... 235s Unpacking libfile-desktopentry-perl (0.22-3) ... 235s Selecting previously unselected package libfile-mimeinfo-perl. 235s Preparing to unpack .../194-libfile-mimeinfo-perl_0.35-1_all.deb ... 235s Unpacking libfile-mimeinfo-perl (0.35-1) ... 235s Selecting previously unselected package libtext-csv-perl. 235s Preparing to unpack .../195-libtext-csv-perl_2.05-1_all.deb ... 235s Unpacking libtext-csv-perl (2.05-1) ... 235s Selecting previously unselected package fonts-lmodern. 235s Preparing to unpack .../196-fonts-lmodern_2.005-1_all.deb ... 235s Unpacking fonts-lmodern (2.005-1) ... 235s Selecting previously unselected package libpaper2:s390x. 235s Preparing to unpack .../197-libpaper2_2.2.5-0.3_s390x.deb ... 235s Unpacking libpaper2:s390x (2.2.5-0.3) ... 235s Selecting previously unselected package libpaper-utils. 235s Preparing to unpack .../198-libpaper-utils_2.2.5-0.3_s390x.deb ... 235s Unpacking libpaper-utils (2.2.5-0.3) ... 235s Selecting previously unselected package libkpathsea6:s390x. 235s Preparing to unpack .../199-libkpathsea6_2024.20240313.70630+ds-5build2_s390x.deb ... 235s Unpacking libkpathsea6:s390x (2024.20240313.70630+ds-5build2) ... 235s Selecting previously unselected package libptexenc1:s390x. 235s Preparing to unpack .../200-libptexenc1_2024.20240313.70630+ds-5build2_s390x.deb ... 235s Unpacking libptexenc1:s390x (2024.20240313.70630+ds-5build2) ... 235s Selecting previously unselected package libsynctex2:s390x. 235s Preparing to unpack .../201-libsynctex2_2024.20240313.70630+ds-5build2_s390x.deb ... 235s Unpacking libsynctex2:s390x (2024.20240313.70630+ds-5build2) ... 235s Selecting previously unselected package libtexlua53-5:s390x. 235s Preparing to unpack .../202-libtexlua53-5_2024.20240313.70630+ds-5build2_s390x.deb ... 235s Unpacking libtexlua53-5:s390x (2024.20240313.70630+ds-5build2) ... 235s Selecting previously unselected package t1utils. 235s Preparing to unpack .../203-t1utils_1.41-4build3_s390x.deb ... 235s Unpacking t1utils (1.41-4build3) ... 235s Selecting previously unselected package libmpfi0:s390x. 235s Preparing to unpack .../204-libmpfi0_1.5.4+ds-4_s390x.deb ... 235s Unpacking libmpfi0:s390x (1.5.4+ds-4) ... 235s Selecting previously unselected package libpotrace0:s390x. 235s Preparing to unpack .../205-libpotrace0_1.16-2build1_s390x.deb ... 235s Unpacking libpotrace0:s390x (1.16-2build1) ... 235s Selecting previously unselected package libteckit0:s390x. 235s Preparing to unpack .../206-libteckit0_2.5.12+ds1-1_s390x.deb ... 235s Unpacking libteckit0:s390x (2.5.12+ds1-1) ... 235s Selecting previously unselected package libice6:s390x. 235s Preparing to unpack .../207-libice6_2%3a1.1.1-1_s390x.deb ... 235s Unpacking libice6:s390x (2:1.1.1-1) ... 235s Selecting previously unselected package libsm6:s390x. 235s Preparing to unpack .../208-libsm6_2%3a1.2.4-1_s390x.deb ... 235s Unpacking libsm6:s390x (2:1.2.4-1) ... 235s Selecting previously unselected package libxt6t64:s390x. 235s Preparing to unpack .../209-libxt6t64_1%3a1.2.1-1.2build1_s390x.deb ... 235s Unpacking libxt6t64:s390x (1:1.2.1-1.2build1) ... 235s Selecting previously unselected package libxmu6:s390x. 235s Preparing to unpack .../210-libxmu6_2%3a1.1.3-3build2_s390x.deb ... 235s Unpacking libxmu6:s390x (2:1.1.3-3build2) ... 235s Selecting previously unselected package libxpm4:s390x. 235s Preparing to unpack .../211-libxpm4_1%3a3.5.17-1build2_s390x.deb ... 235s Unpacking libxpm4:s390x (1:3.5.17-1build2) ... 235s Selecting previously unselected package libxaw7:s390x. 235s Preparing to unpack .../212-libxaw7_2%3a1.0.16-1_s390x.deb ... 235s Unpacking libxaw7:s390x (2:1.0.16-1) ... 235s Selecting previously unselected package libzzip-0-13t64:s390x. 235s Preparing to unpack .../213-libzzip-0-13t64_0.13.72+dfsg.1-1.2build1_s390x.deb ... 235s Unpacking libzzip-0-13t64:s390x (0.13.72+dfsg.1-1.2build1) ... 235s Selecting previously unselected package texlive-binaries. 235s Preparing to unpack .../214-texlive-binaries_2024.20240313.70630+ds-5build2_s390x.deb ... 235s Unpacking texlive-binaries (2024.20240313.70630+ds-5build2) ... 235s Selecting previously unselected package xdg-utils. 235s Preparing to unpack .../215-xdg-utils_1.2.1-2ubuntu1_all.deb ... 235s Unpacking xdg-utils (1.2.1-2ubuntu1) ... 235s Selecting previously unselected package texlive-base. 235s Preparing to unpack .../216-texlive-base_2024.20241115-1_all.deb ... 235s Unpacking texlive-base (2024.20241115-1) ... 236s Selecting previously unselected package texlive-latex-base. 236s Preparing to unpack .../217-texlive-latex-base_2024.20241115-1_all.deb ... 236s Unpacking texlive-latex-base (2024.20241115-1) ... 236s Selecting previously unselected package texlive-latex-recommended. 236s Preparing to unpack .../218-texlive-latex-recommended_2024.20241115-1_all.deb ... 236s Unpacking texlive-latex-recommended (2024.20241115-1) ... 237s Selecting previously unselected package libapache-pom-java. 237s Preparing to unpack .../219-libapache-pom-java_33-2_all.deb ... 237s Unpacking libapache-pom-java (33-2) ... 237s Selecting previously unselected package libcommons-parent-java. 237s Preparing to unpack .../220-libcommons-parent-java_56-1_all.deb ... 237s Unpacking libcommons-parent-java (56-1) ... 237s Selecting previously unselected package libcommons-logging-java. 237s Preparing to unpack .../221-libcommons-logging-java_1.3.0-1ubuntu1_all.deb ... 237s Unpacking libcommons-logging-java (1.3.0-1ubuntu1) ... 237s Selecting previously unselected package libfontbox-java. 237s Preparing to unpack .../222-libfontbox-java_1%3a1.8.16-5_all.deb ... 237s Unpacking libfontbox-java (1:1.8.16-5) ... 237s Selecting previously unselected package libpdfbox-java. 237s Preparing to unpack .../223-libpdfbox-java_1%3a1.8.16-5_all.deb ... 237s Unpacking libpdfbox-java (1:1.8.16-5) ... 237s Selecting previously unselected package preview-latex-style. 237s Preparing to unpack .../224-preview-latex-style_13.2-1_all.deb ... 237s Unpacking preview-latex-style (13.2-1) ... 237s Selecting previously unselected package texlive-pictures. 237s Preparing to unpack .../225-texlive-pictures_2024.20241115-1_all.deb ... 237s Unpacking texlive-pictures (2024.20241115-1) ... 238s Selecting previously unselected package texlive-latex-extra. 238s Preparing to unpack .../226-texlive-latex-extra_2024.20250114-1_all.deb ... 238s Unpacking texlive-latex-extra (2024.20250114-1) ... 239s Selecting previously unselected package texlive-fonts-recommended. 239s Preparing to unpack .../227-texlive-fonts-recommended_2024.20241115-1_all.deb ... 239s Unpacking texlive-fonts-recommended (2024.20241115-1) ... 240s Selecting previously unselected package texlive-fonts-extra. 240s Preparing to unpack .../228-texlive-fonts-extra_2024.20250114-1_all.deb ... 240s Unpacking texlive-fonts-extra (2024.20250114-1) ... 262s Selecting previously unselected package imagemagick-7.q16. 262s Preparing to unpack .../229-imagemagick-7.q16_8%3a7.1.1.43+dfsg1-1_s390x.deb ... 262s Unpacking imagemagick-7.q16 (8:7.1.1.43+dfsg1-1) ... 262s Selecting previously unselected package imagemagick. 262s Preparing to unpack .../230-imagemagick_8%3a7.1.1.43+dfsg1-1_s390x.deb ... 262s Unpacking imagemagick (8:7.1.1.43+dfsg1-1) ... 262s Selecting previously unselected package libnetpbm11t64:s390x. 262s Preparing to unpack .../231-libnetpbm11t64_2%3a11.09.02-2_s390x.deb ... 262s Unpacking libnetpbm11t64:s390x (2:11.09.02-2) ... 262s Selecting previously unselected package netpbm. 262s Preparing to unpack .../232-netpbm_2%3a11.09.02-2_s390x.deb ... 262s Unpacking netpbm (2:11.09.02-2) ... 262s Selecting previously unselected package libgs-common. 262s Preparing to unpack .../233-libgs-common_10.04.0~dfsg1-2ubuntu1_all.deb ... 262s Unpacking libgs-common (10.04.0~dfsg1-2ubuntu1) ... 262s Selecting previously unselected package libgs10-common. 262s Preparing to unpack .../234-libgs10-common_10.04.0~dfsg1-2ubuntu1_all.deb ... 262s Unpacking libgs10-common (10.04.0~dfsg1-2ubuntu1) ... 262s Selecting previously unselected package libidn12:s390x. 262s Preparing to unpack .../235-libidn12_1.42-3_s390x.deb ... 262s Unpacking libidn12:s390x (1.42-3) ... 262s Selecting previously unselected package libijs-0.35:s390x. 262s Preparing to unpack .../236-libijs-0.35_0.35-15.1build1_s390x.deb ... 262s Unpacking libijs-0.35:s390x (0.35-15.1build1) ... 262s Selecting previously unselected package libjbig2dec0:s390x. 262s Preparing to unpack .../237-libjbig2dec0_0.20-1build3_s390x.deb ... 262s Unpacking libjbig2dec0:s390x (0.20-1build3) ... 262s Selecting previously unselected package libgs10:s390x. 262s Preparing to unpack .../238-libgs10_10.04.0~dfsg1-2ubuntu1_s390x.deb ... 262s Unpacking libgs10:s390x (10.04.0~dfsg1-2ubuntu1) ... 262s Selecting previously unselected package ghostscript. 262s Preparing to unpack .../239-ghostscript_10.04.0~dfsg1-2ubuntu1_s390x.deb ... 262s Unpacking ghostscript (10.04.0~dfsg1-2ubuntu1) ... 262s Selecting previously unselected package poppler-utils. 262s Preparing to unpack .../240-poppler-utils_25.01.0-4_s390x.deb ... 262s Unpacking poppler-utils (25.01.0-4) ... 262s Selecting previously unselected package libarchive-zip-perl. 262s Preparing to unpack .../241-libarchive-zip-perl_1.68-1_all.deb ... 262s Unpacking libarchive-zip-perl (1.68-1) ... 262s Selecting previously unselected package librsvg2-2:s390x. 262s Preparing to unpack .../242-librsvg2-2_2.59.90+dfsg-2_s390x.deb ... 262s Unpacking librsvg2-2:s390x (2.59.90+dfsg-2) ... 263s Selecting previously unselected package librsvg2-common:s390x. 263s Preparing to unpack .../243-librsvg2-common_2.59.90+dfsg-2_s390x.deb ... 263s Unpacking librsvg2-common:s390x (2.59.90+dfsg-2) ... 263s Selecting previously unselected package unzip. 263s Preparing to unpack .../244-unzip_6.0-28ubuntu6_s390x.deb ... 263s Unpacking unzip (6.0-28ubuntu6) ... 263s Selecting previously unselected package libclone-perl:s390x. 263s Preparing to unpack .../245-libclone-perl_0.47-1_s390x.deb ... 263s Unpacking libclone-perl:s390x (0.47-1) ... 263s Selecting previously unselected package auto-multiple-choice-common. 263s Preparing to unpack .../246-auto-multiple-choice-common_1.6.0-4_all.deb ... 263s Unpacking auto-multiple-choice-common (1.6.0-4) ... 263s Selecting previously unselected package auto-multiple-choice. 263s Preparing to unpack .../247-auto-multiple-choice_1.6.0-4_s390x.deb ... 263s Unpacking auto-multiple-choice (1.6.0-4) ... 263s Selecting previously unselected package auto-multiple-choice-doc. 263s Preparing to unpack .../248-auto-multiple-choice-doc_1.6.0-4_all.deb ... 263s Unpacking auto-multiple-choice-doc (1.6.0-4) ... 263s Selecting previously unselected package auto-multiple-choice-doc-pdf. 263s Preparing to unpack .../249-auto-multiple-choice-doc-pdf_1.6.0-4_all.deb ... 263s Unpacking auto-multiple-choice-doc-pdf (1.6.0-4) ... 263s Selecting previously unselected package libio-pty-perl. 263s Preparing to unpack .../250-libio-pty-perl_1%3a1.20-1build3_s390x.deb ... 263s Unpacking libio-pty-perl (1:1.20-1build3) ... 263s Selecting previously unselected package libipc-run-perl. 263s Preparing to unpack .../251-libipc-run-perl_20231003.0-2_all.deb ... 263s Unpacking libipc-run-perl (20231003.0-2) ... 263s Selecting previously unselected package locales-all. 263s Preparing to unpack .../252-locales-all_2.41-1ubuntu1_s390x.deb ... 263s Unpacking locales-all (2.41-1ubuntu1) ... 264s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 264s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 264s Setting up liblcms2-2:s390x (2.16-2) ... 264s Setting up libtbbmalloc2:s390x (2022.0.0-1) ... 264s Setting up libpixman-1-0:s390x (0.44.0-3) ... 264s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 264s Setting up libgpgmepp6t64:s390x (1.24.1-4ubuntu1) ... 264s Setting up libwayland-server0:s390x (1.23.1-1) ... 264s Setting up libaom3:s390x (3.12.0-1) ... 264s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 264s Setting up mysql-common (5.8+1.1.1) ... 264s update-alternatives: using /etc/mysql/my.cnf.fallback to provide /etc/mysql/my.cnf (my.cnf) in auto mode 264s Setting up libxdamage1:s390x (1:1.1.6-1build1) ... 264s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 264s Setting up proj-data (9.5.1-1) ... 264s Setting up libxpm4:s390x (1:3.5.17-1build2) ... 264s Setting up hicolor-icon-theme (0.18-2) ... 264s Setting up libwmflite-0.2-7:s390x (0.2.13-1.1build3) ... 264s Setting up libxi6:s390x (2:1.8.2-1) ... 264s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 264s Setting up libdatrie1:s390x (0.2.13-3build1) ... 264s Setting up libio-pty-perl (1:1.20-1build3) ... 264s Setting up libogdi4.1:s390x (4.1.1+ds-5) ... 264s Setting up libcharls2:s390x (2.4.2-2build2) ... 264s Setting up libxcb-render0:s390x (1.17.0-2) ... 264s Setting up libclone-perl:s390x (0.47-1) ... 264s Setting up libarchive-zip-perl (1.68-1) ... 264s Setting up imagemagick-7-common (8:7.1.1.43+dfsg1-1) ... 264s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 264s Setting up libglvnd0:s390x (1.7.0-1build1) ... 264s Setting up libijs-0.35:s390x (0.35-15.1build1) ... 264s Setting up libxcb-glx0:s390x (1.17.0-2) ... 264s Setting up unzip (6.0-28ubuntu6) ... 264s Setting up libgeos3.13.0:s390x (3.13.0-1) ... 264s Setting up libgs-common (10.04.0~dfsg1-2ubuntu1) ... 264s Setting up libfontbox-java (1:1.8.16-5) ... 264s Setting up libgdk-pixbuf2.0-common (2.42.12+dfsg-2) ... 264s Setting up x11-common (1:7.7+23ubuntu3) ... 265s Setting up libpq5:s390x (17.3-2) ... 265s Setting up libdeflate0:s390x (1.23-1) ... 265s Setting up libxml-namespacesupport-perl (1.12-2) ... 265s Setting up libqhull-r8.0:s390x (2020.2-6build1) ... 265s Setting up libencode-locale-perl (1.05-3) ... 265s Setting up libxcb-shm0:s390x (1.17.0-2) ... 265s Setting up libxerces-c3.2t64:s390x (3.2.4+debian-1.3build1) ... 265s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 265s Setting up libmysqlclient24:s390x (8.4.4-0ubuntu1) ... 265s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 265s Setting up libnetpbm11t64:s390x (2:11.09.02-2) ... 265s Setting up locales-all (2.41-1ubuntu1) ... 265s Setting up libaec0:s390x (1.1.3-1) ... 265s Setting up libcolord2:s390x (1.4.7-1build2) ... 265s Setting up gdal-data (3.10.1+dfsg-1build2) ... 265s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 265s Setting up libextutils-depends-perl (0.8001-2) ... 265s Setting up libsnappy1v5:s390x (1.2.1-1) ... 265s Setting up poppler-data (0.4.12-1) ... 265s Setting up libxcb-present0:s390x (1.17.0-2) ... 265s Setting up libdconf1:s390x (0.40.0-5) ... 265s Setting up tex-common (6.18) ... 265s update-language: texlive-base not installed and configured, doing nothing! 265s Setting up libxml-sax-base-perl (1.09-3) ... 265s Setting up libfontenc1:s390x (1:1.1.8-1build1) ... 265s Setting up libblas3:s390x (3.12.1-2) ... 265s 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 265s Setting up libcfitsio10t64:s390x (4.5.0-5) ... 265s Setting up auto-multiple-choice-doc-pdf (1.6.0-4) ... 265s Setting up libzzip-0-13t64:s390x (0.13.72+dfsg.1-1.2build1) ... 265s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 265s Setting up libsvtav1enc2:s390x (2.3.0+dfsg-1) ... 265s Setting up libepoxy0:s390x (1.5.10-2) ... 265s Setting up libxfixes3:s390x (1:6.0.0-2build1) ... 265s Setting up libxcb-sync1:s390x (1.17.0-2) ... 265s Setting up libjbig2dec0:s390x (0.20-1build3) ... 265s Setting up libipc-system-simple-perl (1.30-2) ... 265s Setting up libteckit0:s390x (2.5.12+ds1-1) ... 265s Setting up libapache-pom-java (33-2) ... 265s Setting up libavahi-common-data:s390x (0.8-14ubuntu1) ... 265s Setting up libxml-writer-perl (0.900-2) ... 265s Setting up libatspi2.0-0t64:s390x (2.55.2-1) ... 265s Setting up xfonts-encodings (1:1.0.5-0ubuntu2) ... 265s Setting up t1utils (1.41-4build3) ... 265s Setting up libxinerama1:s390x (2:1.1.4-3build1) ... 265s Setting up libtexlua53-5:s390x (2024.20240313.70630+ds-5build2) ... 265s Setting up fonts-dejavu-mono (2.37-8) ... 265s Setting up libhwloc15:s390x (2.11.2-1build1) ... 265s Setting up libimath-3-1-29t64:s390x (3.1.12-1ubuntu1) ... 265s Setting up libidn12:s390x (1.42-3) ... 265s Setting up libxrandr2:s390x (2:1.5.4-1) ... 265s Setting up libmpfi0:s390x (1.5.4+ds-4) ... 265s Setting up fonts-dejavu-core (2.37-8) ... 265s Setting up unixodbc-common (2.3.12-2ubuntu1) ... 265s Setting up libsocket++1:s390x (1.12.13+git20131030.5d039ba-1build1) ... 265s Setting up libipc-run-perl (20231003.0-2) ... 265s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 265s Setting up libltdl7:s390x (2.5.4-3build1) ... 265s Setting up libfftw3-double3:s390x (3.3.10-2fakesync1build1) ... 265s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 265s Setting up libkpathsea6:s390x (2024.20240313.70630+ds-5build2) ... 265s Setting up libgfortran5:s390x (14.2.0-17ubuntu1) ... 265s Setting up libvulkan1:s390x (1.4.304.0-1) ... 265s Setting up libwebp7:s390x (1.5.0-0.1) ... 265s Setting up libgif7:s390x (5.2.2-1ubuntu1) ... 265s Setting up libodbc2:s390x (2.3.12-2ubuntu1) ... 265s Setting up liburiparser1:s390x (0.9.8+dfsg-2) ... 265s Setting up libfyba0t64:s390x (4.1.1-11build1) ... 265s Setting up liblocale-codes-perl (3.81-1) ... 265s Setting up libdav1d7:s390x (1.5.1-1) ... 265s Setting up liblqr-1-0:s390x (0.4.2-2.1build2) ... 265s Setting up libminizip1t64:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 265s Setting up libxshmfence1:s390x (1.3-1build5) ... 265s Setting up at-spi2-common (2.55.2-1) ... 265s Setting up libxcb-randr0:s390x (1.17.0-2) ... 265s Setting up librav1e0.7:s390x (0.7.1-9) ... 265s Setting up libblosc1:s390x (1.21.5+ds-1build1) ... 265s Setting up fonts-lmodern (2.005-1) ... 265s Setting up libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 265s Setting up auto-multiple-choice-doc (1.6.0-4) ... 265s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 265s Setting up libthai-data (0.1.29-2build1) ... 265s Setting up libwayland-egl1:s390x (1.23.1-1) ... 265s Setting up libpaper2:s390x (2.2.5-0.3) ... 265s Setting up libde265-0:s390x (1.0.15-1build4) ... 265s Setting up libkmlbase1t64:s390x (1.3.0-12build1) ... 265s Setting up libwebpmux3:s390x (1.5.0-0.1) ... 265s Setting up libxcomposite1:s390x (1:0.4.6-1) ... 265s Setting up libjxl0.11:s390x (0.11.1-1) ... 265s Setting up xdg-utils (1.2.1-2ubuntu1) ... 265s update-alternatives: using /usr/bin/xdg-open to provide /usr/bin/open (open) in auto mode 265s Setting up liburi-perl (5.30-1) ... 265s Setting up libdbi-perl:s390x (1.647-1) ... 265s Setting up libsz2:s390x (1.1.3-1) ... 265s Setting up libsynctex2:s390x (2024.20240313.70630+ds-5build2) ... 265s Setting up gdal-plugins:s390x (3.10.1+dfsg-1build2) ... 265s Setting up libtext-csv-perl (2.05-1) ... 265s Setting up libpotrace0:s390x (1.16-2build1) ... 265s Setting up libwayland-client0:s390x (1.23.1-1) ... 265s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 265s Setting up libgdcm3.0t64:s390x (3.0.24-5ubuntu1) ... 265s Setting up libice6:s390x (2:1.1.1-1) ... 265s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 265s Setting up libodbcinst2:s390x (2.3.12-2ubuntu1) ... 265s Setting up liblapack3:s390x (3.12.1-2) ... 265s 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 265s Setting up libglib-perl:s390x (3:1.329.3-3build4) ... 265s Setting up libfile-basedir-perl (0.09-2) ... 265s Setting up libarpack2t64:s390x (3.9.1-4) ... 265s Setting up libatk1.0-0t64:s390x (2.55.2-1) ... 265s Setting up libpdfbox-java (1:1.8.16-5) ... 265s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 265s Setting up gir1.2-atk-1.0:s390x (2.55.2-1) ... 265s Setting up fontconfig-config (2.15.0-1.1ubuntu2) ... 265s Setting up libgeos-c1t64:s390x (3.13.0-1) ... 265s Setting up preview-latex-style (13.2-1) ... 265s Setting up libwebpdemux2:s390x (1.5.0-0.1) ... 265s Setting up libxcursor1:s390x (1:1.2.3-1) ... 265s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 265s Setting up libcommons-parent-java (56-1) ... 265s Setting up libavahi-common3:s390x (0.8-14ubuntu1) ... 265s Setting up libcommons-logging-java (1.3.0-1ubuntu1) ... 265s Setting up dconf-service (0.40.0-5) ... 265s Setting up libharfbuzz-gobject0:s390x (10.2.0-1) ... 265s Setting up libpaper-utils (2.2.5-0.3) ... 265s Setting up xfonts-utils (1:7.7+7) ... 265s Setting up libxml-sax-perl (1.02+dfsg-4) ... 265s update-perl-sax-parsers: Registering Perl SAX parser XML::SAX::PurePerl with priority 10... 265s update-perl-sax-parsers: Updating overall Perl SAX parser modules info file... 265s Creating config file /etc/perl/XML/SAX/ParserDetails.ini with new version 265s Setting up libtbbbind-2-5:s390x (2022.0.0-1) ... 265s Setting up libkmldom1t64:s390x (1.3.0-12build1) ... 265s Setting up libthai0:s390x (0.1.29-2build1) ... 265s Setting up libptexenc1:s390x (2024.20240313.70630+ds-5build2) ... 265s Setting up libopenexr-3-1-30:s390x (3.1.5-5.1build3) ... 265s Setting up libfile-desktopentry-perl (0.22-3) ... 265s Setting up libraw23t64:s390x (0.21.3-1) ... 265s Setting up libhdf4-0-alt:s390x (4.3.0-1) ... 265s Setting up libxml-libxml-perl (2.0207+dfsg+really+2.0134-5build1) ... 265s update-perl-sax-parsers: Registering Perl SAX parser XML::LibXML::SAX::Parser with priority 50... 265s update-perl-sax-parsers: Registering Perl SAX parser XML::LibXML::SAX with priority 50... 265s update-perl-sax-parsers: Updating overall Perl SAX parser modules info file... 266s Replacing config file /etc/perl/XML/SAX/ParserDetails.ini with new version 266s Setting up librttopo1:s390x (1.1.0-3build2) ... 266s Setting up libhdf5-310:s390x (1.14.5+repack-3) ... 266s Setting up libfreexl1:s390x (2.0.0-1build2) ... 266s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 266s Setting up libwayland-cursor0:s390x (1.23.1-1) ... 266s Setting up libgdk-pixbuf-2.0-0:s390x (2.42.12+dfsg-2) ... 266s Setting up libarmadillo14 (1:14.2.1+dfsg-1) ... 266s Setting up libdbd-sqlite3-perl:s390x (1.76-1) ... 266s Setting up libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 266s Setting up libyuv0:s390x (0.0.1904.20250204-1) ... 266s Setting up libsm6:s390x (2:1.2.4-1) ... 266s Setting up libavahi-client3:s390x (0.8-14ubuntu1) ... 266s Setting up libpoppler145:s390x (25.01.0-4) ... 266s Setting up libglib-object-introspection-perl (0.051-2build1) ... 266s Setting up libatk-bridge2.0-0t64:s390x (2.55.2-1) ... 266s Setting up libfile-mimeinfo-perl (0.35-1) ... 266s Setting up gtk-update-icon-cache (4.17.4+ds-4) ... 266s Setting up libhdf5-hl-310:s390x (1.14.5+repack-3) ... 266s Setting up fontconfig (2.15.0-1.1ubuntu2) ... 268s Regenerating fonts cache... done. 268s Setting up libavif16:s390x (1.1.1-1ubuntu1) ... 268s Setting up libnetcdf19t64:s390x (1:4.9.2-6ubuntu2) ... 268s Setting up libxft2:s390x (2.3.6-1build1) ... 268s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 268s Setting up libglx0:s390x (1.7.0-1build1) ... 268s Setting up dconf-gsettings-backend:s390x (0.40.0-5) ... 268s Setting up gir1.2-gdkpixbuf-2.0:s390x (2.42.12+dfsg-2) ... 268s Setting up libproj25:s390x (9.5.1-1) ... 268s Setting up libpango-1.0-0:s390x (1.56.1-1) ... 268s Setting up libtbb12:s390x (2022.0.0-1) ... 268s Setting up libkmlengine1t64:s390x (1.3.0-12build1) ... 268s Setting up fonts-urw-base35 (20200910-8) ... 268s Setting up libcairo2:s390x (1.18.2-2) ... 268s Setting up libgeotiff5:s390x (1.7.3-1) ... 268s Setting up libpoppler-glib8t64:s390x (25.01.0-4) ... 268s Setting up adwaita-icon-theme (48~beta-3) ... 268s update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode 268s Setting up libxt6t64:s390x (1:1.2.1-1.2build1) ... 268s Setting up libxml-simple-perl (2.25-2) ... 268s Setting up netpbm (2:11.09.02-2) ... 268s Setting up libcairo-perl (1.109-5build1) ... 268s Setting up libcairo-gobject2:s390x (1.18.2-2) ... 268s Setting up poppler-utils (25.01.0-4) ... 268s Setting up libpangoft2-1.0-0:s390x (1.56.1-1) ... 268s Setting up libcairo-gobject-perl (1.005-4build4) ... 268s Setting up libcups2t64:s390x (2.4.11-0ubuntu2) ... 268s Setting up libopencv-core406t64:s390x (4.6.0+dfsg-14build3) ... 268s Setting up libgtk-3-common (3.24.48-3ubuntu1) ... 268s Setting up libpangocairo-1.0-0:s390x (1.56.1-1) ... 268s Setting up libspatialite8t64:s390x (5.1.0-3build1) ... 268s Setting up libgs10-common (10.04.0~dfsg1-2ubuntu1) ... 268s Setting up libxmu6:s390x (2:1.1.3-3build2) ... 268s Setting up gir1.2-freedesktop:s390x (1.82.0-4) ... 268s Setting up libpangoxft-1.0-0:s390x (1.56.1-1) ... 268s Setting up libxaw7:s390x (2:1.0.16-1) ... 268s Setting up gir1.2-harfbuzz-0.0:s390x (10.2.0-1) ... 268s Setting up librsvg2-2:s390x (2.59.90+dfsg-2) ... 268s Setting up gir1.2-pango-1.0:s390x (1.56.1-1) ... 268s Setting up libopencv-imgproc406t64:s390x (4.6.0+dfsg-14build3) ... 268s Setting up librsvg2-common:s390x (2.59.90+dfsg-2) ... 268s Setting up texlive-binaries (2024.20240313.70630+ds-5build2) ... 268s update-alternatives: using /usr/bin/xdvi-xaw to provide /usr/bin/xdvi.bin (xdvi.bin) in auto mode 268s update-alternatives: using /usr/bin/bibtex.original to provide /usr/bin/bibtex (bibtex) in auto mode 268s Setting up texlive-base (2024.20241115-1) ... 269s tl-paper: setting paper size for dvips to a4: /var/lib/texmf/dvips/config/config-paper.ps 269s tl-paper: setting paper size for dvipdfmx to a4: /var/lib/texmf/dvipdfmx/dvipdfmx-paper.cfg 270s tl-paper: setting paper size for xdvi to a4: /var/lib/texmf/xdvi/XDvi-paper 270s tl-paper: setting paper size for pdftex to a4: /var/lib/texmf/tex/generic/tex-ini-files/pdftexconfig.tex 271s Setting up libgs10:s390x (10.04.0~dfsg1-2ubuntu1) ... 271s Setting up ghostscript (10.04.0~dfsg1-2ubuntu1) ... 271s Setting up texlive-latex-base (2024.20241115-1) ... 271s Setting up texlive-fonts-extra (2024.20250114-1) ... 271s Setting up texlive-latex-recommended (2024.20241115-1) ... 271s Setting up texlive-pictures (2024.20241115-1) ... 271s Setting up texlive-fonts-recommended (2024.20241115-1) ... 271s Setting up texlive-latex-extra (2024.20250114-1) ... 271s Setting up libheif-plugin-aomdec:s390x (1.19.5-1build1) ... 271s Setting up libheif-plugin-libde265:s390x (1.19.5-1build1) ... 271s Setting up libheif1:s390x (1.19.5-1build1) ... 271s Setting up libgdal36:s390x (3.10.1+dfsg-1build2) ... 271s Setting up libmagickcore-7.q16-10:s390x (8:7.1.1.43+dfsg1-1) ... 271s Setting up libopencv-imgcodecs406t64:s390x (4.6.0+dfsg-14build3) ... 271s Setting up libmagickwand-7.q16-10:s390x (8:7.1.1.43+dfsg1-1) ... 271s Setting up libgraphicsmagick-q16-3t64 (1.4+really1.3.45-1build2) ... 271s Setting up libgraphics-magick-perl (1.4+really1.3.45-1build2) ... 271s Setting up imagemagick-7.q16 (8:7.1.1.43+dfsg1-1) ... 271s update-alternatives: using /usr/bin/compare-im7.q16 to provide /usr/bin/compare (compare) in auto mode 271s update-alternatives: using /usr/bin/compare-im7.q16 to provide /usr/bin/compare-im7 (compare-im7) in auto mode 271s update-alternatives: using /usr/bin/animate-im7.q16 to provide /usr/bin/animate (animate) in auto mode 271s update-alternatives: using /usr/bin/animate-im7.q16 to provide /usr/bin/animate-im7 (animate-im7) in auto mode 271s update-alternatives: using /usr/bin/convert-im7.q16 to provide /usr/bin/convert (convert) in auto mode 271s update-alternatives: using /usr/bin/convert-im7.q16 to provide /usr/bin/convert-im7 (convert-im7) in auto mode 271s update-alternatives: using /usr/bin/composite-im7.q16 to provide /usr/bin/composite (composite) in auto mode 271s update-alternatives: using /usr/bin/composite-im7.q16 to provide /usr/bin/composite-im7 (composite-im7) in auto mode 271s update-alternatives: using /usr/bin/conjure-im7.q16 to provide /usr/bin/conjure (conjure) in auto mode 271s update-alternatives: using /usr/bin/conjure-im7.q16 to provide /usr/bin/conjure-im7 (conjure-im7) in auto mode 271s update-alternatives: using /usr/bin/import-im7.q16 to provide /usr/bin/import (import) in auto mode 271s update-alternatives: using /usr/bin/import-im7.q16 to provide /usr/bin/import-im7 (import-im7) in auto mode 271s update-alternatives: using /usr/bin/identify-im7.q16 to provide /usr/bin/identify (identify) in auto mode 271s update-alternatives: using /usr/bin/identify-im7.q16 to provide /usr/bin/identify-im7 (identify-im7) in auto mode 271s update-alternatives: using /usr/bin/stream-im7.q16 to provide /usr/bin/stream (stream) in auto mode 271s update-alternatives: using /usr/bin/stream-im7.q16 to provide /usr/bin/stream-im7 (stream-im7) in auto mode 271s update-alternatives: using /usr/bin/display-im7.q16 to provide /usr/bin/display (display) in auto mode 271s update-alternatives: using /usr/bin/display-im7.q16 to provide /usr/bin/display-im7 (display-im7) in auto mode 271s update-alternatives: using /usr/bin/montage-im7.q16 to provide /usr/bin/montage (montage) in auto mode 271s update-alternatives: using /usr/bin/montage-im7.q16 to provide /usr/bin/montage-im7 (montage-im7) in auto mode 271s update-alternatives: using /usr/bin/mogrify-im7.q16 to provide /usr/bin/mogrify (mogrify) in auto mode 271s update-alternatives: using /usr/bin/mogrify-im7.q16 to provide /usr/bin/mogrify-im7 (mogrify-im7) in auto mode 271s update-alternatives: using /usr/bin/magick-im7.q16 to provide /usr/bin/magick (magick) in auto mode 271s update-alternatives: warning: skip creation of /usr/share/man/man1/magick.1.gz because associated file /usr/share/man/man1/magick-im7.q16.1.gz (of link group magick) doesn't exist 271s update-alternatives: using /usr/bin/magick-im7.q16 to provide /usr/bin/magick-im7 (magick-im7) in auto mode 271s update-alternatives: warning: skip creation of /usr/share/man/man1/magick-im7.1.gz because associated file /usr/share/man/man1/magick-im7.q16.1.gz (of link group magick-im7) doesn't exist 271s update-alternatives: using /usr/bin/magick-script-im7.q16 to provide /usr/bin/magick-script (magick-script) in auto mode 271s update-alternatives: warning: skip creation of /usr/share/man/man1/magick-script.1.gz because associated file /usr/share/man/man1/magick-script-im7.q16.1.gz (of link group magick-script) doesn't exist 271s update-alternatives: using /usr/bin/magick-script-im7.q16 to provide /usr/bin/magick-script-im7 (magick-script-im7) in auto mode 271s update-alternatives: warning: skip creation of /usr/share/man/man1/magick-script-im7.1.gz because associated file /usr/share/man/man1/magick-script-im7.q16.1.gz (of link group magick-script-im7) doesn't exist 271s Setting up imagemagick (8:7.1.1.43+dfsg1-1) ... 271s Processing triggers for install-info (7.1.1-1) ... 271s Processing triggers for libc-bin (2.41-1ubuntu1) ... 271s Processing triggers for man-db (2.13.0-1) ... 272s Processing triggers for libglib2.0-0t64:s390x (2.83.3-2) ... 272s Setting up libgtk-3-0t64:s390x (3.24.48-3ubuntu1) ... 272s Processing triggers for shared-mime-info (2.4-5) ... 272s Warning: program compiled against libxml 212 using older 209 272s Setting up gir1.2-gtk-3.0:s390x (3.24.48-3ubuntu1) ... 272s Setting up libgtk3-perl (0.038-3) ... 272s Setting up auto-multiple-choice-common (1.6.0-4) ... 272s Setting up auto-multiple-choice (1.6.0-4) ... 272s Processing triggers for libgdk-pixbuf-2.0-0:s390x (2.42.12+dfsg-2) ... 272s Processing triggers for tex-common (6.18) ... 275s Running updmap-sys. This may take some time... done. 275s Running mktexlsr /var/lib/texmf ... done. 275s Building format(s) --all. 350s This may take some time... done. 350s Processing triggers for libc-bin (2.41-1ubuntu1) ... 350s autopkgtest: DBG: testbed command exited with code 0 350s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'auto-multiple-choice'], kind short, sout pipe, serr pipe, env [] 350s autopkgtest: DBG: testbed command exited with code 0 350s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'auto-multiple-choice-common'], kind short, sout pipe, serr pipe, env [] 350s autopkgtest: DBG: testbed command exited with code 0 350s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'auto-multiple-choice-doc'], kind short, sout pipe, serr pipe, env [] 350s autopkgtest: DBG: testbed command exited with code 0 350s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'auto-multiple-choice-doc-pdf'], kind short, sout pipe, serr pipe, env [] 351s autopkgtest: DBG: testbed command exited with code 0 351s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.O8gTWx/simple-packages.all"], kind short, sout raw, serr pipe, env [] 351s autopkgtest: DBG: testbed command exited with code 0 351s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.O8gTWx/simple-packages.all /tmp/autopkgtest-work.ta5d0b6d/out/simple-packages.all 351s autopkgtest: DBG: got reply from testbed: ok 351s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.O8gTWx/build.YSI/src'], kind short, sout raw, serr raw, env [] 351s autopkgtest: DBG: testbed command exited with code 0 351s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.O8gTWx/build.YSI/src already exists 351s autopkgtest [21:36:01]: test simple: [----------------------- 351s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.O8gTWx/wrapper.sh --debug --artifacts=/tmp/autopkgtest.O8gTWx/simple-artifacts --chdir=/tmp/autopkgtest.O8gTWx/build.YSI/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.O8gTWx/simple-stderr --stdout=/tmp/autopkgtest.O8gTWx/simple-stdout --tmp=/tmp/autopkgtest.O8gTWx/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' --make-executable=/tmp/autopkgtest.O8gTWx/build.YSI/src/debian/tests/simple -- /tmp/autopkgtest.O8gTWx/build.YSI/src/debian/tests/simple"], kind test, sout raw, serr raw, env [] 351s /tmp/autopkgtest.O8gTWx/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.O8gTWx/simple-artifacts 351s /tmp/autopkgtest.O8gTWx/wrapper.sh: changing to directory: /tmp/autopkgtest.O8gTWx/build.YSI/src 351s /tmp/autopkgtest.O8gTWx/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 351s /tmp/autopkgtest.O8gTWx/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 351s /tmp/autopkgtest.O8gTWx/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 351s /tmp/autopkgtest.O8gTWx/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 351s /tmp/autopkgtest.O8gTWx/wrapper.sh: setting environment: LANG=C.UTF-8 351s /tmp/autopkgtest.O8gTWx/wrapper.sh: unsetting environment: LANGUAGE 351s /tmp/autopkgtest.O8gTWx/wrapper.sh: unsetting environment: LC_ADDRESS 351s /tmp/autopkgtest.O8gTWx/wrapper.sh: unsetting environment: LC_ALL 351s /tmp/autopkgtest.O8gTWx/wrapper.sh: unsetting environment: LC_COLLATE 351s /tmp/autopkgtest.O8gTWx/wrapper.sh: unsetting environment: LC_CTYPE 351s /tmp/autopkgtest.O8gTWx/wrapper.sh: unsetting environment: LC_IDENTIFICATION 351s /tmp/autopkgtest.O8gTWx/wrapper.sh: unsetting environment: LC_MEASUREMENT 351s /tmp/autopkgtest.O8gTWx/wrapper.sh: unsetting environment: LC_MESSAGES 351s /tmp/autopkgtest.O8gTWx/wrapper.sh: unsetting environment: LC_MONETARY 351s /tmp/autopkgtest.O8gTWx/wrapper.sh: unsetting environment: LC_NAME 351s /tmp/autopkgtest.O8gTWx/wrapper.sh: unsetting environment: LC_NUMERIC 351s /tmp/autopkgtest.O8gTWx/wrapper.sh: unsetting environment: LC_PAPER 351s /tmp/autopkgtest.O8gTWx/wrapper.sh: unsetting environment: LC_TELEPHONE 351s /tmp/autopkgtest.O8gTWx/wrapper.sh: unsetting environment: LC_TIME 351s /tmp/autopkgtest.O8gTWx/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 351s /tmp/autopkgtest.O8gTWx/wrapper.sh: pretending to be a login shell 351s /tmp/autopkgtest.O8gTWx/wrapper.sh: will write standard error to /tmp/autopkgtest.O8gTWx/simple-stderr 351s /tmp/autopkgtest.O8gTWx/wrapper.sh: will write stdout to /tmp/autopkgtest.O8gTWx/simple-stdout 351s /tmp/autopkgtest.O8gTWx/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.O8gTWx/autopkgtest_tmp 351s /tmp/autopkgtest.O8gTWx/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 351s /tmp/autopkgtest.O8gTWx/wrapper.sh: marking as executable: /tmp/autopkgtest.O8gTWx/build.YSI/src/debian/tests/simple 351s /tmp/autopkgtest.O8gTWx/wrapper.sh: command to run: /tmp/autopkgtest.O8gTWx/build.YSI/src/debian/tests/simple 351s /tmp/autopkgtest.O8gTWx/wrapper.sh: copying /tmp/tmp.MV4pwd3yud/out to stdout and file: /tmp/autopkgtest.O8gTWx/simple-stdout 351s /tmp/autopkgtest.O8gTWx/wrapper.sh: copying /tmp/tmp.MV4pwd3yud/err to standard error and file: /tmp/autopkgtest.O8gTWx/simple-stdout 351s /tmp/autopkgtest.O8gTWx/wrapper.sh: writing script pid 5316 to /tmp/autopkgtest_script_pid 351s [>] Installed in /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP 351s [I] Provided scans: 1 351s [*] auto-multiple-choice prepare --filter --with pdflatex --mode s[sc] --epoch 946684800 --n-copies 1 --prefix /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/ /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/source.tex --data /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/data --debug /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/debug.log 359s [*] auto-multiple-choice meptex --src /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/calage.xy --data /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/data --debug /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/debug.log 359s [*] auto-multiple-choice prepare --filter --with pdflatex --mode b --n-copies 1 --data /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/data /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/source.tex --debug /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/debug.log 359s [T] No layout defects 359s [*] auto-multiple-choice prepare --filter --with pdflatex --mode k --epoch 946684800 --n-copies 1 --prefix /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/ /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/source.tex --debug /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/debug.log 360s [*] auto-multiple-choice imprime --sujet /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/corrige.pdf --methode file --output /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/xx-copie-%e.pdf --fich-numeros /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/num --data /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/data --extract-with qpdf --password --password-key password --students-list /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/names.csv --list-key id --debug /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/debug.log 360s [*] auto-multiple-choice read-pdfform --list /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/scans-list.txt --data /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/data --password --no-multiple --debug /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/debug.log 360s [*] auto-multiple-choice getimages --list /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/scans-list.txt --copy-to /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/scans --orientation portrait --password --no-force-convert --no-use-pdftk --debug /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/debug.log 361s [*] auto-multiple-choice analyse --no-multiple --bw-threshold 0.6 --pre-allocate 0 --tol-marque 0.4 --no-ignore-red --projet /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP --data /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/data --debug-image-dir /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/cr --liste-fichiers /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/scans-list.txt --debug /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/debug.log 361s [*] auto-multiple-choice analyse --no-multiple --bw-threshold 0.6 --pre-allocate 0 --tol-marque 0.4 --no-ignore-red --debug-pixels --projet /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP --data /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/data --liste-fichiers /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/scans-list.txt --debug /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/debug.log 362s [*] auto-multiple-choice note --no-multi-only --data /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/data --seuil 0.5 --seuil-up 1 --grain 0.01 --arrondi i --notemax 20 --postcorrect-student --postcorrect-copy --debug /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/debug.log 362s [*] auto-multiple-choice association-auto --liste /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/names.csv --liste-key id --pre-association --data /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/data --debug /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/debug.log 362s [I] Assoc: 362s student=2 copy=0 auto=002 manual= name=GUÉRIN 362s [I] Marks: 362s student=2 copy=0 total=1 max=6 mark=3.33 362s [T] Perfect copies test: 362s [T] Association test: 2 362s [*] auto-multiple-choice export --data /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/data --module CSV --association-key id --option-out columns=student.copy,student.name --option-out ticked=AB --option-out decimal=, -o /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/export.csv --fich-noms /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/names.csv --debug /tmp/autopkgtest.O8gTWx/simple-artifacts/simple/ZvetJ38QjP/debug.log 362s [T] CSV full export test (5 scores) 362s [0] Test completed succesfully 362s /tmp/autopkgtest.O8gTWx/wrapper.sh: checking for leaked background processes... 362s /tmp/autopkgtest.O8gTWx/wrapper.sh: waiting for tee/cat subprocesses... 362s /tmp/autopkgtest.O8gTWx/wrapper.sh: cleaning up... 362s /tmp/autopkgtest.O8gTWx/wrapper.sh: Exit status: 0 362s autopkgtest: DBG: testbed command exited with code 0 363s autopkgtest [21:36:13]: test simple: -----------------------] 363s autopkgtest: DBG: testbed executing test finished with exit status 0 363s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.O8gTWx/simple-stdout /tmp/autopkgtest-work.ta5d0b6d/out/simple-stdout 363s autopkgtest: DBG: got reply from testbed: ok 363s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.O8gTWx/simple-stderr /tmp/autopkgtest-work.ta5d0b6d/out/simple-stderr 363s autopkgtest: DBG: got reply from testbed: ok 363s simple PASS 363s autopkgtest [21:36:13]: test simple: - - - - - - - - - - results - - - - - - - - - - 363s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.O8gTWx/simple-artifacts/ /tmp/autopkgtest-work.ta5d0b6d/out/artifacts/ 364s autopkgtest: DBG: got reply from testbed: ok 364s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.O8gTWx/simple-artifacts', '/tmp/autopkgtest.O8gTWx/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 364s autopkgtest: DBG: testbed command exited with code 0 364s autopkgtest [21:36:14]: test gui: preparing testbed 364s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['auto-multiple-choice', 'auto-multiple-choice-common', 'auto-multiple-choice-doc', 'auto-multiple-choice-doc-pdf', 'libipc-run-perl', 'locales-all'], deps_new=['auto-multiple-choice', 'auto-multiple-choice-common', 'auto-multiple-choice-doc', 'auto-multiple-choice-doc-pdf', 'xvfb', 'xauth', 'at-spi2-core', 'gir1.2-notify-0.7'] 364s autopkgtest: DBG: testbed reset 364s autopkgtest: DBG: sending command to testbed: revert 487s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.O8gTWx 487s autopkgtest: DBG: sending command to testbed: print-execute-command 487s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.9d8i7q16/runcmd 487s autopkgtest: DBG: sending command to testbed: capabilities 487s autopkgtest: DBG: got reply from testbed: ok reboot ok revert root-on-testbed isolation-machine suggested-normal-user=ubuntu revert-full-system 487s autopkgtest: DBG: testbed capabilities: ['reboot', 'ok', 'revert', 'root-on-testbed', 'isolation-machine', 'suggested-normal-user=ubuntu', 'revert-full-system', 'has_internet'] 487s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.O8gTWx'], kind short, sout raw, serr pipe, env [] 487s autopkgtest: DBG: testbed command exited with code 0 487s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.O8gTWx/wrapper.sh 487s autopkgtest: DBG: got reply from testbed: ok 487s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.O8gTWx/wrapper.sh'], kind short, sout raw, serr pipe, env [] 487s autopkgtest: DBG: testbed command exited with code 0 487s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 487s autopkgtest: DBG: testbed command exited with code 0 487s autopkgtest [21:38:17]: testbed dpkg architecture: s390x 487s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 488s autopkgtest: DBG: testbed command exited with code 0 488s autopkgtest [21:38:18]: testbed apt version: 2.9.28 488s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 488s autopkgtest: DBG: testbed command exited with code 0 488s autopkgtest: DBG: testbed has eatmydata 488s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 488s autopkgtest: DBG: testbed command exited with code 0 488s autopkgtest [21:38:18]: @@@@@@@@@@@@@@@@@@@@ test bed setup 488s 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 [] 488s autopkgtest: DBG: testbed command exited with code 0 488s autopkgtest [21:38:18]: testbed release detected to be: plucky 488s 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 [] 489s autopkgtest: DBG: testbed command exited with code 0 489s 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 [] 489s autopkgtest: DBG: testbed command exited with code 0 489s autopkgtest: DBG: adding APT source: Types: deb deb-src 489s URIs: http://ftpmaster.internal/ubuntu/ 489s Suites: plucky-proposed 489s Components: main restricted universe multiverse 489s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 489s 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 [] 489s autopkgtest: DBG: testbed command exited with code 0 489s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 489s Package: * 489s Pin: release plucky-proposed 489s Pin-Priority: 500 489s 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 [] 489s autopkgtest: DBG: testbed command exited with code 0 489s autopkgtest [21:38:19]: updating testbed package index (apt update) 489s 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'] 489s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 490s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 490s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 490s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 490s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 490s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [820 kB] 490s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 490s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [62.8 kB] 490s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [80.2 kB] 490s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 490s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [795 kB] 490s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 490s Fetched 1889 kB in 1s (2021 kB/s) 491s Reading package lists... 491s autopkgtest: DBG: testbed command exited with code 0 491s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 491s Package: * 491s Pin: release plucky-proposed 491s Pin-Priority: 100 491s 491s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 491s Pin: release plucky-proposed 491s Pin-Priority: 995 491s 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 [] 491s autopkgtest: DBG: testbed command exited with code 0 491s 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.O8gTWx/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 491s autopkgtest: DBG: testbed command exited with code 0 491s 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'] 491s + lsb_release --codename --short 491s + RELEASE=plucky 491s + cat 491s + [ plucky != trusty ] 491s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 491s Reading package lists... 492s Building dependency tree... 492s Reading state information... 492s Calculating upgrade... 492s The following packages were automatically installed and are no longer required: 492s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 492s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 492s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 492s linux-tools-6.11.0-8-generic 492s Use 'sudo apt autoremove' to remove them. 492s The following packages will be upgraded: 492s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 492s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 492s Need to get 1155 kB of archives. 492s After this operation, 16.4 kB of additional disk space will be used. 492s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 492s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 492s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 492s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 492s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 492s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 492s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 493s Preconfiguring packages ... 493s Fetched 1155 kB in 1s (1821 kB/s) 493s (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.) 493s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 493s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 493s Setting up dash (0.5.12-12ubuntu1) ... 493s (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.) 493s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 493s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 493s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 493s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 493s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 493s (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.) 493s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 493s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 493s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 493s (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.) 493s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 493s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 493s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 493s (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.) 493s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 493s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 493s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 493s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 493s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 493s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 493s Setting up libtasn1-6:s390x (4.20.0-2) ... 493s Processing triggers for libc-bin (2.40-4ubuntu1) ... 493s Processing triggers for man-db (2.13.0-1) ... 493s Processing triggers for debianutils (5.21) ... 494s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 494s + /usr/lib/apt/apt-helper analyze-pattern ?true 494s + uname -r 494s + sed s/\./\\./g 494s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 494s + apt list ?obsolete 494s + + tail -n+2 494s grep -v ^linux-.*6\.12\.0-15-generic.* 494s + cut -d/ -f1 494s + true 494s + obsolete_pkgs= 494s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 494s Reading package lists... 494s Building dependency tree... 494s Reading state information... 494s The following packages will be REMOVED: 494s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 494s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 494s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 494s linux-tools-6.11.0-8-generic* 494s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 494s After this operation, 167 MB disk space will be freed. 494s (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.) 494s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 494s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 494s Removing libpython3.12t64:s390x (3.12.9-1) ... 494s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 494s Removing libnsl2:s390x (1.3.0-3build3) ... 494s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 494s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 494s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 495s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 495s Processing triggers for libc-bin (2.40-4ubuntu1) ... 495s (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.) 495s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 495s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 495s + grep -q trusty /etc/lsb-release 495s + [ ! -d /usr/share/doc/unattended-upgrades ] 495s + [ ! -d /usr/share/doc/lxd ] 495s + [ ! -d /usr/share/doc/lxd-client ] 495s + [ ! -d /usr/share/doc/snapd ] 495s + type iptables 495s + cat 495s + chmod 755 /etc/rc.local 495s + . /etc/rc.local 495s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 495s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 495s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 495s + uname -m 495s + [ s390x = ppc64le ] 495s + [ -d /run/systemd/system ] 495s + systemd-detect-virt --quiet --vm 496s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 496s + cat 496s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 496s + echo COMPRESS=lz4 496s autopkgtest: DBG: testbed command exited with code 0 496s autopkgtest [21:38:26]: upgrading testbed (apt dist-upgrade and autopurge) 496s 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'] 496s Reading package lists... 496s Building dependency tree... 496s Reading state information... 496s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 496s Starting 2 pkgProblemResolver with broken count: 0 496s Done 496s Entering ResolveByKeep 496s 497s The following packages will be upgraded: 497s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 497s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 497s Need to get 10.7 MB of archives. 497s After this operation, 305 kB of additional disk space will be used. 497s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 497s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 497s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 497s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 497s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 498s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 498s Preconfiguring packages ... 498s Fetched 10.7 MB in 1s (10.9 MB/s) 498s (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.) 498s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 498s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 498s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 498s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 498s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 498s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 498s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 498s Checking for services that may need to be restarted... 498s Checking init scripts... 498s Checking for services that may need to be restarted... 498s Checking init scripts... 498s Stopping some services possibly affected by the upgrade (will be restarted later): 498s cron: stopping...done. 498s 498s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 498s Setting up libc6:s390x (2.41-1ubuntu1) ... 498s Checking for services that may need to be restarted... 498s Checking init scripts... 498s Restarting services possibly affected by the upgrade: 498s cron: restarting...done. 498s 498s Services restarted successfully. 498s (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.) 498s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 498s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 498s Setting up libc-bin (2.41-1ubuntu1) ... 498s (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.) 498s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 499s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 499s Setting up iproute2 (6.13.0-1ubuntu1) ... 499s Setting up locales (2.41-1ubuntu1) ... 499s Installing new version of config file /etc/locale.alias ... 499s Generating locales (this might take a while)... 500s en_US.UTF-8... done 500s Generation complete. 500s Setting up libc-dev-bin (2.41-1ubuntu1) ... 500s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 500s Processing triggers for man-db (2.13.0-1) ... 501s Processing triggers for systemd (257.2-3ubuntu1) ... 501s autopkgtest: DBG: testbed command exited with code 0 501s 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'] 502s Reading package lists... 502s Building dependency tree... 502s Reading state information... 502s Starting pkgProblemResolver with broken count: 0 502s Starting 2 pkgProblemResolver with broken count: 0 502s Done 502s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 502s autopkgtest: DBG: testbed command exited with code 0 502s 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.O8gTWx/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 502s autopkgtest: DBG: testbed command exited with code 1 502s autopkgtest [21:38:32]: rebooting testbed after setup commands that affected boot 502s autopkgtest: DBG: sending command to testbed: reboot 522s autopkgtest: DBG: got reply from testbed: ok 522s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 522s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.O8gTWx'], kind short, sout raw, serr pipe, env [] 522s autopkgtest: DBG: testbed command exited with code 0 522s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.O8gTWx/autopkgtest-reboot 522s autopkgtest: DBG: got reply from testbed: ok 522s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.O8gTWx/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 522s autopkgtest: DBG: testbed command exited with code 0 522s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.O8gTWx/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 523s autopkgtest: DBG: testbed command exited with code 0 523s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.O8gTWx/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 523s autopkgtest: DBG: testbed command exited with code 0 523s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.O8gTWx'], kind short, sout raw, serr pipe, env [] 523s autopkgtest: DBG: testbed command exited with code 0 523s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.O8gTWx/autopkgtest-reboot-prepare 523s autopkgtest: DBG: got reply from testbed: ok 523s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.O8gTWx/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 523s autopkgtest: DBG: testbed command exited with code 0 523s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.O8gTWx/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 524s autopkgtest: DBG: testbed command exited with code 0 524s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 524s autopkgtest: DBG: testbed command exited with code 0 524s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.O8gTWx/testbed-packages"], kind short, sout raw, serr pipe, env [] 524s autopkgtest: DBG: testbed command exited with code 0 524s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.O8gTWx/testbed-packages /tmp/autopkgtest-work.ta5d0b6d/out/testbed-packages 526s autopkgtest: DBG: got reply from testbed: ok 526s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 526s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.O8gTWx'], kind short, sout raw, serr pipe, env [] 526s autopkgtest: DBG: testbed command exited with code 0 526s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.O8gTWx/autopkgtest-reboot 526s autopkgtest: DBG: got reply from testbed: ok 526s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.O8gTWx/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 526s autopkgtest: DBG: testbed command exited with code 0 526s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.O8gTWx/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 526s autopkgtest: DBG: testbed command exited with code 0 526s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.O8gTWx/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 526s autopkgtest: DBG: testbed command exited with code 0 526s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.O8gTWx'], kind short, sout raw, serr pipe, env [] 527s autopkgtest: DBG: testbed command exited with code 0 527s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.O8gTWx/autopkgtest-reboot-prepare 527s autopkgtest: DBG: got reply from testbed: ok 527s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.O8gTWx/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 527s autopkgtest: DBG: testbed command exited with code 0 527s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.O8gTWx/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 527s autopkgtest: DBG: testbed command exited with code 0 527s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 528s autopkgtest: DBG: testbed command exited with code 0 528s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 528s autopkgtest: DBG: install_deps: deps_new=['auto-multiple-choice', 'auto-multiple-choice-common', 'auto-multiple-choice-doc', 'auto-multiple-choice-doc-pdf', 'xvfb', 'xauth', 'at-spi2-core', 'gir1.2-notify-0.7'] 528s autopkgtest: DBG: install-deps: satisfying auto-multiple-choice, auto-multiple-choice-common, auto-multiple-choice-doc, auto-multiple-choice-doc-pdf, xvfb, xauth, at-spi2-core, gir1.2-notify-0.7 528s autopkgtest: DBG: can use apt-get on testbed: True 528s 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', 'auto-multiple-choice, auto-multiple-choice-common, auto-multiple-choice-doc, auto-multiple-choice-doc-pdf, xvfb, xauth, at-spi2-core, gir1.2-notify-0.7'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 528s Reading package lists... 528s Building dependency tree... 528s Reading state information... 529s Starting pkgProblemResolver with broken count: 0 529s Starting 2 pkgProblemResolver with broken count: 0 529s Done 529s The following NEW packages will be installed: 529s adwaita-icon-theme at-spi2-common at-spi2-core auto-multiple-choice 529s auto-multiple-choice-common auto-multiple-choice-doc 529s auto-multiple-choice-doc-pdf dconf-gsettings-backend dconf-service 529s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono 529s fonts-lmodern fonts-urw-base35 gdal-data gdal-plugins ghostscript 529s gir1.2-atk-1.0 gir1.2-freedesktop gir1.2-gdkpixbuf-2.0 gir1.2-gtk-3.0 529s gir1.2-harfbuzz-0.0 gir1.2-notify-0.7 gir1.2-pango-1.0 529s gsettings-desktop-schemas gtk-update-icon-cache hicolor-icon-theme 529s imagemagick imagemagick-7-common imagemagick-7.q16 libaec0 libaom3 529s libapache-pom-java libarchive-zip-perl libarmadillo14 libarpack2t64 529s libatk-bridge2.0-0t64 libatk1.0-0t64 libatspi2.0-0t64 libavahi-client3 529s libavahi-common-data libavahi-common3 libavif16 libblas3 libblosc1 529s libcairo-gobject-perl libcairo-gobject2 libcairo-perl libcairo2 529s libcfitsio10t64 libcharls2 libclone-perl libcolord2 libcommons-logging-java 529s libcommons-parent-java libcups2t64 libdatrie1 libdav1d7 libdbd-sqlite3-perl 529s libdbi-perl libdconf1 libde265-0 libdeflate0 libdrm-radeon1 529s libencode-locale-perl libepoxy0 libextutils-depends-perl libfftw3-double3 529s libfile-basedir-perl libfile-desktopentry-perl libfile-mimeinfo-perl 529s libfontbox-java libfontconfig1 libfontenc1 libfreetype6 libfreexl1 529s libfyba0t64 libgbm1 libgdal36 libgdcm3.0t64 libgdk-pixbuf-2.0-0 529s libgdk-pixbuf2.0-common libgeos-c1t64 libgeos3.13.0 libgeotiff5 libgfortran5 529s libgif7 libgl1 libgl1-mesa-dri libglapi-mesa 529s libglib-object-introspection-perl libglib-perl libglvnd0 libglx-mesa0 529s libglx0 libgomp1 libgpgmepp6t64 libgraphics-magick-perl 529s libgraphicsmagick-q16-3t64 libgraphite2-3 libgs-common libgs10 529s libgs10-common libgtk-3-0t64 libgtk-3-common libgtk3-perl 529s libharfbuzz-gobject0 libharfbuzz0b libhdf4-0-alt libhdf5-310 libhdf5-hl-310 529s libheif-plugin-aomdec libheif-plugin-libde265 libheif1 libhwloc15 libice6 529s libidn12 libijs-0.35 libimath-3-1-29t64 libipc-system-simple-perl libjbig0 529s libjbig2dec0 libjpeg-turbo8 libjpeg8 libjxl0.11 libkmlbase1t64 libkmldom1t64 529s libkmlengine1t64 libkpathsea6 liblapack3 liblcms2-2 liblocale-codes-perl 529s liblqr-1-0 libltdl7 libmagickcore-7.q16-10 libmagickwand-7.q16-10 529s libminizip1t64 libmpfi0 libmysqlclient24 libnetcdf19t64 libnetpbm11t64 529s libnotify4 libodbc2 libodbcinst2 libogdi4.1 libopencv-core406t64 529s libopencv-imgcodecs406t64 libopencv-imgproc406t64 libopenexr-3-1-30 529s libopenjp2-7 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 529s libpangoxft-1.0-0 libpaper-utils libpaper2 libpdfbox-java libpixman-1-0 529s libpoppler-glib8t64 libpoppler145 libpotrace0 libpq5 libproj25 libptexenc1 529s libqhull-r8.0 librav1e0.7 libraw23t64 librsvg2-2 librsvg2-common librttopo1 529s libsharpyuv0 libsm6 libsnappy1v5 libsocket++1 libspatialite8t64 529s libsvtav1enc2 libsynctex2 libsz2 libtbb12 libtbbbind-2-5 libtbbmalloc2 529s libteckit0 libtexlua53-5 libtext-csv-perl libthai-data libthai0 libtiff6 529s liburi-perl liburiparser1 libvulkan1 libwayland-client0 libwayland-cursor0 529s libwayland-egl1 libwayland-server0 libwebp7 libwebpdemux2 libwebpmux3 529s libwmflite-0.2-7 libx11-xcb1 libxaw7 libxcb-dri3-0 libxcb-glx0 529s libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shm0 libxcb-sync1 529s libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 libxerces-c3.2t64 529s libxfixes3 libxfont2 libxft2 libxi6 libxinerama1 libxkbfile1 529s libxml-libxml-perl libxml-namespacesupport-perl libxml-sax-base-perl 529s libxml-sax-perl libxml-simple-perl libxml-writer-perl libxmu6 libxpm4 529s libxrandr2 libxrender1 libxshmfence1 libxt6t64 libxtst6 libxxf86vm1 libyuv0 529s libzzip-0-13t64 mesa-libgallium mysql-common netpbm poppler-data 529s poppler-utils preview-latex-style proj-data t1utils tex-common texlive-base 529s texlive-binaries texlive-fonts-extra texlive-fonts-recommended 529s texlive-latex-base texlive-latex-extra texlive-latex-recommended 529s texlive-pictures unixodbc-common unzip x11-common x11-xkb-utils xdg-utils 529s xfonts-encodings xfonts-utils xserver-common xvfb 529s 0 upgraded, 261 newly installed, 0 to remove and 0 not upgraded. 529s Need to get 831 MB of archives. 529s After this operation, 2449 MB of additional disk space will be used. 529s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 529s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libfftw3-double3 s390x 3.3.10-2fakesync1build1 [511 kB] 529s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 530s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 530s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 530s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libfontenc1 s390x 1:1.1.8-1build1 [14.8 kB] 530s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 530s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x xfonts-encodings all 1:1.0.5-0ubuntu2 [578 kB] 530s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x xfonts-utils s390x 1:7.7+7 [101 kB] 530s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-urw-base35 all 20200910-8 [11.0 MB] 530s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-1.1ubuntu2 [37.4 kB] 530s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-1.1ubuntu2 [150 kB] 530s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 530s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libaom3 s390x 3.12.0-1 [1492 kB] 530s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libheif-plugin-aomdec s390x 1.19.5-1build1 [11.6 kB] 530s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libde265-0 s390x 1.0.15-1build4 [175 kB] 530s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libheif-plugin-libde265 s390x 1.19.5-1build1 [9066 B] 530s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libheif1 s390x 1.19.5-1build1 [410 kB] 530s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 530s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 530s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 530s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x liblcms2-2 s390x 2.16-2 [175 kB] 530s Get:23 http://ftpmaster.internal/ubuntu plucky/universe s390x liblqr-1-0 s390x 0.4.2-2.1build2 [32.6 kB] 530s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libltdl7 s390x 2.5.4-3build1 [43.9 kB] 530s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libopenjp2-7 s390x 2.5.0-2ubuntu3 [208 kB] 530s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libraw23t64 s390x 0.21.3-1 [415 kB] 530s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 530s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 530s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 530s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpdemux2 s390x 1.5.0-0.1 [12.6 kB] 530s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpmux3 s390x 1.5.0-0.1 [25.8 kB] 530s Get:32 http://ftpmaster.internal/ubuntu plucky/universe s390x imagemagick-7-common all 8:7.1.1.43+dfsg1-1 [69.7 kB] 530s Get:33 http://ftpmaster.internal/ubuntu plucky/universe s390x libmagickcore-7.q16-10 s390x 8:7.1.1.43+dfsg1-1 [2040 kB] 530s Get:34 http://ftpmaster.internal/ubuntu plucky/universe s390x libmagickwand-7.q16-10 s390x 8:7.1.1.43+dfsg1-1 [375 kB] 530s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x poppler-data all 0.4.12-1 [2060 kB] 530s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libgdk-pixbuf2.0-common all 2.42.12+dfsg-2 [8004 B] 530s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libgdk-pixbuf-2.0-0 s390x 2.42.12+dfsg-2 [154 kB] 530s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x gtk-update-icon-cache s390x 4.17.4+ds-4 [52.9 kB] 530s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x hicolor-icon-theme all 0.18-2 [13.3 kB] 530s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x adwaita-icon-theme all 48~beta-3 [578 kB] 530s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x at-spi2-common all 2.55.2-1 [8916 B] 530s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libxi6 s390x 2:1.8.2-1 [35.4 kB] 530s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libatspi2.0-0t64 s390x 2.55.2-1 [80.3 kB] 530s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libxtst6 s390x 2:1.2.5-1 [13.5 kB] 530s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x libdconf1 s390x 0.40.0-5 [40.0 kB] 530s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x dconf-service s390x 0.40.0-5 [28.4 kB] 530s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x dconf-gsettings-backend s390x 0.40.0-5 [22.8 kB] 530s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x gsettings-desktop-schemas all 48~beta-1ubuntu1 [37.4 kB] 530s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x at-spi2-core s390x 2.55.2-1 [56.6 kB] 530s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-0 s390x 0.44.0-3 [201 kB] 530s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 530s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 530s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 530s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo2 s390x 1.18.2-2 [580 kB] 531s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libblas3 s390x 3.12.1-2 [252 kB] 531s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 531s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 531s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 531s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 531s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 531s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 531s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 531s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 531s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 531s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 531s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 531s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 531s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 531s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 531s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 531s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 531s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 531s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 532s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 532s Get:75 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran5 s390x 14.2.0-17ubuntu1 [588 kB] 532s Get:76 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack3 s390x 3.12.1-2 [2971 kB] 532s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x libtbbmalloc2 s390x 2022.0.0-1 [57.6 kB] 532s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x libhwloc15 s390x 2.11.2-1build1 [176 kB] 532s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x libtbbbind-2-5 s390x 2022.0.0-1 [15.3 kB] 532s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x libtbb12 s390x 2022.0.0-1 [99.9 kB] 532s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x libopencv-core406t64 s390x 4.6.0+dfsg-14build3 [1164 kB] 532s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x gdal-data all 3.10.1+dfsg-1build2 [269 kB] 533s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x gdal-plugins s390x 3.10.1+dfsg-1build2 [25.6 kB] 533s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x libaec0 s390x 1.1.3-1 [25.7 kB] 533s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x libarpack2t64 s390x 3.9.1-4 [110 kB] 533s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x libarmadillo14 s390x 1:14.2.1+dfsg-1 [110 kB] 533s Get:87 http://ftpmaster.internal/ubuntu plucky/universe s390x libdav1d7 s390x 1.5.1-1 [312 kB] 533s Get:88 http://ftpmaster.internal/ubuntu plucky/universe s390x librav1e0.7 s390x 0.7.1-9 [845 kB] 533s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x libsvtav1enc2 s390x 2.3.0+dfsg-1 [2294 kB] 533s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x libyuv0 s390x 0.0.1904.20250204-1 [127 kB] 533s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x libavif16 s390x 1.1.1-1ubuntu1 [103 kB] 533s Get:92 http://ftpmaster.internal/ubuntu plucky/main s390x libsnappy1v5 s390x 1.2.1-1 [33.0 kB] 533s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x libblosc1 s390x 1.21.5+ds-1build1 [27.7 kB] 533s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x libcfitsio10t64 s390x 4.5.0-5 [607 kB] 534s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x libminizip1t64 s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [24.6 kB] 534s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x libfreexl1 s390x 2.0.0-1build2 [46.5 kB] 534s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x libfyba0t64 s390x 4.1.1-11build1 [125 kB] 534s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x libgeos3.13.0 s390x 3.13.0-1 [966 kB] 534s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x libgeos-c1t64 s390x 3.13.0-1 [93.3 kB] 534s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x proj-data all 9.5.1-1 [7924 kB] 534s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x libproj25 s390x 9.5.1-1 [1452 kB] 534s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x libgeotiff5 s390x 1.7.3-1 [66.4 kB] 534s Get:103 http://ftpmaster.internal/ubuntu plucky/main s390x libgif7 s390x 5.2.2-1ubuntu1 [38.0 kB] 534s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x libsz2 s390x 1.1.3-1 [5442 B] 535s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x libhdf4-0-alt s390x 4.3.0-1 [300 kB] 535s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x libhdf5-310 s390x 1.14.5+repack-3 [1477 kB] 535s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x liburiparser1 s390x 0.9.8+dfsg-2 [42.4 kB] 535s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x libkmlbase1t64 s390x 1.3.0-12build1 [50.5 kB] 535s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x libkmldom1t64 s390x 1.3.0-12build1 [151 kB] 535s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x libkmlengine1t64 s390x 1.3.0-12build1 [68.9 kB] 535s Get:111 http://ftpmaster.internal/ubuntu plucky/main s390x mysql-common all 5.8+1.1.1 [6800 B] 535s Get:112 http://ftpmaster.internal/ubuntu plucky/main s390x libmysqlclient24 s390x 8.4.4-0ubuntu1 [1295 kB] 535s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x libhdf5-hl-310 s390x 1.14.5+repack-3 [61.0 kB] 535s Get:114 http://ftpmaster.internal/ubuntu plucky/universe s390x libnetcdf19t64 s390x 1:4.9.2-6ubuntu2 [497 kB] 535s Get:115 http://ftpmaster.internal/ubuntu plucky/main s390x libodbc2 s390x 2.3.12-2ubuntu1 [163 kB] 535s Get:116 http://ftpmaster.internal/ubuntu plucky/main s390x unixodbc-common all 2.3.12-2ubuntu1 [9044 B] 535s Get:117 http://ftpmaster.internal/ubuntu plucky/main s390x libodbcinst2 s390x 2.3.12-2ubuntu1 [32.2 kB] 536s Get:118 http://ftpmaster.internal/ubuntu plucky/universe s390x libogdi4.1 s390x 4.1.1+ds-5 [219 kB] 536s Get:119 http://ftpmaster.internal/ubuntu plucky/main s390x libgpgmepp6t64 s390x 1.24.1-4ubuntu1 [125 kB] 536s Get:120 http://ftpmaster.internal/ubuntu plucky/main s390x libpoppler145 s390x 25.01.0-4 [1233 kB] 536s Get:121 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libpq5 s390x 17.3-2 [147 kB] 536s Get:122 http://ftpmaster.internal/ubuntu plucky/universe s390x libqhull-r8.0 s390x 2020.2-6build1 [199 kB] 536s Get:123 http://ftpmaster.internal/ubuntu plucky/universe s390x librttopo1 s390x 1.1.0-3build2 [200 kB] 536s Get:124 http://ftpmaster.internal/ubuntu plucky/universe s390x libspatialite8t64 s390x 5.1.0-3build1 [2050 kB] 536s Get:125 http://ftpmaster.internal/ubuntu plucky/universe s390x libxerces-c3.2t64 s390x 3.2.4+debian-1.3build1 [938 kB] 536s Get:126 http://ftpmaster.internal/ubuntu plucky/universe s390x libgdal36 s390x 3.10.1+dfsg-1build2 [9637 kB] 537s Get:127 http://ftpmaster.internal/ubuntu plucky/universe s390x libcharls2 s390x 2.4.2-2build2 [101 kB] 537s Get:128 http://ftpmaster.internal/ubuntu plucky/universe s390x libsocket++1 s390x 1.12.13+git20131030.5d039ba-1build1 [79.5 kB] 537s Get:129 http://ftpmaster.internal/ubuntu plucky/universe s390x libgdcm3.0t64 s390x 3.0.24-5ubuntu1 [2239 kB] 537s Get:130 http://ftpmaster.internal/ubuntu plucky/universe s390x libopencv-imgproc406t64 s390x 4.6.0+dfsg-14build3 [1138 kB] 537s Get:131 http://ftpmaster.internal/ubuntu plucky/universe s390x libimath-3-1-29t64 s390x 3.1.12-1ubuntu1 [73.0 kB] 537s Get:132 http://ftpmaster.internal/ubuntu plucky/universe s390x libopenexr-3-1-30 s390x 3.1.5-5.1build3 [1042 kB] 537s Get:133 http://ftpmaster.internal/ubuntu plucky/universe s390x libopencv-imgcodecs406t64 s390x 4.6.0+dfsg-14build3 [137 kB] 537s Get:134 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-1.1ubuntu2 [191 kB] 537s Get:135 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 537s Get:136 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 537s Get:137 http://ftpmaster.internal/ubuntu plucky/main s390x libthai-data all 0.1.29-2build1 [158 kB] 537s Get:138 http://ftpmaster.internal/ubuntu plucky/main s390x libdatrie1 s390x 0.2.13-3build1 [20.6 kB] 537s Get:139 http://ftpmaster.internal/ubuntu plucky/main s390x libthai0 s390x 0.1.29-2build1 [20.7 kB] 537s Get:140 http://ftpmaster.internal/ubuntu plucky/main s390x libpango-1.0-0 s390x 1.56.1-1 [253 kB] 538s Get:141 http://ftpmaster.internal/ubuntu plucky/main s390x libpangoft2-1.0-0 s390x 1.56.1-1 [50.3 kB] 538s Get:142 http://ftpmaster.internal/ubuntu plucky/main s390x libpangocairo-1.0-0 s390x 1.56.1-1 [28.3 kB] 538s Get:143 http://ftpmaster.internal/ubuntu plucky/main s390x libpoppler-glib8t64 s390x 25.01.0-4 [164 kB] 538s Get:144 http://ftpmaster.internal/ubuntu plucky/universe s390x tex-common all 6.18 [32.8 kB] 538s Get:145 http://ftpmaster.internal/ubuntu plucky/main s390x libxml-namespacesupport-perl all 1.12-2 [13.5 kB] 538s Get:146 http://ftpmaster.internal/ubuntu plucky/main s390x libxml-sax-base-perl all 1.09-3 [18.9 kB] 538s Get:147 http://ftpmaster.internal/ubuntu plucky/main s390x libxml-sax-perl all 1.02+dfsg-4 [52.4 kB] 538s Get:148 http://ftpmaster.internal/ubuntu plucky/main s390x libxml-libxml-perl s390x 2.0207+dfsg+really+2.0134-5build1 [312 kB] 538s Get:149 http://ftpmaster.internal/ubuntu plucky/main s390x libxml-simple-perl all 2.25-2 [64.1 kB] 538s Get:150 http://ftpmaster.internal/ubuntu plucky/universe s390x libxml-writer-perl all 0.900-2 [24.0 kB] 538s Get:151 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-gdkpixbuf-2.0 s390x 2.42.12+dfsg-2 [9330 B] 538s Get:152 http://ftpmaster.internal/ubuntu plucky/main s390x libatk1.0-0t64 s390x 2.55.2-1 [54.8 kB] 539s Get:153 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-atk-1.0 s390x 2.55.2-1 [22.9 kB] 539s Get:154 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo-gobject2 s390x 1.18.2-2 [127 kB] 539s Get:155 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-freedesktop s390x 1.82.0-4 [64.0 kB] 539s Get:156 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz-gobject0 s390x 10.2.0-1 [35.1 kB] 539s Get:157 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-harfbuzz-0.0 s390x 10.2.0-1 [44.4 kB] 539s Get:158 http://ftpmaster.internal/ubuntu plucky/main s390x libxft2 s390x 2.3.6-1build1 [49.6 kB] 539s Get:159 http://ftpmaster.internal/ubuntu plucky/main s390x libpangoxft-1.0-0 s390x 1.56.1-1 [20.2 kB] 539s Get:160 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-pango-1.0 s390x 1.56.1-1 [34.4 kB] 539s Get:161 http://ftpmaster.internal/ubuntu plucky/main s390x libatk-bridge2.0-0t64 s390x 2.55.2-1 [66.7 kB] 539s Get:162 http://ftpmaster.internal/ubuntu plucky/main s390x libcolord2 s390x 1.4.7-1build2 [151 kB] 539s Get:163 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-common-data s390x 0.8-14ubuntu1 [30.5 kB] 539s Get:164 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-common3 s390x 0.8-14ubuntu1 [23.6 kB] 539s Get:165 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-client3 s390x 0.8-14ubuntu1 [26.8 kB] 540s Get:166 http://ftpmaster.internal/ubuntu plucky/main s390x libcups2t64 s390x 2.4.11-0ubuntu2 [282 kB] 540s Get:167 http://ftpmaster.internal/ubuntu plucky/main s390x libepoxy0 s390x 1.5.10-2 [222 kB] 540s Get:168 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-1 [27.8 kB] 540s Get:169 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-cursor0 s390x 1.23.1-1 [11.5 kB] 540s Get:170 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-egl1 s390x 1.23.1-1 [5654 B] 540s Get:171 http://ftpmaster.internal/ubuntu plucky/main s390x libxcomposite1 s390x 1:0.4.6-1 [6588 B] 540s Get:172 http://ftpmaster.internal/ubuntu plucky/main s390x libxfixes3 s390x 1:6.0.0-2build1 [11.3 kB] 540s Get:173 http://ftpmaster.internal/ubuntu plucky/main s390x libxcursor1 s390x 1:1.2.3-1 [23.4 kB] 540s Get:174 http://ftpmaster.internal/ubuntu plucky/main s390x libxdamage1 s390x 1:1.1.6-1build1 [6156 B] 540s Get:175 http://ftpmaster.internal/ubuntu plucky/main s390x libxinerama1 s390x 2:1.1.4-3build1 [6476 B] 540s Get:176 http://ftpmaster.internal/ubuntu plucky/main s390x libxrandr2 s390x 2:1.5.4-1 [20.8 kB] 540s Get:177 http://ftpmaster.internal/ubuntu plucky/main s390x libgtk-3-common all 3.24.48-3ubuntu1 [1424 kB] 541s Get:178 http://ftpmaster.internal/ubuntu plucky/main s390x libgtk-3-0t64 s390x 3.24.48-3ubuntu1 [2949 kB] 541s Get:179 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-gtk-3.0 s390x 3.24.48-3ubuntu1 [241 kB] 541s Get:180 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo-perl s390x 1.109-5build1 [97.3 kB] 541s Get:181 http://ftpmaster.internal/ubuntu plucky/main s390x libextutils-depends-perl all 0.8001-2 [14.4 kB] 541s Get:182 http://ftpmaster.internal/ubuntu plucky/main s390x libglib-perl s390x 3:1.329.3-3build4 [326 kB] 541s Get:183 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo-gobject-perl s390x 1.005-4build4 [11.8 kB] 541s Get:184 http://ftpmaster.internal/ubuntu plucky/main s390x libglib-object-introspection-perl s390x 0.051-2build1 [69.2 kB] 541s Get:185 http://ftpmaster.internal/ubuntu plucky/main s390x libgtk3-perl all 0.038-3 [29.2 kB] 541s Get:186 http://ftpmaster.internal/ubuntu plucky/universe s390x libjxl0.11 s390x 0.11.1-1 [1008 kB] 542s Get:187 http://ftpmaster.internal/ubuntu plucky/main s390x libwmflite-0.2-7 s390x 0.2.13-1.1build3 [72.1 kB] 542s Get:188 http://ftpmaster.internal/ubuntu plucky/universe s390x libgraphicsmagick-q16-3t64 s390x 1.4+really1.3.45-1build2 [1323 kB] 542s Get:189 http://ftpmaster.internal/ubuntu plucky/universe s390x libgraphics-magick-perl s390x 1.4+really1.3.45-1build2 [61.5 kB] 542s Get:190 http://ftpmaster.internal/ubuntu plucky/main s390x libdbi-perl s390x 1.647-1 [832 kB] 542s Get:191 http://ftpmaster.internal/ubuntu plucky/universe s390x libdbd-sqlite3-perl s390x 1.76-1 [166 kB] 542s Get:192 http://ftpmaster.internal/ubuntu plucky/universe s390x liblocale-codes-perl all 3.81-1 [289 kB] 542s Get:193 http://ftpmaster.internal/ubuntu plucky/main s390x libencode-locale-perl all 1.05-3 [11.6 kB] 542s Get:194 http://ftpmaster.internal/ubuntu plucky/main s390x libipc-system-simple-perl all 1.30-2 [22.3 kB] 542s Get:195 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-basedir-perl all 0.09-2 [14.4 kB] 542s Get:196 http://ftpmaster.internal/ubuntu plucky/main s390x liburi-perl all 5.30-1 [94.4 kB] 542s Get:197 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-desktopentry-perl all 0.22-3 [16.8 kB] 542s Get:198 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-mimeinfo-perl all 0.35-1 [40.3 kB] 543s Get:199 http://ftpmaster.internal/ubuntu plucky/universe s390x libtext-csv-perl all 2.05-1 [113 kB] 543s Get:200 http://ftpmaster.internal/ubuntu plucky/universe s390x fonts-lmodern all 2.005-1 [4799 kB] 543s Get:201 http://ftpmaster.internal/ubuntu plucky/main s390x libpaper2 s390x 2.2.5-0.3 [17.2 kB] 543s Get:202 http://ftpmaster.internal/ubuntu plucky/main s390x libpaper-utils s390x 2.2.5-0.3 [15.3 kB] 543s Get:203 http://ftpmaster.internal/ubuntu plucky/main s390x libkpathsea6 s390x 2024.20240313.70630+ds-5build2 [66.9 kB] 543s Get:204 http://ftpmaster.internal/ubuntu plucky/main s390x libptexenc1 s390x 2024.20240313.70630+ds-5build2 [43.4 kB] 543s Get:205 http://ftpmaster.internal/ubuntu plucky/main s390x libsynctex2 s390x 2024.20240313.70630+ds-5build2 [64.6 kB] 543s Get:206 http://ftpmaster.internal/ubuntu plucky/main s390x libtexlua53-5 s390x 2024.20240313.70630+ds-5build2 [131 kB] 543s Get:207 http://ftpmaster.internal/ubuntu plucky/main s390x t1utils s390x 1.41-4build3 [65.6 kB] 543s Get:208 http://ftpmaster.internal/ubuntu plucky/universe s390x libmpfi0 s390x 1.5.4+ds-4 [34.1 kB] 543s Get:209 http://ftpmaster.internal/ubuntu plucky/universe s390x libpotrace0 s390x 1.16-2build1 [18.7 kB] 543s Get:210 http://ftpmaster.internal/ubuntu plucky/universe s390x libteckit0 s390x 2.5.12+ds1-1 [433 kB] 544s Get:211 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 544s Get:212 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 544s Get:213 http://ftpmaster.internal/ubuntu plucky/main s390x libxt6t64 s390x 1:1.2.1-1.2build1 [184 kB] 544s Get:214 http://ftpmaster.internal/ubuntu plucky/main s390x libxmu6 s390x 2:1.1.3-3build2 [53.0 kB] 544s Get:215 http://ftpmaster.internal/ubuntu plucky/main s390x libxpm4 s390x 1:3.5.17-1build2 [41.2 kB] 544s Get:216 http://ftpmaster.internal/ubuntu plucky/main s390x libxaw7 s390x 2:1.0.16-1 [201 kB] 544s Get:217 http://ftpmaster.internal/ubuntu plucky/universe s390x libzzip-0-13t64 s390x 0.13.72+dfsg.1-1.2build1 [28.6 kB] 544s Get:218 http://ftpmaster.internal/ubuntu plucky/universe s390x texlive-binaries s390x 2024.20240313.70630+ds-5build2 [9171 kB] 544s Get:219 http://ftpmaster.internal/ubuntu plucky/main s390x xdg-utils all 1.2.1-2ubuntu1 [66.0 kB] 544s Get:220 http://ftpmaster.internal/ubuntu plucky/universe s390x texlive-base all 2024.20241115-1 [22.5 MB] 545s Get:221 http://ftpmaster.internal/ubuntu plucky/universe s390x texlive-latex-base all 2024.20241115-1 [1260 kB] 545s Get:222 http://ftpmaster.internal/ubuntu plucky/universe s390x texlive-latex-recommended all 2024.20241115-1 [8739 kB] 545s Get:223 http://ftpmaster.internal/ubuntu plucky/universe s390x libapache-pom-java all 33-2 [5874 B] 545s Get:224 http://ftpmaster.internal/ubuntu plucky/universe s390x libcommons-parent-java all 56-1 [10.7 kB] 545s Get:225 http://ftpmaster.internal/ubuntu plucky/universe s390x libcommons-logging-java all 1.3.0-1ubuntu1 [63.8 kB] 546s Get:226 http://ftpmaster.internal/ubuntu plucky/universe s390x libfontbox-java all 1:1.8.16-5 [208 kB] 546s Get:227 http://ftpmaster.internal/ubuntu plucky/universe s390x libpdfbox-java all 1:1.8.16-5 [5521 kB] 546s Get:228 http://ftpmaster.internal/ubuntu plucky/universe s390x preview-latex-style all 13.2-1 [347 kB] 546s Get:229 http://ftpmaster.internal/ubuntu plucky/universe s390x texlive-pictures all 2024.20241115-1 [17.0 MB] 546s Get:230 http://ftpmaster.internal/ubuntu plucky/universe s390x texlive-latex-extra all 2024.20250114-1 [24.3 MB] 547s Get:231 http://ftpmaster.internal/ubuntu plucky/universe s390x texlive-fonts-recommended all 2024.20241115-1 [4973 kB] 547s Get:232 http://ftpmaster.internal/ubuntu plucky/universe s390x texlive-fonts-extra all 2024.20250114-1 [624 MB] 565s Get:233 http://ftpmaster.internal/ubuntu plucky/universe s390x imagemagick-7.q16 s390x 8:7.1.1.43+dfsg1-1 [703 kB] 565s Get:234 http://ftpmaster.internal/ubuntu plucky/universe s390x imagemagick s390x 8:7.1.1.43+dfsg1-1 [14.1 kB] 565s Get:235 http://ftpmaster.internal/ubuntu plucky/universe s390x libnetpbm11t64 s390x 2:11.09.02-2 [124 kB] 565s Get:236 http://ftpmaster.internal/ubuntu plucky/universe s390x netpbm s390x 2:11.09.02-2 [2207 kB] 565s Get:237 http://ftpmaster.internal/ubuntu plucky/main s390x libgs-common all 10.04.0~dfsg1-2ubuntu1 [176 kB] 566s Get:238 http://ftpmaster.internal/ubuntu plucky/main s390x libgs10-common all 10.04.0~dfsg1-2ubuntu1 [488 kB] 566s Get:239 http://ftpmaster.internal/ubuntu plucky/main s390x libidn12 s390x 1.42-3 [56.9 kB] 566s Get:240 http://ftpmaster.internal/ubuntu plucky/main s390x libijs-0.35 s390x 0.35-15.1build1 [15.5 kB] 566s Get:241 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig2dec0 s390x 0.20-1build3 [69.3 kB] 566s Get:242 http://ftpmaster.internal/ubuntu plucky/main s390x libgs10 s390x 10.04.0~dfsg1-2ubuntu1 [3964 kB] 566s Get:243 http://ftpmaster.internal/ubuntu plucky/main s390x ghostscript s390x 10.04.0~dfsg1-2ubuntu1 [43.7 kB] 566s Get:244 http://ftpmaster.internal/ubuntu plucky/main s390x poppler-utils s390x 25.01.0-4 [227 kB] 566s Get:245 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 566s Get:246 http://ftpmaster.internal/ubuntu plucky/main s390x librsvg2-2 s390x 2.59.90+dfsg-2 [1986 kB] 566s Get:247 http://ftpmaster.internal/ubuntu plucky/main s390x librsvg2-common s390x 2.59.90+dfsg-2 [181 kB] 567s Get:248 http://ftpmaster.internal/ubuntu plucky/main s390x unzip s390x 6.0-28ubuntu6 [186 kB] 567s Get:249 http://ftpmaster.internal/ubuntu plucky/main s390x libclone-perl s390x 0.47-1 [10.7 kB] 567s Get:250 http://ftpmaster.internal/ubuntu plucky/universe s390x auto-multiple-choice-common all 1.6.0-4 [550 kB] 567s Get:251 http://ftpmaster.internal/ubuntu plucky/universe s390x auto-multiple-choice s390x 1.6.0-4 [34.2 kB] 567s Get:252 http://ftpmaster.internal/ubuntu plucky/universe s390x auto-multiple-choice-doc all 1.6.0-4 [179 kB] 567s Get:253 http://ftpmaster.internal/ubuntu plucky/universe s390x auto-multiple-choice-doc-pdf all 1.6.0-4 [3050 kB] 567s Get:254 http://ftpmaster.internal/ubuntu plucky/main s390x libnotify4 s390x 0.8.3-1build2 [25.5 kB] 567s Get:255 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-notify-0.7 s390x 0.8.3-1build2 [3750 B] 567s Get:256 http://ftpmaster.internal/ubuntu plucky/main s390x libxfont2 s390x 1:2.0.6-1build1 [101 kB] 567s Get:257 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbfile1 s390x 1:1.1.0-1build4 [76.5 kB] 567s Get:258 http://ftpmaster.internal/ubuntu plucky/main s390x x11-xkb-utils s390x 7.7+9 [169 kB] 567s Get:259 http://ftpmaster.internal/ubuntu plucky/main s390x xserver-common all 2:21.1.14-2ubuntu1 [33.7 kB] 567s Get:260 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 567s Get:261 http://ftpmaster.internal/ubuntu plucky/universe s390x xvfb s390x 2:21.1.14-2ubuntu1 [941 kB] 568s Preconfiguring packages ... 568s Fetched 831 MB in 39s (21.5 MB/s) 568s Selecting previously unselected package libgomp1:s390x. 568s (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.) 568s Preparing to unpack .../000-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 568s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 568s Selecting previously unselected package libfftw3-double3:s390x. 569s Preparing to unpack .../001-libfftw3-double3_3.3.10-2fakesync1build1_s390x.deb ... 569s Unpacking libfftw3-double3:s390x (3.3.10-2fakesync1build1) ... 569s Selecting previously unselected package libfreetype6:s390x. 569s Preparing to unpack .../002-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 569s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 569s Selecting previously unselected package fonts-dejavu-mono. 569s Preparing to unpack .../003-fonts-dejavu-mono_2.37-8_all.deb ... 569s Unpacking fonts-dejavu-mono (2.37-8) ... 569s Selecting previously unselected package fonts-dejavu-core. 569s Preparing to unpack .../004-fonts-dejavu-core_2.37-8_all.deb ... 569s Unpacking fonts-dejavu-core (2.37-8) ... 569s Selecting previously unselected package libfontenc1:s390x. 569s Preparing to unpack .../005-libfontenc1_1%3a1.1.8-1build1_s390x.deb ... 569s Unpacking libfontenc1:s390x (1:1.1.8-1build1) ... 569s Selecting previously unselected package x11-common. 569s Preparing to unpack .../006-x11-common_1%3a7.7+23ubuntu3_all.deb ... 569s Unpacking x11-common (1:7.7+23ubuntu3) ... 569s Selecting previously unselected package xfonts-encodings. 569s Preparing to unpack .../007-xfonts-encodings_1%3a1.0.5-0ubuntu2_all.deb ... 569s Unpacking xfonts-encodings (1:1.0.5-0ubuntu2) ... 569s Selecting previously unselected package xfonts-utils. 569s Preparing to unpack .../008-xfonts-utils_1%3a7.7+7_s390x.deb ... 569s Unpacking xfonts-utils (1:7.7+7) ... 569s Selecting previously unselected package fonts-urw-base35. 569s Preparing to unpack .../009-fonts-urw-base35_20200910-8_all.deb ... 569s Unpacking fonts-urw-base35 (20200910-8) ... 569s Selecting previously unselected package fontconfig-config. 569s Preparing to unpack .../010-fontconfig-config_2.15.0-1.1ubuntu2_s390x.deb ... 569s Unpacking fontconfig-config (2.15.0-1.1ubuntu2) ... 569s Selecting previously unselected package libfontconfig1:s390x. 569s Preparing to unpack .../011-libfontconfig1_2.15.0-1.1ubuntu2_s390x.deb ... 569s Unpacking libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 569s Selecting previously unselected package libsharpyuv0:s390x. 569s Preparing to unpack .../012-libsharpyuv0_1.5.0-0.1_s390x.deb ... 569s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 569s Selecting previously unselected package libaom3:s390x. 569s Preparing to unpack .../013-libaom3_3.12.0-1_s390x.deb ... 569s Unpacking libaom3:s390x (3.12.0-1) ... 569s Selecting previously unselected package libheif-plugin-aomdec:s390x. 569s Preparing to unpack .../014-libheif-plugin-aomdec_1.19.5-1build1_s390x.deb ... 569s Unpacking libheif-plugin-aomdec:s390x (1.19.5-1build1) ... 569s Selecting previously unselected package libde265-0:s390x. 569s Preparing to unpack .../015-libde265-0_1.0.15-1build4_s390x.deb ... 569s Unpacking libde265-0:s390x (1.0.15-1build4) ... 569s Selecting previously unselected package libheif-plugin-libde265:s390x. 569s Preparing to unpack .../016-libheif-plugin-libde265_1.19.5-1build1_s390x.deb ... 569s Unpacking libheif-plugin-libde265:s390x (1.19.5-1build1) ... 569s Selecting previously unselected package libheif1:s390x. 569s Preparing to unpack .../017-libheif1_1.19.5-1build1_s390x.deb ... 569s Unpacking libheif1:s390x (1.19.5-1build1) ... 569s Selecting previously unselected package libjbig0:s390x. 569s Preparing to unpack .../018-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 569s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 569s Selecting previously unselected package libjpeg-turbo8:s390x. 569s Preparing to unpack .../019-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 569s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 569s Selecting previously unselected package libjpeg8:s390x. 569s Preparing to unpack .../020-libjpeg8_8c-2ubuntu11_s390x.deb ... 569s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 569s Selecting previously unselected package liblcms2-2:s390x. 569s Preparing to unpack .../021-liblcms2-2_2.16-2_s390x.deb ... 569s Unpacking liblcms2-2:s390x (2.16-2) ... 569s Selecting previously unselected package liblqr-1-0:s390x. 569s Preparing to unpack .../022-liblqr-1-0_0.4.2-2.1build2_s390x.deb ... 569s Unpacking liblqr-1-0:s390x (0.4.2-2.1build2) ... 569s Selecting previously unselected package libltdl7:s390x. 569s Preparing to unpack .../023-libltdl7_2.5.4-3build1_s390x.deb ... 569s Unpacking libltdl7:s390x (2.5.4-3build1) ... 569s Selecting previously unselected package libopenjp2-7:s390x. 569s Preparing to unpack .../024-libopenjp2-7_2.5.0-2ubuntu3_s390x.deb ... 569s Unpacking libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 569s Selecting previously unselected package libraw23t64:s390x. 569s Preparing to unpack .../025-libraw23t64_0.21.3-1_s390x.deb ... 569s Unpacking libraw23t64:s390x (0.21.3-1) ... 569s Selecting previously unselected package libdeflate0:s390x. 569s Preparing to unpack .../026-libdeflate0_1.23-1_s390x.deb ... 569s Unpacking libdeflate0:s390x (1.23-1) ... 569s Selecting previously unselected package libwebp7:s390x. 569s Preparing to unpack .../027-libwebp7_1.5.0-0.1_s390x.deb ... 569s Unpacking libwebp7:s390x (1.5.0-0.1) ... 569s Selecting previously unselected package libtiff6:s390x. 569s Preparing to unpack .../028-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 569s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 569s Selecting previously unselected package libwebpdemux2:s390x. 569s Preparing to unpack .../029-libwebpdemux2_1.5.0-0.1_s390x.deb ... 569s Unpacking libwebpdemux2:s390x (1.5.0-0.1) ... 569s Selecting previously unselected package libwebpmux3:s390x. 569s Preparing to unpack .../030-libwebpmux3_1.5.0-0.1_s390x.deb ... 569s Unpacking libwebpmux3:s390x (1.5.0-0.1) ... 569s Selecting previously unselected package imagemagick-7-common. 569s Preparing to unpack .../031-imagemagick-7-common_8%3a7.1.1.43+dfsg1-1_all.deb ... 569s Unpacking imagemagick-7-common (8:7.1.1.43+dfsg1-1) ... 569s Selecting previously unselected package libmagickcore-7.q16-10:s390x. 569s Preparing to unpack .../032-libmagickcore-7.q16-10_8%3a7.1.1.43+dfsg1-1_s390x.deb ... 569s Unpacking libmagickcore-7.q16-10:s390x (8:7.1.1.43+dfsg1-1) ... 569s Selecting previously unselected package libmagickwand-7.q16-10:s390x. 569s Preparing to unpack .../033-libmagickwand-7.q16-10_8%3a7.1.1.43+dfsg1-1_s390x.deb ... 569s Unpacking libmagickwand-7.q16-10:s390x (8:7.1.1.43+dfsg1-1) ... 569s Selecting previously unselected package poppler-data. 569s Preparing to unpack .../034-poppler-data_0.4.12-1_all.deb ... 569s Unpacking poppler-data (0.4.12-1) ... 569s Selecting previously unselected package libgdk-pixbuf2.0-common. 569s Preparing to unpack .../035-libgdk-pixbuf2.0-common_2.42.12+dfsg-2_all.deb ... 569s Unpacking libgdk-pixbuf2.0-common (2.42.12+dfsg-2) ... 569s Selecting previously unselected package libgdk-pixbuf-2.0-0:s390x. 569s Preparing to unpack .../036-libgdk-pixbuf-2.0-0_2.42.12+dfsg-2_s390x.deb ... 569s Unpacking libgdk-pixbuf-2.0-0:s390x (2.42.12+dfsg-2) ... 569s Selecting previously unselected package gtk-update-icon-cache. 569s Preparing to unpack .../037-gtk-update-icon-cache_4.17.4+ds-4_s390x.deb ... 569s No diversion 'diversion of /usr/sbin/update-icon-caches to /usr/sbin/update-icon-caches.gtk2 by libgtk-3-bin', none removed. 569s No diversion 'diversion of /usr/share/man/man8/update-icon-caches.8.gz to /usr/share/man/man8/update-icon-caches.gtk2.8.gz by libgtk-3-bin', none removed. 569s Unpacking gtk-update-icon-cache (4.17.4+ds-4) ... 569s Selecting previously unselected package hicolor-icon-theme. 569s Preparing to unpack .../038-hicolor-icon-theme_0.18-2_all.deb ... 569s Unpacking hicolor-icon-theme (0.18-2) ... 569s Selecting previously unselected package adwaita-icon-theme. 569s Preparing to unpack .../039-adwaita-icon-theme_48~beta-3_all.deb ... 569s Unpacking adwaita-icon-theme (48~beta-3) ... 569s Selecting previously unselected package at-spi2-common. 569s Preparing to unpack .../040-at-spi2-common_2.55.2-1_all.deb ... 569s Unpacking at-spi2-common (2.55.2-1) ... 569s Selecting previously unselected package libxi6:s390x. 569s Preparing to unpack .../041-libxi6_2%3a1.8.2-1_s390x.deb ... 569s Unpacking libxi6:s390x (2:1.8.2-1) ... 569s Selecting previously unselected package libatspi2.0-0t64:s390x. 569s Preparing to unpack .../042-libatspi2.0-0t64_2.55.2-1_s390x.deb ... 569s Unpacking libatspi2.0-0t64:s390x (2.55.2-1) ... 569s Selecting previously unselected package libxtst6:s390x. 569s Preparing to unpack .../043-libxtst6_2%3a1.2.5-1_s390x.deb ... 569s Unpacking libxtst6:s390x (2:1.2.5-1) ... 569s Selecting previously unselected package libdconf1:s390x. 569s Preparing to unpack .../044-libdconf1_0.40.0-5_s390x.deb ... 569s Unpacking libdconf1:s390x (0.40.0-5) ... 569s Selecting previously unselected package dconf-service. 569s Preparing to unpack .../045-dconf-service_0.40.0-5_s390x.deb ... 569s Unpacking dconf-service (0.40.0-5) ... 569s Selecting previously unselected package dconf-gsettings-backend:s390x. 569s Preparing to unpack .../046-dconf-gsettings-backend_0.40.0-5_s390x.deb ... 569s Unpacking dconf-gsettings-backend:s390x (0.40.0-5) ... 569s Selecting previously unselected package gsettings-desktop-schemas. 569s Preparing to unpack .../047-gsettings-desktop-schemas_48~beta-1ubuntu1_all.deb ... 569s Unpacking gsettings-desktop-schemas (48~beta-1ubuntu1) ... 569s Selecting previously unselected package at-spi2-core. 569s Preparing to unpack .../048-at-spi2-core_2.55.2-1_s390x.deb ... 569s Unpacking at-spi2-core (2.55.2-1) ... 569s Selecting previously unselected package libpixman-1-0:s390x. 570s Preparing to unpack .../049-libpixman-1-0_0.44.0-3_s390x.deb ... 570s Unpacking libpixman-1-0:s390x (0.44.0-3) ... 570s Selecting previously unselected package libxcb-render0:s390x. 570s Preparing to unpack .../050-libxcb-render0_1.17.0-2_s390x.deb ... 570s Unpacking libxcb-render0:s390x (1.17.0-2) ... 570s Selecting previously unselected package libxcb-shm0:s390x. 570s Preparing to unpack .../051-libxcb-shm0_1.17.0-2_s390x.deb ... 570s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 570s Selecting previously unselected package libxrender1:s390x. 570s Preparing to unpack .../052-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 570s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 570s Selecting previously unselected package libcairo2:s390x. 570s Preparing to unpack .../053-libcairo2_1.18.2-2_s390x.deb ... 570s Unpacking libcairo2:s390x (1.18.2-2) ... 570s Selecting previously unselected package libblas3:s390x. 570s Preparing to unpack .../054-libblas3_3.12.1-2_s390x.deb ... 570s Unpacking libblas3:s390x (3.12.1-2) ... 570s Selecting previously unselected package libglvnd0:s390x. 570s Preparing to unpack .../055-libglvnd0_1.7.0-1build1_s390x.deb ... 570s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 570s Selecting previously unselected package libglapi-mesa:s390x. 570s Preparing to unpack .../056-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 570s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 570s Selecting previously unselected package libx11-xcb1:s390x. 570s Preparing to unpack .../057-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 570s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 570s Selecting previously unselected package libxcb-dri3-0:s390x. 570s Preparing to unpack .../058-libxcb-dri3-0_1.17.0-2_s390x.deb ... 570s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 570s Selecting previously unselected package libxcb-glx0:s390x. 570s Preparing to unpack .../059-libxcb-glx0_1.17.0-2_s390x.deb ... 570s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 570s Selecting previously unselected package libxcb-present0:s390x. 570s Preparing to unpack .../060-libxcb-present0_1.17.0-2_s390x.deb ... 570s Unpacking libxcb-present0:s390x (1.17.0-2) ... 570s Selecting previously unselected package libxcb-xfixes0:s390x. 570s Preparing to unpack .../061-libxcb-xfixes0_1.17.0-2_s390x.deb ... 570s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 570s Selecting previously unselected package libxxf86vm1:s390x. 570s Preparing to unpack .../062-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 570s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 570s Selecting previously unselected package libdrm-radeon1:s390x. 570s Preparing to unpack .../063-libdrm-radeon1_2.4.123-1_s390x.deb ... 570s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 570s Selecting previously unselected package libxcb-randr0:s390x. 570s Preparing to unpack .../064-libxcb-randr0_1.17.0-2_s390x.deb ... 570s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 570s Selecting previously unselected package libxcb-sync1:s390x. 570s Preparing to unpack .../065-libxcb-sync1_1.17.0-2_s390x.deb ... 570s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 570s Selecting previously unselected package libxshmfence1:s390x. 570s Preparing to unpack .../066-libxshmfence1_1.3-1build5_s390x.deb ... 570s Unpacking libxshmfence1:s390x (1.3-1build5) ... 570s Selecting previously unselected package mesa-libgallium:s390x. 570s Preparing to unpack .../067-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 570s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 570s Selecting previously unselected package libwayland-server0:s390x. 570s Preparing to unpack .../068-libwayland-server0_1.23.1-1_s390x.deb ... 570s Unpacking libwayland-server0:s390x (1.23.1-1) ... 570s Selecting previously unselected package libgbm1:s390x. 570s Preparing to unpack .../069-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 570s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 570s Selecting previously unselected package libvulkan1:s390x. 570s Preparing to unpack .../070-libvulkan1_1.4.304.0-1_s390x.deb ... 570s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 570s Selecting previously unselected package libgl1-mesa-dri:s390x. 570s Preparing to unpack .../071-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 570s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 570s Selecting previously unselected package libglx-mesa0:s390x. 570s Preparing to unpack .../072-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 570s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 570s Selecting previously unselected package libglx0:s390x. 570s Preparing to unpack .../073-libglx0_1.7.0-1build1_s390x.deb ... 570s Unpacking libglx0:s390x (1.7.0-1build1) ... 570s Selecting previously unselected package libgfortran5:s390x. 570s Preparing to unpack .../074-libgfortran5_14.2.0-17ubuntu1_s390x.deb ... 570s Unpacking libgfortran5:s390x (14.2.0-17ubuntu1) ... 570s Selecting previously unselected package liblapack3:s390x. 570s Preparing to unpack .../075-liblapack3_3.12.1-2_s390x.deb ... 570s Unpacking liblapack3:s390x (3.12.1-2) ... 570s Selecting previously unselected package libtbbmalloc2:s390x. 570s Preparing to unpack .../076-libtbbmalloc2_2022.0.0-1_s390x.deb ... 570s Unpacking libtbbmalloc2:s390x (2022.0.0-1) ... 570s Selecting previously unselected package libhwloc15:s390x. 570s Preparing to unpack .../077-libhwloc15_2.11.2-1build1_s390x.deb ... 570s Unpacking libhwloc15:s390x (2.11.2-1build1) ... 570s Selecting previously unselected package libtbbbind-2-5:s390x. 570s Preparing to unpack .../078-libtbbbind-2-5_2022.0.0-1_s390x.deb ... 570s Unpacking libtbbbind-2-5:s390x (2022.0.0-1) ... 570s Selecting previously unselected package libtbb12:s390x. 570s Preparing to unpack .../079-libtbb12_2022.0.0-1_s390x.deb ... 570s Unpacking libtbb12:s390x (2022.0.0-1) ... 570s Selecting previously unselected package libopencv-core406t64:s390x. 570s Preparing to unpack .../080-libopencv-core406t64_4.6.0+dfsg-14build3_s390x.deb ... 570s Unpacking libopencv-core406t64:s390x (4.6.0+dfsg-14build3) ... 570s Selecting previously unselected package gdal-data. 570s Preparing to unpack .../081-gdal-data_3.10.1+dfsg-1build2_all.deb ... 570s Unpacking gdal-data (3.10.1+dfsg-1build2) ... 570s Selecting previously unselected package gdal-plugins:s390x. 570s Preparing to unpack .../082-gdal-plugins_3.10.1+dfsg-1build2_s390x.deb ... 570s Unpacking gdal-plugins:s390x (3.10.1+dfsg-1build2) ... 570s Selecting previously unselected package libaec0:s390x. 570s Preparing to unpack .../083-libaec0_1.1.3-1_s390x.deb ... 570s Unpacking libaec0:s390x (1.1.3-1) ... 570s Selecting previously unselected package libarpack2t64:s390x. 570s Preparing to unpack .../084-libarpack2t64_3.9.1-4_s390x.deb ... 570s Unpacking libarpack2t64:s390x (3.9.1-4) ... 570s Selecting previously unselected package libarmadillo14. 570s Preparing to unpack .../085-libarmadillo14_1%3a14.2.1+dfsg-1_s390x.deb ... 570s Unpacking libarmadillo14 (1:14.2.1+dfsg-1) ... 570s Selecting previously unselected package libdav1d7:s390x. 570s Preparing to unpack .../086-libdav1d7_1.5.1-1_s390x.deb ... 570s Unpacking libdav1d7:s390x (1.5.1-1) ... 570s Selecting previously unselected package librav1e0.7:s390x. 570s Preparing to unpack .../087-librav1e0.7_0.7.1-9_s390x.deb ... 570s Unpacking librav1e0.7:s390x (0.7.1-9) ... 570s Selecting previously unselected package libsvtav1enc2:s390x. 570s Preparing to unpack .../088-libsvtav1enc2_2.3.0+dfsg-1_s390x.deb ... 570s Unpacking libsvtav1enc2:s390x (2.3.0+dfsg-1) ... 570s Selecting previously unselected package libyuv0:s390x. 570s Preparing to unpack .../089-libyuv0_0.0.1904.20250204-1_s390x.deb ... 570s Unpacking libyuv0:s390x (0.0.1904.20250204-1) ... 570s Selecting previously unselected package libavif16:s390x. 570s Preparing to unpack .../090-libavif16_1.1.1-1ubuntu1_s390x.deb ... 570s Unpacking libavif16:s390x (1.1.1-1ubuntu1) ... 570s Selecting previously unselected package libsnappy1v5:s390x. 570s Preparing to unpack .../091-libsnappy1v5_1.2.1-1_s390x.deb ... 570s Unpacking libsnappy1v5:s390x (1.2.1-1) ... 570s Selecting previously unselected package libblosc1:s390x. 570s Preparing to unpack .../092-libblosc1_1.21.5+ds-1build1_s390x.deb ... 570s Unpacking libblosc1:s390x (1.21.5+ds-1build1) ... 570s Selecting previously unselected package libcfitsio10t64:s390x. 570s Preparing to unpack .../093-libcfitsio10t64_4.5.0-5_s390x.deb ... 570s Unpacking libcfitsio10t64:s390x (4.5.0-5) ... 570s Selecting previously unselected package libminizip1t64:s390x. 570s Preparing to unpack .../094-libminizip1t64_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 570s Unpacking libminizip1t64:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 570s Selecting previously unselected package libfreexl1:s390x. 570s Preparing to unpack .../095-libfreexl1_2.0.0-1build2_s390x.deb ... 570s Unpacking libfreexl1:s390x (2.0.0-1build2) ... 570s Selecting previously unselected package libfyba0t64:s390x. 570s Preparing to unpack .../096-libfyba0t64_4.1.1-11build1_s390x.deb ... 570s Unpacking libfyba0t64:s390x (4.1.1-11build1) ... 570s Selecting previously unselected package libgeos3.13.0:s390x. 570s Preparing to unpack .../097-libgeos3.13.0_3.13.0-1_s390x.deb ... 570s Unpacking libgeos3.13.0:s390x (3.13.0-1) ... 570s Selecting previously unselected package libgeos-c1t64:s390x. 570s Preparing to unpack .../098-libgeos-c1t64_3.13.0-1_s390x.deb ... 570s Unpacking libgeos-c1t64:s390x (3.13.0-1) ... 570s Selecting previously unselected package proj-data. 570s Preparing to unpack .../099-proj-data_9.5.1-1_all.deb ... 570s Unpacking proj-data (9.5.1-1) ... 570s Selecting previously unselected package libproj25:s390x. 570s Preparing to unpack .../100-libproj25_9.5.1-1_s390x.deb ... 570s Unpacking libproj25:s390x (9.5.1-1) ... 570s Selecting previously unselected package libgeotiff5:s390x. 570s Preparing to unpack .../101-libgeotiff5_1.7.3-1_s390x.deb ... 570s Unpacking libgeotiff5:s390x (1.7.3-1) ... 570s Selecting previously unselected package libgif7:s390x. 570s Preparing to unpack .../102-libgif7_5.2.2-1ubuntu1_s390x.deb ... 570s Unpacking libgif7:s390x (5.2.2-1ubuntu1) ... 570s Selecting previously unselected package libsz2:s390x. 570s Preparing to unpack .../103-libsz2_1.1.3-1_s390x.deb ... 570s Unpacking libsz2:s390x (1.1.3-1) ... 570s Selecting previously unselected package libhdf4-0-alt:s390x. 570s Preparing to unpack .../104-libhdf4-0-alt_4.3.0-1_s390x.deb ... 570s Unpacking libhdf4-0-alt:s390x (4.3.0-1) ... 570s Selecting previously unselected package libhdf5-310:s390x. 570s Preparing to unpack .../105-libhdf5-310_1.14.5+repack-3_s390x.deb ... 570s Unpacking libhdf5-310:s390x (1.14.5+repack-3) ... 571s Selecting previously unselected package liburiparser1:s390x. 571s Preparing to unpack .../106-liburiparser1_0.9.8+dfsg-2_s390x.deb ... 571s Unpacking liburiparser1:s390x (0.9.8+dfsg-2) ... 571s Selecting previously unselected package libkmlbase1t64:s390x. 571s Preparing to unpack .../107-libkmlbase1t64_1.3.0-12build1_s390x.deb ... 571s Unpacking libkmlbase1t64:s390x (1.3.0-12build1) ... 571s Selecting previously unselected package libkmldom1t64:s390x. 571s Preparing to unpack .../108-libkmldom1t64_1.3.0-12build1_s390x.deb ... 571s Unpacking libkmldom1t64:s390x (1.3.0-12build1) ... 571s Selecting previously unselected package libkmlengine1t64:s390x. 571s Preparing to unpack .../109-libkmlengine1t64_1.3.0-12build1_s390x.deb ... 571s Unpacking libkmlengine1t64:s390x (1.3.0-12build1) ... 571s Selecting previously unselected package mysql-common. 571s Preparing to unpack .../110-mysql-common_5.8+1.1.1_all.deb ... 571s Unpacking mysql-common (5.8+1.1.1) ... 571s Selecting previously unselected package libmysqlclient24:s390x. 571s Preparing to unpack .../111-libmysqlclient24_8.4.4-0ubuntu1_s390x.deb ... 571s Unpacking libmysqlclient24:s390x (8.4.4-0ubuntu1) ... 571s Selecting previously unselected package libhdf5-hl-310:s390x. 571s Preparing to unpack .../112-libhdf5-hl-310_1.14.5+repack-3_s390x.deb ... 571s Unpacking libhdf5-hl-310:s390x (1.14.5+repack-3) ... 571s Selecting previously unselected package libnetcdf19t64:s390x. 571s Preparing to unpack .../113-libnetcdf19t64_1%3a4.9.2-6ubuntu2_s390x.deb ... 571s Unpacking libnetcdf19t64:s390x (1:4.9.2-6ubuntu2) ... 571s Selecting previously unselected package libodbc2:s390x. 571s Preparing to unpack .../114-libodbc2_2.3.12-2ubuntu1_s390x.deb ... 571s Unpacking libodbc2:s390x (2.3.12-2ubuntu1) ... 571s Selecting previously unselected package unixodbc-common. 571s Preparing to unpack .../115-unixodbc-common_2.3.12-2ubuntu1_all.deb ... 571s Unpacking unixodbc-common (2.3.12-2ubuntu1) ... 571s Selecting previously unselected package libodbcinst2:s390x. 571s Preparing to unpack .../116-libodbcinst2_2.3.12-2ubuntu1_s390x.deb ... 571s Unpacking libodbcinst2:s390x (2.3.12-2ubuntu1) ... 571s Selecting previously unselected package libogdi4.1:s390x. 571s Preparing to unpack .../117-libogdi4.1_4.1.1+ds-5_s390x.deb ... 571s Unpacking libogdi4.1:s390x (4.1.1+ds-5) ... 571s Selecting previously unselected package libgpgmepp6t64:s390x. 571s Preparing to unpack .../118-libgpgmepp6t64_1.24.1-4ubuntu1_s390x.deb ... 571s Unpacking libgpgmepp6t64:s390x (1.24.1-4ubuntu1) ... 571s Selecting previously unselected package libpoppler145:s390x. 571s Preparing to unpack .../119-libpoppler145_25.01.0-4_s390x.deb ... 571s Unpacking libpoppler145:s390x (25.01.0-4) ... 571s Selecting previously unselected package libpq5:s390x. 571s Preparing to unpack .../120-libpq5_17.3-2_s390x.deb ... 571s Unpacking libpq5:s390x (17.3-2) ... 571s Selecting previously unselected package libqhull-r8.0:s390x. 571s Preparing to unpack .../121-libqhull-r8.0_2020.2-6build1_s390x.deb ... 571s Unpacking libqhull-r8.0:s390x (2020.2-6build1) ... 571s Selecting previously unselected package librttopo1:s390x. 571s Preparing to unpack .../122-librttopo1_1.1.0-3build2_s390x.deb ... 571s Unpacking librttopo1:s390x (1.1.0-3build2) ... 571s Selecting previously unselected package libspatialite8t64:s390x. 571s Preparing to unpack .../123-libspatialite8t64_5.1.0-3build1_s390x.deb ... 571s Unpacking libspatialite8t64:s390x (5.1.0-3build1) ... 571s Selecting previously unselected package libxerces-c3.2t64:s390x. 571s Preparing to unpack .../124-libxerces-c3.2t64_3.2.4+debian-1.3build1_s390x.deb ... 571s Unpacking libxerces-c3.2t64:s390x (3.2.4+debian-1.3build1) ... 571s Selecting previously unselected package libgdal36:s390x. 571s Preparing to unpack .../125-libgdal36_3.10.1+dfsg-1build2_s390x.deb ... 571s Unpacking libgdal36:s390x (3.10.1+dfsg-1build2) ... 571s Selecting previously unselected package libcharls2:s390x. 571s Preparing to unpack .../126-libcharls2_2.4.2-2build2_s390x.deb ... 571s Unpacking libcharls2:s390x (2.4.2-2build2) ... 571s Selecting previously unselected package libsocket++1:s390x. 571s Preparing to unpack .../127-libsocket++1_1.12.13+git20131030.5d039ba-1build1_s390x.deb ... 571s Unpacking libsocket++1:s390x (1.12.13+git20131030.5d039ba-1build1) ... 571s Selecting previously unselected package libgdcm3.0t64:s390x. 571s Preparing to unpack .../128-libgdcm3.0t64_3.0.24-5ubuntu1_s390x.deb ... 571s Unpacking libgdcm3.0t64:s390x (3.0.24-5ubuntu1) ... 571s Selecting previously unselected package libopencv-imgproc406t64:s390x. 571s Preparing to unpack .../129-libopencv-imgproc406t64_4.6.0+dfsg-14build3_s390x.deb ... 571s Unpacking libopencv-imgproc406t64:s390x (4.6.0+dfsg-14build3) ... 571s Selecting previously unselected package libimath-3-1-29t64:s390x. 571s Preparing to unpack .../130-libimath-3-1-29t64_3.1.12-1ubuntu1_s390x.deb ... 571s Unpacking libimath-3-1-29t64:s390x (3.1.12-1ubuntu1) ... 571s Selecting previously unselected package libopenexr-3-1-30:s390x. 571s Preparing to unpack .../131-libopenexr-3-1-30_3.1.5-5.1build3_s390x.deb ... 571s Unpacking libopenexr-3-1-30:s390x (3.1.5-5.1build3) ... 571s Selecting previously unselected package libopencv-imgcodecs406t64:s390x. 571s Preparing to unpack .../132-libopencv-imgcodecs406t64_4.6.0+dfsg-14build3_s390x.deb ... 571s Unpacking libopencv-imgcodecs406t64:s390x (4.6.0+dfsg-14build3) ... 571s Selecting previously unselected package fontconfig. 571s Preparing to unpack .../133-fontconfig_2.15.0-1.1ubuntu2_s390x.deb ... 571s Unpacking fontconfig (2.15.0-1.1ubuntu2) ... 571s Selecting previously unselected package libgraphite2-3:s390x. 571s Preparing to unpack .../134-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 571s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 571s Selecting previously unselected package libharfbuzz0b:s390x. 571s Preparing to unpack .../135-libharfbuzz0b_10.2.0-1_s390x.deb ... 571s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 571s Selecting previously unselected package libthai-data. 571s Preparing to unpack .../136-libthai-data_0.1.29-2build1_all.deb ... 571s Unpacking libthai-data (0.1.29-2build1) ... 571s Selecting previously unselected package libdatrie1:s390x. 571s Preparing to unpack .../137-libdatrie1_0.2.13-3build1_s390x.deb ... 571s Unpacking libdatrie1:s390x (0.2.13-3build1) ... 571s Selecting previously unselected package libthai0:s390x. 571s Preparing to unpack .../138-libthai0_0.1.29-2build1_s390x.deb ... 571s Unpacking libthai0:s390x (0.1.29-2build1) ... 571s Selecting previously unselected package libpango-1.0-0:s390x. 571s Preparing to unpack .../139-libpango-1.0-0_1.56.1-1_s390x.deb ... 571s Unpacking libpango-1.0-0:s390x (1.56.1-1) ... 571s Selecting previously unselected package libpangoft2-1.0-0:s390x. 571s Preparing to unpack .../140-libpangoft2-1.0-0_1.56.1-1_s390x.deb ... 571s Unpacking libpangoft2-1.0-0:s390x (1.56.1-1) ... 571s Selecting previously unselected package libpangocairo-1.0-0:s390x. 571s Preparing to unpack .../141-libpangocairo-1.0-0_1.56.1-1_s390x.deb ... 571s Unpacking libpangocairo-1.0-0:s390x (1.56.1-1) ... 571s Selecting previously unselected package libpoppler-glib8t64:s390x. 571s Preparing to unpack .../142-libpoppler-glib8t64_25.01.0-4_s390x.deb ... 571s Unpacking libpoppler-glib8t64:s390x (25.01.0-4) ... 571s Selecting previously unselected package tex-common. 571s Preparing to unpack .../143-tex-common_6.18_all.deb ... 571s Unpacking tex-common (6.18) ... 571s Selecting previously unselected package libxml-namespacesupport-perl. 571s Preparing to unpack .../144-libxml-namespacesupport-perl_1.12-2_all.deb ... 571s Unpacking libxml-namespacesupport-perl (1.12-2) ... 571s Selecting previously unselected package libxml-sax-base-perl. 571s Preparing to unpack .../145-libxml-sax-base-perl_1.09-3_all.deb ... 571s Unpacking libxml-sax-base-perl (1.09-3) ... 571s Selecting previously unselected package libxml-sax-perl. 571s Preparing to unpack .../146-libxml-sax-perl_1.02+dfsg-4_all.deb ... 571s Unpacking libxml-sax-perl (1.02+dfsg-4) ... 571s Selecting previously unselected package libxml-libxml-perl. 571s Preparing to unpack .../147-libxml-libxml-perl_2.0207+dfsg+really+2.0134-5build1_s390x.deb ... 571s Unpacking libxml-libxml-perl (2.0207+dfsg+really+2.0134-5build1) ... 571s Selecting previously unselected package libxml-simple-perl. 571s Preparing to unpack .../148-libxml-simple-perl_2.25-2_all.deb ... 571s Unpacking libxml-simple-perl (2.25-2) ... 571s Selecting previously unselected package libxml-writer-perl. 571s Preparing to unpack .../149-libxml-writer-perl_0.900-2_all.deb ... 571s Unpacking libxml-writer-perl (0.900-2) ... 571s Selecting previously unselected package gir1.2-gdkpixbuf-2.0:s390x. 571s Preparing to unpack .../150-gir1.2-gdkpixbuf-2.0_2.42.12+dfsg-2_s390x.deb ... 571s Unpacking gir1.2-gdkpixbuf-2.0:s390x (2.42.12+dfsg-2) ... 571s Selecting previously unselected package libatk1.0-0t64:s390x. 571s Preparing to unpack .../151-libatk1.0-0t64_2.55.2-1_s390x.deb ... 571s Unpacking libatk1.0-0t64:s390x (2.55.2-1) ... 571s Selecting previously unselected package gir1.2-atk-1.0:s390x. 571s Preparing to unpack .../152-gir1.2-atk-1.0_2.55.2-1_s390x.deb ... 571s Unpacking gir1.2-atk-1.0:s390x (2.55.2-1) ... 571s Selecting previously unselected package libcairo-gobject2:s390x. 571s Preparing to unpack .../153-libcairo-gobject2_1.18.2-2_s390x.deb ... 571s Unpacking libcairo-gobject2:s390x (1.18.2-2) ... 571s Selecting previously unselected package gir1.2-freedesktop:s390x. 571s Preparing to unpack .../154-gir1.2-freedesktop_1.82.0-4_s390x.deb ... 571s Unpacking gir1.2-freedesktop:s390x (1.82.0-4) ... 571s Selecting previously unselected package libharfbuzz-gobject0:s390x. 571s Preparing to unpack .../155-libharfbuzz-gobject0_10.2.0-1_s390x.deb ... 571s Unpacking libharfbuzz-gobject0:s390x (10.2.0-1) ... 571s Selecting previously unselected package gir1.2-harfbuzz-0.0:s390x. 571s Preparing to unpack .../156-gir1.2-harfbuzz-0.0_10.2.0-1_s390x.deb ... 571s Unpacking gir1.2-harfbuzz-0.0:s390x (10.2.0-1) ... 571s Selecting previously unselected package libxft2:s390x. 571s Preparing to unpack .../157-libxft2_2.3.6-1build1_s390x.deb ... 571s Unpacking libxft2:s390x (2.3.6-1build1) ... 571s Selecting previously unselected package libpangoxft-1.0-0:s390x. 571s Preparing to unpack .../158-libpangoxft-1.0-0_1.56.1-1_s390x.deb ... 571s Unpacking libpangoxft-1.0-0:s390x (1.56.1-1) ... 571s Selecting previously unselected package gir1.2-pango-1.0:s390x. 571s Preparing to unpack .../159-gir1.2-pango-1.0_1.56.1-1_s390x.deb ... 571s Unpacking gir1.2-pango-1.0:s390x (1.56.1-1) ... 571s Selecting previously unselected package libatk-bridge2.0-0t64:s390x. 571s Preparing to unpack .../160-libatk-bridge2.0-0t64_2.55.2-1_s390x.deb ... 571s Unpacking libatk-bridge2.0-0t64:s390x (2.55.2-1) ... 571s Selecting previously unselected package libcolord2:s390x. 571s Preparing to unpack .../161-libcolord2_1.4.7-1build2_s390x.deb ... 571s Unpacking libcolord2:s390x (1.4.7-1build2) ... 571s Selecting previously unselected package libavahi-common-data:s390x. 571s Preparing to unpack .../162-libavahi-common-data_0.8-14ubuntu1_s390x.deb ... 571s Unpacking libavahi-common-data:s390x (0.8-14ubuntu1) ... 571s Selecting previously unselected package libavahi-common3:s390x. 571s Preparing to unpack .../163-libavahi-common3_0.8-14ubuntu1_s390x.deb ... 571s Unpacking libavahi-common3:s390x (0.8-14ubuntu1) ... 571s Selecting previously unselected package libavahi-client3:s390x. 571s Preparing to unpack .../164-libavahi-client3_0.8-14ubuntu1_s390x.deb ... 571s Unpacking libavahi-client3:s390x (0.8-14ubuntu1) ... 571s Selecting previously unselected package libcups2t64:s390x. 572s Preparing to unpack .../165-libcups2t64_2.4.11-0ubuntu2_s390x.deb ... 572s Unpacking libcups2t64:s390x (2.4.11-0ubuntu2) ... 572s Selecting previously unselected package libepoxy0:s390x. 572s Preparing to unpack .../166-libepoxy0_1.5.10-2_s390x.deb ... 572s Unpacking libepoxy0:s390x (1.5.10-2) ... 572s Selecting previously unselected package libwayland-client0:s390x. 572s Preparing to unpack .../167-libwayland-client0_1.23.1-1_s390x.deb ... 572s Unpacking libwayland-client0:s390x (1.23.1-1) ... 572s Selecting previously unselected package libwayland-cursor0:s390x. 572s Preparing to unpack .../168-libwayland-cursor0_1.23.1-1_s390x.deb ... 572s Unpacking libwayland-cursor0:s390x (1.23.1-1) ... 572s Selecting previously unselected package libwayland-egl1:s390x. 572s Preparing to unpack .../169-libwayland-egl1_1.23.1-1_s390x.deb ... 572s Unpacking libwayland-egl1:s390x (1.23.1-1) ... 572s Selecting previously unselected package libxcomposite1:s390x. 572s Preparing to unpack .../170-libxcomposite1_1%3a0.4.6-1_s390x.deb ... 572s Unpacking libxcomposite1:s390x (1:0.4.6-1) ... 572s Selecting previously unselected package libxfixes3:s390x. 572s Preparing to unpack .../171-libxfixes3_1%3a6.0.0-2build1_s390x.deb ... 572s Unpacking libxfixes3:s390x (1:6.0.0-2build1) ... 572s Selecting previously unselected package libxcursor1:s390x. 572s Preparing to unpack .../172-libxcursor1_1%3a1.2.3-1_s390x.deb ... 572s Unpacking libxcursor1:s390x (1:1.2.3-1) ... 572s Selecting previously unselected package libxdamage1:s390x. 572s Preparing to unpack .../173-libxdamage1_1%3a1.1.6-1build1_s390x.deb ... 572s Unpacking libxdamage1:s390x (1:1.1.6-1build1) ... 572s Selecting previously unselected package libxinerama1:s390x. 572s Preparing to unpack .../174-libxinerama1_2%3a1.1.4-3build1_s390x.deb ... 572s Unpacking libxinerama1:s390x (2:1.1.4-3build1) ... 572s Selecting previously unselected package libxrandr2:s390x. 572s Preparing to unpack .../175-libxrandr2_2%3a1.5.4-1_s390x.deb ... 572s Unpacking libxrandr2:s390x (2:1.5.4-1) ... 572s Selecting previously unselected package libgtk-3-common. 572s Preparing to unpack .../176-libgtk-3-common_3.24.48-3ubuntu1_all.deb ... 572s Unpacking libgtk-3-common (3.24.48-3ubuntu1) ... 572s Selecting previously unselected package libgtk-3-0t64:s390x. 572s Preparing to unpack .../177-libgtk-3-0t64_3.24.48-3ubuntu1_s390x.deb ... 572s Unpacking libgtk-3-0t64:s390x (3.24.48-3ubuntu1) ... 572s Selecting previously unselected package gir1.2-gtk-3.0:s390x. 572s Preparing to unpack .../178-gir1.2-gtk-3.0_3.24.48-3ubuntu1_s390x.deb ... 572s Unpacking gir1.2-gtk-3.0:s390x (3.24.48-3ubuntu1) ... 572s Selecting previously unselected package libcairo-perl. 572s Preparing to unpack .../179-libcairo-perl_1.109-5build1_s390x.deb ... 572s Unpacking libcairo-perl (1.109-5build1) ... 572s Selecting previously unselected package libextutils-depends-perl. 572s Preparing to unpack .../180-libextutils-depends-perl_0.8001-2_all.deb ... 572s Unpacking libextutils-depends-perl (0.8001-2) ... 572s Selecting previously unselected package libglib-perl:s390x. 572s Preparing to unpack .../181-libglib-perl_3%3a1.329.3-3build4_s390x.deb ... 572s Unpacking libglib-perl:s390x (3:1.329.3-3build4) ... 572s Selecting previously unselected package libcairo-gobject-perl. 572s Preparing to unpack .../182-libcairo-gobject-perl_1.005-4build4_s390x.deb ... 572s Unpacking libcairo-gobject-perl (1.005-4build4) ... 572s Selecting previously unselected package libglib-object-introspection-perl. 572s Preparing to unpack .../183-libglib-object-introspection-perl_0.051-2build1_s390x.deb ... 572s Unpacking libglib-object-introspection-perl (0.051-2build1) ... 572s Selecting previously unselected package libgtk3-perl. 572s Preparing to unpack .../184-libgtk3-perl_0.038-3_all.deb ... 572s Unpacking libgtk3-perl (0.038-3) ... 572s Selecting previously unselected package libjxl0.11:s390x. 572s Preparing to unpack .../185-libjxl0.11_0.11.1-1_s390x.deb ... 572s Unpacking libjxl0.11:s390x (0.11.1-1) ... 572s Selecting previously unselected package libwmflite-0.2-7:s390x. 572s Preparing to unpack .../186-libwmflite-0.2-7_0.2.13-1.1build3_s390x.deb ... 572s Unpacking libwmflite-0.2-7:s390x (0.2.13-1.1build3) ... 572s Selecting previously unselected package libgraphicsmagick-q16-3t64. 572s Preparing to unpack .../187-libgraphicsmagick-q16-3t64_1.4+really1.3.45-1build2_s390x.deb ... 572s Unpacking libgraphicsmagick-q16-3t64 (1.4+really1.3.45-1build2) ... 572s Selecting previously unselected package libgraphics-magick-perl. 572s Preparing to unpack .../188-libgraphics-magick-perl_1.4+really1.3.45-1build2_s390x.deb ... 572s Unpacking libgraphics-magick-perl (1.4+really1.3.45-1build2) ... 572s Selecting previously unselected package libdbi-perl:s390x. 572s Preparing to unpack .../189-libdbi-perl_1.647-1_s390x.deb ... 572s Unpacking libdbi-perl:s390x (1.647-1) ... 572s Selecting previously unselected package libdbd-sqlite3-perl:s390x. 572s Preparing to unpack .../190-libdbd-sqlite3-perl_1.76-1_s390x.deb ... 572s Unpacking libdbd-sqlite3-perl:s390x (1.76-1) ... 572s Selecting previously unselected package liblocale-codes-perl. 572s Preparing to unpack .../191-liblocale-codes-perl_3.81-1_all.deb ... 572s Unpacking liblocale-codes-perl (3.81-1) ... 572s Selecting previously unselected package libencode-locale-perl. 572s Preparing to unpack .../192-libencode-locale-perl_1.05-3_all.deb ... 572s Unpacking libencode-locale-perl (1.05-3) ... 572s Selecting previously unselected package libipc-system-simple-perl. 572s Preparing to unpack .../193-libipc-system-simple-perl_1.30-2_all.deb ... 572s Unpacking libipc-system-simple-perl (1.30-2) ... 572s Selecting previously unselected package libfile-basedir-perl. 572s Preparing to unpack .../194-libfile-basedir-perl_0.09-2_all.deb ... 572s Unpacking libfile-basedir-perl (0.09-2) ... 572s Selecting previously unselected package liburi-perl. 572s Preparing to unpack .../195-liburi-perl_5.30-1_all.deb ... 572s Unpacking liburi-perl (5.30-1) ... 572s Selecting previously unselected package libfile-desktopentry-perl. 572s Preparing to unpack .../196-libfile-desktopentry-perl_0.22-3_all.deb ... 572s Unpacking libfile-desktopentry-perl (0.22-3) ... 572s Selecting previously unselected package libfile-mimeinfo-perl. 572s Preparing to unpack .../197-libfile-mimeinfo-perl_0.35-1_all.deb ... 572s Unpacking libfile-mimeinfo-perl (0.35-1) ... 572s Selecting previously unselected package libtext-csv-perl. 572s Preparing to unpack .../198-libtext-csv-perl_2.05-1_all.deb ... 572s Unpacking libtext-csv-perl (2.05-1) ... 572s Selecting previously unselected package fonts-lmodern. 572s Preparing to unpack .../199-fonts-lmodern_2.005-1_all.deb ... 572s Unpacking fonts-lmodern (2.005-1) ... 572s Selecting previously unselected package libpaper2:s390x. 572s Preparing to unpack .../200-libpaper2_2.2.5-0.3_s390x.deb ... 572s Unpacking libpaper2:s390x (2.2.5-0.3) ... 572s Selecting previously unselected package libpaper-utils. 572s Preparing to unpack .../201-libpaper-utils_2.2.5-0.3_s390x.deb ... 572s Unpacking libpaper-utils (2.2.5-0.3) ... 572s Selecting previously unselected package libkpathsea6:s390x. 572s Preparing to unpack .../202-libkpathsea6_2024.20240313.70630+ds-5build2_s390x.deb ... 572s Unpacking libkpathsea6:s390x (2024.20240313.70630+ds-5build2) ... 572s Selecting previously unselected package libptexenc1:s390x. 572s Preparing to unpack .../203-libptexenc1_2024.20240313.70630+ds-5build2_s390x.deb ... 572s Unpacking libptexenc1:s390x (2024.20240313.70630+ds-5build2) ... 572s Selecting previously unselected package libsynctex2:s390x. 572s Preparing to unpack .../204-libsynctex2_2024.20240313.70630+ds-5build2_s390x.deb ... 572s Unpacking libsynctex2:s390x (2024.20240313.70630+ds-5build2) ... 572s Selecting previously unselected package libtexlua53-5:s390x. 572s Preparing to unpack .../205-libtexlua53-5_2024.20240313.70630+ds-5build2_s390x.deb ... 572s Unpacking libtexlua53-5:s390x (2024.20240313.70630+ds-5build2) ... 572s Selecting previously unselected package t1utils. 572s Preparing to unpack .../206-t1utils_1.41-4build3_s390x.deb ... 572s Unpacking t1utils (1.41-4build3) ... 572s Selecting previously unselected package libmpfi0:s390x. 572s Preparing to unpack .../207-libmpfi0_1.5.4+ds-4_s390x.deb ... 572s Unpacking libmpfi0:s390x (1.5.4+ds-4) ... 572s Selecting previously unselected package libpotrace0:s390x. 572s Preparing to unpack .../208-libpotrace0_1.16-2build1_s390x.deb ... 572s Unpacking libpotrace0:s390x (1.16-2build1) ... 572s Selecting previously unselected package libteckit0:s390x. 572s Preparing to unpack .../209-libteckit0_2.5.12+ds1-1_s390x.deb ... 572s Unpacking libteckit0:s390x (2.5.12+ds1-1) ... 572s Selecting previously unselected package libice6:s390x. 572s Preparing to unpack .../210-libice6_2%3a1.1.1-1_s390x.deb ... 572s Unpacking libice6:s390x (2:1.1.1-1) ... 572s Selecting previously unselected package libsm6:s390x. 572s Preparing to unpack .../211-libsm6_2%3a1.2.4-1_s390x.deb ... 572s Unpacking libsm6:s390x (2:1.2.4-1) ... 572s Selecting previously unselected package libxt6t64:s390x. 572s Preparing to unpack .../212-libxt6t64_1%3a1.2.1-1.2build1_s390x.deb ... 572s Unpacking libxt6t64:s390x (1:1.2.1-1.2build1) ... 572s Selecting previously unselected package libxmu6:s390x. 572s Preparing to unpack .../213-libxmu6_2%3a1.1.3-3build2_s390x.deb ... 572s Unpacking libxmu6:s390x (2:1.1.3-3build2) ... 572s Selecting previously unselected package libxpm4:s390x. 572s Preparing to unpack .../214-libxpm4_1%3a3.5.17-1build2_s390x.deb ... 572s Unpacking libxpm4:s390x (1:3.5.17-1build2) ... 572s Selecting previously unselected package libxaw7:s390x. 572s Preparing to unpack .../215-libxaw7_2%3a1.0.16-1_s390x.deb ... 572s Unpacking libxaw7:s390x (2:1.0.16-1) ... 572s Selecting previously unselected package libzzip-0-13t64:s390x. 572s Preparing to unpack .../216-libzzip-0-13t64_0.13.72+dfsg.1-1.2build1_s390x.deb ... 572s Unpacking libzzip-0-13t64:s390x (0.13.72+dfsg.1-1.2build1) ... 572s Selecting previously unselected package texlive-binaries. 572s Preparing to unpack .../217-texlive-binaries_2024.20240313.70630+ds-5build2_s390x.deb ... 572s Unpacking texlive-binaries (2024.20240313.70630+ds-5build2) ... 572s Selecting previously unselected package xdg-utils. 572s Preparing to unpack .../218-xdg-utils_1.2.1-2ubuntu1_all.deb ... 572s Unpacking xdg-utils (1.2.1-2ubuntu1) ... 572s Selecting previously unselected package texlive-base. 572s Preparing to unpack .../219-texlive-base_2024.20241115-1_all.deb ... 572s Unpacking texlive-base (2024.20241115-1) ... 574s Selecting previously unselected package texlive-latex-base. 574s Preparing to unpack .../220-texlive-latex-base_2024.20241115-1_all.deb ... 574s Unpacking texlive-latex-base (2024.20241115-1) ... 574s Selecting previously unselected package texlive-latex-recommended. 574s Preparing to unpack .../221-texlive-latex-recommended_2024.20241115-1_all.deb ... 574s Unpacking texlive-latex-recommended (2024.20241115-1) ... 574s Selecting previously unselected package libapache-pom-java. 574s Preparing to unpack .../222-libapache-pom-java_33-2_all.deb ... 574s Unpacking libapache-pom-java (33-2) ... 574s Selecting previously unselected package libcommons-parent-java. 574s Preparing to unpack .../223-libcommons-parent-java_56-1_all.deb ... 574s Unpacking libcommons-parent-java (56-1) ... 574s Selecting previously unselected package libcommons-logging-java. 574s Preparing to unpack .../224-libcommons-logging-java_1.3.0-1ubuntu1_all.deb ... 574s Unpacking libcommons-logging-java (1.3.0-1ubuntu1) ... 574s Selecting previously unselected package libfontbox-java. 574s Preparing to unpack .../225-libfontbox-java_1%3a1.8.16-5_all.deb ... 574s Unpacking libfontbox-java (1:1.8.16-5) ... 574s Selecting previously unselected package libpdfbox-java. 574s Preparing to unpack .../226-libpdfbox-java_1%3a1.8.16-5_all.deb ... 574s Unpacking libpdfbox-java (1:1.8.16-5) ... 574s Selecting previously unselected package preview-latex-style. 574s Preparing to unpack .../227-preview-latex-style_13.2-1_all.deb ... 574s Unpacking preview-latex-style (13.2-1) ... 574s Selecting previously unselected package texlive-pictures. 574s Preparing to unpack .../228-texlive-pictures_2024.20241115-1_all.deb ... 574s Unpacking texlive-pictures (2024.20241115-1) ... 575s Selecting previously unselected package texlive-latex-extra. 575s Preparing to unpack .../229-texlive-latex-extra_2024.20250114-1_all.deb ... 575s Unpacking texlive-latex-extra (2024.20250114-1) ... 577s Selecting previously unselected package texlive-fonts-recommended. 577s Preparing to unpack .../230-texlive-fonts-recommended_2024.20241115-1_all.deb ... 577s Unpacking texlive-fonts-recommended (2024.20241115-1) ... 577s Selecting previously unselected package texlive-fonts-extra. 577s Preparing to unpack .../231-texlive-fonts-extra_2024.20250114-1_all.deb ... 577s Unpacking texlive-fonts-extra (2024.20250114-1) ... 599s Selecting previously unselected package imagemagick-7.q16. 599s Preparing to unpack .../232-imagemagick-7.q16_8%3a7.1.1.43+dfsg1-1_s390x.deb ... 599s Unpacking imagemagick-7.q16 (8:7.1.1.43+dfsg1-1) ... 599s Selecting previously unselected package imagemagick. 599s Preparing to unpack .../233-imagemagick_8%3a7.1.1.43+dfsg1-1_s390x.deb ... 599s Unpacking imagemagick (8:7.1.1.43+dfsg1-1) ... 599s Selecting previously unselected package libnetpbm11t64:s390x. 599s Preparing to unpack .../234-libnetpbm11t64_2%3a11.09.02-2_s390x.deb ... 599s Unpacking libnetpbm11t64:s390x (2:11.09.02-2) ... 599s Selecting previously unselected package netpbm. 599s Preparing to unpack .../235-netpbm_2%3a11.09.02-2_s390x.deb ... 599s Unpacking netpbm (2:11.09.02-2) ... 599s Selecting previously unselected package libgs-common. 599s Preparing to unpack .../236-libgs-common_10.04.0~dfsg1-2ubuntu1_all.deb ... 599s Unpacking libgs-common (10.04.0~dfsg1-2ubuntu1) ... 599s Selecting previously unselected package libgs10-common. 599s Preparing to unpack .../237-libgs10-common_10.04.0~dfsg1-2ubuntu1_all.deb ... 599s Unpacking libgs10-common (10.04.0~dfsg1-2ubuntu1) ... 599s Selecting previously unselected package libidn12:s390x. 599s Preparing to unpack .../238-libidn12_1.42-3_s390x.deb ... 599s Unpacking libidn12:s390x (1.42-3) ... 618s Selecting previously unselected package libijs-0.35:s390x. 618s Preparing to unpack .../239-libijs-0.35_0.35-15.1build1_s390x.deb ... 618s Unpacking libijs-0.35:s390x (0.35-15.1build1) ... 618s Selecting previously unselected package libjbig2dec0:s390x. 618s Preparing to unpack .../240-libjbig2dec0_0.20-1build3_s390x.deb ... 618s Unpacking libjbig2dec0:s390x (0.20-1build3) ... 618s Selecting previously unselected package libgs10:s390x. 618s Preparing to unpack .../241-libgs10_10.04.0~dfsg1-2ubuntu1_s390x.deb ... 618s Unpacking libgs10:s390x (10.04.0~dfsg1-2ubuntu1) ... 618s Selecting previously unselected package ghostscript. 618s Preparing to unpack .../242-ghostscript_10.04.0~dfsg1-2ubuntu1_s390x.deb ... 618s Unpacking ghostscript (10.04.0~dfsg1-2ubuntu1) ... 618s Selecting previously unselected package poppler-utils. 618s Preparing to unpack .../243-poppler-utils_25.01.0-4_s390x.deb ... 618s Unpacking poppler-utils (25.01.0-4) ... 618s Selecting previously unselected package libarchive-zip-perl. 618s Preparing to unpack .../244-libarchive-zip-perl_1.68-1_all.deb ... 618s Unpacking libarchive-zip-perl (1.68-1) ... 618s Selecting previously unselected package librsvg2-2:s390x. 618s Preparing to unpack .../245-librsvg2-2_2.59.90+dfsg-2_s390x.deb ... 618s Unpacking librsvg2-2:s390x (2.59.90+dfsg-2) ... 618s Selecting previously unselected package librsvg2-common:s390x. 618s Preparing to unpack .../246-librsvg2-common_2.59.90+dfsg-2_s390x.deb ... 618s Unpacking librsvg2-common:s390x (2.59.90+dfsg-2) ... 618s Selecting previously unselected package unzip. 618s Preparing to unpack .../247-unzip_6.0-28ubuntu6_s390x.deb ... 618s Unpacking unzip (6.0-28ubuntu6) ... 618s Selecting previously unselected package libclone-perl:s390x. 618s Preparing to unpack .../248-libclone-perl_0.47-1_s390x.deb ... 618s Unpacking libclone-perl:s390x (0.47-1) ... 618s Selecting previously unselected package auto-multiple-choice-common. 618s Preparing to unpack .../249-auto-multiple-choice-common_1.6.0-4_all.deb ... 618s Unpacking auto-multiple-choice-common (1.6.0-4) ... 618s Selecting previously unselected package auto-multiple-choice. 618s Preparing to unpack .../250-auto-multiple-choice_1.6.0-4_s390x.deb ... 618s Unpacking auto-multiple-choice (1.6.0-4) ... 618s Selecting previously unselected package auto-multiple-choice-doc. 618s Preparing to unpack .../251-auto-multiple-choice-doc_1.6.0-4_all.deb ... 618s Unpacking auto-multiple-choice-doc (1.6.0-4) ... 618s Selecting previously unselected package auto-multiple-choice-doc-pdf. 618s Preparing to unpack .../252-auto-multiple-choice-doc-pdf_1.6.0-4_all.deb ... 618s Unpacking auto-multiple-choice-doc-pdf (1.6.0-4) ... 618s Selecting previously unselected package libnotify4:s390x. 618s Preparing to unpack .../253-libnotify4_0.8.3-1build2_s390x.deb ... 618s Unpacking libnotify4:s390x (0.8.3-1build2) ... 618s Selecting previously unselected package gir1.2-notify-0.7:s390x. 618s Preparing to unpack .../254-gir1.2-notify-0.7_0.8.3-1build2_s390x.deb ... 618s Unpacking gir1.2-notify-0.7:s390x (0.8.3-1build2) ... 618s Selecting previously unselected package libxfont2:s390x. 618s Preparing to unpack .../255-libxfont2_1%3a2.0.6-1build1_s390x.deb ... 618s Unpacking libxfont2:s390x (1:2.0.6-1build1) ... 618s Selecting previously unselected package libxkbfile1:s390x. 618s Preparing to unpack .../256-libxkbfile1_1%3a1.1.0-1build4_s390x.deb ... 618s Unpacking libxkbfile1:s390x (1:1.1.0-1build4) ... 618s Selecting previously unselected package x11-xkb-utils. 618s Preparing to unpack .../257-x11-xkb-utils_7.7+9_s390x.deb ... 618s Unpacking x11-xkb-utils (7.7+9) ... 618s Selecting previously unselected package xserver-common. 618s Preparing to unpack .../258-xserver-common_2%3a21.1.14-2ubuntu1_all.deb ... 618s Unpacking xserver-common (2:21.1.14-2ubuntu1) ... 618s Selecting previously unselected package libgl1:s390x. 618s Preparing to unpack .../259-libgl1_1.7.0-1build1_s390x.deb ... 618s Unpacking libgl1:s390x (1.7.0-1build1) ... 618s Selecting previously unselected package xvfb. 618s Preparing to unpack .../260-xvfb_2%3a21.1.14-2ubuntu1_s390x.deb ... 618s Unpacking xvfb (2:21.1.14-2ubuntu1) ... 618s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 618s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 618s Setting up liblcms2-2:s390x (2.16-2) ... 618s Setting up libtbbmalloc2:s390x (2022.0.0-1) ... 618s Setting up libpixman-1-0:s390x (0.44.0-3) ... 618s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 618s Setting up libgpgmepp6t64:s390x (1.24.1-4ubuntu1) ... 618s Setting up libwayland-server0:s390x (1.23.1-1) ... 618s Setting up libaom3:s390x (3.12.0-1) ... 618s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 618s Setting up mysql-common (5.8+1.1.1) ... 618s update-alternatives: using /etc/mysql/my.cnf.fallback to provide /etc/mysql/my.cnf (my.cnf) in auto mode 618s Setting up libxdamage1:s390x (1:1.1.6-1build1) ... 618s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 618s Setting up proj-data (9.5.1-1) ... 618s Setting up libxpm4:s390x (1:3.5.17-1build2) ... 618s Setting up hicolor-icon-theme (0.18-2) ... 618s Setting up libwmflite-0.2-7:s390x (0.2.13-1.1build3) ... 618s Setting up libxi6:s390x (2:1.8.2-1) ... 618s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 618s Setting up libdatrie1:s390x (0.2.13-3build1) ... 618s Setting up libogdi4.1:s390x (4.1.1+ds-5) ... 618s Setting up libcharls2:s390x (2.4.2-2build2) ... 618s Setting up libxcb-render0:s390x (1.17.0-2) ... 618s Setting up libclone-perl:s390x (0.47-1) ... 618s Setting up libarchive-zip-perl (1.68-1) ... 618s Setting up imagemagick-7-common (8:7.1.1.43+dfsg1-1) ... 618s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 618s Setting up libglvnd0:s390x (1.7.0-1build1) ... 618s Setting up libijs-0.35:s390x (0.35-15.1build1) ... 618s Setting up libxcb-glx0:s390x (1.17.0-2) ... 618s Setting up unzip (6.0-28ubuntu6) ... 618s Setting up libgeos3.13.0:s390x (3.13.0-1) ... 618s Setting up libgs-common (10.04.0~dfsg1-2ubuntu1) ... 618s Setting up libfontbox-java (1:1.8.16-5) ... 618s Setting up libgdk-pixbuf2.0-common (2.42.12+dfsg-2) ... 618s Setting up x11-common (1:7.7+23ubuntu3) ... 618s Setting up libpq5:s390x (17.3-2) ... 618s Setting up libdeflate0:s390x (1.23-1) ... 618s Setting up libxml-namespacesupport-perl (1.12-2) ... 618s Setting up libqhull-r8.0:s390x (2020.2-6build1) ... 618s Setting up libencode-locale-perl (1.05-3) ... 618s Setting up libxcb-shm0:s390x (1.17.0-2) ... 618s Setting up libxerces-c3.2t64:s390x (3.2.4+debian-1.3build1) ... 618s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 618s Setting up libmysqlclient24:s390x (8.4.4-0ubuntu1) ... 618s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 618s Setting up libnetpbm11t64:s390x (2:11.09.02-2) ... 618s Setting up libaec0:s390x (1.1.3-1) ... 618s Setting up libcolord2:s390x (1.4.7-1build2) ... 618s Setting up gdal-data (3.10.1+dfsg-1build2) ... 618s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 618s Setting up libextutils-depends-perl (0.8001-2) ... 618s Setting up libsnappy1v5:s390x (1.2.1-1) ... 618s Setting up poppler-data (0.4.12-1) ... 618s Setting up libxcb-present0:s390x (1.17.0-2) ... 618s Setting up libdconf1:s390x (0.40.0-5) ... 618s Setting up tex-common (6.18) ... 618s update-language: texlive-base not installed and configured, doing nothing! 618s Setting up libxml-sax-base-perl (1.09-3) ... 618s Setting up libfontenc1:s390x (1:1.1.8-1build1) ... 618s Setting up libblas3:s390x (3.12.1-2) ... 618s 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 618s Setting up libcfitsio10t64:s390x (4.5.0-5) ... 618s Setting up auto-multiple-choice-doc-pdf (1.6.0-4) ... 618s Setting up libzzip-0-13t64:s390x (0.13.72+dfsg.1-1.2build1) ... 618s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 618s Setting up libsvtav1enc2:s390x (2.3.0+dfsg-1) ... 618s Setting up libepoxy0:s390x (1.5.10-2) ... 618s Setting up libxfixes3:s390x (1:6.0.0-2build1) ... 618s Setting up libxcb-sync1:s390x (1.17.0-2) ... 618s Setting up libjbig2dec0:s390x (0.20-1build3) ... 618s Setting up libipc-system-simple-perl (1.30-2) ... 618s Setting up libteckit0:s390x (2.5.12+ds1-1) ... 618s Setting up libapache-pom-java (33-2) ... 618s Setting up libavahi-common-data:s390x (0.8-14ubuntu1) ... 618s Setting up libxml-writer-perl (0.900-2) ... 618s Setting up libatspi2.0-0t64:s390x (2.55.2-1) ... 618s Setting up xfonts-encodings (1:1.0.5-0ubuntu2) ... 618s Setting up t1utils (1.41-4build3) ... 618s Setting up libxinerama1:s390x (2:1.1.4-3build1) ... 618s Setting up libtexlua53-5:s390x (2024.20240313.70630+ds-5build2) ... 618s Setting up fonts-dejavu-mono (2.37-8) ... 618s Setting up libhwloc15:s390x (2.11.2-1build1) ... 618s Setting up libimath-3-1-29t64:s390x (3.1.12-1ubuntu1) ... 618s Setting up libidn12:s390x (1.42-3) ... 618s Setting up libxrandr2:s390x (2:1.5.4-1) ... 618s Setting up libmpfi0:s390x (1.5.4+ds-4) ... 618s Setting up fonts-dejavu-core (2.37-8) ... 618s Setting up unixodbc-common (2.3.12-2ubuntu1) ... 618s Setting up libsocket++1:s390x (1.12.13+git20131030.5d039ba-1build1) ... 618s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 618s Setting up libltdl7:s390x (2.5.4-3build1) ... 618s Setting up libfftw3-double3:s390x (3.3.10-2fakesync1build1) ... 618s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 618s Setting up libkpathsea6:s390x (2024.20240313.70630+ds-5build2) ... 618s Setting up libgfortran5:s390x (14.2.0-17ubuntu1) ... 618s Setting up libvulkan1:s390x (1.4.304.0-1) ... 618s Setting up libwebp7:s390x (1.5.0-0.1) ... 618s Setting up libgif7:s390x (5.2.2-1ubuntu1) ... 618s Setting up libodbc2:s390x (2.3.12-2ubuntu1) ... 618s Setting up liburiparser1:s390x (0.9.8+dfsg-2) ... 618s Setting up libfyba0t64:s390x (4.1.1-11build1) ... 618s Setting up liblocale-codes-perl (3.81-1) ... 618s Setting up libdav1d7:s390x (1.5.1-1) ... 618s Setting up liblqr-1-0:s390x (0.4.2-2.1build2) ... 618s Setting up libminizip1t64:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 618s Setting up libxshmfence1:s390x (1.3-1build5) ... 618s Setting up at-spi2-common (2.55.2-1) ... 618s Setting up libxcb-randr0:s390x (1.17.0-2) ... 618s Setting up librav1e0.7:s390x (0.7.1-9) ... 618s Setting up libblosc1:s390x (1.21.5+ds-1build1) ... 618s Setting up fonts-lmodern (2.005-1) ... 618s Setting up libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 618s Setting up auto-multiple-choice-doc (1.6.0-4) ... 618s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 618s Setting up libthai-data (0.1.29-2build1) ... 618s Setting up libwayland-egl1:s390x (1.23.1-1) ... 618s Setting up libxkbfile1:s390x (1:1.1.0-1build4) ... 618s Setting up libpaper2:s390x (2.2.5-0.3) ... 618s Setting up libde265-0:s390x (1.0.15-1build4) ... 618s Setting up libkmlbase1t64:s390x (1.3.0-12build1) ... 618s Setting up libwebpmux3:s390x (1.5.0-0.1) ... 618s Setting up libxcomposite1:s390x (1:0.4.6-1) ... 618s Setting up libjxl0.11:s390x (0.11.1-1) ... 618s Setting up libxfont2:s390x (1:2.0.6-1build1) ... 618s Setting up xdg-utils (1.2.1-2ubuntu1) ... 618s update-alternatives: using /usr/bin/xdg-open to provide /usr/bin/open (open) in auto mode 618s Setting up liburi-perl (5.30-1) ... 618s Setting up libdbi-perl:s390x (1.647-1) ... 618s Setting up libsz2:s390x (1.1.3-1) ... 618s Setting up libsynctex2:s390x (2024.20240313.70630+ds-5build2) ... 618s Setting up gdal-plugins:s390x (3.10.1+dfsg-1build2) ... 618s Setting up libtext-csv-perl (2.05-1) ... 618s Setting up libpotrace0:s390x (1.16-2build1) ... 618s Setting up libwayland-client0:s390x (1.23.1-1) ... 618s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 618s Setting up libgdcm3.0t64:s390x (3.0.24-5ubuntu1) ... 618s Setting up libice6:s390x (2:1.1.1-1) ... 618s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 618s Setting up libodbcinst2:s390x (2.3.12-2ubuntu1) ... 618s Setting up liblapack3:s390x (3.12.1-2) ... 618s 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 618s Setting up libglib-perl:s390x (3:1.329.3-3build4) ... 618s Setting up libfile-basedir-perl (0.09-2) ... 618s Setting up libarpack2t64:s390x (3.9.1-4) ... 618s Setting up libatk1.0-0t64:s390x (2.55.2-1) ... 618s Setting up libpdfbox-java (1:1.8.16-5) ... 618s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 618s Setting up gir1.2-atk-1.0:s390x (2.55.2-1) ... 618s Setting up fontconfig-config (2.15.0-1.1ubuntu2) ... 618s Setting up libxtst6:s390x (2:1.2.5-1) ... 618s Setting up libgeos-c1t64:s390x (3.13.0-1) ... 618s Setting up preview-latex-style (13.2-1) ... 618s Setting up libwebpdemux2:s390x (1.5.0-0.1) ... 618s Setting up libxcursor1:s390x (1:1.2.3-1) ... 618s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 618s Setting up libcommons-parent-java (56-1) ... 618s Setting up libavahi-common3:s390x (0.8-14ubuntu1) ... 618s Setting up libcommons-logging-java (1.3.0-1ubuntu1) ... 618s Setting up dconf-service (0.40.0-5) ... 618s Setting up libharfbuzz-gobject0:s390x (10.2.0-1) ... 618s Setting up libpaper-utils (2.2.5-0.3) ... 618s Setting up xfonts-utils (1:7.7+7) ... 618s Setting up libxml-sax-perl (1.02+dfsg-4) ... 618s update-perl-sax-parsers: Registering Perl SAX parser XML::SAX::PurePerl with priority 10... 618s update-perl-sax-parsers: Updating overall Perl SAX parser modules info file... 618s Creating config file /etc/perl/XML/SAX/ParserDetails.ini with new version 618s Setting up libtbbbind-2-5:s390x (2022.0.0-1) ... 618s Setting up libkmldom1t64:s390x (1.3.0-12build1) ... 618s Setting up libthai0:s390x (0.1.29-2build1) ... 618s Setting up libptexenc1:s390x (2024.20240313.70630+ds-5build2) ... 618s Setting up libopenexr-3-1-30:s390x (3.1.5-5.1build3) ... 618s Setting up libfile-desktopentry-perl (0.22-3) ... 618s Setting up libraw23t64:s390x (0.21.3-1) ... 618s Setting up libhdf4-0-alt:s390x (4.3.0-1) ... 618s Setting up libxml-libxml-perl (2.0207+dfsg+really+2.0134-5build1) ... 618s update-perl-sax-parsers: Registering Perl SAX parser XML::LibXML::SAX::Parser with priority 50... 618s update-perl-sax-parsers: Registering Perl SAX parser XML::LibXML::SAX with priority 50... 618s update-perl-sax-parsers: Updating overall Perl SAX parser modules info file... 618s Replacing config file /etc/perl/XML/SAX/ParserDetails.ini with new version 618s Setting up librttopo1:s390x (1.1.0-3build2) ... 618s Setting up libhdf5-310:s390x (1.14.5+repack-3) ... 618s Setting up libfreexl1:s390x (2.0.0-1build2) ... 618s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 618s Setting up libwayland-cursor0:s390x (1.23.1-1) ... 618s Setting up libgdk-pixbuf-2.0-0:s390x (2.42.12+dfsg-2) ... 618s Setting up libarmadillo14 (1:14.2.1+dfsg-1) ... 618s Setting up libdbd-sqlite3-perl:s390x (1.76-1) ... 618s Setting up libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 618s Setting up libyuv0:s390x (0.0.1904.20250204-1) ... 618s Setting up libsm6:s390x (2:1.2.4-1) ... 618s Setting up libavahi-client3:s390x (0.8-14ubuntu1) ... 618s Setting up libpoppler145:s390x (25.01.0-4) ... 618s Setting up libglib-object-introspection-perl (0.051-2build1) ... 618s Setting up libatk-bridge2.0-0t64:s390x (2.55.2-1) ... 618s Setting up libfile-mimeinfo-perl (0.35-1) ... 618s Setting up gtk-update-icon-cache (4.17.4+ds-4) ... 618s Setting up libhdf5-hl-310:s390x (1.14.5+repack-3) ... 618s Setting up fontconfig (2.15.0-1.1ubuntu2) ... 618s Regenerating fonts cache... done. 618s Setting up libavif16:s390x (1.1.1-1ubuntu1) ... 618s Setting up libnetcdf19t64:s390x (1:4.9.2-6ubuntu2) ... 618s Setting up libxft2:s390x (2.3.6-1build1) ... 618s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 618s Setting up libglx0:s390x (1.7.0-1build1) ... 618s Setting up dconf-gsettings-backend:s390x (0.40.0-5) ... 618s Setting up gir1.2-gdkpixbuf-2.0:s390x (2.42.12+dfsg-2) ... 618s Setting up libproj25:s390x (9.5.1-1) ... 618s Setting up libpango-1.0-0:s390x (1.56.1-1) ... 618s Setting up libtbb12:s390x (2022.0.0-1) ... 618s Setting up libkmlengine1t64:s390x (1.3.0-12build1) ... 618s Setting up fonts-urw-base35 (20200910-8) ... 618s Setting up libcairo2:s390x (1.18.2-2) ... 618s Setting up libgeotiff5:s390x (1.7.3-1) ... 618s Setting up libpoppler-glib8t64:s390x (25.01.0-4) ... 618s Setting up libgl1:s390x (1.7.0-1build1) ... 618s Setting up adwaita-icon-theme (48~beta-3) ... 618s update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode 618s Setting up libnotify4:s390x (0.8.3-1build2) ... 618s Setting up libxt6t64:s390x (1:1.2.1-1.2build1) ... 618s Setting up libxml-simple-perl (2.25-2) ... 618s Setting up netpbm (2:11.09.02-2) ... 618s Setting up gir1.2-notify-0.7:s390x (0.8.3-1build2) ... 618s Setting up libcairo-perl (1.109-5build1) ... 618s Setting up libcairo-gobject2:s390x (1.18.2-2) ... 618s Setting up poppler-utils (25.01.0-4) ... 618s Setting up libpangoft2-1.0-0:s390x (1.56.1-1) ... 618s Setting up libcairo-gobject-perl (1.005-4build4) ... 618s Setting up libcups2t64:s390x (2.4.11-0ubuntu2) ... 618s Setting up libopencv-core406t64:s390x (4.6.0+dfsg-14build3) ... 618s Setting up libgtk-3-common (3.24.48-3ubuntu1) ... 618s Setting up libpangocairo-1.0-0:s390x (1.56.1-1) ... 618s Setting up libspatialite8t64:s390x (5.1.0-3build1) ... 618s Setting up gsettings-desktop-schemas (48~beta-1ubuntu1) ... 618s Setting up libgs10-common (10.04.0~dfsg1-2ubuntu1) ... 618s Setting up libxmu6:s390x (2:1.1.3-3build2) ... 618s Setting up gir1.2-freedesktop:s390x (1.82.0-4) ... 618s Setting up libpangoxft-1.0-0:s390x (1.56.1-1) ... 618s Setting up libxaw7:s390x (2:1.0.16-1) ... 618s Setting up gir1.2-harfbuzz-0.0:s390x (10.2.0-1) ... 618s Setting up librsvg2-2:s390x (2.59.90+dfsg-2) ... 618s Setting up gir1.2-pango-1.0:s390x (1.56.1-1) ... 618s Setting up libopencv-imgproc406t64:s390x (4.6.0+dfsg-14build3) ... 618s Setting up librsvg2-common:s390x (2.59.90+dfsg-2) ... 618s Setting up texlive-binaries (2024.20240313.70630+ds-5build2) ... 618s update-alternatives: using /usr/bin/xdvi-xaw to provide /usr/bin/xdvi.bin (xdvi.bin) in auto mode 618s update-alternatives: using /usr/bin/bibtex.original to provide /usr/bin/bibtex (bibtex) in auto mode 618s Setting up texlive-base (2024.20241115-1) ... 618s tl-paper: setting paper size for dvips to a4: /var/lib/texmf/dvips/config/config-paper.ps 618s tl-paper: setting paper size for dvipdfmx to a4: /var/lib/texmf/dvipdfmx/dvipdfmx-paper.cfg 618s tl-paper: setting paper size for xdvi to a4: /var/lib/texmf/xdvi/XDvi-paper 618s tl-paper: setting paper size for pdftex to a4: /var/lib/texmf/tex/generic/tex-ini-files/pdftexconfig.tex 618s Setting up libgs10:s390x (10.04.0~dfsg1-2ubuntu1) ... 618s Setting up x11-xkb-utils (7.7+9) ... 618s Setting up ghostscript (10.04.0~dfsg1-2ubuntu1) ... 618s Setting up texlive-latex-base (2024.20241115-1) ... 618s Setting up texlive-fonts-extra (2024.20250114-1) ... 618s Setting up texlive-latex-recommended (2024.20241115-1) ... 618s Setting up texlive-pictures (2024.20241115-1) ... 618s Setting up texlive-fonts-recommended (2024.20241115-1) ... 618s Setting up xserver-common (2:21.1.14-2ubuntu1) ... 618s Setting up xvfb (2:21.1.14-2ubuntu1) ... 618s Setting up texlive-latex-extra (2024.20250114-1) ... 618s Setting up libheif-plugin-aomdec:s390x (1.19.5-1build1) ... 618s Setting up libheif-plugin-libde265:s390x (1.19.5-1build1) ... 618s Setting up libheif1:s390x (1.19.5-1build1) ... 618s Setting up libgdal36:s390x (3.10.1+dfsg-1build2) ... 618s Setting up libmagickcore-7.q16-10:s390x (8:7.1.1.43+dfsg1-1) ... 618s Setting up libopencv-imgcodecs406t64:s390x (4.6.0+dfsg-14build3) ... 618s Setting up libmagickwand-7.q16-10:s390x (8:7.1.1.43+dfsg1-1) ... 618s Setting up libgraphicsmagick-q16-3t64 (1.4+really1.3.45-1build2) ... 618s Setting up libgraphics-magick-perl (1.4+really1.3.45-1build2) ... 618s Setting up imagemagick-7.q16 (8:7.1.1.43+dfsg1-1) ... 618s update-alternatives: using /usr/bin/compare-im7.q16 to provide /usr/bin/compare (compare) in auto mode 618s update-alternatives: using /usr/bin/compare-im7.q16 to provide /usr/bin/compare-im7 (compare-im7) in auto mode 618s update-alternatives: using /usr/bin/animate-im7.q16 to provide /usr/bin/animate (animate) in auto mode 618s update-alternatives: using /usr/bin/animate-im7.q16 to provide /usr/bin/animate-im7 (animate-im7) in auto mode 618s update-alternatives: using /usr/bin/convert-im7.q16 to provide /usr/bin/convert (convert) in auto mode 618s update-alternatives: using /usr/bin/convert-im7.q16 to provide /usr/bin/convert-im7 (convert-im7) in auto mode 618s update-alternatives: using /usr/bin/composite-im7.q16 to provide /usr/bin/composite (composite) in auto mode 618s update-alternatives: using /usr/bin/composite-im7.q16 to provide /usr/bin/composite-im7 (composite-im7) in auto mode 618s update-alternatives: using /usr/bin/conjure-im7.q16 to provide /usr/bin/conjure (conjure) in auto mode 618s update-alternatives: using /usr/bin/conjure-im7.q16 to provide /usr/bin/conjure-im7 (conjure-im7) in auto mode 618s update-alternatives: using /usr/bin/import-im7.q16 to provide /usr/bin/import (import) in auto mode 618s update-alternatives: using /usr/bin/import-im7.q16 to provide /usr/bin/import-im7 (import-im7) in auto mode 618s update-alternatives: using /usr/bin/identify-im7.q16 to provide /usr/bin/identify (identify) in auto mode 618s update-alternatives: using /usr/bin/identify-im7.q16 to provide /usr/bin/identify-im7 (identify-im7) in auto mode 618s update-alternatives: using /usr/bin/stream-im7.q16 to provide /usr/bin/stream (stream) in auto mode 618s update-alternatives: using /usr/bin/stream-im7.q16 to provide /usr/bin/stream-im7 (stream-im7) in auto mode 618s update-alternatives: using /usr/bin/display-im7.q16 to provide /usr/bin/display (display) in auto mode 618s update-alternatives: using /usr/bin/display-im7.q16 to provide /usr/bin/display-im7 (display-im7) in auto mode 618s update-alternatives: using /usr/bin/montage-im7.q16 to provide /usr/bin/montage (montage) in auto mode 618s update-alternatives: using /usr/bin/montage-im7.q16 to provide /usr/bin/montage-im7 (montage-im7) in auto mode 618s update-alternatives: using /usr/bin/mogrify-im7.q16 to provide /usr/bin/mogrify (mogrify) in auto mode 618s update-alternatives: using /usr/bin/mogrify-im7.q16 to provide /usr/bin/mogrify-im7 (mogrify-im7) in auto mode 618s update-alternatives: using /usr/bin/magick-im7.q16 to provide /usr/bin/magick (magick) in auto mode 618s update-alternatives: warning: skip creation of /usr/share/man/man1/magick.1.gz because associated file /usr/share/man/man1/magick-im7.q16.1.gz (of link group magick) doesn't exist 618s update-alternatives: using /usr/bin/magick-im7.q16 to provide /usr/bin/magick-im7 (magick-im7) in auto mode 618s update-alternatives: warning: skip creation of /usr/share/man/man1/magick-im7.1.gz because associated file /usr/share/man/man1/magick-im7.q16.1.gz (of link group magick-im7) doesn't exist 618s update-alternatives: using /usr/bin/magick-script-im7.q16 to provide /usr/bin/magick-script (magick-script) in auto mode 618s update-alternatives: warning: skip creation of /usr/share/man/man1/magick-script.1.gz because associated file /usr/share/man/man1/magick-script-im7.q16.1.gz (of link group magick-script) doesn't exist 618s update-alternatives: using /usr/bin/magick-script-im7.q16 to provide /usr/bin/magick-script-im7 (magick-script-im7) in auto mode 618s update-alternatives: warning: skip creation of /usr/share/man/man1/magick-script-im7.1.gz because associated file /usr/share/man/man1/magick-script-im7.q16.1.gz (of link group magick-script-im7) doesn't exist 618s Setting up imagemagick (8:7.1.1.43+dfsg1-1) ... 618s Processing triggers for install-info (7.1.1-1) ... 618s Processing triggers for libc-bin (2.41-1ubuntu1) ... 618s Processing triggers for man-db (2.13.0-1) ... 618s Processing triggers for libglib2.0-0t64:s390x (2.83.3-2) ... 618s Setting up libgtk-3-0t64:s390x (3.24.48-3ubuntu1) ... 618s Processing triggers for shared-mime-info (2.4-5) ... 618s Warning: program compiled against libxml 212 using older 209 618s Setting up at-spi2-core (2.55.2-1) ... 618s Setting up gir1.2-gtk-3.0:s390x (3.24.48-3ubuntu1) ... 618s Setting up libgtk3-perl (0.038-3) ... 618s Setting up auto-multiple-choice-common (1.6.0-4) ... 618s Setting up auto-multiple-choice (1.6.0-4) ... 618s Processing triggers for libgdk-pixbuf-2.0-0:s390x (2.42.12+dfsg-2) ... 618s Processing triggers for tex-common (6.18) ... 618s Running updmap-sys. This may take some time... done. 618s Running mktexlsr /var/lib/texmf ... done. 618s Building format(s) --all. 679s This may take some time... done. 679s Processing triggers for libc-bin (2.41-1ubuntu1) ... 680s autopkgtest: DBG: testbed command exited with code 0 680s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'auto-multiple-choice'], kind short, sout pipe, serr pipe, env [] 680s autopkgtest: DBG: testbed command exited with code 0 680s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'auto-multiple-choice-common'], kind short, sout pipe, serr pipe, env [] 680s autopkgtest: DBG: testbed command exited with code 0 680s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'auto-multiple-choice-doc'], kind short, sout pipe, serr pipe, env [] 680s autopkgtest: DBG: testbed command exited with code 0 680s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'auto-multiple-choice-doc-pdf'], kind short, sout pipe, serr pipe, env [] 680s autopkgtest: DBG: testbed command exited with code 0 681s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.O8gTWx/gui-packages.all"], kind short, sout raw, serr pipe, env [] 681s autopkgtest: DBG: testbed command exited with code 0 681s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.O8gTWx/gui-packages.all /tmp/autopkgtest-work.ta5d0b6d/out/gui-packages.all 681s autopkgtest: DBG: got reply from testbed: ok 681s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.O8gTWx/build.YSI/src'], kind short, sout raw, serr raw, env [] 681s autopkgtest: DBG: testbed command exited with code 1 681s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.O8gTWx/build.YSI'], kind short, sout raw, serr pipe, env [] 682s autopkgtest: DBG: testbed command exited with code 0 682s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.ta5d0b6d/out/tests-tree/ /tmp/autopkgtest.O8gTWx/build.YSI/src/ 687s autopkgtest: DBG: got reply from testbed: ok 687s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.O8gTWx/build.YSI/src'], kind short, sout raw, serr pipe, env [] 687s autopkgtest: DBG: testbed command exited with code 0 687s autopkgtest [21:41:37]: test gui: [----------------------- 687s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.O8gTWx/wrapper.sh --debug --artifacts=/tmp/autopkgtest.O8gTWx/gui-artifacts --chdir=/tmp/autopkgtest.O8gTWx/build.YSI/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.O8gTWx/gui-stderr --stdout=/tmp/autopkgtest.O8gTWx/gui-stdout --tmp=/tmp/autopkgtest.O8gTWx/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' --make-executable=/tmp/autopkgtest.O8gTWx/build.YSI/src/debian/tests/gui -- /tmp/autopkgtest.O8gTWx/build.YSI/src/debian/tests/gui"], kind test, sout raw, serr raw, env [] 687s /tmp/autopkgtest.O8gTWx/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.O8gTWx/gui-artifacts 687s /tmp/autopkgtest.O8gTWx/wrapper.sh: changing to directory: /tmp/autopkgtest.O8gTWx/build.YSI/src 687s /tmp/autopkgtest.O8gTWx/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 687s /tmp/autopkgtest.O8gTWx/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 687s /tmp/autopkgtest.O8gTWx/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 687s /tmp/autopkgtest.O8gTWx/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 687s /tmp/autopkgtest.O8gTWx/wrapper.sh: setting environment: LANG=C.UTF-8 687s /tmp/autopkgtest.O8gTWx/wrapper.sh: unsetting environment: LANGUAGE 687s /tmp/autopkgtest.O8gTWx/wrapper.sh: unsetting environment: LC_ADDRESS 687s /tmp/autopkgtest.O8gTWx/wrapper.sh: unsetting environment: LC_ALL 687s /tmp/autopkgtest.O8gTWx/wrapper.sh: unsetting environment: LC_COLLATE 687s /tmp/autopkgtest.O8gTWx/wrapper.sh: unsetting environment: LC_CTYPE 687s /tmp/autopkgtest.O8gTWx/wrapper.sh: unsetting environment: LC_IDENTIFICATION 687s /tmp/autopkgtest.O8gTWx/wrapper.sh: unsetting environment: LC_MEASUREMENT 687s /tmp/autopkgtest.O8gTWx/wrapper.sh: unsetting environment: LC_MESSAGES 687s /tmp/autopkgtest.O8gTWx/wrapper.sh: unsetting environment: LC_MONETARY 687s /tmp/autopkgtest.O8gTWx/wrapper.sh: unsetting environment: LC_NAME 687s /tmp/autopkgtest.O8gTWx/wrapper.sh: unsetting environment: LC_NUMERIC 687s /tmp/autopkgtest.O8gTWx/wrapper.sh: unsetting environment: LC_PAPER 687s /tmp/autopkgtest.O8gTWx/wrapper.sh: unsetting environment: LC_TELEPHONE 687s /tmp/autopkgtest.O8gTWx/wrapper.sh: unsetting environment: LC_TIME 687s /tmp/autopkgtest.O8gTWx/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 687s /tmp/autopkgtest.O8gTWx/wrapper.sh: pretending to be a login shell 687s /tmp/autopkgtest.O8gTWx/wrapper.sh: will write standard error to /tmp/autopkgtest.O8gTWx/gui-stderr 687s /tmp/autopkgtest.O8gTWx/wrapper.sh: will write stdout to /tmp/autopkgtest.O8gTWx/gui-stdout 687s /tmp/autopkgtest.O8gTWx/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.O8gTWx/autopkgtest_tmp 687s /tmp/autopkgtest.O8gTWx/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 687s /tmp/autopkgtest.O8gTWx/wrapper.sh: marking as executable: /tmp/autopkgtest.O8gTWx/build.YSI/src/debian/tests/gui 687s /tmp/autopkgtest.O8gTWx/wrapper.sh: command to run: /tmp/autopkgtest.O8gTWx/build.YSI/src/debian/tests/gui 687s /tmp/autopkgtest.O8gTWx/wrapper.sh: copying /tmp/tmp.hhM9TOWLXI/out to stdout and file: /tmp/autopkgtest.O8gTWx/gui-stdout 687s /tmp/autopkgtest.O8gTWx/wrapper.sh: copying /tmp/tmp.hhM9TOWLXI/err to standard error and file: /tmp/autopkgtest.O8gTWx/gui-stdout 687s /tmp/autopkgtest.O8gTWx/wrapper.sh: writing script pid 5245 to /tmp/autopkgtest_script_pid 687s DEBUG ==> /tmp/autopkgtest.O8gTWx/gui-artifacts/gui.log 688s /tmp/autopkgtest.O8gTWx/wrapper.sh: checking for leaked background processes... 688s /tmp/autopkgtest.O8gTWx/wrapper.sh: waiting for tee/cat subprocesses... 688s /tmp/autopkgtest.O8gTWx/wrapper.sh: cleaning up... 688s /tmp/autopkgtest.O8gTWx/wrapper.sh: Exit status: 0 688s autopkgtest: DBG: testbed command exited with code 0 688s autopkgtest [21:41:38]: test gui: -----------------------] 688s autopkgtest: DBG: testbed executing test finished with exit status 0 688s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.O8gTWx/gui-stdout /tmp/autopkgtest-work.ta5d0b6d/out/gui-stdout 688s autopkgtest: DBG: got reply from testbed: ok 688s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.O8gTWx/gui-stderr /tmp/autopkgtest-work.ta5d0b6d/out/gui-stderr 688s autopkgtest: DBG: got reply from testbed: ok 688s autopkgtest [21:41:38]: test gui: - - - - - - - - - - results - - - - - - - - - - 688s gui PASS 688s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.O8gTWx/gui-artifacts/ /tmp/autopkgtest-work.ta5d0b6d/out/artifacts/ 689s autopkgtest: DBG: got reply from testbed: ok 689s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.O8gTWx/gui-artifacts', '/tmp/autopkgtest.O8gTWx/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 689s autopkgtest: DBG: testbed command exited with code 0 689s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 689s autopkgtest [21:41:39]: @@@@@@@@@@@@@@@@@@@@ summary 689s simple PASS 689s gui PASS 689s autopkgtest: DBG: testbed stop 689s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.O8gTWx 689s autopkgtest: DBG: sending command to testbed: close 706s autopkgtest: DBG: got reply from testbed: ok 706s autopkgtest: DBG: sending command to testbed: quit 706s nova [W] Using flock in prodstack6-s390x 706s Creating nova instance adt-plucky-s390x-auto-multiple-choice-20250215-213010-juju-7f2275-prod-proposed-migration-environment-15-6af3ccac-87c4-4871-bb53-4ca5ea28e035 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 706s nova [W] Timed out waiting for 8594a6b9-1e09-4684-9d83-bb83802962a1 to get deleted. 706s nova [W] Using flock in prodstack6-s390x 706s flock: timeout while waiting to get lock 706s Creating nova instance adt-plucky-s390x-auto-multiple-choice-20250215-213010-juju-7f2275-prod-proposed-migration-environment-15-6af3ccac-87c4-4871-bb53-4ca5ea28e035 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 706s nova [W] Timed out waiting for 1d42d5e3-8896-4788-afe3-6d1e0d4775f4 to get deleted.