0s autopkgtest: DBG: testbed init 0s autopkgtest [12:27:31]: starting date and time: 2025-02-19 12:27:31+0000 0s autopkgtest [12:27:31]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [12:27:31]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.gxceld1u/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:sphinx --apt-upgrade pymca --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-29.secgroup --name adt-plucky-s390x-pymca-20250219-122731-juju-7f2275-prod-proposed-migration-environment-15-48807185-69b4-4f9c-834d-e7523fe7e00c --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 119s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.FxMiJp 119s autopkgtest: DBG: sending command to testbed: print-execute-command 119s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.rutsmvtg/runcmd 119s autopkgtest: DBG: sending command to testbed: capabilities 119s autopkgtest: DBG: got reply from testbed: ok reboot isolation-machine revert-full-system revert suggested-normal-user=ubuntu root-on-testbed 119s autopkgtest: DBG: testbed capabilities: ['reboot', 'isolation-machine', 'revert-full-system', 'revert', 'suggested-normal-user=ubuntu', 'root-on-testbed', 'has_internet'] 119s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.FxMiJp'], kind short, sout raw, serr pipe, env [] 119s autopkgtest: DBG: testbed command exited with code 0 119s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.FxMiJp/wrapper.sh 119s autopkgtest: DBG: got reply from testbed: ok 119s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.FxMiJp/wrapper.sh'], kind short, sout raw, serr pipe, env [] 119s autopkgtest: DBG: testbed command exited with code 0 119s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 119s autopkgtest: DBG: testbed command exited with code 0 119s autopkgtest [12:29:30]: testbed dpkg architecture: s390x 119s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 119s autopkgtest: DBG: testbed command exited with code 0 119s autopkgtest [12:29:30]: testbed apt version: 2.9.30 119s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 120s autopkgtest: DBG: testbed command exited with code 0 120s autopkgtest: DBG: testbed has eatmydata 120s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 120s autopkgtest: DBG: testbed command exited with code 0 120s autopkgtest [12:29:31]: @@@@@@@@@@@@@@@@@@@@ test bed setup 120s 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 [] 120s autopkgtest: DBG: testbed command exited with code 0 120s autopkgtest [12:29:31]: testbed release detected to be: None 120s 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 [] 120s autopkgtest: DBG: testbed command exited with code 0 120s 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 [] 120s autopkgtest: DBG: testbed command exited with code 0 120s autopkgtest: DBG: adding APT source: Types: deb deb-src 120s URIs: http://ftpmaster.internal/ubuntu/ 120s Suites: plucky-proposed 120s Components: main restricted universe multiverse 120s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 120s 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 [] 120s autopkgtest: DBG: testbed command exited with code 0 120s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 120s Package: * 120s Pin: release plucky-proposed 120s Pin-Priority: 500 120s 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 [] 121s autopkgtest: DBG: testbed command exited with code 0 121s autopkgtest [12:29:32]: updating testbed package index (apt update) 121s 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'] 121s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 121s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 121s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 121s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 121s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 121s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 121s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 122s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 122s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 122s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 122s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 122s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 122s Fetched 1700 kB in 1s (1763 kB/s) 122s Reading package lists... 122s autopkgtest: DBG: testbed command exited with code 0 122s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 122s Package: * 122s Pin: release plucky-proposed 122s Pin-Priority: 100 122s 122s Package: src:sphinx:any 122s Pin: release plucky-proposed 122s Pin-Priority: 995 122s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:sphinx:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 123s autopkgtest: DBG: testbed command exited with code 0 123s 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.FxMiJp/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 123s autopkgtest: DBG: testbed command exited with code 0 123s 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'] 123s + lsb_release --codename --short 123s + RELEASE=plucky 123s + cat 123s + [ plucky != trusty ] 123s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 123s Reading package lists... 123s Building dependency tree... 123s Reading state information... 123s Calculating upgrade... 123s The following packages were automatically installed and are no longer required: 123s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 123s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 123s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 123s linux-tools-6.11.0-8-generic 123s Use 'sudo apt autoremove' to remove them. 123s The following packages will be upgraded: 123s iproute2 liblsof0 libp11-kit0 lsof 124s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 124s Need to get 1791 kB of archives. 124s After this operation, 17.4 kB of additional disk space will be used. 124s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 124s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 124s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 124s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 124s Preconfiguring packages ... 124s Fetched 1791 kB in 1s (2478 kB/s) 125s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 125s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 125s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 125s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 125s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 125s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 125s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 125s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 125s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 125s Setting up liblsof0 (4.99.4+dfsg-1) ... 125s Setting up iproute2 (6.13.0-1ubuntu1) ... 125s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 125s Setting up lsof (4.99.4+dfsg-1) ... 125s Processing triggers for man-db (2.13.0-1) ... 126s Processing triggers for libc-bin (2.40-4ubuntu1) ... 126s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 126s + /usr/lib/apt/apt-helper analyze-pattern ?true 126s + uname -r 126s + sed s/\./\\./g 126s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 126s + apt list ?obsolete 126s + tail -n+2 126s + cut -d/ -f1 126s + grep -v ^linux-.*6\.12\.0-15-generic.* 126s + true 126s + obsolete_pkgs= 126s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 126s Reading package lists... 126s Building dependency tree... 126s Reading state information... 126s The following packages will be REMOVED: 126s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 126s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 126s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 126s linux-tools-6.11.0-8-generic* 126s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 126s After this operation, 167 MB disk space will be freed. 126s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81031 files and directories currently installed.) 126s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 126s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 126s Removing libpython3.12t64:s390x (3.12.9-1) ... 126s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 127s Removing libnsl2:s390x (1.3.0-3build3) ... 127s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 127s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 127s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 128s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 128s Processing triggers for libc-bin (2.40-4ubuntu1) ... 128s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55931 files and directories currently installed.) 128s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 128s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 129s + grep -q trusty /etc/lsb-release 129s + [ ! -d /usr/share/doc/unattended-upgrades ] 129s + [ ! -d /usr/share/doc/lxd ] 129s + [ ! -d /usr/share/doc/lxd-client ] 129s + [ ! -d /usr/share/doc/snapd ] 129s + type iptables 129s + cat 129s + chmod 755 /etc/rc.local 129s + . /etc/rc.local 129s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 129s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 129s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 129s + uname -m 129s + [ s390x = ppc64le ] 129s + [ -d /run/systemd/system ] 129s + systemd-detect-virt --quiet --vm 129s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 129s + cat 129s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 129s + echo COMPRESS=lz4 129s autopkgtest: DBG: testbed command exited with code 0 129s autopkgtest [12:29:40]: upgrading testbed (apt dist-upgrade and autopurge) 129s 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'] 129s Reading package lists... 129s Building dependency tree... 129s Reading state information... 129s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 129s Starting 2 pkgProblemResolver with broken count: 0 129s Done 129s Entering ResolveByKeep 130s 130s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 130s autopkgtest: DBG: testbed command exited with code 0 130s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 130s Reading package lists... 130s Building dependency tree... 130s Reading state information... 131s Starting pkgProblemResolver with broken count: 0 131s Starting 2 pkgProblemResolver with broken count: 0 131s Done 131s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest: DBG: testbed command ['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.FxMiJp/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 132s autopkgtest: DBG: testbed command exited with code 1 132s autopkgtest [12:29:43]: rebooting testbed after setup commands that affected boot 132s autopkgtest: DBG: sending command to testbed: reboot 149s autopkgtest: DBG: got reply from testbed: ok 149s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 149s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.FxMiJp'], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.FxMiJp/autopkgtest-reboot 149s autopkgtest: DBG: got reply from testbed: ok 149s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.FxMiJp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.FxMiJp/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.FxMiJp/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.FxMiJp'], kind short, sout raw, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.FxMiJp/autopkgtest-reboot-prepare 150s autopkgtest: DBG: got reply from testbed: ok 150s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.FxMiJp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.FxMiJp/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest [12:30:02]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 151s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.FxMiJp/testbed-packages"], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.FxMiJp/testbed-packages /tmp/autopkgtest-work.gxceld1u/out/testbed-packages 151s autopkgtest: DBG: got reply from testbed: ok 151s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 151s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.FxMiJp'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.FxMiJp/autopkgtest-reboot 152s autopkgtest: DBG: got reply from testbed: ok 152s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.FxMiJp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.FxMiJp/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.FxMiJp/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.FxMiJp'], kind short, sout raw, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.FxMiJp/autopkgtest-reboot-prepare 152s autopkgtest: DBG: got reply from testbed: ok 152s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.FxMiJp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.FxMiJp/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: Binaries: initialising 153s autopkgtest [12:30:04]: @@@@@@@@@@@@@@@@@@@@ apt-source pymca 153s autopkgtest: DBG: blame += pymca 153s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 153s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'pymca'], kind short, sout pipe, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pymca5$'], kind short, sout pipe, serr raw, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pymca5=5.9.3+dfsg-2'], kind short, sout pipe, serr raw, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^pymca-doc$'], kind short, sout pipe, serr raw, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'pymca-doc=5.9.3+dfsg-2'], kind short, sout pipe, serr raw, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^pymca$'], kind short, sout pipe, serr raw, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'pymca=5.9.3+dfsg-2'], kind short, sout pipe, serr raw, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^pymca-data$'], kind short, sout pipe, serr raw, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'pymca-data=5.9.3+dfsg-2'], kind short, sout pipe, serr raw, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: install_deps: deps_new=[] 155s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s 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.FxMiJp/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source pymca=5.9.3+dfsg-2 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 pymca_*.dsc src >/dev/null; chmod -R a+rX .; cd [a-z0-9]*/.; pwd >&3; sed -n "1 {s/).*//; s/ (/\\n/; p}" debian/changelog >&3\''], kind build, sout pipe, serr raw, env ['ADT_TEST_TRIGGERS=sphinx/8.1.3-5'] 155s + cd / 155s + mktemp -d /tmp/autopkgtest.FxMiJp/build.XXX 155s + builddir=/tmp/autopkgtest.FxMiJp/build.ylo 155s + cd /tmp/autopkgtest.FxMiJp/build.ylo 155s + apt-get source -d -q --only-source pymca=5.9.3+dfsg-2 157s + OUT=Reading package lists... 157s NOTICE: 'pymca' packaging is maintained in the 'Git' version control system at: 157s https://salsa.debian.org/science-team/pymca.git 157s Please use: 157s git clone https://salsa.debian.org/science-team/pymca.git 157s to retrieve the latest (possibly unreleased) updates to the package. 157s Need to get 11.0 MB of source archives. 157s Get:1 http://ftpmaster.internal/ubuntu plucky/universe pymca 5.9.3+dfsg-2 (dsc) [2781 B] 157s Get:2 http://ftpmaster.internal/ubuntu plucky/universe pymca 5.9.3+dfsg-2 (tar) [11.0 MB] 157s Get:3 http://ftpmaster.internal/ubuntu plucky/universe pymca 5.9.3+dfsg-2 (diff) [11.6 kB] 157s Fetched 11.0 MB in 1s (7331 kB/s) 157s Download complete and in download only mode 157s + [ -n ] 157s + echo Reading package lists... 157s NOTICE: 'pymca' packaging is maintained in the 'Git' version control system at: 157s https://salsa.debian.org/science-team/pymca.git 157s Please use: 157s git clone https://salsa.debian.org/science-team/pymca.git 157s to retrieve the latest (possibly unreleased) updates to the package. 157s Need to get 11.0 MB of source archives. 157s Get:1 http://ftpmaster.internal/ubuntu plucky/universe pymca 5.9.3+dfsg-2 (dsc) [2781 B] 157s Get:2 http://ftpmaster.internal/ubuntu plucky/universe pymca 5.9.3+dfsg-2 (tar) [11.0 MB] 157s Get:3 http://ftpmaster.internal/ubuntu plucky/universe pymca 5.9.3+dfsg-2 (diff) [11.6 kB] 157s Fetched 11.0 MB in 1s (7331 kB/s) 157s Download complete and in download only mode 157s + grep ^Get: 157s Get:1 http://ftpmaster.internal/ubuntu plucky/universe pymca 5.9.3+dfsg-2 (dsc) [2781 B] 157s Get:2 http://ftpmaster.internal/ubuntu plucky/universe pymca 5.9.3+dfsg-2 (tar) [11.0 MB] 157s Get:3 http://ftpmaster.internal/ubuntu plucky/universe pymca 5.9.3+dfsg-2 (diff) [11.6 kB] 157s + dpkg-source -x pymca_5.9.3+dfsg-2.dsc src 157s gpgv: Signature made Mon Feb 3 07:04:15 2025 UTC 157s gpgv: using RSA key 7E1AC3FA27A649284C323EF6695C429316C07BFE 157s gpgv: issuer "jdg@debian.org" 157s gpgv: Can't check signature: No public key 157s dpkg-source: warning: cannot verify inline signature for ./pymca_5.9.3+dfsg-2.dsc: no acceptable signature found 158s + chmod -R a+rX . 158s + cd src/. 158s + pwd 158s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest [12:30:09]: testing package pymca version 5.9.3+dfsg-2 158s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.FxMiJp/build.ylo/src/debian/ /tmp/autopkgtest-work.gxceld1u/out/pkg/debian/ 158s autopkgtest: DBG: got reply from testbed: ok 158s autopkgtest: DBG: processing dependency locales-all 158s autopkgtest: DBG: processing dependency python3-all 158s autopkgtest: DBG: processing dependency python3-pymca5 158s autopkgtest: DBG: marked alternatives ['python3-pymca5'] as a synthesised dependency 158s autopkgtest: DBG: processing dependency xauth 158s autopkgtest: DBG: processing dependency xvfb 158s autopkgtest: DBG: Test defined: name command1 path None command "set -efu ; export HOME=$AUTOPKGTEST_TMP ; export LIBGL_ALWAYS_INDIRECT=1 ; for py in $(py3versions -s) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; xvfb-run -a --server-args="-screen 0 1024x768x24 -c +extension GLX +render -noreset" $py -m PyMca5.tests.TestAll 2>&1 ; done" restrictions [] features [] depends ['locales-all', 'python3-all', 'python3-pymca5', 'xauth', 'xvfb'] 158s autopkgtest: DBG: processing dependency debhelper 158s autopkgtest: DBG: processing dependency mesa-utils 158s autopkgtest: DBG: processing dependency @ 158s autopkgtest: DBG: synthesised dependency pymca 158s autopkgtest: DBG: synthesised dependency python3-pymca5 158s autopkgtest: DBG: synthesised dependency pymca-data 158s autopkgtest: DBG: synthesised dependency pymca-doc 158s autopkgtest: DBG: processing dependency xauth 158s autopkgtest: DBG: processing dependency xvfb 158s autopkgtest: DBG: Test defined: name command2 path None command "xvfb-run -s "-screen 0 1024x768x24 -ac +extension GLX +render -noreset" debian/tests/gui" restrictions ['allow-stderr'] features [] depends ['debhelper', 'mesa-utils', 'pymca', 'python3-pymca5', 'pymca-data', 'pymca-doc', 'xauth', 'xvfb'] 158s autopkgtest [12:30:09]: build not needed 158s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.FxMiJp/build.ylo/src/ /tmp/autopkgtest-work.gxceld1u/out/tests-tree/ 160s autopkgtest: DBG: got reply from testbed: ok 160s autopkgtest: DBG: processing dependency locales-all 160s autopkgtest: DBG: processing dependency python3-all 160s autopkgtest: DBG: processing dependency python3-pymca5 160s autopkgtest: DBG: marked alternatives ['python3-pymca5'] as a synthesised dependency 160s autopkgtest: DBG: processing dependency xauth 160s autopkgtest: DBG: processing dependency xvfb 160s autopkgtest: DBG: Test defined: name command1 path None command "set -efu ; export HOME=$AUTOPKGTEST_TMP ; export LIBGL_ALWAYS_INDIRECT=1 ; for py in $(py3versions -s) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; xvfb-run -a --server-args="-screen 0 1024x768x24 -c +extension GLX +render -noreset" $py -m PyMca5.tests.TestAll 2>&1 ; done" restrictions [] features [] depends ['locales-all', 'python3-all', 'python3-pymca5', 'xauth', 'xvfb'] 160s autopkgtest: DBG: processing dependency debhelper 160s autopkgtest: DBG: processing dependency mesa-utils 160s autopkgtest: DBG: processing dependency @ 160s autopkgtest: DBG: synthesised dependency pymca 160s autopkgtest: DBG: synthesised dependency python3-pymca5 160s autopkgtest: DBG: synthesised dependency pymca-data 160s autopkgtest: DBG: synthesised dependency pymca-doc 160s autopkgtest: DBG: processing dependency xauth 160s autopkgtest: DBG: processing dependency xvfb 160s autopkgtest: DBG: Test defined: name command2 path None command "xvfb-run -s "-screen 0 1024x768x24 -ac +extension GLX +render -noreset" debian/tests/gui" restrictions ['allow-stderr'] features [] depends ['debhelper', 'mesa-utils', 'pymca', 'python3-pymca5', 'pymca-data', 'pymca-doc', 'xauth', 'xvfb'] 160s autopkgtest [12:30:11]: test command1: preparing testbed 160s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['locales-all', 'python3-all', 'python3-pymca5', 'xauth', 'xvfb'] 160s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 160s autopkgtest: DBG: install_deps: deps_new=['locales-all', 'python3-all', 'python3-pymca5', 'xauth', 'xvfb'] 160s autopkgtest: DBG: install-deps: satisfying locales-all, python3-all, python3-pymca5, xauth, xvfb 160s autopkgtest: DBG: can use apt-get on testbed: True 160s 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', 'locales-all, python3-all, python3-pymca5, xauth, xvfb'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 160s Reading package lists... 161s Building dependency tree... 161s Reading state information... 161s Starting pkgProblemResolver with broken count: 0 161s Starting 2 pkgProblemResolver with broken count: 0 161s Done 161s The following NEW packages will be installed: 161s blt fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono 161s fonts-lyx gdb libaec0 libasyncns0 libavahi-client3 libavahi-common-data 161s libavahi-common3 libbabeltrace1 libblas3 libcups2t64 libdebuginfod-common 161s libdebuginfod1t64 libdeflate0 libdouble-conversion3 libdrm-radeon1 161s libegl-mesa0 libegl1 libflac12t64 libfontconfig1 libfontenc1 libfreetype6 161s libgbm1 libgfortran5 libgl1 libgl1-mesa-dri libglapi-mesa libglu1-mesa 161s libglvnd0 libglx-mesa0 libglx0 libgomp1 libgraphite2-3 161s libgstreamer-plugins-base1.0-0 libgstreamer1.0-0 libharfbuzz0b libhdf5-310 161s libhdf5-hl-310 libhyphen0 libice6 libimagequant0 libinput-bin libinput10 161s libjbig0 libjpeg-turbo8 libjpeg8 libjs-jquery libjs-jquery-ui liblapack3 161s liblbfgsb0 liblcms2-2 liblzf1 libmd4c0 libmp3lame0 libmpg123-0t64 161s libmtdev1t64 libnorm1t64 libnsl2 libogg0 libopengl0 libopenjp2-7 libopus0 161s liborc-0.4-0t64 libpcre2-16-0 libpgm-5.3-0t64 libpixman-1-0 libpulse0 161s libpython3.12-minimal libpython3.12-stdlib libqhull-r8.0 libqt5charts5 161s libqt5core5t64 libqt5dbus5t64 libqt5designer5 libqt5gui5t64 libqt5help5 161s libqt5location5 libqt5multimedia5 libqt5multimediawidgets5 libqt5network5t64 161s libqt5opengl5t64 libqt5positioning5 libqt5positioningquick5 161s libqt5printsupport5t64 libqt5qml5 libqt5qmlmodels5 libqt5quick5 161s libqt5quickwidgets5 libqt5remoteobjects5 libqt5sensors5 libqt5serialport5 161s libqt5sql5t64 libqt5svg5 libqt5test5t64 libqt5texttospeech5 161s libqt5webchannel5 libqt5webkit5 libqt5websockets5 libqt5widgets5t64 161s libqt5xml5t64 libqt5xmlpatterns5 libraqm0 libsharpyuv0 libsm6 libsndfile1 161s libsodium23 libsource-highlight-common libsource-highlight4t64 libsz2 161s libtcl8.6 libtiff6 libtk8.6 libvorbis0a libvorbisenc2 libvulkan1 161s libwacom-common libwacom9 libwayland-client0 libwayland-server0 libwebp7 161s libwebpdemux2 libwebpmux3 libwoff1 libx11-xcb1 libxaw7 libxcb-dri3-0 161s libxcb-glx0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-present0 161s libxcb-randr0 libxcb-render-util0 libxcb-render0 libxcb-shape0 libxcb-shm0 161s libxcb-sync1 libxcb-util1 libxcb-xfixes0 libxcb-xinerama0 libxcb-xinput0 161s libxcb-xkb1 libxfont2 libxft2 libxkbcommon-x11-0 libxkbfile1 libxmu6 libxpm4 161s libxrandr2 libxrender1 libxshmfence1 libxslt1.1 libxss1 libxt6t64 161s libxxf86vm1 libzmq5 locales-all mesa-libgallium pymca-data 161s python-fisx-common python-matplotlib-data python3-all python3-asttokens 161s python3-brotli python3-comm python3-contourpy python3-coverage 161s python3-cycler python3-dateutil python3-debugpy python3-decorator 161s python3-executing python3-fisx python3-fonttools python3-fs python3-h5py 161s python3-h5py-serial python3-ipykernel python3-ipython python3-jedi 161s python3-jupyter-client python3-jupyter-core python3-kiwisolver python3-lxml 161s python3-lz4 python3-matplotlib python3-matplotlib-inline python3-mpmath 161s python3-nest-asyncio python3-numpy python3-opengl python3-packaging 161s python3-parso python3-pexpect python3-pil python3-pil.imagetk 161s python3-platformdirs python3-prompt-toolkit python3-psutil 161s python3-ptyprocess python3-pure-eval python3-pymca5 python3-pyqt5 161s python3-pyqt5.qtchart python3-pyqt5.qtmultimedia python3-pyqt5.qtopengl 161s python3-pyqt5.qtpositioning python3-pyqt5.qtquick 161s python3-pyqt5.qtremoteobjects python3-pyqt5.qtsensors 161s python3-pyqt5.qtserialport python3-pyqt5.qtsql python3-pyqt5.qtsvg 161s python3-pyqt5.qttexttospeech python3-pyqt5.qtwebchannel 161s python3-pyqt5.qtwebkit python3-pyqt5.qtwebsockets 161s python3-pyqt5.qtxmlpatterns python3-pyqt5.sip python3-pytz python3-qtconsole 161s python3-qtpy python3-scipy python3-stack-data python3-sympy python3-tk 161s python3-tornado python3-traitlets python3-typeshed python3-tz 161s python3-ufolib2 python3-wcwidth python3-zmq python3.12 python3.12-minimal 161s python3.12-tk python3.13-tk tk8.6-blt2.5 unicode-data x11-common 161s x11-xkb-utils xserver-common xvfb 161s 0 upgraded, 247 newly installed, 0 to remove and 0 not upgraded. 161s Need to get 176 MB of archives. 161s After this operation, 981 MB of additional disk space will be used. 161s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 162s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 162s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libdebuginfod-common all 0.192-4 [15.4 kB] 162s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libgstreamer1.0-0 s390x 1.25.50-1 [1240 kB] 162s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x liborc-0.4-0t64 s390x 1:0.4.41-1 [213 kB] 162s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libgstreamer-plugins-base1.0-0 s390x 1.25.50-1 [919 kB] 162s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libhyphen0 s390x 2.8.8-7build3 [28.4 kB] 162s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 162s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 162s Get:10 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.0-1build1 [43.9 kB] 162s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 162s Get:12 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 162s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 162s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 162s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 162s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 162s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 162s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 163s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 163s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 163s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 163s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 163s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 163s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 163s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 163s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 163s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 163s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 163s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 163s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 163s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 163s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-1 [27.8 kB] 163s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 163s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 163s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 163s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 163s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 163s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 163s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 163s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 163s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 163s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 163s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 163s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 163s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 163s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 163s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 163s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 163s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 163s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 163s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 163s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 163s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 163s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 163s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 164s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 164s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 164s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 164s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 164s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 164s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 164s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 164s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 164s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 164s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 164s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 164s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 164s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-4ubuntu1 [4187 kB] 164s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5positioning5 s390x 5.15.15+dfsg-3 [249 kB] 164s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-common-data s390x 0.8-14ubuntu1 [30.5 kB] 164s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-common3 s390x 0.8-14ubuntu1 [23.6 kB] 164s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-client3 s390x 0.8-14ubuntu1 [26.8 kB] 164s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x libcups2t64 s390x 2.4.11-0ubuntu2 [282 kB] 164s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5widgets5t64 s390x 5.15.15+dfsg-4ubuntu1 [2718 kB] 164s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5printsupport5t64 s390x 5.15.15+dfsg-4ubuntu1 [218 kB] 164s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 164s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qmlmodels5 s390x 5.15.15+dfsg-3 [217 kB] 164s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5quick5 s390x 5.15.15+dfsg-3 [1827 kB] 164s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5sensors5 s390x 5.15.15-2 [126 kB] 164s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5webchannel5 s390x 5.15.15-2 [65.9 kB] 164s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 164s Get:82 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 164s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x libwoff1 s390x 1.0.2-2build1 [49.3 kB] 164s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x libxslt1.1 s390x 1.1.39-0exp1ubuntu2 [169 kB] 164s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5webkit5 s390x 5.212.0~alpha4-42 [12.1 MB] 165s Get:86 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 165s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 165s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 165s Get:89 http://ftpmaster.internal/ubuntu plucky/main s390x libtcl8.6 s390x 8.6.16+dfsg-1 [1034 kB] 165s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x libxft2 s390x 2.3.6-1build1 [49.6 kB] 165s Get:91 http://ftpmaster.internal/ubuntu plucky/main s390x libxss1 s390x 1:1.2.3-1build3 [7396 B] 165s Get:92 http://ftpmaster.internal/ubuntu plucky/main s390x libtk8.6 s390x 8.6.16-1 [830 kB] 165s Get:93 http://ftpmaster.internal/ubuntu plucky/main s390x tk8.6-blt2.5 s390x 2.5.3+dfsg-7build1 [662 kB] 165s Get:94 http://ftpmaster.internal/ubuntu plucky/main s390x blt s390x 2.5.3+dfsg-7build1 [4840 B] 165s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x fonts-lyx all 2.4.3-1 [171 kB] 165s Get:96 http://ftpmaster.internal/ubuntu plucky/main s390x libbabeltrace1 s390x 1.5.11-4build1 [170 kB] 165s Get:97 http://ftpmaster.internal/ubuntu plucky/main s390x libdebuginfod1t64 s390x 0.192-4 [22.6 kB] 165s Get:98 http://ftpmaster.internal/ubuntu plucky/main s390x libsource-highlight-common all 3.1.9-4.3build1 [64.2 kB] 165s Get:99 http://ftpmaster.internal/ubuntu plucky/main s390x libsource-highlight4t64 s390x 3.1.9-4.3build1 [268 kB] 165s Get:100 http://ftpmaster.internal/ubuntu plucky/main s390x gdb s390x 16.2-1ubuntu1 [8240 kB] 166s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x libaec0 s390x 1.1.3-1 [25.7 kB] 166s Get:102 http://ftpmaster.internal/ubuntu plucky/main s390x libasyncns0 s390x 0.8-6build4 [11.4 kB] 166s Get:103 http://ftpmaster.internal/ubuntu plucky/main s390x libblas3 s390x 3.12.1-2 [252 kB] 166s Get:104 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 166s Get:105 http://ftpmaster.internal/ubuntu plucky/main s390x libogg0 s390x 1.3.5-3build1 [24.4 kB] 166s Get:106 http://ftpmaster.internal/ubuntu plucky/main s390x libflac12t64 s390x 1.4.3+ds-4 [161 kB] 166s Get:107 http://ftpmaster.internal/ubuntu plucky/main s390x libfontenc1 s390x 1:1.1.8-1build1 [14.8 kB] 166s Get:108 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran5 s390x 15-20250213-1ubuntu1 [620 kB] 166s Get:109 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 166s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x libsz2 s390x 1.1.3-1 [5442 B] 166s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x libhdf5-310 s390x 1.14.5+repack-3 [1477 kB] 166s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x libhdf5-hl-310 s390x 1.14.5+repack-3 [61.0 kB] 166s Get:113 http://ftpmaster.internal/ubuntu plucky/main s390x libimagequant0 s390x 2.18.0-1build1 [43.3 kB] 166s Get:114 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 166s Get:115 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-ui all 1.13.2+dfsg-1 [252 kB] 166s Get:116 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack3 s390x 3.12.1-2 [2971 kB] 167s Get:117 http://ftpmaster.internal/ubuntu plucky/universe s390x liblbfgsb0 s390x 3.0+dfsg.4-1build1 [32.4 kB] 167s Get:118 http://ftpmaster.internal/ubuntu plucky/main s390x liblcms2-2 s390x 2.16-2 [175 kB] 167s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x liblzf1 s390x 3.6-4 [7020 B] 167s Get:120 http://ftpmaster.internal/ubuntu plucky/main s390x libmp3lame0 s390x 3.100-6build1 [160 kB] 167s Get:121 http://ftpmaster.internal/ubuntu plucky/main s390x libmpg123-0t64 s390x 1.32.10-1 [179 kB] 167s Get:122 http://ftpmaster.internal/ubuntu plucky/universe s390x libnorm1t64 s390x 1.5.9+dfsg-3.1build1 [158 kB] 167s Get:123 http://ftpmaster.internal/ubuntu plucky/main s390x libopus0 s390x 1.5.2-2 [2928 kB] 167s Get:124 http://ftpmaster.internal/ubuntu plucky/universe s390x libpgm-5.3-0t64 s390x 5.3.128~dfsg-2.1build1 [169 kB] 167s Get:125 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-0 s390x 0.44.0-3 [201 kB] 167s Get:126 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbis0a s390x 1.3.7-2 [112 kB] 167s Get:127 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbisenc2 s390x 1.3.7-2 [80.6 kB] 167s Get:128 http://ftpmaster.internal/ubuntu plucky/main s390x libsndfile1 s390x 1.2.2-2 [238 kB] 167s Get:129 http://ftpmaster.internal/ubuntu plucky/main s390x libpulse0 s390x 1:17.0+dfsg1-2ubuntu1 [312 kB] 167s Get:130 http://ftpmaster.internal/ubuntu plucky/universe s390x libqhull-r8.0 s390x 2020.2-6build1 [199 kB] 167s Get:131 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5charts5 s390x 5.15.15-2 [506 kB] 167s Get:132 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5xml5t64 s390x 5.15.15+dfsg-4ubuntu1 [129 kB] 167s Get:133 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5designer5 s390x 5.15.15-6 [2899 kB] 167s Get:134 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5sql5t64 s390x 5.15.15+dfsg-4ubuntu1 [130 kB] 167s Get:135 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5help5 s390x 5.15.15-6 [172 kB] 167s Get:136 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5positioningquick5 s390x 5.15.15+dfsg-3 [45.7 kB] 167s Get:137 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5location5 s390x 5.15.15+dfsg-3 [808 kB] 167s Get:138 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5multimedia5 s390x 5.15.15-2 [331 kB] 167s Get:139 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5multimediawidgets5 s390x 5.15.15-2 [43.1 kB] 167s Get:140 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5opengl5t64 s390x 5.15.15+dfsg-4ubuntu1 [156 kB] 167s Get:141 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5quickwidgets5 s390x 5.15.15+dfsg-3 [39.5 kB] 167s Get:142 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5remoteobjects5 s390x 5.15.15-2 [215 kB] 167s Get:143 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5serialport5 s390x 5.15.15-2 [37.3 kB] 167s Get:144 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5svg5 s390x 5.15.15-2 [158 kB] 167s Get:145 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5test5t64 s390x 5.15.15+dfsg-4ubuntu1 [156 kB] 167s Get:146 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5texttospeech5 s390x 5.15.15-2 [22.2 kB] 167s Get:147 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5websockets5 s390x 5.15.15-2 [64.3 kB] 167s Get:148 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5xmlpatterns5 s390x 5.15.15-2 [927 kB] 167s Get:149 http://ftpmaster.internal/ubuntu plucky/main s390x libraqm0 s390x 0.10.2-1 [15.8 kB] 167s Get:150 http://ftpmaster.internal/ubuntu plucky/main s390x libsodium23 s390x 1.0.18-1build3 [138 kB] 167s Get:151 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 167s Get:152 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 167s Get:153 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpdemux2 s390x 1.5.0-0.1 [12.6 kB] 167s Get:154 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpmux3 s390x 1.5.0-0.1 [25.8 kB] 167s Get:155 http://ftpmaster.internal/ubuntu plucky/main s390x libxt6t64 s390x 1:1.2.1-1.2build1 [184 kB] 167s Get:156 http://ftpmaster.internal/ubuntu plucky/main s390x libxmu6 s390x 2:1.1.3-3build2 [53.0 kB] 167s Get:157 http://ftpmaster.internal/ubuntu plucky/main s390x libxpm4 s390x 1:3.5.17-1build2 [41.2 kB] 167s Get:158 http://ftpmaster.internal/ubuntu plucky/main s390x libxaw7 s390x 2:1.0.16-1 [201 kB] 167s Get:159 http://ftpmaster.internal/ubuntu plucky/main s390x libxfont2 s390x 1:2.0.6-1build1 [101 kB] 167s Get:160 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbfile1 s390x 1:1.1.0-1build4 [76.5 kB] 167s Get:161 http://ftpmaster.internal/ubuntu plucky/main s390x libxrandr2 s390x 2:1.5.4-1 [20.8 kB] 168s Get:162 http://ftpmaster.internal/ubuntu plucky/universe s390x libzmq5 s390x 4.3.5-1build2 [258 kB] 168s Get:163 http://ftpmaster.internal/ubuntu plucky/universe s390x python-fisx-common all 1.3.1-1build4 [3480 kB] 168s Get:164 http://ftpmaster.internal/ubuntu plucky/universe s390x python-matplotlib-data all 3.8.3-3ubuntu2 [2929 kB] 168s Get:165 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B] 168s Get:166 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-asttokens all 3.0.0-1 [20.4 kB] 168s Get:167 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-brotli s390x 1.1.0-2build3 [381 kB] 168s Get:168 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-traitlets all 5.14.3+really5.14.3-1 [71.5 kB] 168s Get:169 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-comm all 0.2.1-1 [7016 B] 168s Get:170 http://ftpmaster.internal/ubuntu plucky/main s390x python3-numpy s390x 1:1.26.4+ds-13 [4601 kB] 168s Get:171 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-contourpy s390x 1.3.1-1 [235 kB] 168s Get:172 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-coverage s390x 7.4.4+dfsg1-0ubuntu3 [150 kB] 168s Get:173 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-cycler all 0.12.1-1 [9716 B] 168s Get:174 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dateutil all 2.9.0-3 [80.2 kB] 168s Get:175 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-debugpy s390x 1.8.8+ds-2ubuntu1 [1138 kB] 168s Get:176 http://ftpmaster.internal/ubuntu plucky/main s390x python3-decorator all 5.1.1-5 [10.1 kB] 168s Get:177 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-executing all 2.2.0-0.1 [25.0 kB] 168s Get:178 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-fisx s390x 1.3.1-1build4 [4079 kB] 168s Get:179 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pytz all 2025.1-3 [162 kB] 168s Get:180 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tz all 2025.1-3 [1866 B] 168s Get:181 http://ftpmaster.internal/ubuntu plucky/main s390x python3-platformdirs all 4.3.6-1 [16.8 kB] 168s Get:182 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-fs all 2.4.16-6 [90.7 kB] 168s Get:183 http://ftpmaster.internal/ubuntu plucky/main s390x python3-lxml s390x 5.3.1-1 [1773 kB] 168s Get:184 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-lz4 s390x 4.4.0+dfsg-1 [27.0 kB] 168s Get:185 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-scipy s390x 1.14.1-4ubuntu1 [21.2 MB] 169s Get:186 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-mpmath all 1.3.0-1 [425 kB] 169s Get:187 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sympy all 1.13.3-1 [4228 kB] 169s Get:188 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-ufolib2 all 0.17.0+dfsg1-1 [33.5 kB] 169s Get:189 http://ftpmaster.internal/ubuntu plucky/universe s390x unicode-data all 15.1.0-1 [8878 kB] 169s Get:190 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-fonttools s390x 4.55.3-2 [1723 kB] 169s Get:191 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-h5py-serial s390x 3.12.1-1 [1669 kB] 169s Get:192 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-h5py all 3.12.1-1 [7970 B] 169s Get:193 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-parso all 0.8.4-1 [67.6 kB] 169s Get:194 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-typeshed all 0.0~git20241223.ea91db2-1 [1548 kB] 169s Get:195 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-jedi all 0.19.1+ds1-1 [693 kB] 169s Get:196 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-matplotlib-inline all 0.1.6-2 [8784 B] 169s Get:197 http://ftpmaster.internal/ubuntu plucky/main s390x python3-wcwidth all 0.2.13+dfsg1-1 [26.3 kB] 169s Get:198 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-prompt-toolkit all 3.0.50-1 [257 kB] 169s Get:199 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pure-eval all 0.2.3-1 [11.4 kB] 169s Get:200 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-stack-data all 0.6.3-1 [22.0 kB] 169s Get:201 http://ftpmaster.internal/ubuntu plucky/main s390x python3-ptyprocess all 0.7.0-6 [14.8 kB] 169s Get:202 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pexpect all 4.9-3 [48.1 kB] 170s Get:203 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-ipython all 8.30.0-2 [569 kB] 170s Get:204 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-jupyter-core all 5.7.2-5 [28.1 kB] 170s Get:205 http://ftpmaster.internal/ubuntu plucky/main s390x python3-psutil s390x 5.9.8-2build3 [195 kB] 170s Get:206 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tornado s390x 6.4.2-1 [299 kB] 170s Get:207 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-zmq s390x 26.2.1-1 [229 kB] 170s Get:208 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-jupyter-client all 8.6.3-2 [78.5 kB] 170s Get:209 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-nest-asyncio all 1.5.4-1 [6256 B] 170s Get:210 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 170s Get:211 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-ipykernel all 6.29.5-2 [82.7 kB] 170s Get:212 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-kiwisolver s390x 1.4.7-3 [65.6 kB] 170s Get:213 http://ftpmaster.internal/ubuntu plucky/main s390x libopenjp2-7 s390x 2.5.0-2ubuntu3 [208 kB] 170s Get:214 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pil s390x 11.1.0-5 [527 kB] 170s Get:215 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-tk s390x 3.12.9-1 [117 kB] 170s Get:216 http://ftpmaster.internal/ubuntu plucky/main s390x python3.13-tk s390x 3.13.2-1 [108 kB] 170s Get:217 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tk s390x 3.13.1-1 [9770 B] 170s Get:218 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pil.imagetk s390x 11.1.0-5 [9766 B] 170s Get:219 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-matplotlib s390x 3.8.3-3ubuntu2 [4657 kB] 170s Get:220 http://ftpmaster.internal/ubuntu plucky/main s390x libopengl0 s390x 1.7.0-1build1 [48.0 kB] 170s Get:221 http://ftpmaster.internal/ubuntu plucky/main s390x libglu1-mesa s390x 9.0.2-1.1build1 [176 kB] 170s Get:222 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-opengl all 3.1.7+dfsg-1 [612 kB] 170s Get:223 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.sip s390x 12.17.0-1 [69.3 kB] 170s Get:224 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5 s390x 5.15.11+dfsg-1build2 [2878 kB] 171s Get:225 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.qtchart s390x 5.15.7+dfsg-1 [153 kB] 171s Get:226 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.qtmultimedia s390x 5.15.11+dfsg-1build2 [241 kB] 171s Get:227 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.qtopengl s390x 5.15.11+dfsg-1build2 [140 kB] 171s Get:228 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.qtpositioning s390x 5.15.11+dfsg-1build2 [163 kB] 171s Get:229 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.qtquick s390x 5.15.11+dfsg-1build2 [425 kB] 171s Get:230 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.qtremoteobjects s390x 5.15.11+dfsg-1build2 [34.5 kB] 171s Get:231 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.qtsensors s390x 5.15.11+dfsg-1build2 [58.4 kB] 171s Get:232 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.qtserialport s390x 5.15.11+dfsg-1build2 [29.6 kB] 171s Get:233 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.qtsql s390x 5.15.11+dfsg-1build2 [95.9 kB] 171s Get:234 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.qtsvg s390x 5.15.11+dfsg-1build2 [31.1 kB] 171s Get:235 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.qttexttospeech s390x 5.15.11+dfsg-1build2 [18.8 kB] 171s Get:236 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.qtwebchannel s390x 5.15.11+dfsg-1build2 [15.9 kB] 171s Get:237 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.qtwebkit s390x 5.15.11+dfsg-1build2 [117 kB] 171s Get:238 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.qtwebsockets s390x 5.15.11+dfsg-1build2 [28.2 kB] 171s Get:239 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.qtxmlpatterns s390x 5.15.11+dfsg-1build2 [47.1 kB] 171s Get:240 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-qtpy all 2.4.2-4 [57.3 kB] 171s Get:241 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-qtconsole all 5.6.1-4 [84.7 kB] 171s Get:242 http://ftpmaster.internal/ubuntu plucky/main s390x x11-xkb-utils s390x 7.7+9 [169 kB] 171s Get:243 http://ftpmaster.internal/ubuntu plucky/main s390x xserver-common all 2:21.1.14-2ubuntu1 [33.7 kB] 171s Get:244 http://ftpmaster.internal/ubuntu plucky/universe s390x xvfb s390x 2:21.1.14-2ubuntu1 [941 kB] 171s Get:245 http://ftpmaster.internal/ubuntu plucky/universe s390x locales-all s390x 2.40-4ubuntu1 [11.5 MB] 172s Get:246 http://ftpmaster.internal/ubuntu plucky/universe s390x pymca-data all 5.9.3+dfsg-2 [4667 kB] 173s Get:247 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pymca5 s390x 5.9.3+dfsg-2 [6073 kB] 174s Preconfiguring packages ... 174s Fetched 176 MB in 12s (14.1 MB/s) 174s Selecting previously unselected package libpython3.12-minimal:s390x. 174s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55929 files and directories currently installed.) 174s Preparing to unpack .../000-libpython3.12-minimal_3.12.9-1_s390x.deb ... 174s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 175s Selecting previously unselected package python3.12-minimal. 175s Preparing to unpack .../001-python3.12-minimal_3.12.9-1_s390x.deb ... 175s Unpacking python3.12-minimal (3.12.9-1) ... 175s Selecting previously unselected package libdebuginfod-common. 175s Preparing to unpack .../002-libdebuginfod-common_0.192-4_all.deb ... 175s Unpacking libdebuginfod-common (0.192-4) ... 175s Selecting previously unselected package libgstreamer1.0-0:s390x. 175s Preparing to unpack .../003-libgstreamer1.0-0_1.25.50-1_s390x.deb ... 175s Unpacking libgstreamer1.0-0:s390x (1.25.50-1) ... 175s Selecting previously unselected package liborc-0.4-0t64:s390x. 175s Preparing to unpack .../004-liborc-0.4-0t64_1%3a0.4.41-1_s390x.deb ... 175s Unpacking liborc-0.4-0t64:s390x (1:0.4.41-1) ... 175s Selecting previously unselected package libgstreamer-plugins-base1.0-0:s390x. 175s Preparing to unpack .../005-libgstreamer-plugins-base1.0-0_1.25.50-1_s390x.deb ... 175s Unpacking libgstreamer-plugins-base1.0-0:s390x (1.25.50-1) ... 175s Selecting previously unselected package libhyphen0:s390x. 175s Preparing to unpack .../006-libhyphen0_2.8.8-7build3_s390x.deb ... 175s Unpacking libhyphen0:s390x (2.8.8-7build3) ... 175s Selecting previously unselected package libjpeg-turbo8:s390x. 175s Preparing to unpack .../007-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 175s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 175s Selecting previously unselected package libjpeg8:s390x. 175s Preparing to unpack .../008-libjpeg8_8c-2ubuntu11_s390x.deb ... 175s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 175s Selecting previously unselected package libdouble-conversion3:s390x. 175s Preparing to unpack .../009-libdouble-conversion3_3.3.0-1build1_s390x.deb ... 175s Unpacking libdouble-conversion3:s390x (3.3.0-1build1) ... 175s Selecting previously unselected package libpcre2-16-0:s390x. 175s Preparing to unpack .../010-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 175s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 175s Selecting previously unselected package libqt5core5t64:s390x. 175s Preparing to unpack .../011-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 175s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 175s Selecting previously unselected package libfreetype6:s390x. 175s Preparing to unpack .../012-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 175s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 175s Selecting previously unselected package fonts-dejavu-mono. 175s Preparing to unpack .../013-fonts-dejavu-mono_2.37-8_all.deb ... 175s Unpacking fonts-dejavu-mono (2.37-8) ... 175s Selecting previously unselected package fonts-dejavu-core. 175s Preparing to unpack .../014-fonts-dejavu-core_2.37-8_all.deb ... 175s Unpacking fonts-dejavu-core (2.37-8) ... 175s Selecting previously unselected package fontconfig-config. 175s Preparing to unpack .../015-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 175s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 175s Selecting previously unselected package libfontconfig1:s390x. 175s Preparing to unpack .../016-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 175s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 175s Selecting previously unselected package fontconfig. 175s Preparing to unpack .../017-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 175s Unpacking fontconfig (2.15.0-2ubuntu1) ... 175s Selecting previously unselected package libglvnd0:s390x. 175s Preparing to unpack .../018-libglvnd0_1.7.0-1build1_s390x.deb ... 175s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 175s Selecting previously unselected package libwayland-server0:s390x. 175s Preparing to unpack .../019-libwayland-server0_1.23.1-1_s390x.deb ... 175s Unpacking libwayland-server0:s390x (1.23.1-1) ... 175s Selecting previously unselected package libdrm-radeon1:s390x. 175s Preparing to unpack .../020-libdrm-radeon1_2.4.123-1_s390x.deb ... 175s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 175s Selecting previously unselected package libglapi-mesa:s390x. 175s Preparing to unpack .../021-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 175s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 175s Selecting previously unselected package libx11-xcb1:s390x. 175s Preparing to unpack .../022-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 175s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 175s Selecting previously unselected package libxcb-dri3-0:s390x. 175s Preparing to unpack .../023-libxcb-dri3-0_1.17.0-2_s390x.deb ... 175s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 175s Selecting previously unselected package libxcb-present0:s390x. 175s Preparing to unpack .../024-libxcb-present0_1.17.0-2_s390x.deb ... 175s Unpacking libxcb-present0:s390x (1.17.0-2) ... 175s Selecting previously unselected package libxcb-randr0:s390x. 175s Preparing to unpack .../025-libxcb-randr0_1.17.0-2_s390x.deb ... 175s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 175s Selecting previously unselected package libxcb-sync1:s390x. 175s Preparing to unpack .../026-libxcb-sync1_1.17.0-2_s390x.deb ... 175s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 175s Selecting previously unselected package libxcb-xfixes0:s390x. 175s Preparing to unpack .../027-libxcb-xfixes0_1.17.0-2_s390x.deb ... 175s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 175s Selecting previously unselected package libxshmfence1:s390x. 175s Preparing to unpack .../028-libxshmfence1_1.3-1build5_s390x.deb ... 175s Unpacking libxshmfence1:s390x (1.3-1build5) ... 175s Selecting previously unselected package mesa-libgallium:s390x. 175s Preparing to unpack .../029-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 175s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 175s Selecting previously unselected package libgbm1:s390x. 175s Preparing to unpack .../030-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 175s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 175s Selecting previously unselected package libwayland-client0:s390x. 175s Preparing to unpack .../031-libwayland-client0_1.23.1-1_s390x.deb ... 175s Unpacking libwayland-client0:s390x (1.23.1-1) ... 175s Selecting previously unselected package libxcb-shm0:s390x. 175s Preparing to unpack .../032-libxcb-shm0_1.17.0-2_s390x.deb ... 175s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 175s Selecting previously unselected package libegl-mesa0:s390x. 175s Preparing to unpack .../033-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 175s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 175s Selecting previously unselected package libegl1:s390x. 175s Preparing to unpack .../034-libegl1_1.7.0-1build1_s390x.deb ... 175s Unpacking libegl1:s390x (1.7.0-1build1) ... 175s Selecting previously unselected package libxcb-glx0:s390x. 175s Preparing to unpack .../035-libxcb-glx0_1.17.0-2_s390x.deb ... 175s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 175s Selecting previously unselected package libxxf86vm1:s390x. 175s Preparing to unpack .../036-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 175s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 175s Selecting previously unselected package libvulkan1:s390x. 175s Preparing to unpack .../037-libvulkan1_1.4.304.0-1_s390x.deb ... 175s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 175s Selecting previously unselected package libgl1-mesa-dri:s390x. 175s Preparing to unpack .../038-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 175s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 175s Selecting previously unselected package libglx-mesa0:s390x. 175s Preparing to unpack .../039-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 175s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 175s Selecting previously unselected package libglx0:s390x. 175s Preparing to unpack .../040-libglx0_1.7.0-1build1_s390x.deb ... 175s Unpacking libglx0:s390x (1.7.0-1build1) ... 175s Selecting previously unselected package libgl1:s390x. 175s Preparing to unpack .../041-libgl1_1.7.0-1build1_s390x.deb ... 175s Unpacking libgl1:s390x (1.7.0-1build1) ... 175s Selecting previously unselected package libgraphite2-3:s390x. 175s Preparing to unpack .../042-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 175s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 175s Selecting previously unselected package libharfbuzz0b:s390x. 175s Preparing to unpack .../043-libharfbuzz0b_10.2.0-1_s390x.deb ... 175s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 175s Selecting previously unselected package x11-common. 175s Preparing to unpack .../044-x11-common_1%3a7.7+23ubuntu3_all.deb ... 175s Unpacking x11-common (1:7.7+23ubuntu3) ... 176s Selecting previously unselected package libice6:s390x. 176s Preparing to unpack .../045-libice6_2%3a1.1.1-1_s390x.deb ... 176s Unpacking libice6:s390x (2:1.1.1-1) ... 176s Selecting previously unselected package libmtdev1t64:s390x. 176s Preparing to unpack .../046-libmtdev1t64_1.1.7-1_s390x.deb ... 176s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 176s Selecting previously unselected package libwacom-common. 176s Preparing to unpack .../047-libwacom-common_2.14.0-1_all.deb ... 176s Unpacking libwacom-common (2.14.0-1) ... 176s Selecting previously unselected package libwacom9:s390x. 176s Preparing to unpack .../048-libwacom9_2.14.0-1_s390x.deb ... 176s Unpacking libwacom9:s390x (2.14.0-1) ... 176s Selecting previously unselected package libinput-bin. 176s Preparing to unpack .../049-libinput-bin_1.27.1-1_s390x.deb ... 176s Unpacking libinput-bin (1.27.1-1) ... 176s Selecting previously unselected package libinput10:s390x. 176s Preparing to unpack .../050-libinput10_1.27.1-1_s390x.deb ... 176s Unpacking libinput10:s390x (1.27.1-1) ... 176s Selecting previously unselected package libmd4c0:s390x. 176s Preparing to unpack .../051-libmd4c0_0.5.2-2_s390x.deb ... 176s Unpacking libmd4c0:s390x (0.5.2-2) ... 176s Selecting previously unselected package libqt5dbus5t64:s390x. 176s Preparing to unpack .../052-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 176s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 176s Selecting previously unselected package libqt5network5t64:s390x. 176s Preparing to unpack .../053-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 176s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 176s Selecting previously unselected package libsm6:s390x. 176s Preparing to unpack .../054-libsm6_2%3a1.2.4-1_s390x.deb ... 176s Unpacking libsm6:s390x (2:1.2.4-1) ... 176s Selecting previously unselected package libxcb-icccm4:s390x. 176s Preparing to unpack .../055-libxcb-icccm4_0.4.2-1_s390x.deb ... 176s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 176s Selecting previously unselected package libxcb-util1:s390x. 176s Preparing to unpack .../056-libxcb-util1_0.4.1-1_s390x.deb ... 176s Unpacking libxcb-util1:s390x (0.4.1-1) ... 176s Selecting previously unselected package libxcb-image0:s390x. 176s Preparing to unpack .../057-libxcb-image0_0.4.0-2build1_s390x.deb ... 176s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 176s Selecting previously unselected package libxcb-keysyms1:s390x. 176s Preparing to unpack .../058-libxcb-keysyms1_0.4.1-1_s390x.deb ... 176s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 176s Selecting previously unselected package libxcb-render0:s390x. 176s Preparing to unpack .../059-libxcb-render0_1.17.0-2_s390x.deb ... 176s Unpacking libxcb-render0:s390x (1.17.0-2) ... 176s Selecting previously unselected package libxcb-render-util0:s390x. 176s Preparing to unpack .../060-libxcb-render-util0_0.3.10-1_s390x.deb ... 176s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 176s Selecting previously unselected package libxcb-shape0:s390x. 176s Preparing to unpack .../061-libxcb-shape0_1.17.0-2_s390x.deb ... 176s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 176s Selecting previously unselected package libxcb-xinerama0:s390x. 176s Preparing to unpack .../062-libxcb-xinerama0_1.17.0-2_s390x.deb ... 176s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 176s Selecting previously unselected package libxcb-xinput0:s390x. 176s Preparing to unpack .../063-libxcb-xinput0_1.17.0-2_s390x.deb ... 176s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 176s Selecting previously unselected package libxcb-xkb1:s390x. 176s Preparing to unpack .../064-libxcb-xkb1_1.17.0-2_s390x.deb ... 176s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 176s Selecting previously unselected package libxkbcommon-x11-0:s390x. 176s Preparing to unpack .../065-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 176s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 176s Selecting previously unselected package libxrender1:s390x. 176s Preparing to unpack .../066-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 176s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 176s Selecting previously unselected package libqt5gui5t64:s390x. 176s Preparing to unpack .../067-libqt5gui5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 176s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 176s Selecting previously unselected package libqt5positioning5:s390x. 176s Preparing to unpack .../068-libqt5positioning5_5.15.15+dfsg-3_s390x.deb ... 176s Unpacking libqt5positioning5:s390x (5.15.15+dfsg-3) ... 176s Selecting previously unselected package libavahi-common-data:s390x. 176s Preparing to unpack .../069-libavahi-common-data_0.8-14ubuntu1_s390x.deb ... 176s Unpacking libavahi-common-data:s390x (0.8-14ubuntu1) ... 176s Selecting previously unselected package libavahi-common3:s390x. 176s Preparing to unpack .../070-libavahi-common3_0.8-14ubuntu1_s390x.deb ... 176s Unpacking libavahi-common3:s390x (0.8-14ubuntu1) ... 176s Selecting previously unselected package libavahi-client3:s390x. 176s Preparing to unpack .../071-libavahi-client3_0.8-14ubuntu1_s390x.deb ... 176s Unpacking libavahi-client3:s390x (0.8-14ubuntu1) ... 176s Selecting previously unselected package libcups2t64:s390x. 176s Preparing to unpack .../072-libcups2t64_2.4.11-0ubuntu2_s390x.deb ... 176s Unpacking libcups2t64:s390x (2.4.11-0ubuntu2) ... 176s Selecting previously unselected package libqt5widgets5t64:s390x. 176s Preparing to unpack .../073-libqt5widgets5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 176s Unpacking libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 176s Selecting previously unselected package libqt5printsupport5t64:s390x. 176s Preparing to unpack .../074-libqt5printsupport5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 176s Unpacking libqt5printsupport5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 176s Selecting previously unselected package libqt5qml5:s390x. 176s Preparing to unpack .../075-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 176s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 176s Selecting previously unselected package libqt5qmlmodels5:s390x. 176s Preparing to unpack .../076-libqt5qmlmodels5_5.15.15+dfsg-3_s390x.deb ... 176s Unpacking libqt5qmlmodels5:s390x (5.15.15+dfsg-3) ... 176s Selecting previously unselected package libqt5quick5:s390x. 176s Preparing to unpack .../077-libqt5quick5_5.15.15+dfsg-3_s390x.deb ... 176s Unpacking libqt5quick5:s390x (5.15.15+dfsg-3) ... 176s Selecting previously unselected package libqt5sensors5:s390x. 176s Preparing to unpack .../078-libqt5sensors5_5.15.15-2_s390x.deb ... 176s Unpacking libqt5sensors5:s390x (5.15.15-2) ... 176s Selecting previously unselected package libqt5webchannel5:s390x. 176s Preparing to unpack .../079-libqt5webchannel5_5.15.15-2_s390x.deb ... 176s Unpacking libqt5webchannel5:s390x (5.15.15-2) ... 176s Selecting previously unselected package libsharpyuv0:s390x. 176s Preparing to unpack .../080-libsharpyuv0_1.5.0-0.1_s390x.deb ... 176s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 176s Selecting previously unselected package libwebp7:s390x. 176s Preparing to unpack .../081-libwebp7_1.5.0-0.1_s390x.deb ... 176s Unpacking libwebp7:s390x (1.5.0-0.1) ... 176s Selecting previously unselected package libwoff1:s390x. 176s Preparing to unpack .../082-libwoff1_1.0.2-2build1_s390x.deb ... 176s Unpacking libwoff1:s390x (1.0.2-2build1) ... 176s Selecting previously unselected package libxslt1.1:s390x. 176s Preparing to unpack .../083-libxslt1.1_1.1.39-0exp1ubuntu2_s390x.deb ... 176s Unpacking libxslt1.1:s390x (1.1.39-0exp1ubuntu2) ... 176s Selecting previously unselected package libqt5webkit5:s390x. 176s Preparing to unpack .../084-libqt5webkit5_5.212.0~alpha4-42_s390x.deb ... 176s Unpacking libqt5webkit5:s390x (5.212.0~alpha4-42) ... 176s Selecting previously unselected package libnsl2:s390x. 176s Preparing to unpack .../085-libnsl2_1.3.0-3build3_s390x.deb ... 176s Unpacking libnsl2:s390x (1.3.0-3build3) ... 176s Selecting previously unselected package libpython3.12-stdlib:s390x. 176s Preparing to unpack .../086-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 176s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 176s Selecting previously unselected package python3.12. 176s Preparing to unpack .../087-python3.12_3.12.9-1_s390x.deb ... 176s Unpacking python3.12 (3.12.9-1) ... 177s Selecting previously unselected package libtcl8.6:s390x. 177s Preparing to unpack .../088-libtcl8.6_8.6.16+dfsg-1_s390x.deb ... 177s Unpacking libtcl8.6:s390x (8.6.16+dfsg-1) ... 177s Selecting previously unselected package libxft2:s390x. 177s Preparing to unpack .../089-libxft2_2.3.6-1build1_s390x.deb ... 177s Unpacking libxft2:s390x (2.3.6-1build1) ... 177s Selecting previously unselected package libxss1:s390x. 177s Preparing to unpack .../090-libxss1_1%3a1.2.3-1build3_s390x.deb ... 177s Unpacking libxss1:s390x (1:1.2.3-1build3) ... 177s Selecting previously unselected package libtk8.6:s390x. 177s Preparing to unpack .../091-libtk8.6_8.6.16-1_s390x.deb ... 177s Unpacking libtk8.6:s390x (8.6.16-1) ... 177s Selecting previously unselected package tk8.6-blt2.5. 177s Preparing to unpack .../092-tk8.6-blt2.5_2.5.3+dfsg-7build1_s390x.deb ... 177s Unpacking tk8.6-blt2.5 (2.5.3+dfsg-7build1) ... 177s Selecting previously unselected package blt. 177s Preparing to unpack .../093-blt_2.5.3+dfsg-7build1_s390x.deb ... 177s Unpacking blt (2.5.3+dfsg-7build1) ... 177s Selecting previously unselected package fonts-lyx. 177s Preparing to unpack .../094-fonts-lyx_2.4.3-1_all.deb ... 177s Unpacking fonts-lyx (2.4.3-1) ... 177s Selecting previously unselected package libbabeltrace1:s390x. 177s Preparing to unpack .../095-libbabeltrace1_1.5.11-4build1_s390x.deb ... 177s Unpacking libbabeltrace1:s390x (1.5.11-4build1) ... 177s Selecting previously unselected package libdebuginfod1t64:s390x. 177s Preparing to unpack .../096-libdebuginfod1t64_0.192-4_s390x.deb ... 177s Unpacking libdebuginfod1t64:s390x (0.192-4) ... 177s Selecting previously unselected package libsource-highlight-common. 177s Preparing to unpack .../097-libsource-highlight-common_3.1.9-4.3build1_all.deb ... 177s Unpacking libsource-highlight-common (3.1.9-4.3build1) ... 177s Selecting previously unselected package libsource-highlight4t64:s390x. 177s Preparing to unpack .../098-libsource-highlight4t64_3.1.9-4.3build1_s390x.deb ... 177s Unpacking libsource-highlight4t64:s390x (3.1.9-4.3build1) ... 177s Selecting previously unselected package gdb. 177s Preparing to unpack .../099-gdb_16.2-1ubuntu1_s390x.deb ... 177s Unpacking gdb (16.2-1ubuntu1) ... 177s Selecting previously unselected package libaec0:s390x. 177s Preparing to unpack .../100-libaec0_1.1.3-1_s390x.deb ... 177s Unpacking libaec0:s390x (1.1.3-1) ... 177s Selecting previously unselected package libasyncns0:s390x. 177s Preparing to unpack .../101-libasyncns0_0.8-6build4_s390x.deb ... 177s Unpacking libasyncns0:s390x (0.8-6build4) ... 177s Selecting previously unselected package libblas3:s390x. 177s Preparing to unpack .../102-libblas3_3.12.1-2_s390x.deb ... 177s Unpacking libblas3:s390x (3.12.1-2) ... 177s Selecting previously unselected package libdeflate0:s390x. 177s Preparing to unpack .../103-libdeflate0_1.23-1_s390x.deb ... 177s Unpacking libdeflate0:s390x (1.23-1) ... 177s Selecting previously unselected package libogg0:s390x. 177s Preparing to unpack .../104-libogg0_1.3.5-3build1_s390x.deb ... 177s Unpacking libogg0:s390x (1.3.5-3build1) ... 177s Selecting previously unselected package libflac12t64:s390x. 177s Preparing to unpack .../105-libflac12t64_1.4.3+ds-4_s390x.deb ... 177s Unpacking libflac12t64:s390x (1.4.3+ds-4) ... 177s Selecting previously unselected package libfontenc1:s390x. 177s Preparing to unpack .../106-libfontenc1_1%3a1.1.8-1build1_s390x.deb ... 177s Unpacking libfontenc1:s390x (1:1.1.8-1build1) ... 177s Selecting previously unselected package libgfortran5:s390x. 177s Preparing to unpack .../107-libgfortran5_15-20250213-1ubuntu1_s390x.deb ... 177s Unpacking libgfortran5:s390x (15-20250213-1ubuntu1) ... 177s Selecting previously unselected package libgomp1:s390x. 177s Preparing to unpack .../108-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 177s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 177s Selecting previously unselected package libsz2:s390x. 177s Preparing to unpack .../109-libsz2_1.1.3-1_s390x.deb ... 177s Unpacking libsz2:s390x (1.1.3-1) ... 177s Selecting previously unselected package libhdf5-310:s390x. 177s Preparing to unpack .../110-libhdf5-310_1.14.5+repack-3_s390x.deb ... 177s Unpacking libhdf5-310:s390x (1.14.5+repack-3) ... 177s Selecting previously unselected package libhdf5-hl-310:s390x. 177s Preparing to unpack .../111-libhdf5-hl-310_1.14.5+repack-3_s390x.deb ... 177s Unpacking libhdf5-hl-310:s390x (1.14.5+repack-3) ... 177s Selecting previously unselected package libimagequant0:s390x. 177s Preparing to unpack .../112-libimagequant0_2.18.0-1build1_s390x.deb ... 177s Unpacking libimagequant0:s390x (2.18.0-1build1) ... 177s Selecting previously unselected package libjs-jquery. 177s Preparing to unpack .../113-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 177s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 177s Selecting previously unselected package libjs-jquery-ui. 177s Preparing to unpack .../114-libjs-jquery-ui_1.13.2+dfsg-1_all.deb ... 177s Unpacking libjs-jquery-ui (1.13.2+dfsg-1) ... 177s Selecting previously unselected package liblapack3:s390x. 177s Preparing to unpack .../115-liblapack3_3.12.1-2_s390x.deb ... 177s Unpacking liblapack3:s390x (3.12.1-2) ... 177s Selecting previously unselected package liblbfgsb0:s390x. 177s Preparing to unpack .../116-liblbfgsb0_3.0+dfsg.4-1build1_s390x.deb ... 177s Unpacking liblbfgsb0:s390x (3.0+dfsg.4-1build1) ... 177s Selecting previously unselected package liblcms2-2:s390x. 177s Preparing to unpack .../117-liblcms2-2_2.16-2_s390x.deb ... 177s Unpacking liblcms2-2:s390x (2.16-2) ... 177s Selecting previously unselected package liblzf1:s390x. 177s Preparing to unpack .../118-liblzf1_3.6-4_s390x.deb ... 177s Unpacking liblzf1:s390x (3.6-4) ... 177s Selecting previously unselected package libmp3lame0:s390x. 177s Preparing to unpack .../119-libmp3lame0_3.100-6build1_s390x.deb ... 177s Unpacking libmp3lame0:s390x (3.100-6build1) ... 177s Selecting previously unselected package libmpg123-0t64:s390x. 177s Preparing to unpack .../120-libmpg123-0t64_1.32.10-1_s390x.deb ... 177s Unpacking libmpg123-0t64:s390x (1.32.10-1) ... 177s Selecting previously unselected package libnorm1t64:s390x. 177s Preparing to unpack .../121-libnorm1t64_1.5.9+dfsg-3.1build1_s390x.deb ... 177s Unpacking libnorm1t64:s390x (1.5.9+dfsg-3.1build1) ... 177s Selecting previously unselected package libopus0:s390x. 177s Preparing to unpack .../122-libopus0_1.5.2-2_s390x.deb ... 177s Unpacking libopus0:s390x (1.5.2-2) ... 177s Selecting previously unselected package libpgm-5.3-0t64:s390x. 177s Preparing to unpack .../123-libpgm-5.3-0t64_5.3.128~dfsg-2.1build1_s390x.deb ... 177s Unpacking libpgm-5.3-0t64:s390x (5.3.128~dfsg-2.1build1) ... 177s Selecting previously unselected package libpixman-1-0:s390x. 177s Preparing to unpack .../124-libpixman-1-0_0.44.0-3_s390x.deb ... 177s Unpacking libpixman-1-0:s390x (0.44.0-3) ... 177s Selecting previously unselected package libvorbis0a:s390x. 177s Preparing to unpack .../125-libvorbis0a_1.3.7-2_s390x.deb ... 177s Unpacking libvorbis0a:s390x (1.3.7-2) ... 177s Selecting previously unselected package libvorbisenc2:s390x. 177s Preparing to unpack .../126-libvorbisenc2_1.3.7-2_s390x.deb ... 177s Unpacking libvorbisenc2:s390x (1.3.7-2) ... 177s Selecting previously unselected package libsndfile1:s390x. 177s Preparing to unpack .../127-libsndfile1_1.2.2-2_s390x.deb ... 177s Unpacking libsndfile1:s390x (1.2.2-2) ... 177s Selecting previously unselected package libpulse0:s390x. 177s Preparing to unpack .../128-libpulse0_1%3a17.0+dfsg1-2ubuntu1_s390x.deb ... 177s Unpacking libpulse0:s390x (1:17.0+dfsg1-2ubuntu1) ... 177s Selecting previously unselected package libqhull-r8.0:s390x. 177s Preparing to unpack .../129-libqhull-r8.0_2020.2-6build1_s390x.deb ... 177s Unpacking libqhull-r8.0:s390x (2020.2-6build1) ... 177s Selecting previously unselected package libqt5charts5:s390x. 177s Preparing to unpack .../130-libqt5charts5_5.15.15-2_s390x.deb ... 177s Unpacking libqt5charts5:s390x (5.15.15-2) ... 177s Selecting previously unselected package libqt5xml5t64:s390x. 177s Preparing to unpack .../131-libqt5xml5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 177s Unpacking libqt5xml5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 177s Selecting previously unselected package libqt5designer5:s390x. 177s Preparing to unpack .../132-libqt5designer5_5.15.15-6_s390x.deb ... 177s Unpacking libqt5designer5:s390x (5.15.15-6) ... 177s Selecting previously unselected package libqt5sql5t64:s390x. 177s Preparing to unpack .../133-libqt5sql5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 177s Unpacking libqt5sql5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 177s Selecting previously unselected package libqt5help5:s390x. 177s Preparing to unpack .../134-libqt5help5_5.15.15-6_s390x.deb ... 177s Unpacking libqt5help5:s390x (5.15.15-6) ... 177s Selecting previously unselected package libqt5positioningquick5:s390x. 177s Preparing to unpack .../135-libqt5positioningquick5_5.15.15+dfsg-3_s390x.deb ... 177s Unpacking libqt5positioningquick5:s390x (5.15.15+dfsg-3) ... 177s Selecting previously unselected package libqt5location5:s390x. 177s Preparing to unpack .../136-libqt5location5_5.15.15+dfsg-3_s390x.deb ... 177s Unpacking libqt5location5:s390x (5.15.15+dfsg-3) ... 178s Selecting previously unselected package libqt5multimedia5:s390x. 178s Preparing to unpack .../137-libqt5multimedia5_5.15.15-2_s390x.deb ... 178s Unpacking libqt5multimedia5:s390x (5.15.15-2) ... 178s Selecting previously unselected package libqt5multimediawidgets5:s390x. 178s Preparing to unpack .../138-libqt5multimediawidgets5_5.15.15-2_s390x.deb ... 178s Unpacking libqt5multimediawidgets5:s390x (5.15.15-2) ... 178s Selecting previously unselected package libqt5opengl5t64:s390x. 178s Preparing to unpack .../139-libqt5opengl5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 178s Unpacking libqt5opengl5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 178s Selecting previously unselected package libqt5quickwidgets5:s390x. 178s Preparing to unpack .../140-libqt5quickwidgets5_5.15.15+dfsg-3_s390x.deb ... 178s Unpacking libqt5quickwidgets5:s390x (5.15.15+dfsg-3) ... 178s Selecting previously unselected package libqt5remoteobjects5:s390x. 178s Preparing to unpack .../141-libqt5remoteobjects5_5.15.15-2_s390x.deb ... 178s Unpacking libqt5remoteobjects5:s390x (5.15.15-2) ... 178s Selecting previously unselected package libqt5serialport5:s390x. 178s Preparing to unpack .../142-libqt5serialport5_5.15.15-2_s390x.deb ... 178s Unpacking libqt5serialport5:s390x (5.15.15-2) ... 178s Selecting previously unselected package libqt5svg5:s390x. 178s Preparing to unpack .../143-libqt5svg5_5.15.15-2_s390x.deb ... 178s Unpacking libqt5svg5:s390x (5.15.15-2) ... 178s Selecting previously unselected package libqt5test5t64:s390x. 178s Preparing to unpack .../144-libqt5test5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 178s Unpacking libqt5test5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 178s Selecting previously unselected package libqt5texttospeech5:s390x. 178s Preparing to unpack .../145-libqt5texttospeech5_5.15.15-2_s390x.deb ... 178s Unpacking libqt5texttospeech5:s390x (5.15.15-2) ... 178s Selecting previously unselected package libqt5websockets5:s390x. 178s Preparing to unpack .../146-libqt5websockets5_5.15.15-2_s390x.deb ... 178s Unpacking libqt5websockets5:s390x (5.15.15-2) ... 178s Selecting previously unselected package libqt5xmlpatterns5:s390x. 178s Preparing to unpack .../147-libqt5xmlpatterns5_5.15.15-2_s390x.deb ... 178s Unpacking libqt5xmlpatterns5:s390x (5.15.15-2) ... 178s Selecting previously unselected package libraqm0:s390x. 178s Preparing to unpack .../148-libraqm0_0.10.2-1_s390x.deb ... 178s Unpacking libraqm0:s390x (0.10.2-1) ... 178s Selecting previously unselected package libsodium23:s390x. 178s Preparing to unpack .../149-libsodium23_1.0.18-1build3_s390x.deb ... 178s Unpacking libsodium23:s390x (1.0.18-1build3) ... 178s Selecting previously unselected package libjbig0:s390x. 178s Preparing to unpack .../150-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 178s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 178s Selecting previously unselected package libtiff6:s390x. 178s Preparing to unpack .../151-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 178s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 178s Selecting previously unselected package libwebpdemux2:s390x. 178s Preparing to unpack .../152-libwebpdemux2_1.5.0-0.1_s390x.deb ... 178s Unpacking libwebpdemux2:s390x (1.5.0-0.1) ... 178s Selecting previously unselected package libwebpmux3:s390x. 178s Preparing to unpack .../153-libwebpmux3_1.5.0-0.1_s390x.deb ... 178s Unpacking libwebpmux3:s390x (1.5.0-0.1) ... 178s Selecting previously unselected package libxt6t64:s390x. 178s Preparing to unpack .../154-libxt6t64_1%3a1.2.1-1.2build1_s390x.deb ... 178s Unpacking libxt6t64:s390x (1:1.2.1-1.2build1) ... 178s Selecting previously unselected package libxmu6:s390x. 178s Preparing to unpack .../155-libxmu6_2%3a1.1.3-3build2_s390x.deb ... 178s Unpacking libxmu6:s390x (2:1.1.3-3build2) ... 178s Selecting previously unselected package libxpm4:s390x. 178s Preparing to unpack .../156-libxpm4_1%3a3.5.17-1build2_s390x.deb ... 178s Unpacking libxpm4:s390x (1:3.5.17-1build2) ... 178s Selecting previously unselected package libxaw7:s390x. 178s Preparing to unpack .../157-libxaw7_2%3a1.0.16-1_s390x.deb ... 178s Unpacking libxaw7:s390x (2:1.0.16-1) ... 178s Selecting previously unselected package libxfont2:s390x. 178s Preparing to unpack .../158-libxfont2_1%3a2.0.6-1build1_s390x.deb ... 178s Unpacking libxfont2:s390x (1:2.0.6-1build1) ... 178s Selecting previously unselected package libxkbfile1:s390x. 178s Preparing to unpack .../159-libxkbfile1_1%3a1.1.0-1build4_s390x.deb ... 178s Unpacking libxkbfile1:s390x (1:1.1.0-1build4) ... 178s Selecting previously unselected package libxrandr2:s390x. 178s Preparing to unpack .../160-libxrandr2_2%3a1.5.4-1_s390x.deb ... 178s Unpacking libxrandr2:s390x (2:1.5.4-1) ... 178s Selecting previously unselected package libzmq5:s390x. 178s Preparing to unpack .../161-libzmq5_4.3.5-1build2_s390x.deb ... 178s Unpacking libzmq5:s390x (4.3.5-1build2) ... 178s Selecting previously unselected package python-fisx-common. 178s Preparing to unpack .../162-python-fisx-common_1.3.1-1build4_all.deb ... 178s Unpacking python-fisx-common (1.3.1-1build4) ... 178s Selecting previously unselected package python-matplotlib-data. 178s Preparing to unpack .../163-python-matplotlib-data_3.8.3-3ubuntu2_all.deb ... 178s Unpacking python-matplotlib-data (3.8.3-3ubuntu2) ... 178s Selecting previously unselected package python3-all. 178s Preparing to unpack .../164-python3-all_3.13.1-1~exp2_s390x.deb ... 178s Unpacking python3-all (3.13.1-1~exp2) ... 178s Selecting previously unselected package python3-asttokens. 178s Preparing to unpack .../165-python3-asttokens_3.0.0-1_all.deb ... 178s Unpacking python3-asttokens (3.0.0-1) ... 178s Selecting previously unselected package python3-brotli. 178s Preparing to unpack .../166-python3-brotli_1.1.0-2build3_s390x.deb ... 178s Unpacking python3-brotli (1.1.0-2build3) ... 178s Selecting previously unselected package python3-traitlets. 178s Preparing to unpack .../167-python3-traitlets_5.14.3+really5.14.3-1_all.deb ... 178s Unpacking python3-traitlets (5.14.3+really5.14.3-1) ... 178s Selecting previously unselected package python3-comm. 178s Preparing to unpack .../168-python3-comm_0.2.1-1_all.deb ... 178s Unpacking python3-comm (0.2.1-1) ... 178s Selecting previously unselected package python3-numpy. 178s Preparing to unpack .../169-python3-numpy_1%3a1.26.4+ds-13_s390x.deb ... 178s Unpacking python3-numpy (1:1.26.4+ds-13) ... 178s Selecting previously unselected package python3-contourpy. 178s Preparing to unpack .../170-python3-contourpy_1.3.1-1_s390x.deb ... 178s Unpacking python3-contourpy (1.3.1-1) ... 178s Selecting previously unselected package python3-coverage. 178s Preparing to unpack .../171-python3-coverage_7.4.4+dfsg1-0ubuntu3_s390x.deb ... 178s Unpacking python3-coverage (7.4.4+dfsg1-0ubuntu3) ... 178s Selecting previously unselected package python3-cycler. 178s Preparing to unpack .../172-python3-cycler_0.12.1-1_all.deb ... 178s Unpacking python3-cycler (0.12.1-1) ... 178s Selecting previously unselected package python3-dateutil. 178s Preparing to unpack .../173-python3-dateutil_2.9.0-3_all.deb ... 178s Unpacking python3-dateutil (2.9.0-3) ... 178s Selecting previously unselected package python3-debugpy. 178s Preparing to unpack .../174-python3-debugpy_1.8.8+ds-2ubuntu1_s390x.deb ... 178s Unpacking python3-debugpy (1.8.8+ds-2ubuntu1) ... 178s Selecting previously unselected package python3-decorator. 178s Preparing to unpack .../175-python3-decorator_5.1.1-5_all.deb ... 178s Unpacking python3-decorator (5.1.1-5) ... 178s Selecting previously unselected package python3-executing. 178s Preparing to unpack .../176-python3-executing_2.2.0-0.1_all.deb ... 178s Unpacking python3-executing (2.2.0-0.1) ... 178s Selecting previously unselected package python3-fisx. 178s Preparing to unpack .../177-python3-fisx_1.3.1-1build4_s390x.deb ... 178s Unpacking python3-fisx (1.3.1-1build4) ... 179s Selecting previously unselected package python3-pytz. 179s Preparing to unpack .../178-python3-pytz_2025.1-3_all.deb ... 179s Unpacking python3-pytz (2025.1-3) ... 179s Selecting previously unselected package python3-tz. 179s Preparing to unpack .../179-python3-tz_2025.1-3_all.deb ... 179s Unpacking python3-tz (2025.1-3) ... 179s Selecting previously unselected package python3-platformdirs. 179s Preparing to unpack .../180-python3-platformdirs_4.3.6-1_all.deb ... 179s Unpacking python3-platformdirs (4.3.6-1) ... 179s Selecting previously unselected package python3-fs. 179s Preparing to unpack .../181-python3-fs_2.4.16-6_all.deb ... 179s Unpacking python3-fs (2.4.16-6) ... 179s Selecting previously unselected package python3-lxml:s390x. 179s Preparing to unpack .../182-python3-lxml_5.3.1-1_s390x.deb ... 179s Unpacking python3-lxml:s390x (5.3.1-1) ... 179s Selecting previously unselected package python3-lz4. 179s Preparing to unpack .../183-python3-lz4_4.4.0+dfsg-1_s390x.deb ... 179s Unpacking python3-lz4 (4.4.0+dfsg-1) ... 179s Selecting previously unselected package python3-scipy. 179s Preparing to unpack .../184-python3-scipy_1.14.1-4ubuntu1_s390x.deb ... 179s Unpacking python3-scipy (1.14.1-4ubuntu1) ... 179s Selecting previously unselected package python3-mpmath. 179s Preparing to unpack .../185-python3-mpmath_1.3.0-1_all.deb ... 179s Unpacking python3-mpmath (1.3.0-1) ... 179s Selecting previously unselected package python3-sympy. 179s Preparing to unpack .../186-python3-sympy_1.13.3-1_all.deb ... 179s Unpacking python3-sympy (1.13.3-1) ... 179s Selecting previously unselected package python3-ufolib2. 179s Preparing to unpack .../187-python3-ufolib2_0.17.0+dfsg1-1_all.deb ... 179s Unpacking python3-ufolib2 (0.17.0+dfsg1-1) ... 179s Selecting previously unselected package unicode-data. 179s Preparing to unpack .../188-unicode-data_15.1.0-1_all.deb ... 179s Unpacking unicode-data (15.1.0-1) ... 180s Selecting previously unselected package python3-fonttools. 180s Preparing to unpack .../189-python3-fonttools_4.55.3-2_s390x.deb ... 180s Unpacking python3-fonttools (4.55.3-2) ... 180s Selecting previously unselected package python3-h5py-serial. 180s Preparing to unpack .../190-python3-h5py-serial_3.12.1-1_s390x.deb ... 180s Unpacking python3-h5py-serial (3.12.1-1) ... 180s Selecting previously unselected package python3-h5py. 180s Preparing to unpack .../191-python3-h5py_3.12.1-1_all.deb ... 180s Unpacking python3-h5py (3.12.1-1) ... 180s Selecting previously unselected package python3-parso. 180s Preparing to unpack .../192-python3-parso_0.8.4-1_all.deb ... 180s Unpacking python3-parso (0.8.4-1) ... 180s Selecting previously unselected package python3-typeshed. 180s Preparing to unpack .../193-python3-typeshed_0.0~git20241223.ea91db2-1_all.deb ... 180s Unpacking python3-typeshed (0.0~git20241223.ea91db2-1) ... 180s Selecting previously unselected package python3-jedi. 180s Preparing to unpack .../194-python3-jedi_0.19.1+ds1-1_all.deb ... 180s Unpacking python3-jedi (0.19.1+ds1-1) ... 180s Selecting previously unselected package python3-matplotlib-inline. 180s Preparing to unpack .../195-python3-matplotlib-inline_0.1.6-2_all.deb ... 180s Unpacking python3-matplotlib-inline (0.1.6-2) ... 180s Selecting previously unselected package python3-wcwidth. 180s Preparing to unpack .../196-python3-wcwidth_0.2.13+dfsg1-1_all.deb ... 180s Unpacking python3-wcwidth (0.2.13+dfsg1-1) ... 180s Selecting previously unselected package python3-prompt-toolkit. 180s Preparing to unpack .../197-python3-prompt-toolkit_3.0.50-1_all.deb ... 180s Unpacking python3-prompt-toolkit (3.0.50-1) ... 180s Selecting previously unselected package python3-pure-eval. 180s Preparing to unpack .../198-python3-pure-eval_0.2.3-1_all.deb ... 180s Unpacking python3-pure-eval (0.2.3-1) ... 180s Selecting previously unselected package python3-stack-data. 180s Preparing to unpack .../199-python3-stack-data_0.6.3-1_all.deb ... 180s Unpacking python3-stack-data (0.6.3-1) ... 180s Selecting previously unselected package python3-ptyprocess. 180s Preparing to unpack .../200-python3-ptyprocess_0.7.0-6_all.deb ... 180s Unpacking python3-ptyprocess (0.7.0-6) ... 180s Selecting previously unselected package python3-pexpect. 180s Preparing to unpack .../201-python3-pexpect_4.9-3_all.deb ... 180s Unpacking python3-pexpect (4.9-3) ... 180s Selecting previously unselected package python3-ipython. 180s Preparing to unpack .../202-python3-ipython_8.30.0-2_all.deb ... 180s Unpacking python3-ipython (8.30.0-2) ... 180s Selecting previously unselected package python3-jupyter-core. 180s Preparing to unpack .../203-python3-jupyter-core_5.7.2-5_all.deb ... 180s Unpacking python3-jupyter-core (5.7.2-5) ... 180s Selecting previously unselected package python3-psutil. 180s Preparing to unpack .../204-python3-psutil_5.9.8-2build3_s390x.deb ... 180s Unpacking python3-psutil (5.9.8-2build3) ... 180s Selecting previously unselected package python3-tornado. 180s Preparing to unpack .../205-python3-tornado_6.4.2-1_s390x.deb ... 180s Unpacking python3-tornado (6.4.2-1) ... 180s Selecting previously unselected package python3-zmq. 180s Preparing to unpack .../206-python3-zmq_26.2.1-1_s390x.deb ... 180s Unpacking python3-zmq (26.2.1-1) ... 180s Selecting previously unselected package python3-jupyter-client. 180s Preparing to unpack .../207-python3-jupyter-client_8.6.3-2_all.deb ... 180s Unpacking python3-jupyter-client (8.6.3-2) ... 180s Selecting previously unselected package python3-nest-asyncio. 180s Preparing to unpack .../208-python3-nest-asyncio_1.5.4-1_all.deb ... 180s Unpacking python3-nest-asyncio (1.5.4-1) ... 180s Selecting previously unselected package python3-packaging. 180s Preparing to unpack .../209-python3-packaging_24.2-1_all.deb ... 180s Unpacking python3-packaging (24.2-1) ... 180s Selecting previously unselected package python3-ipykernel. 180s Preparing to unpack .../210-python3-ipykernel_6.29.5-2_all.deb ... 180s Unpacking python3-ipykernel (6.29.5-2) ... 180s Selecting previously unselected package python3-kiwisolver. 180s Preparing to unpack .../211-python3-kiwisolver_1.4.7-3_s390x.deb ... 180s Unpacking python3-kiwisolver (1.4.7-3) ... 180s Selecting previously unselected package libopenjp2-7:s390x. 180s Preparing to unpack .../212-libopenjp2-7_2.5.0-2ubuntu3_s390x.deb ... 180s Unpacking libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 180s Selecting previously unselected package python3-pil:s390x. 180s Preparing to unpack .../213-python3-pil_11.1.0-5_s390x.deb ... 180s Unpacking python3-pil:s390x (11.1.0-5) ... 180s Selecting previously unselected package python3.12-tk. 180s Preparing to unpack .../214-python3.12-tk_3.12.9-1_s390x.deb ... 180s Unpacking python3.12-tk (3.12.9-1) ... 180s Selecting previously unselected package python3.13-tk. 180s Preparing to unpack .../215-python3.13-tk_3.13.2-1_s390x.deb ... 180s Unpacking python3.13-tk (3.13.2-1) ... 180s Selecting previously unselected package python3-tk:s390x. 180s Preparing to unpack .../216-python3-tk_3.13.1-1_s390x.deb ... 180s Unpacking python3-tk:s390x (3.13.1-1) ... 180s Selecting previously unselected package python3-pil.imagetk:s390x. 180s Preparing to unpack .../217-python3-pil.imagetk_11.1.0-5_s390x.deb ... 180s Unpacking python3-pil.imagetk:s390x (11.1.0-5) ... 180s Selecting previously unselected package python3-matplotlib. 180s Preparing to unpack .../218-python3-matplotlib_3.8.3-3ubuntu2_s390x.deb ... 181s Unpacking python3-matplotlib (3.8.3-3ubuntu2) ... 181s Selecting previously unselected package libopengl0:s390x. 181s Preparing to unpack .../219-libopengl0_1.7.0-1build1_s390x.deb ... 181s Unpacking libopengl0:s390x (1.7.0-1build1) ... 181s Selecting previously unselected package libglu1-mesa:s390x. 181s Preparing to unpack .../220-libglu1-mesa_9.0.2-1.1build1_s390x.deb ... 181s Unpacking libglu1-mesa:s390x (9.0.2-1.1build1) ... 181s Selecting previously unselected package python3-opengl. 181s Preparing to unpack .../221-python3-opengl_3.1.7+dfsg-1_all.deb ... 181s Unpacking python3-opengl (3.1.7+dfsg-1) ... 181s Selecting previously unselected package python3-pyqt5.sip. 181s Preparing to unpack .../222-python3-pyqt5.sip_12.17.0-1_s390x.deb ... 181s Unpacking python3-pyqt5.sip (12.17.0-1) ... 181s Selecting previously unselected package python3-pyqt5. 181s Preparing to unpack .../223-python3-pyqt5_5.15.11+dfsg-1build2_s390x.deb ... 181s Unpacking python3-pyqt5 (5.15.11+dfsg-1build2) ... 181s Selecting previously unselected package python3-pyqt5.qtchart. 181s Preparing to unpack .../224-python3-pyqt5.qtchart_5.15.7+dfsg-1_s390x.deb ... 181s Unpacking python3-pyqt5.qtchart (5.15.7+dfsg-1) ... 181s Selecting previously unselected package python3-pyqt5.qtmultimedia. 181s Preparing to unpack .../225-python3-pyqt5.qtmultimedia_5.15.11+dfsg-1build2_s390x.deb ... 181s Unpacking python3-pyqt5.qtmultimedia (5.15.11+dfsg-1build2) ... 181s Selecting previously unselected package python3-pyqt5.qtopengl. 181s Preparing to unpack .../226-python3-pyqt5.qtopengl_5.15.11+dfsg-1build2_s390x.deb ... 181s Unpacking python3-pyqt5.qtopengl (5.15.11+dfsg-1build2) ... 181s Selecting previously unselected package python3-pyqt5.qtpositioning. 181s Preparing to unpack .../227-python3-pyqt5.qtpositioning_5.15.11+dfsg-1build2_s390x.deb ... 181s Unpacking python3-pyqt5.qtpositioning (5.15.11+dfsg-1build2) ... 181s Selecting previously unselected package python3-pyqt5.qtquick. 181s Preparing to unpack .../228-python3-pyqt5.qtquick_5.15.11+dfsg-1build2_s390x.deb ... 181s Unpacking python3-pyqt5.qtquick (5.15.11+dfsg-1build2) ... 181s Selecting previously unselected package python3-pyqt5.qtremoteobjects. 181s Preparing to unpack .../229-python3-pyqt5.qtremoteobjects_5.15.11+dfsg-1build2_s390x.deb ... 181s Unpacking python3-pyqt5.qtremoteobjects (5.15.11+dfsg-1build2) ... 181s Selecting previously unselected package python3-pyqt5.qtsensors. 181s Preparing to unpack .../230-python3-pyqt5.qtsensors_5.15.11+dfsg-1build2_s390x.deb ... 181s Unpacking python3-pyqt5.qtsensors (5.15.11+dfsg-1build2) ... 181s Selecting previously unselected package python3-pyqt5.qtserialport. 181s Preparing to unpack .../231-python3-pyqt5.qtserialport_5.15.11+dfsg-1build2_s390x.deb ... 181s Unpacking python3-pyqt5.qtserialport (5.15.11+dfsg-1build2) ... 181s Selecting previously unselected package python3-pyqt5.qtsql. 181s Preparing to unpack .../232-python3-pyqt5.qtsql_5.15.11+dfsg-1build2_s390x.deb ... 181s Unpacking python3-pyqt5.qtsql (5.15.11+dfsg-1build2) ... 181s Selecting previously unselected package python3-pyqt5.qtsvg. 181s Preparing to unpack .../233-python3-pyqt5.qtsvg_5.15.11+dfsg-1build2_s390x.deb ... 181s Unpacking python3-pyqt5.qtsvg (5.15.11+dfsg-1build2) ... 181s Selecting previously unselected package python3-pyqt5.qttexttospeech. 181s Preparing to unpack .../234-python3-pyqt5.qttexttospeech_5.15.11+dfsg-1build2_s390x.deb ... 181s Unpacking python3-pyqt5.qttexttospeech (5.15.11+dfsg-1build2) ... 181s Selecting previously unselected package python3-pyqt5.qtwebchannel. 181s Preparing to unpack .../235-python3-pyqt5.qtwebchannel_5.15.11+dfsg-1build2_s390x.deb ... 181s Unpacking python3-pyqt5.qtwebchannel (5.15.11+dfsg-1build2) ... 181s Selecting previously unselected package python3-pyqt5.qtwebkit. 181s Preparing to unpack .../236-python3-pyqt5.qtwebkit_5.15.11+dfsg-1build2_s390x.deb ... 181s Unpacking python3-pyqt5.qtwebkit (5.15.11+dfsg-1build2) ... 181s Selecting previously unselected package python3-pyqt5.qtwebsockets. 181s Preparing to unpack .../237-python3-pyqt5.qtwebsockets_5.15.11+dfsg-1build2_s390x.deb ... 181s Unpacking python3-pyqt5.qtwebsockets (5.15.11+dfsg-1build2) ... 181s Selecting previously unselected package python3-pyqt5.qtxmlpatterns. 181s Preparing to unpack .../238-python3-pyqt5.qtxmlpatterns_5.15.11+dfsg-1build2_s390x.deb ... 181s Unpacking python3-pyqt5.qtxmlpatterns (5.15.11+dfsg-1build2) ... 181s Selecting previously unselected package python3-qtpy. 181s Preparing to unpack .../239-python3-qtpy_2.4.2-4_all.deb ... 181s Unpacking python3-qtpy (2.4.2-4) ... 181s Selecting previously unselected package python3-qtconsole. 181s Preparing to unpack .../240-python3-qtconsole_5.6.1-4_all.deb ... 181s Unpacking python3-qtconsole (5.6.1-4) ... 181s Selecting previously unselected package x11-xkb-utils. 181s Preparing to unpack .../241-x11-xkb-utils_7.7+9_s390x.deb ... 181s Unpacking x11-xkb-utils (7.7+9) ... 181s Selecting previously unselected package xserver-common. 181s Preparing to unpack .../242-xserver-common_2%3a21.1.14-2ubuntu1_all.deb ... 181s Unpacking xserver-common (2:21.1.14-2ubuntu1) ... 181s Selecting previously unselected package xvfb. 181s Preparing to unpack .../243-xvfb_2%3a21.1.14-2ubuntu1_s390x.deb ... 181s Unpacking xvfb (2:21.1.14-2ubuntu1) ... 181s Selecting previously unselected package locales-all. 181s Preparing to unpack .../244-locales-all_2.40-4ubuntu1_s390x.deb ... 181s Unpacking locales-all (2.40-4ubuntu1) ... 183s Selecting previously unselected package pymca-data. 183s Preparing to unpack .../245-pymca-data_5.9.3+dfsg-2_all.deb ... 183s Unpacking pymca-data (5.9.3+dfsg-2) ... 183s Selecting previously unselected package python3-pymca5. 183s Preparing to unpack .../246-python3-pymca5_5.9.3+dfsg-2_s390x.deb ... 183s Unpacking python3-pymca5 (5.9.3+dfsg-2) ... 183s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 183s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 183s Setting up liblcms2-2:s390x (2.16-2) ... 183s Setting up libpixman-1-0:s390x (0.44.0-3) ... 183s Setting up python3-tornado (6.4.2-1) ... 184s Setting up libnorm1t64:s390x (1.5.9+dfsg-3.1build1) ... 184s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 184s Setting up libwayland-server0:s390x (1.23.1-1) ... 184s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 184s Setting up python3-pure-eval (0.2.3-1) ... 184s Setting up libdouble-conversion3:s390x (3.3.0-1build1) ... 184s Setting up libsodium23:s390x (1.0.18-1build3) ... 184s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 184s Setting up libogg0:s390x (1.3.5-3build1) ... 184s Setting up libxpm4:s390x (1:3.5.17-1build2) ... 184s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 184s Setting up libwoff1:s390x (1.0.2-2build1) ... 184s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 184s Setting up libhyphen0:s390x (2.8.8-7build3) ... 184s Setting up libdebuginfod-common (0.192-4) ... 184s Setting up python3-parso (0.8.4-1) ... 184s Setting up python3-lz4 (4.4.0+dfsg-1) ... 184s Setting up libxcb-render0:s390x (1.17.0-2) ... 184s Setting up python3-asttokens (3.0.0-1) ... 185s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 185s Setting up libglvnd0:s390x (1.7.0-1build1) ... 185s Setting up fonts-lyx (2.4.3-1) ... 185s Setting up libxcb-glx0:s390x (1.17.0-2) ... 185s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 185s Setting up libxcb-shape0:s390x (1.17.0-2) ... 185s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 185s Setting up x11-common (1:7.7+23ubuntu3) ... 185s Setting up libdeflate0:s390x (1.23-1) ... 185s Setting up libqhull-r8.0:s390x (2020.2-6build1) ... 185s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 185s Setting up python3-pytz (2025.1-3) ... 185s Setting up libxcb-shm0:s390x (1.17.0-2) ... 185s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 185s Setting up libmpg123-0t64:s390x (1.32.10-1) ... 185s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 185s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 185s Setting up python-fisx-common (1.3.1-1build4) ... 185s Setting up locales-all (2.40-4ubuntu1) ... 185s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 185s Setting up libaec0:s390x (1.1.3-1) ... 185s Setting up python3-platformdirs (4.3.6-1) ... 185s Setting up python3-psutil (5.9.8-2build3) ... 186s Setting up libsource-highlight-common (3.1.9-4.3build1) ... 186s Setting up libopengl0:s390x (1.7.0-1build1) ... 186s Setting up python3-tz (2025.1-3) ... 186s Setting up libxcb-util1:s390x (0.4.1-1) ... 186s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 186s Setting up liborc-0.4-0t64:s390x (1:0.4.41-1) ... 186s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 186s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 186s Setting up python3-fs (2.4.16-6) ... 186s Setting up libxcb-present0:s390x (1.17.0-2) ... 186s Setting up unicode-data (15.1.0-1) ... 186s Setting up libpgm-5.3-0t64:s390x (5.3.128~dfsg-2.1build1) ... 186s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 186s Setting up python3-decorator (5.1.1-5) ... 186s Setting up libqt5texttospeech5:s390x (5.15.15-2) ... 186s Setting up libfontenc1:s390x (1:1.1.8-1build1) ... 186s Setting up libblas3:s390x (3.12.1-2) ... 186s 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 186s Setting up python3-packaging (24.2-1) ... 186s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 186s Setting up python3-wcwidth (0.2.13+dfsg1-1) ... 187s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 187s Setting up python3-typeshed (0.0~git20241223.ea91db2-1) ... 187s Setting up libxcb-sync1:s390x (1.17.0-2) ... 187s Setting up python3-executing (2.2.0-0.1) ... 187s Setting up python3-nest-asyncio (1.5.4-1) ... 187s Setting up python3-brotli (1.1.0-2build3) ... 187s Setting up libavahi-common-data:s390x (0.8-14ubuntu1) ... 187s Setting up liblzf1:s390x (3.6-4) ... 187s Setting up libopus0:s390x (1.5.2-2) ... 187s Setting up python3-cycler (0.12.1-1) ... 187s Setting up libimagequant0:s390x (2.18.0-1build1) ... 187s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 187s Setting up fonts-dejavu-mono (2.37-8) ... 187s Setting up python3-kiwisolver (1.4.7-3) ... 187s Setting up libvorbis0a:s390x (1.3.7-2) ... 187s Setting up libxrandr2:s390x (2:1.5.4-1) ... 187s Setting up libtcl8.6:s390x (8.6.16+dfsg-1) ... 187s Setting up fonts-dejavu-core (2.37-8) ... 187s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 187s Setting up libbabeltrace1:s390x (1.5.11-4build1) ... 187s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 187s Setting up libgfortran5:s390x (15-20250213-1ubuntu1) ... 187s Setting up libvulkan1:s390x (1.4.304.0-1) ... 187s Setting up libwebp7:s390x (1.5.0-0.1) ... 187s Setting up python3-pyqt5.sip (12.17.0-1) ... 187s Setting up libmtdev1t64:s390x (1.1.7-1) ... 187s Setting up libasyncns0:s390x (0.8-6build4) ... 187s Setting up libxshmfence1:s390x (1.3-1build5) ... 187s Setting up libxcb-randr0:s390x (1.17.0-2) ... 187s Setting up python3-traitlets (5.14.3+really5.14.3-1) ... 188s Setting up libnsl2:s390x (1.3.0-3build3) ... 188s Setting up libxslt1.1:s390x (1.1.39-0exp1ubuntu2) ... 188s Setting up pymca-data (5.9.3+dfsg-2) ... 188s Setting up libqt5sql5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 188s Setting up libmd4c0:s390x (0.5.2-2) ... 188s Setting up libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 188s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 188s Setting up python3-dateutil (2.9.0-3) ... 188s Setting up libglu1-mesa:s390x (9.0.2-1.1build1) ... 188s Setting up libflac12t64:s390x (1.4.3+ds-4) ... 188s Setting up libxss1:s390x (1:1.2.3-1build3) ... 188s Setting up libxkbfile1:s390x (1:1.1.0-1build4) ... 188s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 188s Setting up python3-mpmath (1.3.0-1) ... 189s Setting up python-matplotlib-data (3.8.3-3ubuntu2) ... 189s Setting up libwebpmux3:s390x (1.5.0-0.1) ... 189s Setting up libxfont2:s390x (1:2.0.6-1build1) ... 189s Setting up python3-stack-data (0.6.3-1) ... 189s Setting up python3-jupyter-core (5.7.2-5) ... 189s Setting up libgstreamer1.0-0:s390x (1.25.50-1) ... 189s Setcap worked! gst-ptp-helper is not suid! 189s Setting up libmp3lame0:s390x (3.100-6build1) ... 189s Setting up libsz2:s390x (1.1.3-1) ... 189s Setting up libvorbisenc2:s390x (1.3.7-2) ... 189s Setting up python3-ptyprocess (0.7.0-6) ... 189s Setting up libwacom-common (2.14.0-1) ... 189s Setting up libwayland-client0:s390x (1.23.1-1) ... 189s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 189s Setting up python3-prompt-toolkit (3.0.50-1) ... 190s Setting up python3-sympy (1.13.3-1) ... 205s Setting up python3.12-minimal (3.12.9-1) ... 206s Setting up libdebuginfod1t64:s390x (0.192-4) ... 206s Setting up libice6:s390x (2:1.1.1-1) ... 206s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 206s Setting up liblapack3:s390x (3.12.1-2) ... 206s 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 206s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 206s Setting up libzmq5:s390x (4.3.5-1build2) ... 206s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 206s Setting up python3-jedi (0.19.1+ds1-1) ... 206s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 206s Setting up libwacom9:s390x (2.14.0-1) ... 206s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 206s Setting up libwebpdemux2:s390x (1.5.0-0.1) ... 206s Setting up python3.12 (3.12.9-1) ... 207s Setting up libqt5positioning5:s390x (5.15.15+dfsg-3) ... 207s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 207s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 207s Setting up libavahi-common3:s390x (0.8-14ubuntu1) ... 208s Setting up libqt5xml5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 208s Setting up python3-all (3.13.1-1~exp2) ... 208s Setting up python3-coverage (7.4.4+dfsg1-0ubuntu3) ... 208s Setting up libgstreamer-plugins-base1.0-0:s390x (1.25.50-1) ... 208s Setting up libsource-highlight4t64:s390x (3.1.9-4.3build1) ... 208s Setting up libqt5serialport5:s390x (5.15.15-2) ... 208s Setting up libqt5test5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 208s Setting up libinput-bin (1.27.1-1) ... 208s Setting up python3-matplotlib-inline (0.1.6-2) ... 208s Setting up python3-comm (0.2.1-1) ... 208s Setting up libqt5websockets5:s390x (5.15.15-2) ... 208s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 208s Setting up gdb (16.2-1ubuntu1) ... 208s Setting up libjs-jquery-ui (1.13.2+dfsg-1) ... 208s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 208s Setting up python3-pexpect (4.9-3) ... 208s Setting up python3-zmq (26.2.1-1) ... 208s Setting up libraqm0:s390x (0.10.2-1) ... 208s Setting up libqt5webchannel5:s390x (5.15.15-2) ... 208s Setting up python3-numpy (1:1.26.4+ds-13) ... 212s Setting up libhdf5-310:s390x (1.14.5+repack-3) ... 212s Setting up python3-lxml:s390x (5.3.1-1) ... 212s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 212s Setting up libegl1:s390x (1.7.0-1build1) ... 212s Setting up python3-jupyter-client (8.6.3-2) ... 213s Setting up python3-contourpy (1.3.1-1) ... 213s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 213s Setting up libsndfile1:s390x (1.2.2-2) ... 213s Setting up libqt5sensors5:s390x (5.15.15-2) ... 213s Setting up libsm6:s390x (2:1.2.4-1) ... 213s Setting up libavahi-client3:s390x (0.8-14ubuntu1) ... 213s Setting up liblbfgsb0:s390x (3.0+dfsg.4-1build1) ... 213s Setting up libinput10:s390x (1.27.1-1) ... 213s Setting up libhdf5-hl-310:s390x (1.14.5+repack-3) ... 213s Setting up fontconfig (2.15.0-2ubuntu1) ... 215s Regenerating fonts cache... done. 215s Setting up libxft2:s390x (2.3.6-1build1) ... 215s Setting up libqt5qmlmodels5:s390x (5.15.15+dfsg-3) ... 215s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 215s Setting up python3-scipy (1.14.1-4ubuntu1) ... 222s Setting up libglx0:s390x (1.7.0-1build1) ... 222s Setting up libpulse0:s390x (1:17.0+dfsg1-2ubuntu1) ... 222s Setting up libqt5xmlpatterns5:s390x (5.15.15-2) ... 222s Setting up libqt5remoteobjects5:s390x (5.15.15-2) ... 222s Setting up libtk8.6:s390x (8.6.16-1) ... 222s Setting up python3.12-tk (3.12.9-1) ... 222s Setting up python3-h5py-serial (3.12.1-1) ... 222s Setting up python3-debugpy (1.8.8+ds-2ubuntu1) ... 223s Setting up python3.13-tk (3.13.2-1) ... 223s Setting up python3-fisx (1.3.1-1build4) ... 224s Setting up python3-pil:s390x (11.1.0-5) ... 224s Setting up libgl1:s390x (1.7.0-1build1) ... 224s Setting up python3-ipython (8.30.0-2) ... 225s Setting up libxt6t64:s390x (1:1.2.1-1.2build1) ... 225s Setting up python3-ipykernel (6.29.5-2) ... 225s Setting up python3-h5py (3.12.1-1) ... 225s Setting up libcups2t64:s390x (2.4.11-0ubuntu2) ... 225s Setting up tk8.6-blt2.5 (2.5.3+dfsg-7build1) ... 225s Setting up libxmu6:s390x (2:1.1.3-3build2) ... 225s Setting up blt (2.5.3+dfsg-7build1) ... 225s Setting up python3-tk:s390x (3.13.1-1) ... 225s Setting up libxaw7:s390x (2:1.0.16-1) ... 225s Setting up python3-opengl (3.1.7+dfsg-1) ... 226s /usr/lib/python3/dist-packages/OpenGL/GL/AMD/vertex_shader_tessellator.py:1: SyntaxWarning: invalid escape sequence '\ ' 226s '''OpenGL extension AMD.vertex_shader_tessellator 227s /usr/lib/python3/dist-packages/OpenGL/GL/AMD/vertex_shader_tessellator.py:1: SyntaxWarning: invalid escape sequence '\ ' 227s '''OpenGL extension AMD.vertex_shader_tessellator 228s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 228s Setting up python3-pil.imagetk:s390x (11.1.0-5) ... 228s Setting up libqt5quick5:s390x (5.15.15+dfsg-3) ... 228s Setting up libqt5positioningquick5:s390x (5.15.15+dfsg-3) ... 228s Setting up libqt5location5:s390x (5.15.15+dfsg-3) ... 228s Setting up libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 228s Setting up x11-xkb-utils (7.7+9) ... 228s Setting up libqt5svg5:s390x (5.15.15-2) ... 228s Setting up libqt5help5:s390x (5.15.15-6) ... 228s Setting up libqt5charts5:s390x (5.15.15-2) ... 228s Setting up libqt5multimedia5:s390x (5.15.15-2) ... 228s Setting up libqt5quickwidgets5:s390x (5.15.15+dfsg-3) ... 228s Setting up libqt5multimediawidgets5:s390x (5.15.15-2) ... 228s Setting up libqt5opengl5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 228s Setting up xserver-common (2:21.1.14-2ubuntu1) ... 228s Setting up libqt5printsupport5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 228s Setting up libqt5designer5:s390x (5.15.15-6) ... 228s Setting up xvfb (2:21.1.14-2ubuntu1) ... 228s Setting up libqt5webkit5:s390x (5.212.0~alpha4-42) ... 228s Setting up python3-pyqt5 (5.15.11+dfsg-1build2) ... 228s Setting up python3-pyqt5.qtpositioning (5.15.11+dfsg-1build2) ... 228s Setting up python3-pyqt5.qtsvg (5.15.11+dfsg-1build2) ... 228s Setting up python3-pyqt5.qttexttospeech (5.15.11+dfsg-1build2) ... 228s Setting up python3-pyqt5.qtsql (5.15.11+dfsg-1build2) ... 228s Setting up python3-pyqt5.qtopengl (5.15.11+dfsg-1build2) ... 228s Setting up python3-pyqt5.qtmultimedia (5.15.11+dfsg-1build2) ... 228s Setting up python3-pyqt5.qtchart (5.15.7+dfsg-1) ... 228s Setting up python3-pyqt5.qtxmlpatterns (5.15.11+dfsg-1build2) ... 228s Setting up python3-pyqt5.qtsensors (5.15.11+dfsg-1build2) ... 228s Setting up python3-pyqt5.qtwebsockets (5.15.11+dfsg-1build2) ... 228s Setting up python3-pyqt5.qtserialport (5.15.11+dfsg-1build2) ... 228s Setting up python3-pyqt5.qtremoteobjects (5.15.11+dfsg-1build2) ... 228s Setting up python3-pyqt5.qtwebchannel (5.15.11+dfsg-1build2) ... 228s Setting up python3-pyqt5.qtwebkit (5.15.11+dfsg-1build2) ... 228s Setting up python3-pyqt5.qtquick (5.15.11+dfsg-1build2) ... 228s Setting up python3-qtpy (2.4.2-4) ... 228s Setting up python3-qtconsole (5.6.1-4) ... 229s Setting up python3-fonttools (4.55.3-2) ... 230s Setting up python3-ufolib2 (0.17.0+dfsg1-1) ... 230s Setting up python3-matplotlib (3.8.3-3ubuntu2) ... 233s Setting up python3-pymca5 (5.9.3+dfsg-2) ... 237s Processing triggers for libc-bin (2.40-4ubuntu1) ... 237s Processing triggers for systemd (257.2-3ubuntu1) ... 237s Processing triggers for man-db (2.13.0-1) ... 238s Processing triggers for udev (257.2-3ubuntu1) ... 238s autopkgtest: DBG: testbed command exited with code 0 238s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pymca5'], kind short, sout pipe, serr pipe, env [] 239s autopkgtest: DBG: testbed command exited with code 0 239s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.FxMiJp/command1-packages.all"], kind short, sout raw, serr pipe, env [] 239s autopkgtest: DBG: testbed command exited with code 0 239s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.FxMiJp/command1-packages.all /tmp/autopkgtest-work.gxceld1u/out/command1-packages.all 239s autopkgtest: DBG: got reply from testbed: ok 239s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.FxMiJp/build.ylo/src'], kind short, sout raw, serr raw, env [] 239s autopkgtest: DBG: testbed command exited with code 0 239s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.FxMiJp/build.ylo/src already exists 239s autopkgtest [12:31:30]: test command1: set -efu ; export HOME=$AUTOPKGTEST_TMP ; export LIBGL_ALWAYS_INDIRECT=1 ; for py in $(py3versions -s) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; xvfb-run -a --server-args="-screen 0 1024x768x24 -c +extension GLX +render -noreset" $py -m PyMca5.tests.TestAll 2>&1 ; done 239s autopkgtest [12:31:30]: test command1: [----------------------- 239s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.FxMiJp/wrapper.sh --debug --artifacts=/tmp/autopkgtest.FxMiJp/command1-artifacts --chdir=/tmp/autopkgtest.FxMiJp/build.ylo/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.FxMiJp/command1-stderr --stdout=/tmp/autopkgtest.FxMiJp/command1-stdout --tmp=/tmp/autopkgtest.FxMiJp/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec \'set -efu ; export HOME=$AUTOPKGTEST_TMP ; export LIBGL_ALWAYS_INDIRECT=1 ; for py in $(py3versions -s) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; xvfb-run -a --server-args="-screen 0 1024x768x24 -c +extension GLX +render -noreset" $py -m PyMca5.tests.TestAll 2>&1 ; done\''], kind test, sout raw, serr raw, env [] 239s /tmp/autopkgtest.FxMiJp/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.FxMiJp/command1-artifacts 239s /tmp/autopkgtest.FxMiJp/wrapper.sh: changing to directory: /tmp/autopkgtest.FxMiJp/build.ylo/src 239s /tmp/autopkgtest.FxMiJp/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 239s /tmp/autopkgtest.FxMiJp/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 239s /tmp/autopkgtest.FxMiJp/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 239s /tmp/autopkgtest.FxMiJp/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 239s /tmp/autopkgtest.FxMiJp/wrapper.sh: setting environment: LANG=C.UTF-8 239s /tmp/autopkgtest.FxMiJp/wrapper.sh: unsetting environment: LANGUAGE 239s /tmp/autopkgtest.FxMiJp/wrapper.sh: unsetting environment: LC_ADDRESS 239s /tmp/autopkgtest.FxMiJp/wrapper.sh: unsetting environment: LC_ALL 239s /tmp/autopkgtest.FxMiJp/wrapper.sh: unsetting environment: LC_COLLATE 239s /tmp/autopkgtest.FxMiJp/wrapper.sh: unsetting environment: LC_CTYPE 239s /tmp/autopkgtest.FxMiJp/wrapper.sh: unsetting environment: LC_IDENTIFICATION 239s /tmp/autopkgtest.FxMiJp/wrapper.sh: unsetting environment: LC_MEASUREMENT 239s /tmp/autopkgtest.FxMiJp/wrapper.sh: unsetting environment: LC_MESSAGES 239s /tmp/autopkgtest.FxMiJp/wrapper.sh: unsetting environment: LC_MONETARY 239s /tmp/autopkgtest.FxMiJp/wrapper.sh: unsetting environment: LC_NAME 239s /tmp/autopkgtest.FxMiJp/wrapper.sh: unsetting environment: LC_NUMERIC 239s /tmp/autopkgtest.FxMiJp/wrapper.sh: unsetting environment: LC_PAPER 239s /tmp/autopkgtest.FxMiJp/wrapper.sh: unsetting environment: LC_TELEPHONE 239s /tmp/autopkgtest.FxMiJp/wrapper.sh: unsetting environment: LC_TIME 239s /tmp/autopkgtest.FxMiJp/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 239s /tmp/autopkgtest.FxMiJp/wrapper.sh: pretending to be a login shell 239s /tmp/autopkgtest.FxMiJp/wrapper.sh: will write standard error to /tmp/autopkgtest.FxMiJp/command1-stderr 239s /tmp/autopkgtest.FxMiJp/wrapper.sh: will write stdout to /tmp/autopkgtest.FxMiJp/command1-stdout 239s /tmp/autopkgtest.FxMiJp/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.FxMiJp/autopkgtest_tmp 239s /tmp/autopkgtest.FxMiJp/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 239s /tmp/autopkgtest.FxMiJp/wrapper.sh: command to run: bash -ec set -efu ; export HOME=$AUTOPKGTEST_TMP ; export LIBGL_ALWAYS_INDIRECT=1 ; for py in $(py3versions -s) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; xvfb-run -a --server-args="-screen 0 1024x768x24 -c +extension GLX +render -noreset" $py -m PyMca5.tests.TestAll 2>&1 ; done 239s /tmp/autopkgtest.FxMiJp/wrapper.sh: copying /tmp/tmp.tC2MU58PRe/out to stdout and file: /tmp/autopkgtest.FxMiJp/command1-stdout 239s /tmp/autopkgtest.FxMiJp/wrapper.sh: copying /tmp/tmp.tC2MU58PRe/err to standard error and file: /tmp/autopkgtest.FxMiJp/command1-stdout 239s /tmp/autopkgtest.FxMiJp/wrapper.sh: writing script pid 4525 to /tmp/autopkgtest_script_pid 239s Testing with python3.12: 240s QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ubuntu' 242s testCommand (FastXRFLinearFitTest.testFastXRFLinearFit.testCommand) ... ok 242s testEdfMap (XrfDataTest.testXrfData.testEdfMap) ... ok 242s testHdf5Map (XrfDataTest.testXrfData.testHdf5Map) ... ok 242s testSpecMesh (XrfDataTest.testXrfData.testSpecMesh) ... ok 242s testSpecfileImport (SpecfileTest.testSpecfile.testSpecfileImport) ... ok 242s testSpecfileReading (SpecfileTest.testSpecfile.testSpecfileReading) ... ok 242s testSpecfileReadingCompatibleWithOtherLocale (SpecfileTest.testSpecfile.testSpecfileReadingCompatibleWithOtherLocale) ... ok 242s testSpecfileReadingCompatibleWithUserLocale (SpecfileTest.testSpecfile.testSpecfileReadingCompatibleWithUserLocale) ... ok 243s testCommand (PyMcaBatchTest.testPyMcaBatch.testCommand) ... ok 244s testFastFitEdfMap (PyMcaBatchTest.testPyMcaBatch.testFastFitEdfMap) ... ok 245s testFastFitHdf5Map (PyMcaBatchTest.testPyMcaBatch.testFastFitHdf5Map) ... ok 246s testFastFitSpecMap (PyMcaBatchTest.testPyMcaBatch.testFastFitSpecMap) ... ok 252s testSlowFitEdfMap (PyMcaBatchTest.testPyMcaBatch.testSlowFitEdfMap) ... ok 258s testSlowFitHdf5Map (PyMcaBatchTest.testPyMcaBatch.testSlowFitHdf5Map) ... ok 264s testSlowFitSpecMap (PyMcaBatchTest.testPyMcaBatch.testSlowFitSpecMap) ... ok 265s testSlowMultiFitEdfMap (PyMcaBatchTest.testPyMcaBatch.testSlowMultiFitEdfMap) ... QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ubuntu' 265s QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ubuntu' 269s QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ubuntu' 273s QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ubuntu' 277s QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ubuntu' 285s QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ubuntu' 288s ok 289s testSlowMultiFitHdf5Map (PyMcaBatchTest.testPyMcaBatch.testSlowMultiFitHdf5Map) ... QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ubuntu' 289s QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ubuntu' 293s QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ubuntu' 301s QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ubuntu' 303s ok 304s testSlowMultiFitSpecMap (PyMcaBatchTest.testPyMcaBatch.testSlowMultiFitSpecMap) ... QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ubuntu' 304s QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ubuntu' 308s QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ubuntu' 312s QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ubuntu' 320s QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ubuntu' 323s ok 332s testSlowRoiFitEdfMap (PyMcaBatchTest.testPyMcaBatch.testSlowRoiFitEdfMap) ... ok 337s testSlowRoiFitHdf5Map (PyMcaBatchTest.testPyMcaBatch.testSlowRoiFitHdf5Map) ... ok 346s testSlowRoiFitSpecMap (PyMcaBatchTest.testPyMcaBatch.testSlowRoiFitSpecMap) ... ok 346s testSubCommands (PyMcaBatchTest.testPyMcaBatch.testSubCommands) 347s Check multi processing slicing of 2D maps for different ... ok 356s testInteractionMpl (McaAdvancedFitWidgetTest.TestMcaAdvancedFitWidget.testInteractionMpl) ... ok 356s testInteractionOpenGL (McaAdvancedFitWidgetTest.TestMcaAdvancedFitWidget.testInteractionOpenGL) ... skipped 'silx not installed' 356s testInteractionSilxGL (McaAdvancedFitWidgetTest.TestMcaAdvancedFitWidget.testInteractionSilxGL) ... skipped 'silx and/or OpenGL disabled' 356s testInteractionSilxMpl (McaAdvancedFitWidgetTest.TestMcaAdvancedFitWidget.testInteractionSilxMpl) ... skipped 'silx not installed' 357s testFullViewH5py (McaStackViewTest.testMcaStackView.testFullViewH5py) ... ok 358s testFullViewNumpy (McaStackViewTest.testMcaStackView.testFullViewNumpy) ... ok 359s testMaskedChunkIndex (McaStackViewTest.testMcaStackView.testMaskedChunkIndex) ... ok 359s testMaskedViewH5py (McaStackViewTest.testMcaStackView.testMaskedViewH5py) ... ok 359s testMaskedViewNumpy (McaStackViewTest.testMcaStackView.testMaskedViewNumpy) ... ok 359s testViewUtils (McaStackViewTest.testMcaStackView.testViewUtils) ... ok 362s testfullChunkIndex (McaStackViewTest.testMcaStackView.testfullChunkIndex) ... ok 362s testPeakNegativeX (ROIBatchTest.testROIBatch.testPeakNegativeX) ... ok 362s testPeakPositiveX (ROIBatchTest.testROIBatch.testPeakPositiveX) ... ok 362s testStackBaseImport (StackBaseTest.testStackBase.testStackBaseImport) ... ok 362s testStackBaseStack1DDataHandling (StackBaseTest.testStackBase.testStackBaseStack1DDataHandling) ... ok 363s testStackBaseStack2DDataHandling (StackBaseTest.testStackBase.testStackBaseStack2DDataHandling) ... ok 370s testStainlessSteelDataFit (XrfTest.testXrf.testStainlessSteelDataFit) ... ok 370s testTrainingDataDirectoryPresence (XrfTest.testXrf.testTrainingDataDirectoryPresence) ... ok 370s testTrainingDataFilePresence (XrfTest.testXrf.testTrainingDataFilePresence) ... ok 371s testTrainingDataFit (XrfTest.testXrf.testTrainingDataFit) ... ok 371s testHdf5GroupKeys (HDF5UtilsTest.testHDF5Utils.testHdf5GroupKeys) ... C++ elapsed TWO = %s 0.03736734390258789 371s C++ elapsed TWO = %s 0.03653383255004883 371s C++ elapsed TWO = %s 0.02162933349609375 371s RECONFIGURING 371s C++ elapsed TWO = %s 0.03247833251953125 371s RECONFIGURING elapsed = 0.2751796245574951 371s RECONFIGURING 371s C++ elapsed TWO = %s 0.02982020378112793 371s RECONFIGURING elapsed = 0.27906131744384766 371s RECONFIGURING 371s C++ elapsed TWO = %s 0.03410696983337402 371s RECONFIGURING elapsed = 0.28998899459838867 371s ok 384s testSegFault (HDF5UtilsTest.testHDF5Utils.testSegFault) ... ok 384s testDataDirectoryPresence (DataTest.testData.testDataDirectoryPresence) ... ok 384s testDataFilePresence (DataTest.testData.testDataFilePresence) ... ok 384s testDocDirectoryPresence (DataTest.testData.testDocDirectoryPresence) ... ok 384s testFisxDataDirectoryPresence (DataTest.testData.testFisxDataDirectoryPresence) ... ok 384s testEdfFileImport (EdfFileTest.testEdfFile.testEdfFileImport) ... ok 384s testEdfFileReadWrite (EdfFileTest.testEdfFile.testEdfFileReadWrite) ... ok 384s testQObject (WidgetsInstantiationTest.TestQtWrapper.testQObject) 384s Test that QObject is there. ... ok 384s testShow (WidgetsInstantiationTest.TestPlotWidget.testShow) ... ok 384s testShow (WidgetsInstantiationTest.TestPlotWindow.testShow) ... ok 385s testShow (WidgetsInstantiationTest.TestRGBCorrelatorGraph.testShow) ... ok 385s testShow (WidgetsInstantiationTest.TestRGBCorrelatorWidget.testShow) ... ok 385s testShow (WidgetsInstantiationTest.TestXASNormalizationWindow.testShow) ... ok 385s testShow (WidgetsInstantiationTest.TestMaskImageWidget.testShow) ... ok 385s testShow (WidgetsInstantiationTest.TestScanWindow.testShow) ... ok 385s testShow (WidgetsInstantiationTest.TestQPyMcaMatplotlibSave1D.testShow) ... ok 386s testShow (WidgetsInstantiationTest.TestMcaCalWidget.testShow) ... ok 386s testShow (WidgetsInstantiationTest.TestMcaWindow.testShow) ... ok 386s testShow (WidgetsInstantiationTest.TestMaterialEditor.testShow) ... ok 387s testShow (WidgetsInstantiationTest.TestFitParam.testShow) ... ok 387s testShow (WidgetsInstantiationTest.TestPeakIdentifier.testShow) ... ok 387s testShow (WidgetsInstantiationTest.TestMcaAdvancedFit.testShow) ... ok 387s testShow (WidgetsInstantiationTest.TestXMCDWindow.testShow) ... ok 388s testShow (WidgetsInstantiationTest.TestPCAParametersDialog.testShow) ... ok 389s testShow (WidgetsInstantiationTest.TestPyMcaMain.testShow) ... ok 389s testConfigDictIO (ConfigDictTest.testConfigDict.testConfigDictIO) ... ok 389s testConfigDictImport (ConfigDictTest.testConfigDict.testConfigDictImport) ... ok 389s testHdf5Uri (ConfigDictTest.testConfigDict.testHdf5Uri) ... ok 389s testSingleArrayExport (McaStackExportTest.testMcaStackExport.testSingleArrayExport) ... ok 389s testSingleStackExport (McaStackExportTest.testMcaStackExport.testSingleStackExport) ... ok 389s testDataDirectoryPresence (ElementsTest.testElements.testDataDirectoryPresence) ... ok 389s testElementCrossSectionsCalculation (ElementsTest.testElements.testElementCrossSectionsCalculation) ... ok 389s testElementCrossSectionsReadout (ElementsTest.testElements.testElementCrossSectionsReadout) ... ok 389s testMaterialCompositionCalculation (ElementsTest.testElements.testMaterialCompositionCalculation) ... ok 389s testMaterialCrossSectionsCalculation (ElementsTest.testElements.testMaterialCrossSectionsCalculation) ... ok 389s testPeakIdentification (ElementsTest.testElements.testPeakIdentification) ... ok 389s testNoSave (XRFBatchFitOutputTest.testXRFBatchFitOutput.testNoSave) ... ok 400s testOutputFormats (XRFBatchFitOutputTest.testXRFBatchFitOutput.testOutputFormats) ... ok 400s testOverwrite (XRFBatchFitOutputTest.testXRFBatchFitOutput.testOverwrite) ... ok 400s testSpecfilewrapperImport (specfilewrapperTest.testSpecfilewrapper.testSpecfilewrapperImport) ... ok 400s testSpecfilewrapperReading (specfilewrapperTest.testSpecfilewrapper.testSpecfilewrapperReading) ... ok 401s testSpecfilewrapperReadingCompatibleWithUserLocale (specfilewrapperTest.testSpecfilewrapper.testSpecfilewrapperReadingCompatibleWithUserLocale) ... ok 401s testTrainingSpectrumReading (specfilewrapperTest.testSpecfilewrapper.testTrainingSpectrumReading) ... ok 401s testGefitImport (GefitTest.testGefit.testGefitImport) ... ok 401s testGefitLeastSquares (GefitTest.testGefit.testGefitLeastSquares) ... ok 401s testDataDirectoryPresence (StackInfoTest.testStackInfo.testDataDirectoryPresence) ... ok 401s testDataFilePresence (StackInfoTest.testStackInfo.testDataFilePresence) ... ok 401s testFitHdf5Stack (StackInfoTest.testStackInfo.testFitHdf5Stack) ... ok 401s testStackBaseAverageAndSum (StackInfoTest.testStackInfo.testStackBaseAverageAndSum) ... ok 401s testStackFastFit (StackInfoTest.testStackInfo.testStackFastFit) ... ok 401s testPCAToolsCovariance (PCAToolsTest.testPCATools.testPCAToolsCovariance) ... ok 401s testPCAToolsImport (PCAToolsTest.testPCATools.testPCAToolsImport) ... ok 401s testPCAToolsPCA (PCAToolsTest.testPCATools.testPCAToolsPCA) ... ok 402s testNxData (NexusUtilsTest.testNexusUtils.testNxData) ... ok 402s testNxEntry (NexusUtilsTest.testNexusUtils.testNxEntry) ... ok 402s testNxExtStringAttribute (NexusUtilsTest.testNexusUtils.testNxExtStringAttribute) ... ok 402s testNxExtStringDataset (NexusUtilsTest.testNexusUtils.testNxExtStringDataset) ... ok 402s testNxProcess (NexusUtilsTest.testNexusUtils.testNxProcess) ... ok 402s testNxRoot (NexusUtilsTest.testNexusUtils.testNxRoot) ... ok 402s testNxStringAttribute (NexusUtilsTest.testNexusUtils.testNxStringAttribute) ... ok 402s testNxStringDataset (NexusUtilsTest.testNexusUtils.testNxStringDataset) ... ok 402s testDerivativeSavitzkyGolay (SimpleMathTest.testSimpleMath.testDerivativeSavitzkyGolay) ... ok 402s testDerivativeSinglePoint (SimpleMathTest.testSimpleMath.testDerivativeSinglePoint) ... ok 402s 402s ---------------------------------------------------------------------- 402s Ran 106 tests in 161.761s 402s 402s OK (skipped=3) 402s Testing with python3.13: 403s QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ubuntu' 405s testCommand (FastXRFLinearFitTest.testFastXRFLinearFit.testCommand) ... ok 405s testEdfMap (XrfDataTest.testXrfData.testEdfMap) ... ok 405s testHdf5Map (XrfDataTest.testXrfData.testHdf5Map) ... ok 405s testSpecMesh (XrfDataTest.testXrfData.testSpecMesh) ... ok 405s testSpecfileImport (SpecfileTest.testSpecfile.testSpecfileImport) ... ok 405s testSpecfileReading (SpecfileTest.testSpecfile.testSpecfileReading) ... ok 405s testSpecfileReadingCompatibleWithOtherLocale (SpecfileTest.testSpecfile.testSpecfileReadingCompatibleWithOtherLocale) ... ok 405s testSpecfileReadingCompatibleWithUserLocale (SpecfileTest.testSpecfile.testSpecfileReadingCompatibleWithUserLocale) ... ok 406s testCommand (PyMcaBatchTest.testPyMcaBatch.testCommand) ... ok 407s testFastFitEdfMap (PyMcaBatchTest.testPyMcaBatch.testFastFitEdfMap) ... ok 408s testFastFitHdf5Map (PyMcaBatchTest.testPyMcaBatch.testFastFitHdf5Map) ... ok 409s testFastFitSpecMap (PyMcaBatchTest.testPyMcaBatch.testFastFitSpecMap) ... ok 416s testSlowFitEdfMap (PyMcaBatchTest.testPyMcaBatch.testSlowFitEdfMap) ... ok 422s testSlowFitHdf5Map (PyMcaBatchTest.testPyMcaBatch.testSlowFitHdf5Map) ... ok 428s testSlowFitSpecMap (PyMcaBatchTest.testPyMcaBatch.testSlowFitSpecMap) ... ok 429s testSlowMultiFitEdfMap (PyMcaBatchTest.testPyMcaBatch.testSlowMultiFitEdfMap) ... QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ubuntu' 429s QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ubuntu' 433s QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ubuntu' 437s QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ubuntu' 441s QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ubuntu' 449s QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ubuntu' 452s ok 453s testSlowMultiFitHdf5Map (PyMcaBatchTest.testPyMcaBatch.testSlowMultiFitHdf5Map) ... QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ubuntu' 453s QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ubuntu' 457s QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ubuntu' 465s QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ubuntu' 468s ok 469s testSlowMultiFitSpecMap (PyMcaBatchTest.testPyMcaBatch.testSlowMultiFitSpecMap) ... QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ubuntu' 469s QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ubuntu' 473s QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ubuntu' 477s QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ubuntu' 485s QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ubuntu' 488s ok 496s testSlowRoiFitEdfMap (PyMcaBatchTest.testPyMcaBatch.testSlowRoiFitEdfMap) ... ok 501s testSlowRoiFitHdf5Map (PyMcaBatchTest.testPyMcaBatch.testSlowRoiFitHdf5Map) ... ok 510s testSlowRoiFitSpecMap (PyMcaBatchTest.testPyMcaBatch.testSlowRoiFitSpecMap) ... ok 510s testSubCommands (PyMcaBatchTest.testPyMcaBatch.testSubCommands) 512s Check multi processing slicing of 2D maps for different ... ok 520s testInteractionMpl (McaAdvancedFitWidgetTest.TestMcaAdvancedFitWidget.testInteractionMpl) ... ok 520s testInteractionOpenGL (McaAdvancedFitWidgetTest.TestMcaAdvancedFitWidget.testInteractionOpenGL) ... skipped 'silx not installed' 520s testInteractionSilxGL (McaAdvancedFitWidgetTest.TestMcaAdvancedFitWidget.testInteractionSilxGL) ... skipped 'silx and/or OpenGL disabled' 520s testInteractionSilxMpl (McaAdvancedFitWidgetTest.TestMcaAdvancedFitWidget.testInteractionSilxMpl) ... skipped 'silx not installed' 521s testFullViewH5py (McaStackViewTest.testMcaStackView.testFullViewH5py) ... ok 522s testFullViewNumpy (McaStackViewTest.testMcaStackView.testFullViewNumpy) ... ok 523s testMaskedChunkIndex (McaStackViewTest.testMcaStackView.testMaskedChunkIndex) ... ok 523s testMaskedViewH5py (McaStackViewTest.testMcaStackView.testMaskedViewH5py) ... ok 523s testMaskedViewNumpy (McaStackViewTest.testMcaStackView.testMaskedViewNumpy) ... ok 523s testViewUtils (McaStackViewTest.testMcaStackView.testViewUtils) ... ok 525s testfullChunkIndex (McaStackViewTest.testMcaStackView.testfullChunkIndex) ... ok 525s testPeakNegativeX (ROIBatchTest.testROIBatch.testPeakNegativeX) ... ok 525s testPeakPositiveX (ROIBatchTest.testROIBatch.testPeakPositiveX) ... ok 525s testStackBaseImport (StackBaseTest.testStackBase.testStackBaseImport) ... ok 526s testStackBaseStack1DDataHandling (StackBaseTest.testStackBase.testStackBaseStack1DDataHandling) ... ok 526s testStackBaseStack2DDataHandling (StackBaseTest.testStackBase.testStackBaseStack2DDataHandling) ... ok 533s testStainlessSteelDataFit (XrfTest.testXrf.testStainlessSteelDataFit) ... ok 533s testTrainingDataDirectoryPresence (XrfTest.testXrf.testTrainingDataDirectoryPresence) ... ok 533s testTrainingDataFilePresence (XrfTest.testXrf.testTrainingDataFilePresence) ... ok 534s testTrainingDataFit (XrfTest.testXrf.testTrainingDataFit) ... ok 534s testHdf5GroupKeys (HDF5UtilsTest.testHDF5Utils.testHdf5GroupKeys) ... C++ elapsed TWO = %s 0.04039406776428223 534s C++ elapsed TWO = %s 0.04484248161315918 534s C++ elapsed TWO = %s 0.01816272735595703 534s RECONFIGURING 534s C++ elapsed TWO = %s 0.024810314178466797 534s RECONFIGURING elapsed = 0.22923946380615234 534s RECONFIGURING 534s C++ elapsed TWO = %s 0.03305840492248535 534s RECONFIGURING elapsed = 0.25673508644104004 534s RECONFIGURING 534s C++ elapsed TWO = %s 0.024970531463623047 534s RECONFIGURING elapsed = 0.2327284812927246 534s ok 534s testSegFault (HDF5UtilsTest.testHDF5Utils.testSegFault) ... ok 534s testDataDirectoryPresence (DataTest.testData.testDataDirectoryPresence) ... ok 534s testDataFilePresence (DataTest.testData.testDataFilePresence) ... ok 534s testDocDirectoryPresence (DataTest.testData.testDocDirectoryPresence) ... ok 534s testFisxDataDirectoryPresence (DataTest.testData.testFisxDataDirectoryPresence) ... ok 534s testEdfFileImport (EdfFileTest.testEdfFile.testEdfFileImport) ... ok 535s testEdfFileReadWrite (EdfFileTest.testEdfFile.testEdfFileReadWrite) ... ok 535s testQObject (WidgetsInstantiationTest.TestQtWrapper.testQObject) 535s Test that QObject is there. ... ok 535s testShow (WidgetsInstantiationTest.TestPlotWidget.testShow) ... ok 535s testShow (WidgetsInstantiationTest.TestPlotWindow.testShow) ... ok 535s testShow (WidgetsInstantiationTest.TestRGBCorrelatorGraph.testShow) ... ok 535s testShow (WidgetsInstantiationTest.TestRGBCorrelatorWidget.testShow) ... ok 535s testShow (WidgetsInstantiationTest.TestXASNormalizationWindow.testShow) ... ok 536s testShow (WidgetsInstantiationTest.TestMaskImageWidget.testShow) ... ok 536s testShow (WidgetsInstantiationTest.TestScanWindow.testShow) ... ok 536s testShow (WidgetsInstantiationTest.TestQPyMcaMatplotlibSave1D.testShow) ... ok 536s testShow (WidgetsInstantiationTest.TestMcaCalWidget.testShow) ... ok 537s testShow (WidgetsInstantiationTest.TestMcaWindow.testShow) ... ok 537s testShow (WidgetsInstantiationTest.TestMaterialEditor.testShow) ... ok 537s testShow (WidgetsInstantiationTest.TestFitParam.testShow) ... ok 537s testShow (WidgetsInstantiationTest.TestPeakIdentifier.testShow) ... ok 538s testShow (WidgetsInstantiationTest.TestMcaAdvancedFit.testShow) ... ok 538s testShow (WidgetsInstantiationTest.TestXMCDWindow.testShow) ... ok 538s testShow (WidgetsInstantiationTest.TestPCAParametersDialog.testShow) ... ok 539s testShow (WidgetsInstantiationTest.TestPyMcaMain.testShow) ... ok 539s testConfigDictIO (ConfigDictTest.testConfigDict.testConfigDictIO) ... ok 540s testConfigDictImport (ConfigDictTest.testConfigDict.testConfigDictImport) ... ok 540s testHdf5Uri (ConfigDictTest.testConfigDict.testHdf5Uri) ... ok 540s testSingleArrayExport (McaStackExportTest.testMcaStackExport.testSingleArrayExport) ... ok 540s testSingleStackExport (McaStackExportTest.testMcaStackExport.testSingleStackExport) ... ok 540s testDataDirectoryPresence (ElementsTest.testElements.testDataDirectoryPresence) ... ok 540s testElementCrossSectionsCalculation (ElementsTest.testElements.testElementCrossSectionsCalculation) ... ok 540s testElementCrossSectionsReadout (ElementsTest.testElements.testElementCrossSectionsReadout) ... ok 540s testMaterialCompositionCalculation (ElementsTest.testElements.testMaterialCompositionCalculation) ... ok 540s testMaterialCrossSectionsCalculation (ElementsTest.testElements.testMaterialCrossSectionsCalculation) ... ok 540s testPeakIdentification (ElementsTest.testElements.testPeakIdentification) ... ok 540s testNoSave (XRFBatchFitOutputTest.testXRFBatchFitOutput.testNoSave) ... ok 549s testOutputFormats (XRFBatchFitOutputTest.testXRFBatchFitOutput.testOutputFormats) ... ok 549s testOverwrite (XRFBatchFitOutputTest.testXRFBatchFitOutput.testOverwrite) ... ok 549s testSpecfilewrapperImport (specfilewrapperTest.testSpecfilewrapper.testSpecfilewrapperImport) ... ok 549s testSpecfilewrapperReading (specfilewrapperTest.testSpecfilewrapper.testSpecfilewrapperReading) ... ok 549s testSpecfilewrapperReadingCompatibleWithUserLocale (specfilewrapperTest.testSpecfilewrapper.testSpecfilewrapperReadingCompatibleWithUserLocale) ... ok 549s testTrainingSpectrumReading (specfilewrapperTest.testSpecfilewrapper.testTrainingSpectrumReading) ... ok 549s testGefitImport (GefitTest.testGefit.testGefitImport) ... ok 549s testGefitLeastSquares (GefitTest.testGefit.testGefitLeastSquares) ... ok 550s testDataDirectoryPresence (StackInfoTest.testStackInfo.testDataDirectoryPresence) ... ok 550s testDataFilePresence (StackInfoTest.testStackInfo.testDataFilePresence) ... ok 550s testFitHdf5Stack (StackInfoTest.testStackInfo.testFitHdf5Stack) ... ok 550s testStackBaseAverageAndSum (StackInfoTest.testStackInfo.testStackBaseAverageAndSum) ... ok 550s testStackFastFit (StackInfoTest.testStackInfo.testStackFastFit) ... ok 550s testPCAToolsCovariance (PCAToolsTest.testPCATools.testPCAToolsCovariance) ... ok 550s testPCAToolsImport (PCAToolsTest.testPCATools.testPCAToolsImport) ... ok 550s testPCAToolsPCA (PCAToolsTest.testPCATools.testPCAToolsPCA) ... ok 550s testNxData (NexusUtilsTest.testNexusUtils.testNxData) ... ok 550s testNxEntry (NexusUtilsTest.testNexusUtils.testNxEntry) ... ok 550s testNxExtStringAttribute (NexusUtilsTest.testNexusUtils.testNxExtStringAttribute) ... ok 550s testNxExtStringDataset (NexusUtilsTest.testNexusUtils.testNxExtStringDataset) ... ok 550s testNxProcess (NexusUtilsTest.testNexusUtils.testNxProcess) ... ok 550s testNxRoot (NexusUtilsTest.testNexusUtils.testNxRoot) ... ok 550s testNxStringAttribute (NexusUtilsTest.testNexusUtils.testNxStringAttribute) ... ok 550s testNxStringDataset (NexusUtilsTest.testNexusUtils.testNxStringDataset) ... ok 550s testDerivativeSavitzkyGolay (SimpleMathTest.testSimpleMath.testDerivativeSavitzkyGolay) ... ok 550s testDerivativeSinglePoint (SimpleMathTest.testSimpleMath.testDerivativeSinglePoint) ... ok 550s 550s ---------------------------------------------------------------------- 550s Ran 106 tests in 147.347s 550s 550s OK (skipped=3) 551s /tmp/autopkgtest.FxMiJp/wrapper.sh: checking for leaked background processes... 551s /tmp/autopkgtest.FxMiJp/wrapper.sh: waiting for tee/cat subprocesses... 551s /tmp/autopkgtest.FxMiJp/wrapper.sh: cleaning up... 551s /tmp/autopkgtest.FxMiJp/wrapper.sh: Exit status: 0 551s autopkgtest: DBG: testbed command exited with code 0 551s autopkgtest [12:36:42]: test command1: -----------------------] 551s autopkgtest: DBG: testbed executing test finished with exit status 0 551s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.FxMiJp/command1-stdout /tmp/autopkgtest-work.gxceld1u/out/command1-stdout 551s autopkgtest: DBG: got reply from testbed: ok 551s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.FxMiJp/command1-stderr /tmp/autopkgtest-work.gxceld1u/out/command1-stderr 551s autopkgtest: DBG: got reply from testbed: ok 551s autopkgtest [12:36:42]: test command1: - - - - - - - - - - results - - - - - - - - - - 551s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.FxMiJp/command1-artifacts/ /tmp/autopkgtest-work.gxceld1u/out/artifacts/ 551s command1 PASS 552s autopkgtest: DBG: got reply from testbed: ok 552s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.FxMiJp/command1-artifacts', '/tmp/autopkgtest.FxMiJp/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 552s autopkgtest: DBG: testbed command exited with code 0 552s autopkgtest [12:36:43]: test command2: preparing testbed 552s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['locales-all', 'python3-all', 'python3-pymca5', 'xauth', 'xvfb'], deps_new=['debhelper', 'mesa-utils', 'pymca', 'python3-pymca5', 'pymca-data', 'pymca-doc', 'xauth', 'xvfb'] 552s autopkgtest: DBG: testbed reset 552s autopkgtest: DBG: sending command to testbed: revert 672s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.FxMiJp 672s autopkgtest: DBG: sending command to testbed: print-execute-command 672s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.rutsmvtg/runcmd 672s autopkgtest: DBG: sending command to testbed: capabilities 672s autopkgtest: DBG: got reply from testbed: ok root-on-testbed isolation-machine revert-full-system ok revert reboot suggested-normal-user=ubuntu 672s autopkgtest: DBG: testbed capabilities: ['root-on-testbed', 'isolation-machine', 'revert-full-system', 'ok', 'revert', 'reboot', 'suggested-normal-user=ubuntu', 'has_internet'] 672s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.FxMiJp'], kind short, sout raw, serr pipe, env [] 673s autopkgtest: DBG: testbed command exited with code 0 673s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.FxMiJp/wrapper.sh 673s autopkgtest: DBG: got reply from testbed: ok 673s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.FxMiJp/wrapper.sh'], kind short, sout raw, serr pipe, env [] 673s autopkgtest: DBG: testbed command exited with code 0 673s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 673s autopkgtest: DBG: testbed command exited with code 0 673s autopkgtest [12:38:44]: testbed dpkg architecture: s390x 673s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 673s autopkgtest: DBG: testbed command exited with code 0 673s autopkgtest [12:38:44]: testbed apt version: 2.9.30 673s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 673s autopkgtest: DBG: testbed command exited with code 0 673s autopkgtest: DBG: testbed has eatmydata 673s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 674s autopkgtest: DBG: testbed command exited with code 0 674s autopkgtest [12:38:45]: @@@@@@@@@@@@@@@@@@@@ test bed setup 674s 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 [] 674s autopkgtest: DBG: testbed command exited with code 0 674s autopkgtest [12:38:45]: testbed release detected to be: plucky 674s 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 [] 674s autopkgtest: DBG: testbed command exited with code 0 674s 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 [] 674s autopkgtest: DBG: testbed command exited with code 0 674s autopkgtest: DBG: adding APT source: Types: deb deb-src 674s URIs: http://ftpmaster.internal/ubuntu/ 674s Suites: plucky-proposed 674s Components: main restricted universe multiverse 674s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 674s 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 [] 674s autopkgtest: DBG: testbed command exited with code 0 674s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 674s Package: * 674s Pin: release plucky-proposed 674s Pin-Priority: 500 674s 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 [] 674s autopkgtest: DBG: testbed command exited with code 0 674s autopkgtest [12:38:45]: updating testbed package index (apt update) 674s 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'] 675s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 675s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 675s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 675s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 675s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 675s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 675s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 675s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 675s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 675s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 675s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 675s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 676s Fetched 1700 kB in 1s (1872 kB/s) 676s Reading package lists... 676s autopkgtest: DBG: testbed command exited with code 0 676s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 676s Package: * 676s Pin: release plucky-proposed 676s Pin-Priority: 100 676s 676s Package: src:sphinx:any 676s Pin: release plucky-proposed 676s Pin-Priority: 995 676s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:sphinx:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 676s autopkgtest: DBG: testbed command exited with code 0 676s 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.FxMiJp/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 677s autopkgtest: DBG: testbed command exited with code 0 677s 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'] 677s + lsb_release --codename --short 677s + RELEASE=plucky 677s + cat 677s + [ plucky != trusty ] 677s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 677s Reading package lists... 677s Building dependency tree... 677s Reading state information... 677s Calculating upgrade... 677s The following packages were automatically installed and are no longer required: 677s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 677s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 677s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 677s linux-tools-6.11.0-8-generic 677s Use 'sudo apt autoremove' to remove them. 677s The following packages will be upgraded: 677s iproute2 liblsof0 libp11-kit0 lsof 677s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 677s Need to get 1791 kB of archives. 677s After this operation, 17.4 kB of additional disk space will be used. 677s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 678s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 678s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 678s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 678s Preconfiguring packages ... 678s Fetched 1791 kB in 1s (2850 kB/s) 678s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 678s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 678s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 678s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 678s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 678s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 678s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 678s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 678s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 678s Setting up liblsof0 (4.99.4+dfsg-1) ... 678s Setting up iproute2 (6.13.0-1ubuntu1) ... 678s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 678s Setting up lsof (4.99.4+dfsg-1) ... 678s Processing triggers for man-db (2.13.0-1) ... 679s Processing triggers for libc-bin (2.40-4ubuntu1) ... 679s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 679s + /usr/lib/apt/apt-helper analyze-pattern ?true 679s + uname -r 679s + sed s/\./\\./g 679s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 679s + apt list ?obsolete 679s + tail -n+2 679s + cut -d/ -f1 679s + grep -v ^linux-.*6\.12\.0-15-generic.* 679s + true 679s + obsolete_pkgs= 679s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 679s Reading package lists... 679s Building dependency tree... 679s Reading state information... 679s The following packages will be REMOVED: 679s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 679s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 679s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 679s linux-tools-6.11.0-8-generic* 680s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 680s After this operation, 167 MB disk space will be freed. 680s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81031 files and directories currently installed.) 680s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 680s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 680s Removing libpython3.12t64:s390x (3.12.9-1) ... 680s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 680s Removing libnsl2:s390x (1.3.0-3build3) ... 680s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 680s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 680s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 681s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 681s Processing triggers for libc-bin (2.40-4ubuntu1) ... 681s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55931 files and directories currently installed.) 681s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 681s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 681s + grep -q trusty /etc/lsb-release 681s + [ ! -d /usr/share/doc/unattended-upgrades ] 681s + [ ! -d /usr/share/doc/lxd ] 681s + [ ! -d /usr/share/doc/lxd-client ] 681s + [ ! -d /usr/share/doc/snapd ] 681s + type iptables 681s + cat 681s + chmod 755 /etc/rc.local 681s + . /etc/rc.local 681s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 681s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 681s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 681s + uname -m 681s + [ s390x = ppc64le ] 681s + [ -d /run/systemd/system ] 681s + systemd-detect-virt --quiet --vm 681s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 681s + cat 681s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 681s + echo COMPRESS=lz4 681s autopkgtest: DBG: testbed command exited with code 0 681s autopkgtest [12:38:52]: upgrading testbed (apt dist-upgrade and autopurge) 681s 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'] 681s Reading package lists... 681s Building dependency tree... 681s Reading state information... 681s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 681s Starting 2 pkgProblemResolver with broken count: 0 681s Done 682s Entering ResolveByKeep 682s 682s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 682s autopkgtest: DBG: testbed command exited with code 0 682s 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'] 682s Reading package lists... 682s Building dependency tree... 682s Reading state information... 682s Starting pkgProblemResolver with broken count: 0 682s Starting 2 pkgProblemResolver with broken count: 0 682s Done 682s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 682s autopkgtest: DBG: testbed command exited with code 0 682s 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.FxMiJp/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 683s autopkgtest: DBG: testbed command exited with code 1 683s autopkgtest [12:38:54]: rebooting testbed after setup commands that affected boot 683s autopkgtest: DBG: sending command to testbed: reboot 702s autopkgtest: DBG: got reply from testbed: ok 702s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 702s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.FxMiJp'], kind short, sout raw, serr pipe, env [] 702s autopkgtest: DBG: testbed command exited with code 0 702s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.FxMiJp/autopkgtest-reboot 702s autopkgtest: DBG: got reply from testbed: ok 702s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.FxMiJp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 702s autopkgtest: DBG: testbed command exited with code 0 702s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.FxMiJp/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 703s autopkgtest: DBG: testbed command exited with code 0 703s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.FxMiJp/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 703s autopkgtest: DBG: testbed command exited with code 0 703s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.FxMiJp'], kind short, sout raw, serr pipe, env [] 703s autopkgtest: DBG: testbed command exited with code 0 703s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.FxMiJp/autopkgtest-reboot-prepare 703s autopkgtest: DBG: got reply from testbed: ok 703s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.FxMiJp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 703s autopkgtest: DBG: testbed command exited with code 0 703s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.FxMiJp/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 704s autopkgtest: DBG: testbed command exited with code 0 704s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 704s autopkgtest: DBG: testbed command exited with code 0 704s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.FxMiJp/testbed-packages"], kind short, sout raw, serr pipe, env [] 704s autopkgtest: DBG: testbed command exited with code 0 704s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.FxMiJp/testbed-packages /tmp/autopkgtest-work.gxceld1u/out/testbed-packages 704s autopkgtest: DBG: got reply from testbed: ok 704s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 704s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.FxMiJp'], kind short, sout raw, serr pipe, env [] 704s autopkgtest: DBG: testbed command exited with code 0 704s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.FxMiJp/autopkgtest-reboot 705s autopkgtest: DBG: got reply from testbed: ok 705s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.FxMiJp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 705s autopkgtest: DBG: testbed command exited with code 0 705s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.FxMiJp/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 705s autopkgtest: DBG: testbed command exited with code 0 705s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.FxMiJp/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 705s autopkgtest: DBG: testbed command exited with code 0 705s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.FxMiJp'], kind short, sout raw, serr pipe, env [] 705s autopkgtest: DBG: testbed command exited with code 0 705s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.FxMiJp/autopkgtest-reboot-prepare 705s autopkgtest: DBG: got reply from testbed: ok 705s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.FxMiJp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 706s autopkgtest: DBG: testbed command exited with code 0 706s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.FxMiJp/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 706s autopkgtest: DBG: testbed command exited with code 0 706s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 706s autopkgtest: DBG: testbed command exited with code 0 706s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 706s autopkgtest: DBG: install_deps: deps_new=['debhelper', 'mesa-utils', 'pymca', 'python3-pymca5', 'pymca-data', 'pymca-doc', 'xauth', 'xvfb'] 706s autopkgtest: DBG: install-deps: satisfying debhelper, mesa-utils, pymca, python3-pymca5, pymca-data, pymca-doc, xauth, xvfb 706s autopkgtest: DBG: can use apt-get on testbed: True 706s 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', 'debhelper, mesa-utils, pymca, python3-pymca5, pymca-data, pymca-doc, xauth, xvfb'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 706s Reading package lists... 706s Building dependency tree... 706s Reading state information... 706s Starting pkgProblemResolver with broken count: 0 707s Starting 2 pkgProblemResolver with broken count: 0 707s Done 707s The following NEW packages will be installed: 707s autoconf automake autopoint autotools-dev blt cpp cpp-14 707s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 707s dh-strip-nondeterminism dwz fontconfig fontconfig-config fonts-dejavu-core 707s fonts-dejavu-mono fonts-lyx fonts-mathjax gcc gcc-14 gcc-14-s390x-linux-gnu 707s gcc-s390x-linux-gnu gdb gettext intltool-debian libaec0 libarchive-zip-perl 707s libasan8 libasyncns0 libavahi-client3 libavahi-common-data libavahi-common3 707s libbabeltrace1 libblas3 libcc1-0 libcups2t64 libdebhelper-perl 707s libdebuginfod-common libdebuginfod1t64 libdecor-0-0 libdeflate0 707s libdouble-conversion3 libdrm-radeon1 libegl-mesa0 libegl1 707s libfile-stripnondeterminism-perl libflac12t64 libfontconfig1 libfontenc1 707s libfreetype6 libgbm1 libgcc-14-dev libgfortran5 libgl1 libgl1-mesa-dri 707s libglapi-mesa libgles2 libglu1-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 707s libgraphite2-3 libgstreamer-plugins-base1.0-0 libgstreamer1.0-0 707s libharfbuzz0b libhdf5-310 libhdf5-hl-310 libhyphen0 libice6 libimagequant0 707s libinput-bin libinput10 libisl23 libitm1 libjbig0 libjpeg-turbo8 libjpeg8 707s libjs-jquery libjs-jquery-ui libjs-mathjax libjs-sphinxdoc libjs-underscore 707s liblapack3 liblbfgsb0 liblcms2-2 liblzf1 libmd4c0 libmp3lame0 libmpc3 707s libmpg123-0t64 libmtdev1t64 libnorm1t64 libnsl2 libogg0 libopengl0 707s libopenjp2-7 libopus0 liborc-0.4-0t64 libpcre2-16-0 libpgm-5.3-0t64 707s libpixman-1-0 libpulse0 libpython3.12-minimal libpython3.12-stdlib 707s libqhull-r8.0 libqt5charts5 libqt5core5t64 libqt5dbus5t64 libqt5designer5 707s libqt5gui5t64 libqt5help5 libqt5location5 libqt5multimedia5 707s libqt5multimediawidgets5 libqt5network5t64 libqt5opengl5t64 707s libqt5positioning5 libqt5positioningquick5 libqt5printsupport5t64 libqt5qml5 707s libqt5qmlmodels5 libqt5quick5 libqt5quickwidgets5 libqt5remoteobjects5 707s libqt5sensors5 libqt5serialport5 libqt5sql5t64 libqt5svg5 libqt5test5t64 707s libqt5texttospeech5 libqt5webchannel5 libqt5webkit5 libqt5websockets5 707s libqt5widgets5t64 libqt5xml5t64 libqt5xmlpatterns5 libraqm0 libsharpyuv0 707s libsm6 libsndfile1 libsodium23 libsource-highlight-common 707s libsource-highlight4t64 libsz2 libtcl8.6 libtiff6 libtk8.6 libtool libubsan1 707s libvorbis0a libvorbisenc2 libvulkan1 libwacom-common libwacom9 707s libwayland-client0 libwayland-egl1 libwayland-server0 libwebp7 libwebpdemux2 707s libwebpmux3 libwoff1 libx11-xcb1 libxaw7 libxcb-dri3-0 libxcb-glx0 707s libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-present0 libxcb-randr0 707s libxcb-render-util0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 707s libxcb-util1 libxcb-xfixes0 libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 707s libxfont2 libxft2 libxkbcommon-x11-0 libxkbfile1 libxmu6 libxpm4 libxrandr2 707s libxrender1 libxshmfence1 libxslt1.1 libxss1 libxt6t64 libxxf86vm1 libzmq5 707s m4 mesa-libgallium mesa-utils mesa-utils-bin po-debconf pymca pymca-data 707s pymca-doc python-fisx-common python-matplotlib-data python3-asttokens 707s python3-brotli python3-comm python3-contourpy python3-coverage 707s python3-cycler python3-dateutil python3-debugpy python3-decorator 707s python3-executing python3-fisx python3-fonttools python3-fs python3-h5py 707s python3-h5py-serial python3-ipykernel python3-ipython python3-jedi 707s python3-jupyter-client python3-jupyter-core python3-kiwisolver python3-lxml 707s python3-lz4 python3-matplotlib python3-matplotlib-inline python3-mpmath 707s python3-nest-asyncio python3-numpy python3-opengl python3-packaging 707s python3-parso python3-pexpect python3-pil python3-pil.imagetk 707s python3-platformdirs python3-prompt-toolkit python3-psutil 707s python3-ptyprocess python3-pure-eval python3-pymca5 python3-pyqt5 707s python3-pyqt5.qtchart python3-pyqt5.qtmultimedia python3-pyqt5.qtopengl 707s python3-pyqt5.qtpositioning python3-pyqt5.qtquick 707s python3-pyqt5.qtremoteobjects python3-pyqt5.qtsensors 707s python3-pyqt5.qtserialport python3-pyqt5.qtsql python3-pyqt5.qtsvg 707s python3-pyqt5.qttexttospeech python3-pyqt5.qtwebchannel 707s python3-pyqt5.qtwebkit python3-pyqt5.qtwebsockets 707s python3-pyqt5.qtxmlpatterns python3-pyqt5.sip python3-pytz python3-qtconsole 707s python3-qtpy python3-scipy python3-stack-data python3-sympy python3-tk 707s python3-tornado python3-traitlets python3-typeshed python3-tz 707s python3-ufolib2 python3-unicodedata2 python3-wcwidth python3-zmq python3.12 707s python3.12-minimal python3.12-tk python3.13-tk tk8.6-blt2.5 unicode-data 707s x11-common x11-xkb-utils xserver-common xvfb 707s 0 upgraded, 289 newly installed, 0 to remove and 0 not upgraded. 707s Need to get 217 MB of archives. 707s After this operation, 913 MB of additional disk space will be used. 707s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 707s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 708s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libdebuginfod-common all 0.192-4 [15.4 kB] 708s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libgstreamer1.0-0 s390x 1.25.50-1 [1240 kB] 708s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x liborc-0.4-0t64 s390x 1:0.4.41-1 [213 kB] 708s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libgstreamer-plugins-base1.0-0 s390x 1.25.50-1 [919 kB] 708s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libhyphen0 s390x 2.8.8-7build3 [28.4 kB] 708s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 708s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 708s Get:10 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.0-1build1 [43.9 kB] 708s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 708s Get:12 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 708s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 708s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 708s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 708s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 708s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 708s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 708s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 708s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 708s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 708s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 708s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 708s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 708s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 708s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 708s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 708s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 708s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 708s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 708s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 708s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-1 [27.8 kB] 708s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 708s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 708s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 708s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 708s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 708s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 708s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 708s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 708s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 708s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 708s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 708s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 708s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 708s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 708s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 708s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 708s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 708s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 708s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 708s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 708s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 708s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 708s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 708s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 708s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 708s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 708s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 708s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 708s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 708s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 708s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 708s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 708s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 708s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 709s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 709s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-4ubuntu1 [4187 kB] 709s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5positioning5 s390x 5.15.15+dfsg-3 [249 kB] 709s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-common-data s390x 0.8-14ubuntu1 [30.5 kB] 709s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-common3 s390x 0.8-14ubuntu1 [23.6 kB] 709s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-client3 s390x 0.8-14ubuntu1 [26.8 kB] 709s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x libcups2t64 s390x 2.4.11-0ubuntu2 [282 kB] 709s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5widgets5t64 s390x 5.15.15+dfsg-4ubuntu1 [2718 kB] 709s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5printsupport5t64 s390x 5.15.15+dfsg-4ubuntu1 [218 kB] 709s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 709s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qmlmodels5 s390x 5.15.15+dfsg-3 [217 kB] 709s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5quick5 s390x 5.15.15+dfsg-3 [1827 kB] 709s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5sensors5 s390x 5.15.15-2 [126 kB] 709s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5webchannel5 s390x 5.15.15-2 [65.9 kB] 709s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 709s Get:82 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 709s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x libwoff1 s390x 1.0.2-2build1 [49.3 kB] 709s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x libxslt1.1 s390x 1.1.39-0exp1ubuntu2 [169 kB] 709s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5webkit5 s390x 5.212.0~alpha4-42 [12.1 MB] 709s Get:86 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 709s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 709s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 709s Get:89 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 709s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 709s Get:91 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 709s Get:92 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 709s Get:93 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 709s Get:94 http://ftpmaster.internal/ubuntu plucky/main s390x libtcl8.6 s390x 8.6.16+dfsg-1 [1034 kB] 709s Get:95 http://ftpmaster.internal/ubuntu plucky/main s390x libxft2 s390x 2.3.6-1build1 [49.6 kB] 709s Get:96 http://ftpmaster.internal/ubuntu plucky/main s390x libxss1 s390x 1:1.2.3-1build3 [7396 B] 709s Get:97 http://ftpmaster.internal/ubuntu plucky/main s390x libtk8.6 s390x 8.6.16-1 [830 kB] 709s Get:98 http://ftpmaster.internal/ubuntu plucky/main s390x tk8.6-blt2.5 s390x 2.5.3+dfsg-7build1 [662 kB] 709s Get:99 http://ftpmaster.internal/ubuntu plucky/main s390x blt s390x 2.5.3+dfsg-7build1 [4840 B] 709s Get:100 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 709s Get:101 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 710s Get:102 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 711s Get:103 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 711s Get:104 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 711s Get:105 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 711s Get:106 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 711s Get:107 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 15-20250213-1ubuntu1 [49.2 kB] 711s Get:108 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 711s Get:109 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 15-20250213-1ubuntu1 [31.2 kB] 711s Get:110 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 15-20250213-1ubuntu1 [2970 kB] 711s Get:111 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 15-20250213-1ubuntu1 [1213 kB] 711s Get:112 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 711s Get:113 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 711s Get:114 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 711s Get:115 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 711s Get:116 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 711s Get:117 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 711s Get:118 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 711s Get:119 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 711s Get:120 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 711s Get:121 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 711s Get:122 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 711s Get:123 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 711s Get:124 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 712s Get:125 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 712s Get:126 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 712s Get:127 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 712s Get:128 http://ftpmaster.internal/ubuntu plucky/universe s390x fonts-lyx all 2.4.3-1 [171 kB] 712s Get:129 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-mathjax all 2.7.9+dfsg-1 [2208 kB] 712s Get:130 http://ftpmaster.internal/ubuntu plucky/main s390x libbabeltrace1 s390x 1.5.11-4build1 [170 kB] 712s Get:131 http://ftpmaster.internal/ubuntu plucky/main s390x libdebuginfod1t64 s390x 0.192-4 [22.6 kB] 712s Get:132 http://ftpmaster.internal/ubuntu plucky/main s390x libsource-highlight-common all 3.1.9-4.3build1 [64.2 kB] 712s Get:133 http://ftpmaster.internal/ubuntu plucky/main s390x libsource-highlight4t64 s390x 3.1.9-4.3build1 [268 kB] 712s Get:134 http://ftpmaster.internal/ubuntu plucky/main s390x gdb s390x 16.2-1ubuntu1 [8240 kB] 712s Get:135 http://ftpmaster.internal/ubuntu plucky/universe s390x libaec0 s390x 1.1.3-1 [25.7 kB] 712s Get:136 http://ftpmaster.internal/ubuntu plucky/main s390x libasyncns0 s390x 0.8-6build4 [11.4 kB] 712s Get:137 http://ftpmaster.internal/ubuntu plucky/main s390x libblas3 s390x 3.12.1-2 [252 kB] 712s Get:138 http://ftpmaster.internal/ubuntu plucky/main s390x libdecor-0-0 s390x 0.2.2-2 [16.2 kB] 712s Get:139 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 712s Get:140 http://ftpmaster.internal/ubuntu plucky/main s390x libogg0 s390x 1.3.5-3build1 [24.4 kB] 712s Get:141 http://ftpmaster.internal/ubuntu plucky/main s390x libflac12t64 s390x 1.4.3+ds-4 [161 kB] 712s Get:142 http://ftpmaster.internal/ubuntu plucky/main s390x libfontenc1 s390x 1:1.1.8-1build1 [14.8 kB] 712s Get:143 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran5 s390x 15-20250213-1ubuntu1 [620 kB] 712s Get:144 http://ftpmaster.internal/ubuntu plucky/universe s390x libsz2 s390x 1.1.3-1 [5442 B] 712s Get:145 http://ftpmaster.internal/ubuntu plucky/universe s390x libhdf5-310 s390x 1.14.5+repack-3 [1477 kB] 712s Get:146 http://ftpmaster.internal/ubuntu plucky/universe s390x libhdf5-hl-310 s390x 1.14.5+repack-3 [61.0 kB] 712s Get:147 http://ftpmaster.internal/ubuntu plucky/main s390x libimagequant0 s390x 2.18.0-1build1 [43.3 kB] 712s Get:148 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 712s Get:149 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-ui all 1.13.2+dfsg-1 [252 kB] 712s Get:150 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB] 712s Get:151 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libjs-sphinxdoc all 8.1.3-5 [31.0 kB] 712s Get:152 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack3 s390x 3.12.1-2 [2971 kB] 712s Get:153 http://ftpmaster.internal/ubuntu plucky/universe s390x liblbfgsb0 s390x 3.0+dfsg.4-1build1 [32.4 kB] 712s Get:154 http://ftpmaster.internal/ubuntu plucky/main s390x liblcms2-2 s390x 2.16-2 [175 kB] 712s Get:155 http://ftpmaster.internal/ubuntu plucky/universe s390x liblzf1 s390x 3.6-4 [7020 B] 712s Get:156 http://ftpmaster.internal/ubuntu plucky/main s390x libmp3lame0 s390x 3.100-6build1 [160 kB] 712s Get:157 http://ftpmaster.internal/ubuntu plucky/main s390x libmpg123-0t64 s390x 1.32.10-1 [179 kB] 712s Get:158 http://ftpmaster.internal/ubuntu plucky/universe s390x libnorm1t64 s390x 1.5.9+dfsg-3.1build1 [158 kB] 713s Get:159 http://ftpmaster.internal/ubuntu plucky/main s390x libopus0 s390x 1.5.2-2 [2928 kB] 713s Get:160 http://ftpmaster.internal/ubuntu plucky/universe s390x libpgm-5.3-0t64 s390x 5.3.128~dfsg-2.1build1 [169 kB] 713s Get:161 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-0 s390x 0.44.0-3 [201 kB] 713s Get:162 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbis0a s390x 1.3.7-2 [112 kB] 713s Get:163 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbisenc2 s390x 1.3.7-2 [80.6 kB] 713s Get:164 http://ftpmaster.internal/ubuntu plucky/main s390x libsndfile1 s390x 1.2.2-2 [238 kB] 713s Get:165 http://ftpmaster.internal/ubuntu plucky/main s390x libpulse0 s390x 1:17.0+dfsg1-2ubuntu1 [312 kB] 713s Get:166 http://ftpmaster.internal/ubuntu plucky/universe s390x libqhull-r8.0 s390x 2020.2-6build1 [199 kB] 713s Get:167 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5charts5 s390x 5.15.15-2 [506 kB] 713s Get:168 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5xml5t64 s390x 5.15.15+dfsg-4ubuntu1 [129 kB] 713s Get:169 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5designer5 s390x 5.15.15-6 [2899 kB] 713s Get:170 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5sql5t64 s390x 5.15.15+dfsg-4ubuntu1 [130 kB] 713s Get:171 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5help5 s390x 5.15.15-6 [172 kB] 713s Get:172 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5positioningquick5 s390x 5.15.15+dfsg-3 [45.7 kB] 713s Get:173 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5location5 s390x 5.15.15+dfsg-3 [808 kB] 713s Get:174 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5multimedia5 s390x 5.15.15-2 [331 kB] 713s Get:175 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5multimediawidgets5 s390x 5.15.15-2 [43.1 kB] 713s Get:176 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5opengl5t64 s390x 5.15.15+dfsg-4ubuntu1 [156 kB] 713s Get:177 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5quickwidgets5 s390x 5.15.15+dfsg-3 [39.5 kB] 713s Get:178 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5remoteobjects5 s390x 5.15.15-2 [215 kB] 713s Get:179 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5serialport5 s390x 5.15.15-2 [37.3 kB] 713s Get:180 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5svg5 s390x 5.15.15-2 [158 kB] 713s Get:181 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5test5t64 s390x 5.15.15+dfsg-4ubuntu1 [156 kB] 713s Get:182 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5texttospeech5 s390x 5.15.15-2 [22.2 kB] 713s Get:183 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5websockets5 s390x 5.15.15-2 [64.3 kB] 713s Get:184 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5xmlpatterns5 s390x 5.15.15-2 [927 kB] 713s Get:185 http://ftpmaster.internal/ubuntu plucky/main s390x libraqm0 s390x 0.10.2-1 [15.8 kB] 713s Get:186 http://ftpmaster.internal/ubuntu plucky/main s390x libsodium23 s390x 1.0.18-1build3 [138 kB] 713s Get:187 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 713s Get:188 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 713s Get:189 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-egl1 s390x 1.23.1-1 [5654 B] 713s Get:190 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpdemux2 s390x 1.5.0-0.1 [12.6 kB] 713s Get:191 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpmux3 s390x 1.5.0-0.1 [25.8 kB] 713s Get:192 http://ftpmaster.internal/ubuntu plucky/main s390x libxt6t64 s390x 1:1.2.1-1.2build1 [184 kB] 713s Get:193 http://ftpmaster.internal/ubuntu plucky/main s390x libxmu6 s390x 2:1.1.3-3build2 [53.0 kB] 713s Get:194 http://ftpmaster.internal/ubuntu plucky/main s390x libxpm4 s390x 1:3.5.17-1build2 [41.2 kB] 713s Get:195 http://ftpmaster.internal/ubuntu plucky/main s390x libxaw7 s390x 2:1.0.16-1 [201 kB] 713s Get:196 http://ftpmaster.internal/ubuntu plucky/main s390x libxfont2 s390x 1:2.0.6-1build1 [101 kB] 713s Get:197 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbfile1 s390x 1:1.1.0-1build4 [76.5 kB] 713s Get:198 http://ftpmaster.internal/ubuntu plucky/main s390x libxrandr2 s390x 2:1.5.4-1 [20.8 kB] 713s Get:199 http://ftpmaster.internal/ubuntu plucky/universe s390x libzmq5 s390x 4.3.5-1build2 [258 kB] 713s Get:200 http://ftpmaster.internal/ubuntu plucky/main s390x libgles2 s390x 1.7.0-1build1 [22.4 kB] 713s Get:201 http://ftpmaster.internal/ubuntu plucky/universe s390x mesa-utils-bin s390x 9.0.0-2 [165 kB] 713s Get:202 http://ftpmaster.internal/ubuntu plucky/universe s390x python-fisx-common all 1.3.1-1build4 [3480 kB] 714s Get:203 http://ftpmaster.internal/ubuntu plucky/universe s390x python-matplotlib-data all 3.8.3-3ubuntu2 [2929 kB] 714s Get:204 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-asttokens all 3.0.0-1 [20.4 kB] 714s Get:205 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-brotli s390x 1.1.0-2build3 [381 kB] 714s Get:206 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-traitlets all 5.14.3+really5.14.3-1 [71.5 kB] 714s Get:207 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-comm all 0.2.1-1 [7016 B] 714s Get:208 http://ftpmaster.internal/ubuntu plucky/main s390x python3-numpy s390x 1:1.26.4+ds-13 [4601 kB] 715s Get:209 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-contourpy s390x 1.3.1-1 [235 kB] 715s Get:210 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-coverage s390x 7.4.4+dfsg1-0ubuntu3 [150 kB] 715s Get:211 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-cycler all 0.12.1-1 [9716 B] 715s Get:212 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dateutil all 2.9.0-3 [80.2 kB] 715s Get:213 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-debugpy s390x 1.8.8+ds-2ubuntu1 [1138 kB] 715s Get:214 http://ftpmaster.internal/ubuntu plucky/main s390x python3-decorator all 5.1.1-5 [10.1 kB] 715s Get:215 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-executing all 2.2.0-0.1 [25.0 kB] 715s Get:216 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-fisx s390x 1.3.1-1build4 [4079 kB] 715s Get:217 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pytz all 2025.1-3 [162 kB] 715s Get:218 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tz all 2025.1-3 [1866 B] 715s Get:219 http://ftpmaster.internal/ubuntu plucky/main s390x python3-platformdirs all 4.3.6-1 [16.8 kB] 715s Get:220 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-fs all 2.4.16-6 [90.7 kB] 715s Get:221 http://ftpmaster.internal/ubuntu plucky/main s390x python3-lxml s390x 5.3.1-1 [1773 kB] 715s Get:222 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-lz4 s390x 4.4.0+dfsg-1 [27.0 kB] 715s Get:223 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-scipy s390x 1.14.1-4ubuntu1 [21.2 MB] 716s Get:224 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-mpmath all 1.3.0-1 [425 kB] 716s Get:225 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sympy all 1.13.3-1 [4228 kB] 716s Get:226 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-ufolib2 all 0.17.0+dfsg1-1 [33.5 kB] 716s Get:227 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-unicodedata2 s390x 15.1.0+ds-1build2 [362 kB] 716s Get:228 http://ftpmaster.internal/ubuntu plucky/universe s390x unicode-data all 15.1.0-1 [8878 kB] 717s Get:229 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-fonttools s390x 4.55.3-2 [1723 kB] 717s Get:230 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-h5py-serial s390x 3.12.1-1 [1669 kB] 717s Get:231 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-h5py all 3.12.1-1 [7970 B] 717s Get:232 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-parso all 0.8.4-1 [67.6 kB] 717s Get:233 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-typeshed all 0.0~git20241223.ea91db2-1 [1548 kB] 717s Get:234 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-jedi all 0.19.1+ds1-1 [693 kB] 717s Get:235 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-matplotlib-inline all 0.1.6-2 [8784 B] 717s Get:236 http://ftpmaster.internal/ubuntu plucky/main s390x python3-wcwidth all 0.2.13+dfsg1-1 [26.3 kB] 717s Get:237 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-prompt-toolkit all 3.0.50-1 [257 kB] 717s Get:238 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pure-eval all 0.2.3-1 [11.4 kB] 717s Get:239 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-stack-data all 0.6.3-1 [22.0 kB] 717s Get:240 http://ftpmaster.internal/ubuntu plucky/main s390x python3-ptyprocess all 0.7.0-6 [14.8 kB] 717s Get:241 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pexpect all 4.9-3 [48.1 kB] 717s Get:242 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-ipython all 8.30.0-2 [569 kB] 717s Get:243 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-jupyter-core all 5.7.2-5 [28.1 kB] 717s Get:244 http://ftpmaster.internal/ubuntu plucky/main s390x python3-psutil s390x 5.9.8-2build3 [195 kB] 717s Get:245 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tornado s390x 6.4.2-1 [299 kB] 717s Get:246 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-zmq s390x 26.2.1-1 [229 kB] 717s Get:247 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-jupyter-client all 8.6.3-2 [78.5 kB] 717s Get:248 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-nest-asyncio all 1.5.4-1 [6256 B] 717s Get:249 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 717s Get:250 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-ipykernel all 6.29.5-2 [82.7 kB] 717s Get:251 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-kiwisolver s390x 1.4.7-3 [65.6 kB] 717s Get:252 http://ftpmaster.internal/ubuntu plucky/main s390x libopenjp2-7 s390x 2.5.0-2ubuntu3 [208 kB] 717s Get:253 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pil s390x 11.1.0-5 [527 kB] 717s Get:254 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-tk s390x 3.12.9-1 [117 kB] 717s Get:255 http://ftpmaster.internal/ubuntu plucky/main s390x python3.13-tk s390x 3.13.2-1 [108 kB] 717s Get:256 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tk s390x 3.13.1-1 [9770 B] 717s Get:257 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pil.imagetk s390x 11.1.0-5 [9766 B] 717s Get:258 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-matplotlib s390x 3.8.3-3ubuntu2 [4657 kB] 717s Get:259 http://ftpmaster.internal/ubuntu plucky/main s390x libopengl0 s390x 1.7.0-1build1 [48.0 kB] 717s Get:260 http://ftpmaster.internal/ubuntu plucky/main s390x libglu1-mesa s390x 9.0.2-1.1build1 [176 kB] 717s Get:261 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-opengl all 3.1.7+dfsg-1 [612 kB] 717s Get:262 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.sip s390x 12.17.0-1 [69.3 kB] 717s Get:263 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5 s390x 5.15.11+dfsg-1build2 [2878 kB] 717s Get:264 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.qtchart s390x 5.15.7+dfsg-1 [153 kB] 717s Get:265 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.qtmultimedia s390x 5.15.11+dfsg-1build2 [241 kB] 717s Get:266 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.qtopengl s390x 5.15.11+dfsg-1build2 [140 kB] 717s Get:267 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.qtpositioning s390x 5.15.11+dfsg-1build2 [163 kB] 717s Get:268 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.qtquick s390x 5.15.11+dfsg-1build2 [425 kB] 717s Get:269 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.qtremoteobjects s390x 5.15.11+dfsg-1build2 [34.5 kB] 717s Get:270 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.qtsensors s390x 5.15.11+dfsg-1build2 [58.4 kB] 717s Get:271 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.qtserialport s390x 5.15.11+dfsg-1build2 [29.6 kB] 717s Get:272 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.qtsql s390x 5.15.11+dfsg-1build2 [95.9 kB] 717s Get:273 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.qtsvg s390x 5.15.11+dfsg-1build2 [31.1 kB] 718s Get:274 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.qttexttospeech s390x 5.15.11+dfsg-1build2 [18.8 kB] 718s Get:275 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.qtwebchannel s390x 5.15.11+dfsg-1build2 [15.9 kB] 718s Get:276 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.qtwebkit s390x 5.15.11+dfsg-1build2 [117 kB] 718s Get:277 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.qtwebsockets s390x 5.15.11+dfsg-1build2 [28.2 kB] 718s Get:278 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.qtxmlpatterns s390x 5.15.11+dfsg-1build2 [47.1 kB] 718s Get:279 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-qtpy all 2.4.2-4 [57.3 kB] 718s Get:280 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-qtconsole all 5.6.1-4 [84.7 kB] 718s Get:281 http://ftpmaster.internal/ubuntu plucky/main s390x x11-xkb-utils s390x 7.7+9 [169 kB] 718s Get:282 http://ftpmaster.internal/ubuntu plucky/main s390x xserver-common all 2:21.1.14-2ubuntu1 [33.7 kB] 718s Get:283 http://ftpmaster.internal/ubuntu plucky/universe s390x xvfb s390x 2:21.1.14-2ubuntu1 [941 kB] 718s Get:284 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-mathjax all 2.7.9+dfsg-1 [5665 kB] 718s Get:285 http://ftpmaster.internal/ubuntu plucky/universe s390x mesa-utils s390x 9.0.0-2 [1051 kB] 718s Get:286 http://ftpmaster.internal/ubuntu plucky/universe s390x pymca-data all 5.9.3+dfsg-2 [4667 kB] 718s Get:287 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pymca5 s390x 5.9.3+dfsg-2 [6073 kB] 718s Get:288 http://ftpmaster.internal/ubuntu plucky/universe s390x pymca all 5.9.3+dfsg-2 [141 kB] 719s Get:289 http://ftpmaster.internal/ubuntu plucky/universe s390x pymca-doc all 5.9.3+dfsg-2 [2655 kB] 719s Preconfiguring packages ... 719s Fetched 217 MB in 12s (18.4 MB/s) 719s Selecting previously unselected package libpython3.12-minimal:s390x. 719s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55929 files and directories currently installed.) 719s Preparing to unpack .../000-libpython3.12-minimal_3.12.9-1_s390x.deb ... 719s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 720s Selecting previously unselected package python3.12-minimal. 720s Preparing to unpack .../001-python3.12-minimal_3.12.9-1_s390x.deb ... 720s Unpacking python3.12-minimal (3.12.9-1) ... 720s Selecting previously unselected package libdebuginfod-common. 720s Preparing to unpack .../002-libdebuginfod-common_0.192-4_all.deb ... 720s Unpacking libdebuginfod-common (0.192-4) ... 720s Selecting previously unselected package libgstreamer1.0-0:s390x. 720s Preparing to unpack .../003-libgstreamer1.0-0_1.25.50-1_s390x.deb ... 720s Unpacking libgstreamer1.0-0:s390x (1.25.50-1) ... 720s Selecting previously unselected package liborc-0.4-0t64:s390x. 720s Preparing to unpack .../004-liborc-0.4-0t64_1%3a0.4.41-1_s390x.deb ... 720s Unpacking liborc-0.4-0t64:s390x (1:0.4.41-1) ... 720s Selecting previously unselected package libgstreamer-plugins-base1.0-0:s390x. 720s Preparing to unpack .../005-libgstreamer-plugins-base1.0-0_1.25.50-1_s390x.deb ... 720s Unpacking libgstreamer-plugins-base1.0-0:s390x (1.25.50-1) ... 720s Selecting previously unselected package libhyphen0:s390x. 720s Preparing to unpack .../006-libhyphen0_2.8.8-7build3_s390x.deb ... 720s Unpacking libhyphen0:s390x (2.8.8-7build3) ... 720s Selecting previously unselected package libjpeg-turbo8:s390x. 720s Preparing to unpack .../007-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 720s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 720s Selecting previously unselected package libjpeg8:s390x. 720s Preparing to unpack .../008-libjpeg8_8c-2ubuntu11_s390x.deb ... 720s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 720s Selecting previously unselected package libdouble-conversion3:s390x. 720s Preparing to unpack .../009-libdouble-conversion3_3.3.0-1build1_s390x.deb ... 720s Unpacking libdouble-conversion3:s390x (3.3.0-1build1) ... 720s Selecting previously unselected package libpcre2-16-0:s390x. 720s Preparing to unpack .../010-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 720s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 720s Selecting previously unselected package libqt5core5t64:s390x. 720s Preparing to unpack .../011-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 720s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 720s Selecting previously unselected package libfreetype6:s390x. 720s Preparing to unpack .../012-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 720s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 720s Selecting previously unselected package fonts-dejavu-mono. 720s Preparing to unpack .../013-fonts-dejavu-mono_2.37-8_all.deb ... 720s Unpacking fonts-dejavu-mono (2.37-8) ... 720s Selecting previously unselected package fonts-dejavu-core. 720s Preparing to unpack .../014-fonts-dejavu-core_2.37-8_all.deb ... 720s Unpacking fonts-dejavu-core (2.37-8) ... 720s Selecting previously unselected package fontconfig-config. 720s Preparing to unpack .../015-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 720s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 720s Selecting previously unselected package libfontconfig1:s390x. 720s Preparing to unpack .../016-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 720s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 720s Selecting previously unselected package fontconfig. 720s Preparing to unpack .../017-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 720s Unpacking fontconfig (2.15.0-2ubuntu1) ... 720s Selecting previously unselected package libglvnd0:s390x. 720s Preparing to unpack .../018-libglvnd0_1.7.0-1build1_s390x.deb ... 720s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 720s Selecting previously unselected package libwayland-server0:s390x. 720s Preparing to unpack .../019-libwayland-server0_1.23.1-1_s390x.deb ... 720s Unpacking libwayland-server0:s390x (1.23.1-1) ... 720s Selecting previously unselected package libdrm-radeon1:s390x. 720s Preparing to unpack .../020-libdrm-radeon1_2.4.123-1_s390x.deb ... 720s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 720s Selecting previously unselected package libglapi-mesa:s390x. 720s Preparing to unpack .../021-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 720s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 720s Selecting previously unselected package libx11-xcb1:s390x. 720s Preparing to unpack .../022-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 720s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 720s Selecting previously unselected package libxcb-dri3-0:s390x. 720s Preparing to unpack .../023-libxcb-dri3-0_1.17.0-2_s390x.deb ... 720s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 720s Selecting previously unselected package libxcb-present0:s390x. 720s Preparing to unpack .../024-libxcb-present0_1.17.0-2_s390x.deb ... 720s Unpacking libxcb-present0:s390x (1.17.0-2) ... 720s Selecting previously unselected package libxcb-randr0:s390x. 720s Preparing to unpack .../025-libxcb-randr0_1.17.0-2_s390x.deb ... 720s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 720s Selecting previously unselected package libxcb-sync1:s390x. 720s Preparing to unpack .../026-libxcb-sync1_1.17.0-2_s390x.deb ... 720s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 720s Selecting previously unselected package libxcb-xfixes0:s390x. 720s Preparing to unpack .../027-libxcb-xfixes0_1.17.0-2_s390x.deb ... 720s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 720s Selecting previously unselected package libxshmfence1:s390x. 720s Preparing to unpack .../028-libxshmfence1_1.3-1build5_s390x.deb ... 720s Unpacking libxshmfence1:s390x (1.3-1build5) ... 720s Selecting previously unselected package mesa-libgallium:s390x. 720s Preparing to unpack .../029-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 720s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 720s Selecting previously unselected package libgbm1:s390x. 720s Preparing to unpack .../030-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 720s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 720s Selecting previously unselected package libwayland-client0:s390x. 720s Preparing to unpack .../031-libwayland-client0_1.23.1-1_s390x.deb ... 720s Unpacking libwayland-client0:s390x (1.23.1-1) ... 720s Selecting previously unselected package libxcb-shm0:s390x. 720s Preparing to unpack .../032-libxcb-shm0_1.17.0-2_s390x.deb ... 720s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 720s Selecting previously unselected package libegl-mesa0:s390x. 720s Preparing to unpack .../033-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 720s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 720s Selecting previously unselected package libegl1:s390x. 720s Preparing to unpack .../034-libegl1_1.7.0-1build1_s390x.deb ... 720s Unpacking libegl1:s390x (1.7.0-1build1) ... 720s Selecting previously unselected package libxcb-glx0:s390x. 720s Preparing to unpack .../035-libxcb-glx0_1.17.0-2_s390x.deb ... 720s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 720s Selecting previously unselected package libxxf86vm1:s390x. 720s Preparing to unpack .../036-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 720s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 720s Selecting previously unselected package libvulkan1:s390x. 720s Preparing to unpack .../037-libvulkan1_1.4.304.0-1_s390x.deb ... 720s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 720s Selecting previously unselected package libgl1-mesa-dri:s390x. 720s Preparing to unpack .../038-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 720s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 720s Selecting previously unselected package libglx-mesa0:s390x. 720s Preparing to unpack .../039-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 720s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 720s Selecting previously unselected package libglx0:s390x. 720s Preparing to unpack .../040-libglx0_1.7.0-1build1_s390x.deb ... 720s Unpacking libglx0:s390x (1.7.0-1build1) ... 720s Selecting previously unselected package libgl1:s390x. 720s Preparing to unpack .../041-libgl1_1.7.0-1build1_s390x.deb ... 720s Unpacking libgl1:s390x (1.7.0-1build1) ... 720s Selecting previously unselected package libgraphite2-3:s390x. 720s Preparing to unpack .../042-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 720s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 720s Selecting previously unselected package libharfbuzz0b:s390x. 720s Preparing to unpack .../043-libharfbuzz0b_10.2.0-1_s390x.deb ... 720s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 720s Selecting previously unselected package x11-common. 720s Preparing to unpack .../044-x11-common_1%3a7.7+23ubuntu3_all.deb ... 720s Unpacking x11-common (1:7.7+23ubuntu3) ... 720s Selecting previously unselected package libice6:s390x. 720s Preparing to unpack .../045-libice6_2%3a1.1.1-1_s390x.deb ... 720s Unpacking libice6:s390x (2:1.1.1-1) ... 720s Selecting previously unselected package libmtdev1t64:s390x. 720s Preparing to unpack .../046-libmtdev1t64_1.1.7-1_s390x.deb ... 720s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 720s Selecting previously unselected package libwacom-common. 720s Preparing to unpack .../047-libwacom-common_2.14.0-1_all.deb ... 720s Unpacking libwacom-common (2.14.0-1) ... 720s Selecting previously unselected package libwacom9:s390x. 720s Preparing to unpack .../048-libwacom9_2.14.0-1_s390x.deb ... 720s Unpacking libwacom9:s390x (2.14.0-1) ... 720s Selecting previously unselected package libinput-bin. 720s Preparing to unpack .../049-libinput-bin_1.27.1-1_s390x.deb ... 720s Unpacking libinput-bin (1.27.1-1) ... 720s Selecting previously unselected package libinput10:s390x. 720s Preparing to unpack .../050-libinput10_1.27.1-1_s390x.deb ... 720s Unpacking libinput10:s390x (1.27.1-1) ... 720s Selecting previously unselected package libmd4c0:s390x. 720s Preparing to unpack .../051-libmd4c0_0.5.2-2_s390x.deb ... 720s Unpacking libmd4c0:s390x (0.5.2-2) ... 720s Selecting previously unselected package libqt5dbus5t64:s390x. 720s Preparing to unpack .../052-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 720s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 720s Selecting previously unselected package libqt5network5t64:s390x. 720s Preparing to unpack .../053-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 720s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 720s Selecting previously unselected package libsm6:s390x. 720s Preparing to unpack .../054-libsm6_2%3a1.2.4-1_s390x.deb ... 720s Unpacking libsm6:s390x (2:1.2.4-1) ... 720s Selecting previously unselected package libxcb-icccm4:s390x. 721s Preparing to unpack .../055-libxcb-icccm4_0.4.2-1_s390x.deb ... 721s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 721s Selecting previously unselected package libxcb-util1:s390x. 721s Preparing to unpack .../056-libxcb-util1_0.4.1-1_s390x.deb ... 721s Unpacking libxcb-util1:s390x (0.4.1-1) ... 721s Selecting previously unselected package libxcb-image0:s390x. 721s Preparing to unpack .../057-libxcb-image0_0.4.0-2build1_s390x.deb ... 721s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 721s Selecting previously unselected package libxcb-keysyms1:s390x. 721s Preparing to unpack .../058-libxcb-keysyms1_0.4.1-1_s390x.deb ... 721s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 721s Selecting previously unselected package libxcb-render0:s390x. 721s Preparing to unpack .../059-libxcb-render0_1.17.0-2_s390x.deb ... 721s Unpacking libxcb-render0:s390x (1.17.0-2) ... 721s Selecting previously unselected package libxcb-render-util0:s390x. 721s Preparing to unpack .../060-libxcb-render-util0_0.3.10-1_s390x.deb ... 721s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 721s Selecting previously unselected package libxcb-shape0:s390x. 721s Preparing to unpack .../061-libxcb-shape0_1.17.0-2_s390x.deb ... 721s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 721s Selecting previously unselected package libxcb-xinerama0:s390x. 721s Preparing to unpack .../062-libxcb-xinerama0_1.17.0-2_s390x.deb ... 721s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 721s Selecting previously unselected package libxcb-xinput0:s390x. 721s Preparing to unpack .../063-libxcb-xinput0_1.17.0-2_s390x.deb ... 721s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 721s Selecting previously unselected package libxcb-xkb1:s390x. 721s Preparing to unpack .../064-libxcb-xkb1_1.17.0-2_s390x.deb ... 721s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 721s Selecting previously unselected package libxkbcommon-x11-0:s390x. 721s Preparing to unpack .../065-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 721s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 721s Selecting previously unselected package libxrender1:s390x. 721s Preparing to unpack .../066-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 721s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 721s Selecting previously unselected package libqt5gui5t64:s390x. 721s Preparing to unpack .../067-libqt5gui5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 721s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 721s Selecting previously unselected package libqt5positioning5:s390x. 721s Preparing to unpack .../068-libqt5positioning5_5.15.15+dfsg-3_s390x.deb ... 721s Unpacking libqt5positioning5:s390x (5.15.15+dfsg-3) ... 721s Selecting previously unselected package libavahi-common-data:s390x. 721s Preparing to unpack .../069-libavahi-common-data_0.8-14ubuntu1_s390x.deb ... 721s Unpacking libavahi-common-data:s390x (0.8-14ubuntu1) ... 721s Selecting previously unselected package libavahi-common3:s390x. 721s Preparing to unpack .../070-libavahi-common3_0.8-14ubuntu1_s390x.deb ... 721s Unpacking libavahi-common3:s390x (0.8-14ubuntu1) ... 721s Selecting previously unselected package libavahi-client3:s390x. 721s Preparing to unpack .../071-libavahi-client3_0.8-14ubuntu1_s390x.deb ... 721s Unpacking libavahi-client3:s390x (0.8-14ubuntu1) ... 721s Selecting previously unselected package libcups2t64:s390x. 721s Preparing to unpack .../072-libcups2t64_2.4.11-0ubuntu2_s390x.deb ... 721s Unpacking libcups2t64:s390x (2.4.11-0ubuntu2) ... 721s Selecting previously unselected package libqt5widgets5t64:s390x. 721s Preparing to unpack .../073-libqt5widgets5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 721s Unpacking libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 721s Selecting previously unselected package libqt5printsupport5t64:s390x. 721s Preparing to unpack .../074-libqt5printsupport5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 721s Unpacking libqt5printsupport5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 721s Selecting previously unselected package libqt5qml5:s390x. 721s Preparing to unpack .../075-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 721s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 721s Selecting previously unselected package libqt5qmlmodels5:s390x. 721s Preparing to unpack .../076-libqt5qmlmodels5_5.15.15+dfsg-3_s390x.deb ... 721s Unpacking libqt5qmlmodels5:s390x (5.15.15+dfsg-3) ... 721s Selecting previously unselected package libqt5quick5:s390x. 721s Preparing to unpack .../077-libqt5quick5_5.15.15+dfsg-3_s390x.deb ... 721s Unpacking libqt5quick5:s390x (5.15.15+dfsg-3) ... 721s Selecting previously unselected package libqt5sensors5:s390x. 721s Preparing to unpack .../078-libqt5sensors5_5.15.15-2_s390x.deb ... 721s Unpacking libqt5sensors5:s390x (5.15.15-2) ... 721s Selecting previously unselected package libqt5webchannel5:s390x. 721s Preparing to unpack .../079-libqt5webchannel5_5.15.15-2_s390x.deb ... 721s Unpacking libqt5webchannel5:s390x (5.15.15-2) ... 721s Selecting previously unselected package libsharpyuv0:s390x. 721s Preparing to unpack .../080-libsharpyuv0_1.5.0-0.1_s390x.deb ... 721s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 721s Selecting previously unselected package libwebp7:s390x. 721s Preparing to unpack .../081-libwebp7_1.5.0-0.1_s390x.deb ... 721s Unpacking libwebp7:s390x (1.5.0-0.1) ... 721s Selecting previously unselected package libwoff1:s390x. 721s Preparing to unpack .../082-libwoff1_1.0.2-2build1_s390x.deb ... 721s Unpacking libwoff1:s390x (1.0.2-2build1) ... 721s Selecting previously unselected package libxslt1.1:s390x. 721s Preparing to unpack .../083-libxslt1.1_1.1.39-0exp1ubuntu2_s390x.deb ... 721s Unpacking libxslt1.1:s390x (1.1.39-0exp1ubuntu2) ... 721s Selecting previously unselected package libqt5webkit5:s390x. 721s Preparing to unpack .../084-libqt5webkit5_5.212.0~alpha4-42_s390x.deb ... 721s Unpacking libqt5webkit5:s390x (5.212.0~alpha4-42) ... 721s Selecting previously unselected package libnsl2:s390x. 721s Preparing to unpack .../085-libnsl2_1.3.0-3build3_s390x.deb ... 721s Unpacking libnsl2:s390x (1.3.0-3build3) ... 721s Selecting previously unselected package libpython3.12-stdlib:s390x. 721s Preparing to unpack .../086-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 721s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 721s Selecting previously unselected package python3.12. 721s Preparing to unpack .../087-python3.12_3.12.9-1_s390x.deb ... 721s Unpacking python3.12 (3.12.9-1) ... 721s Selecting previously unselected package m4. 721s Preparing to unpack .../088-m4_1.4.19-5_s390x.deb ... 721s Unpacking m4 (1.4.19-5) ... 721s Selecting previously unselected package autoconf. 721s Preparing to unpack .../089-autoconf_2.72-3_all.deb ... 721s Unpacking autoconf (2.72-3) ... 721s Selecting previously unselected package autotools-dev. 721s Preparing to unpack .../090-autotools-dev_20220109.1_all.deb ... 721s Unpacking autotools-dev (20220109.1) ... 721s Selecting previously unselected package automake. 721s Preparing to unpack .../091-automake_1%3a1.17-3_all.deb ... 721s Unpacking automake (1:1.17-3) ... 721s Selecting previously unselected package autopoint. 721s Preparing to unpack .../092-autopoint_0.23.1-1_all.deb ... 721s Unpacking autopoint (0.23.1-1) ... 721s Selecting previously unselected package libtcl8.6:s390x. 721s Preparing to unpack .../093-libtcl8.6_8.6.16+dfsg-1_s390x.deb ... 721s Unpacking libtcl8.6:s390x (8.6.16+dfsg-1) ... 721s Selecting previously unselected package libxft2:s390x. 721s Preparing to unpack .../094-libxft2_2.3.6-1build1_s390x.deb ... 721s Unpacking libxft2:s390x (2.3.6-1build1) ... 721s Selecting previously unselected package libxss1:s390x. 721s Preparing to unpack .../095-libxss1_1%3a1.2.3-1build3_s390x.deb ... 721s Unpacking libxss1:s390x (1:1.2.3-1build3) ... 721s Selecting previously unselected package libtk8.6:s390x. 721s Preparing to unpack .../096-libtk8.6_8.6.16-1_s390x.deb ... 721s Unpacking libtk8.6:s390x (8.6.16-1) ... 721s Selecting previously unselected package tk8.6-blt2.5. 721s Preparing to unpack .../097-tk8.6-blt2.5_2.5.3+dfsg-7build1_s390x.deb ... 721s Unpacking tk8.6-blt2.5 (2.5.3+dfsg-7build1) ... 721s Selecting previously unselected package blt. 721s Preparing to unpack .../098-blt_2.5.3+dfsg-7build1_s390x.deb ... 721s Unpacking blt (2.5.3+dfsg-7build1) ... 721s Selecting previously unselected package libisl23:s390x. 721s Preparing to unpack .../099-libisl23_0.27-1_s390x.deb ... 721s Unpacking libisl23:s390x (0.27-1) ... 721s Selecting previously unselected package libmpc3:s390x. 721s Preparing to unpack .../100-libmpc3_1.3.1-1build2_s390x.deb ... 721s Unpacking libmpc3:s390x (1.3.1-1build2) ... 721s Selecting previously unselected package cpp-14-s390x-linux-gnu. 721s Preparing to unpack .../101-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 721s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 722s Selecting previously unselected package cpp-14. 722s Preparing to unpack .../102-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 722s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 722s Selecting previously unselected package cpp-s390x-linux-gnu. 722s Preparing to unpack .../103-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 722s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 722s Selecting previously unselected package cpp. 722s Preparing to unpack .../104-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 722s Unpacking cpp (4:14.2.0-1ubuntu1) ... 722s Selecting previously unselected package libdebhelper-perl. 722s Preparing to unpack .../105-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 722s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 722s Selecting previously unselected package libcc1-0:s390x. 722s Preparing to unpack .../106-libcc1-0_15-20250213-1ubuntu1_s390x.deb ... 722s Unpacking libcc1-0:s390x (15-20250213-1ubuntu1) ... 722s Selecting previously unselected package libgomp1:s390x. 722s Preparing to unpack .../107-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 722s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 722s Selecting previously unselected package libitm1:s390x. 722s Preparing to unpack .../108-libitm1_15-20250213-1ubuntu1_s390x.deb ... 722s Unpacking libitm1:s390x (15-20250213-1ubuntu1) ... 722s Selecting previously unselected package libasan8:s390x. 722s Preparing to unpack .../109-libasan8_15-20250213-1ubuntu1_s390x.deb ... 722s Unpacking libasan8:s390x (15-20250213-1ubuntu1) ... 722s Selecting previously unselected package libubsan1:s390x. 722s Preparing to unpack .../110-libubsan1_15-20250213-1ubuntu1_s390x.deb ... 722s Unpacking libubsan1:s390x (15-20250213-1ubuntu1) ... 722s Selecting previously unselected package libgcc-14-dev:s390x. 722s Preparing to unpack .../111-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 722s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 722s Selecting previously unselected package gcc-14-s390x-linux-gnu. 722s Preparing to unpack .../112-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 722s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 722s Selecting previously unselected package gcc-14. 722s Preparing to unpack .../113-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 722s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 722s Selecting previously unselected package gcc-s390x-linux-gnu. 722s Preparing to unpack .../114-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 722s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 722s Selecting previously unselected package gcc. 722s Preparing to unpack .../115-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 722s Unpacking gcc (4:14.2.0-1ubuntu1) ... 722s Selecting previously unselected package libtool. 722s Preparing to unpack .../116-libtool_2.5.4-3build1_all.deb ... 722s Unpacking libtool (2.5.4-3build1) ... 722s Selecting previously unselected package dh-autoreconf. 722s Preparing to unpack .../117-dh-autoreconf_20_all.deb ... 722s Unpacking dh-autoreconf (20) ... 722s Selecting previously unselected package libarchive-zip-perl. 722s Preparing to unpack .../118-libarchive-zip-perl_1.68-1_all.deb ... 722s Unpacking libarchive-zip-perl (1.68-1) ... 722s Selecting previously unselected package libfile-stripnondeterminism-perl. 722s Preparing to unpack .../119-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 722s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 722s Selecting previously unselected package dh-strip-nondeterminism. 722s Preparing to unpack .../120-dh-strip-nondeterminism_1.14.1-2_all.deb ... 722s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 722s Selecting previously unselected package debugedit. 722s Preparing to unpack .../121-debugedit_1%3a5.1-2_s390x.deb ... 722s Unpacking debugedit (1:5.1-2) ... 722s Selecting previously unselected package dwz. 722s Preparing to unpack .../122-dwz_0.15-1build6_s390x.deb ... 722s Unpacking dwz (0.15-1build6) ... 722s Selecting previously unselected package gettext. 722s Preparing to unpack .../123-gettext_0.23.1-1_s390x.deb ... 722s Unpacking gettext (0.23.1-1) ... 722s Selecting previously unselected package intltool-debian. 722s Preparing to unpack .../124-intltool-debian_0.35.0+20060710.6_all.deb ... 722s Unpacking intltool-debian (0.35.0+20060710.6) ... 722s Selecting previously unselected package po-debconf. 722s Preparing to unpack .../125-po-debconf_1.0.21+nmu1_all.deb ... 722s Unpacking po-debconf (1.0.21+nmu1) ... 722s Selecting previously unselected package debhelper. 722s Preparing to unpack .../126-debhelper_13.24.1ubuntu2_all.deb ... 722s Unpacking debhelper (13.24.1ubuntu2) ... 722s Selecting previously unselected package fonts-lyx. 722s Preparing to unpack .../127-fonts-lyx_2.4.3-1_all.deb ... 722s Unpacking fonts-lyx (2.4.3-1) ... 722s Selecting previously unselected package fonts-mathjax. 722s Preparing to unpack .../128-fonts-mathjax_2.7.9+dfsg-1_all.deb ... 722s Unpacking fonts-mathjax (2.7.9+dfsg-1) ... 722s Selecting previously unselected package libbabeltrace1:s390x. 722s Preparing to unpack .../129-libbabeltrace1_1.5.11-4build1_s390x.deb ... 722s Unpacking libbabeltrace1:s390x (1.5.11-4build1) ... 722s Selecting previously unselected package libdebuginfod1t64:s390x. 722s Preparing to unpack .../130-libdebuginfod1t64_0.192-4_s390x.deb ... 722s Unpacking libdebuginfod1t64:s390x (0.192-4) ... 722s Selecting previously unselected package libsource-highlight-common. 722s Preparing to unpack .../131-libsource-highlight-common_3.1.9-4.3build1_all.deb ... 722s Unpacking libsource-highlight-common (3.1.9-4.3build1) ... 722s Selecting previously unselected package libsource-highlight4t64:s390x. 722s Preparing to unpack .../132-libsource-highlight4t64_3.1.9-4.3build1_s390x.deb ... 722s Unpacking libsource-highlight4t64:s390x (3.1.9-4.3build1) ... 722s Selecting previously unselected package gdb. 722s Preparing to unpack .../133-gdb_16.2-1ubuntu1_s390x.deb ... 722s Unpacking gdb (16.2-1ubuntu1) ... 723s Selecting previously unselected package libaec0:s390x. 723s Preparing to unpack .../134-libaec0_1.1.3-1_s390x.deb ... 723s Unpacking libaec0:s390x (1.1.3-1) ... 723s Selecting previously unselected package libasyncns0:s390x. 723s Preparing to unpack .../135-libasyncns0_0.8-6build4_s390x.deb ... 723s Unpacking libasyncns0:s390x (0.8-6build4) ... 723s Selecting previously unselected package libblas3:s390x. 723s Preparing to unpack .../136-libblas3_3.12.1-2_s390x.deb ... 723s Unpacking libblas3:s390x (3.12.1-2) ... 723s Selecting previously unselected package libdecor-0-0:s390x. 723s Preparing to unpack .../137-libdecor-0-0_0.2.2-2_s390x.deb ... 723s Unpacking libdecor-0-0:s390x (0.2.2-2) ... 723s Selecting previously unselected package libdeflate0:s390x. 723s Preparing to unpack .../138-libdeflate0_1.23-1_s390x.deb ... 723s Unpacking libdeflate0:s390x (1.23-1) ... 723s Selecting previously unselected package libogg0:s390x. 723s Preparing to unpack .../139-libogg0_1.3.5-3build1_s390x.deb ... 723s Unpacking libogg0:s390x (1.3.5-3build1) ... 723s Selecting previously unselected package libflac12t64:s390x. 723s Preparing to unpack .../140-libflac12t64_1.4.3+ds-4_s390x.deb ... 723s Unpacking libflac12t64:s390x (1.4.3+ds-4) ... 723s Selecting previously unselected package libfontenc1:s390x. 723s Preparing to unpack .../141-libfontenc1_1%3a1.1.8-1build1_s390x.deb ... 723s Unpacking libfontenc1:s390x (1:1.1.8-1build1) ... 723s Selecting previously unselected package libgfortran5:s390x. 723s Preparing to unpack .../142-libgfortran5_15-20250213-1ubuntu1_s390x.deb ... 723s Unpacking libgfortran5:s390x (15-20250213-1ubuntu1) ... 723s Selecting previously unselected package libsz2:s390x. 723s Preparing to unpack .../143-libsz2_1.1.3-1_s390x.deb ... 723s Unpacking libsz2:s390x (1.1.3-1) ... 723s Selecting previously unselected package libhdf5-310:s390x. 723s Preparing to unpack .../144-libhdf5-310_1.14.5+repack-3_s390x.deb ... 723s Unpacking libhdf5-310:s390x (1.14.5+repack-3) ... 723s Selecting previously unselected package libhdf5-hl-310:s390x. 723s Preparing to unpack .../145-libhdf5-hl-310_1.14.5+repack-3_s390x.deb ... 723s Unpacking libhdf5-hl-310:s390x (1.14.5+repack-3) ... 723s Selecting previously unselected package libimagequant0:s390x. 723s Preparing to unpack .../146-libimagequant0_2.18.0-1build1_s390x.deb ... 723s Unpacking libimagequant0:s390x (2.18.0-1build1) ... 723s Selecting previously unselected package libjs-jquery. 723s Preparing to unpack .../147-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 723s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 723s Selecting previously unselected package libjs-jquery-ui. 723s Preparing to unpack .../148-libjs-jquery-ui_1.13.2+dfsg-1_all.deb ... 723s Unpacking libjs-jquery-ui (1.13.2+dfsg-1) ... 723s Selecting previously unselected package libjs-underscore. 723s Preparing to unpack .../149-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ... 723s Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 723s Selecting previously unselected package libjs-sphinxdoc. 723s Preparing to unpack .../150-libjs-sphinxdoc_8.1.3-5_all.deb ... 723s Unpacking libjs-sphinxdoc (8.1.3-5) ... 723s Selecting previously unselected package liblapack3:s390x. 723s Preparing to unpack .../151-liblapack3_3.12.1-2_s390x.deb ... 723s Unpacking liblapack3:s390x (3.12.1-2) ... 723s Selecting previously unselected package liblbfgsb0:s390x. 723s Preparing to unpack .../152-liblbfgsb0_3.0+dfsg.4-1build1_s390x.deb ... 723s Unpacking liblbfgsb0:s390x (3.0+dfsg.4-1build1) ... 723s Selecting previously unselected package liblcms2-2:s390x. 723s Preparing to unpack .../153-liblcms2-2_2.16-2_s390x.deb ... 723s Unpacking liblcms2-2:s390x (2.16-2) ... 723s Selecting previously unselected package liblzf1:s390x. 723s Preparing to unpack .../154-liblzf1_3.6-4_s390x.deb ... 723s Unpacking liblzf1:s390x (3.6-4) ... 723s Selecting previously unselected package libmp3lame0:s390x. 723s Preparing to unpack .../155-libmp3lame0_3.100-6build1_s390x.deb ... 723s Unpacking libmp3lame0:s390x (3.100-6build1) ... 723s Selecting previously unselected package libmpg123-0t64:s390x. 723s Preparing to unpack .../156-libmpg123-0t64_1.32.10-1_s390x.deb ... 723s Unpacking libmpg123-0t64:s390x (1.32.10-1) ... 723s Selecting previously unselected package libnorm1t64:s390x. 723s Preparing to unpack .../157-libnorm1t64_1.5.9+dfsg-3.1build1_s390x.deb ... 723s Unpacking libnorm1t64:s390x (1.5.9+dfsg-3.1build1) ... 723s Selecting previously unselected package libopus0:s390x. 723s Preparing to unpack .../158-libopus0_1.5.2-2_s390x.deb ... 723s Unpacking libopus0:s390x (1.5.2-2) ... 723s Selecting previously unselected package libpgm-5.3-0t64:s390x. 723s Preparing to unpack .../159-libpgm-5.3-0t64_5.3.128~dfsg-2.1build1_s390x.deb ... 723s Unpacking libpgm-5.3-0t64:s390x (5.3.128~dfsg-2.1build1) ... 723s Selecting previously unselected package libpixman-1-0:s390x. 723s Preparing to unpack .../160-libpixman-1-0_0.44.0-3_s390x.deb ... 723s Unpacking libpixman-1-0:s390x (0.44.0-3) ... 723s Selecting previously unselected package libvorbis0a:s390x. 723s Preparing to unpack .../161-libvorbis0a_1.3.7-2_s390x.deb ... 723s Unpacking libvorbis0a:s390x (1.3.7-2) ... 723s Selecting previously unselected package libvorbisenc2:s390x. 723s Preparing to unpack .../162-libvorbisenc2_1.3.7-2_s390x.deb ... 723s Unpacking libvorbisenc2:s390x (1.3.7-2) ... 723s Selecting previously unselected package libsndfile1:s390x. 723s Preparing to unpack .../163-libsndfile1_1.2.2-2_s390x.deb ... 723s Unpacking libsndfile1:s390x (1.2.2-2) ... 723s Selecting previously unselected package libpulse0:s390x. 723s Preparing to unpack .../164-libpulse0_1%3a17.0+dfsg1-2ubuntu1_s390x.deb ... 723s Unpacking libpulse0:s390x (1:17.0+dfsg1-2ubuntu1) ... 723s Selecting previously unselected package libqhull-r8.0:s390x. 723s Preparing to unpack .../165-libqhull-r8.0_2020.2-6build1_s390x.deb ... 723s Unpacking libqhull-r8.0:s390x (2020.2-6build1) ... 723s Selecting previously unselected package libqt5charts5:s390x. 723s Preparing to unpack .../166-libqt5charts5_5.15.15-2_s390x.deb ... 723s Unpacking libqt5charts5:s390x (5.15.15-2) ... 723s Selecting previously unselected package libqt5xml5t64:s390x. 723s Preparing to unpack .../167-libqt5xml5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 723s Unpacking libqt5xml5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 723s Selecting previously unselected package libqt5designer5:s390x. 723s Preparing to unpack .../168-libqt5designer5_5.15.15-6_s390x.deb ... 723s Unpacking libqt5designer5:s390x (5.15.15-6) ... 723s Selecting previously unselected package libqt5sql5t64:s390x. 723s Preparing to unpack .../169-libqt5sql5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 723s Unpacking libqt5sql5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 723s Selecting previously unselected package libqt5help5:s390x. 723s Preparing to unpack .../170-libqt5help5_5.15.15-6_s390x.deb ... 723s Unpacking libqt5help5:s390x (5.15.15-6) ... 723s Selecting previously unselected package libqt5positioningquick5:s390x. 723s Preparing to unpack .../171-libqt5positioningquick5_5.15.15+dfsg-3_s390x.deb ... 723s Unpacking libqt5positioningquick5:s390x (5.15.15+dfsg-3) ... 723s Selecting previously unselected package libqt5location5:s390x. 723s Preparing to unpack .../172-libqt5location5_5.15.15+dfsg-3_s390x.deb ... 723s Unpacking libqt5location5:s390x (5.15.15+dfsg-3) ... 723s Selecting previously unselected package libqt5multimedia5:s390x. 723s Preparing to unpack .../173-libqt5multimedia5_5.15.15-2_s390x.deb ... 723s Unpacking libqt5multimedia5:s390x (5.15.15-2) ... 723s Selecting previously unselected package libqt5multimediawidgets5:s390x. 723s Preparing to unpack .../174-libqt5multimediawidgets5_5.15.15-2_s390x.deb ... 723s Unpacking libqt5multimediawidgets5:s390x (5.15.15-2) ... 723s Selecting previously unselected package libqt5opengl5t64:s390x. 723s Preparing to unpack .../175-libqt5opengl5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 723s Unpacking libqt5opengl5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 723s Selecting previously unselected package libqt5quickwidgets5:s390x. 723s Preparing to unpack .../176-libqt5quickwidgets5_5.15.15+dfsg-3_s390x.deb ... 723s Unpacking libqt5quickwidgets5:s390x (5.15.15+dfsg-3) ... 723s Selecting previously unselected package libqt5remoteobjects5:s390x. 723s Preparing to unpack .../177-libqt5remoteobjects5_5.15.15-2_s390x.deb ... 723s Unpacking libqt5remoteobjects5:s390x (5.15.15-2) ... 723s Selecting previously unselected package libqt5serialport5:s390x. 723s Preparing to unpack .../178-libqt5serialport5_5.15.15-2_s390x.deb ... 723s Unpacking libqt5serialport5:s390x (5.15.15-2) ... 723s Selecting previously unselected package libqt5svg5:s390x. 723s Preparing to unpack .../179-libqt5svg5_5.15.15-2_s390x.deb ... 723s Unpacking libqt5svg5:s390x (5.15.15-2) ... 723s Selecting previously unselected package libqt5test5t64:s390x. 723s Preparing to unpack .../180-libqt5test5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 723s Unpacking libqt5test5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 723s Selecting previously unselected package libqt5texttospeech5:s390x. 723s Preparing to unpack .../181-libqt5texttospeech5_5.15.15-2_s390x.deb ... 723s Unpacking libqt5texttospeech5:s390x (5.15.15-2) ... 723s Selecting previously unselected package libqt5websockets5:s390x. 723s Preparing to unpack .../182-libqt5websockets5_5.15.15-2_s390x.deb ... 723s Unpacking libqt5websockets5:s390x (5.15.15-2) ... 723s Selecting previously unselected package libqt5xmlpatterns5:s390x. 723s Preparing to unpack .../183-libqt5xmlpatterns5_5.15.15-2_s390x.deb ... 723s Unpacking libqt5xmlpatterns5:s390x (5.15.15-2) ... 723s Selecting previously unselected package libraqm0:s390x. 723s Preparing to unpack .../184-libraqm0_0.10.2-1_s390x.deb ... 723s Unpacking libraqm0:s390x (0.10.2-1) ... 723s Selecting previously unselected package libsodium23:s390x. 723s Preparing to unpack .../185-libsodium23_1.0.18-1build3_s390x.deb ... 723s Unpacking libsodium23:s390x (1.0.18-1build3) ... 723s Selecting previously unselected package libjbig0:s390x. 723s Preparing to unpack .../186-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 723s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 723s Selecting previously unselected package libtiff6:s390x. 723s Preparing to unpack .../187-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 723s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 723s Selecting previously unselected package libwayland-egl1:s390x. 723s Preparing to unpack .../188-libwayland-egl1_1.23.1-1_s390x.deb ... 723s Unpacking libwayland-egl1:s390x (1.23.1-1) ... 723s Selecting previously unselected package libwebpdemux2:s390x. 723s Preparing to unpack .../189-libwebpdemux2_1.5.0-0.1_s390x.deb ... 723s Unpacking libwebpdemux2:s390x (1.5.0-0.1) ... 723s Selecting previously unselected package libwebpmux3:s390x. 723s Preparing to unpack .../190-libwebpmux3_1.5.0-0.1_s390x.deb ... 723s Unpacking libwebpmux3:s390x (1.5.0-0.1) ... 723s Selecting previously unselected package libxt6t64:s390x. 723s Preparing to unpack .../191-libxt6t64_1%3a1.2.1-1.2build1_s390x.deb ... 723s Unpacking libxt6t64:s390x (1:1.2.1-1.2build1) ... 724s Selecting previously unselected package libxmu6:s390x. 724s Preparing to unpack .../192-libxmu6_2%3a1.1.3-3build2_s390x.deb ... 724s Unpacking libxmu6:s390x (2:1.1.3-3build2) ... 724s Selecting previously unselected package libxpm4:s390x. 724s Preparing to unpack .../193-libxpm4_1%3a3.5.17-1build2_s390x.deb ... 724s Unpacking libxpm4:s390x (1:3.5.17-1build2) ... 724s Selecting previously unselected package libxaw7:s390x. 724s Preparing to unpack .../194-libxaw7_2%3a1.0.16-1_s390x.deb ... 724s Unpacking libxaw7:s390x (2:1.0.16-1) ... 724s Selecting previously unselected package libxfont2:s390x. 724s Preparing to unpack .../195-libxfont2_1%3a2.0.6-1build1_s390x.deb ... 724s Unpacking libxfont2:s390x (1:2.0.6-1build1) ... 724s Selecting previously unselected package libxkbfile1:s390x. 724s Preparing to unpack .../196-libxkbfile1_1%3a1.1.0-1build4_s390x.deb ... 724s Unpacking libxkbfile1:s390x (1:1.1.0-1build4) ... 724s Selecting previously unselected package libxrandr2:s390x. 724s Preparing to unpack .../197-libxrandr2_2%3a1.5.4-1_s390x.deb ... 724s Unpacking libxrandr2:s390x (2:1.5.4-1) ... 724s Selecting previously unselected package libzmq5:s390x. 724s Preparing to unpack .../198-libzmq5_4.3.5-1build2_s390x.deb ... 724s Unpacking libzmq5:s390x (4.3.5-1build2) ... 724s Selecting previously unselected package libgles2:s390x. 724s Preparing to unpack .../199-libgles2_1.7.0-1build1_s390x.deb ... 724s Unpacking libgles2:s390x (1.7.0-1build1) ... 724s Selecting previously unselected package mesa-utils-bin:s390x. 724s Preparing to unpack .../200-mesa-utils-bin_9.0.0-2_s390x.deb ... 724s Unpacking mesa-utils-bin:s390x (9.0.0-2) ... 724s Selecting previously unselected package python-fisx-common. 724s Preparing to unpack .../201-python-fisx-common_1.3.1-1build4_all.deb ... 724s Unpacking python-fisx-common (1.3.1-1build4) ... 724s Selecting previously unselected package python-matplotlib-data. 724s Preparing to unpack .../202-python-matplotlib-data_3.8.3-3ubuntu2_all.deb ... 724s Unpacking python-matplotlib-data (3.8.3-3ubuntu2) ... 724s Selecting previously unselected package python3-asttokens. 724s Preparing to unpack .../203-python3-asttokens_3.0.0-1_all.deb ... 724s Unpacking python3-asttokens (3.0.0-1) ... 724s Selecting previously unselected package python3-brotli. 724s Preparing to unpack .../204-python3-brotli_1.1.0-2build3_s390x.deb ... 724s Unpacking python3-brotli (1.1.0-2build3) ... 724s Selecting previously unselected package python3-traitlets. 724s Preparing to unpack .../205-python3-traitlets_5.14.3+really5.14.3-1_all.deb ... 724s Unpacking python3-traitlets (5.14.3+really5.14.3-1) ... 724s Selecting previously unselected package python3-comm. 724s Preparing to unpack .../206-python3-comm_0.2.1-1_all.deb ... 724s Unpacking python3-comm (0.2.1-1) ... 724s Selecting previously unselected package python3-numpy. 724s Preparing to unpack .../207-python3-numpy_1%3a1.26.4+ds-13_s390x.deb ... 724s Unpacking python3-numpy (1:1.26.4+ds-13) ... 724s Selecting previously unselected package python3-contourpy. 724s Preparing to unpack .../208-python3-contourpy_1.3.1-1_s390x.deb ... 724s Unpacking python3-contourpy (1.3.1-1) ... 724s Selecting previously unselected package python3-coverage. 724s Preparing to unpack .../209-python3-coverage_7.4.4+dfsg1-0ubuntu3_s390x.deb ... 724s Unpacking python3-coverage (7.4.4+dfsg1-0ubuntu3) ... 724s Selecting previously unselected package python3-cycler. 724s Preparing to unpack .../210-python3-cycler_0.12.1-1_all.deb ... 724s Unpacking python3-cycler (0.12.1-1) ... 724s Selecting previously unselected package python3-dateutil. 724s Preparing to unpack .../211-python3-dateutil_2.9.0-3_all.deb ... 724s Unpacking python3-dateutil (2.9.0-3) ... 724s Selecting previously unselected package python3-debugpy. 724s Preparing to unpack .../212-python3-debugpy_1.8.8+ds-2ubuntu1_s390x.deb ... 724s Unpacking python3-debugpy (1.8.8+ds-2ubuntu1) ... 724s Selecting previously unselected package python3-decorator. 724s Preparing to unpack .../213-python3-decorator_5.1.1-5_all.deb ... 724s Unpacking python3-decorator (5.1.1-5) ... 724s Selecting previously unselected package python3-executing. 724s Preparing to unpack .../214-python3-executing_2.2.0-0.1_all.deb ... 724s Unpacking python3-executing (2.2.0-0.1) ... 724s Selecting previously unselected package python3-fisx. 724s Preparing to unpack .../215-python3-fisx_1.3.1-1build4_s390x.deb ... 724s Unpacking python3-fisx (1.3.1-1build4) ... 724s Selecting previously unselected package python3-pytz. 724s Preparing to unpack .../216-python3-pytz_2025.1-3_all.deb ... 724s Unpacking python3-pytz (2025.1-3) ... 724s Selecting previously unselected package python3-tz. 724s Preparing to unpack .../217-python3-tz_2025.1-3_all.deb ... 724s Unpacking python3-tz (2025.1-3) ... 724s Selecting previously unselected package python3-platformdirs. 724s Preparing to unpack .../218-python3-platformdirs_4.3.6-1_all.deb ... 724s Unpacking python3-platformdirs (4.3.6-1) ... 724s Selecting previously unselected package python3-fs. 724s Preparing to unpack .../219-python3-fs_2.4.16-6_all.deb ... 724s Unpacking python3-fs (2.4.16-6) ... 724s Selecting previously unselected package python3-lxml:s390x. 724s Preparing to unpack .../220-python3-lxml_5.3.1-1_s390x.deb ... 724s Unpacking python3-lxml:s390x (5.3.1-1) ... 724s Selecting previously unselected package python3-lz4. 724s Preparing to unpack .../221-python3-lz4_4.4.0+dfsg-1_s390x.deb ... 724s Unpacking python3-lz4 (4.4.0+dfsg-1) ... 724s Selecting previously unselected package python3-scipy. 724s Preparing to unpack .../222-python3-scipy_1.14.1-4ubuntu1_s390x.deb ... 724s Unpacking python3-scipy (1.14.1-4ubuntu1) ... 725s Selecting previously unselected package python3-mpmath. 725s Preparing to unpack .../223-python3-mpmath_1.3.0-1_all.deb ... 725s Unpacking python3-mpmath (1.3.0-1) ... 725s Selecting previously unselected package python3-sympy. 725s Preparing to unpack .../224-python3-sympy_1.13.3-1_all.deb ... 725s Unpacking python3-sympy (1.13.3-1) ... 725s Selecting previously unselected package python3-ufolib2. 725s Preparing to unpack .../225-python3-ufolib2_0.17.0+dfsg1-1_all.deb ... 725s Unpacking python3-ufolib2 (0.17.0+dfsg1-1) ... 725s Selecting previously unselected package python3-unicodedata2. 725s Preparing to unpack .../226-python3-unicodedata2_15.1.0+ds-1build2_s390x.deb ... 725s Unpacking python3-unicodedata2 (15.1.0+ds-1build2) ... 725s Selecting previously unselected package unicode-data. 725s Preparing to unpack .../227-unicode-data_15.1.0-1_all.deb ... 725s Unpacking unicode-data (15.1.0-1) ... 725s Selecting previously unselected package python3-fonttools. 725s Preparing to unpack .../228-python3-fonttools_4.55.3-2_s390x.deb ... 725s Unpacking python3-fonttools (4.55.3-2) ... 725s Selecting previously unselected package python3-h5py-serial. 725s Preparing to unpack .../229-python3-h5py-serial_3.12.1-1_s390x.deb ... 725s Unpacking python3-h5py-serial (3.12.1-1) ... 725s Selecting previously unselected package python3-h5py. 725s Preparing to unpack .../230-python3-h5py_3.12.1-1_all.deb ... 725s Unpacking python3-h5py (3.12.1-1) ... 725s Selecting previously unselected package python3-parso. 725s Preparing to unpack .../231-python3-parso_0.8.4-1_all.deb ... 725s Unpacking python3-parso (0.8.4-1) ... 725s Selecting previously unselected package python3-typeshed. 725s Preparing to unpack .../232-python3-typeshed_0.0~git20241223.ea91db2-1_all.deb ... 725s Unpacking python3-typeshed (0.0~git20241223.ea91db2-1) ... 726s Selecting previously unselected package python3-jedi. 726s Preparing to unpack .../233-python3-jedi_0.19.1+ds1-1_all.deb ... 726s Unpacking python3-jedi (0.19.1+ds1-1) ... 726s Selecting previously unselected package python3-matplotlib-inline. 726s Preparing to unpack .../234-python3-matplotlib-inline_0.1.6-2_all.deb ... 726s Unpacking python3-matplotlib-inline (0.1.6-2) ... 726s Selecting previously unselected package python3-wcwidth. 726s Preparing to unpack .../235-python3-wcwidth_0.2.13+dfsg1-1_all.deb ... 726s Unpacking python3-wcwidth (0.2.13+dfsg1-1) ... 726s Selecting previously unselected package python3-prompt-toolkit. 726s Preparing to unpack .../236-python3-prompt-toolkit_3.0.50-1_all.deb ... 726s Unpacking python3-prompt-toolkit (3.0.50-1) ... 726s Selecting previously unselected package python3-pure-eval. 726s Preparing to unpack .../237-python3-pure-eval_0.2.3-1_all.deb ... 726s Unpacking python3-pure-eval (0.2.3-1) ... 726s Selecting previously unselected package python3-stack-data. 726s Preparing to unpack .../238-python3-stack-data_0.6.3-1_all.deb ... 726s Unpacking python3-stack-data (0.6.3-1) ... 726s Selecting previously unselected package python3-ptyprocess. 726s Preparing to unpack .../239-python3-ptyprocess_0.7.0-6_all.deb ... 726s Unpacking python3-ptyprocess (0.7.0-6) ... 726s Selecting previously unselected package python3-pexpect. 726s Preparing to unpack .../240-python3-pexpect_4.9-3_all.deb ... 726s Unpacking python3-pexpect (4.9-3) ... 726s Selecting previously unselected package python3-ipython. 726s Preparing to unpack .../241-python3-ipython_8.30.0-2_all.deb ... 726s Unpacking python3-ipython (8.30.0-2) ... 726s Selecting previously unselected package python3-jupyter-core. 726s Preparing to unpack .../242-python3-jupyter-core_5.7.2-5_all.deb ... 726s Unpacking python3-jupyter-core (5.7.2-5) ... 726s Selecting previously unselected package python3-psutil. 726s Preparing to unpack .../243-python3-psutil_5.9.8-2build3_s390x.deb ... 726s Unpacking python3-psutil (5.9.8-2build3) ... 726s Selecting previously unselected package python3-tornado. 726s Preparing to unpack .../244-python3-tornado_6.4.2-1_s390x.deb ... 726s Unpacking python3-tornado (6.4.2-1) ... 726s Selecting previously unselected package python3-zmq. 726s Preparing to unpack .../245-python3-zmq_26.2.1-1_s390x.deb ... 726s Unpacking python3-zmq (26.2.1-1) ... 726s Selecting previously unselected package python3-jupyter-client. 726s Preparing to unpack .../246-python3-jupyter-client_8.6.3-2_all.deb ... 726s Unpacking python3-jupyter-client (8.6.3-2) ... 726s Selecting previously unselected package python3-nest-asyncio. 726s Preparing to unpack .../247-python3-nest-asyncio_1.5.4-1_all.deb ... 726s Unpacking python3-nest-asyncio (1.5.4-1) ... 726s Selecting previously unselected package python3-packaging. 726s Preparing to unpack .../248-python3-packaging_24.2-1_all.deb ... 726s Unpacking python3-packaging (24.2-1) ... 726s Selecting previously unselected package python3-ipykernel. 726s Preparing to unpack .../249-python3-ipykernel_6.29.5-2_all.deb ... 726s Unpacking python3-ipykernel (6.29.5-2) ... 726s Selecting previously unselected package python3-kiwisolver. 726s Preparing to unpack .../250-python3-kiwisolver_1.4.7-3_s390x.deb ... 726s Unpacking python3-kiwisolver (1.4.7-3) ... 726s Selecting previously unselected package libopenjp2-7:s390x. 726s Preparing to unpack .../251-libopenjp2-7_2.5.0-2ubuntu3_s390x.deb ... 726s Unpacking libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 726s Selecting previously unselected package python3-pil:s390x. 726s Preparing to unpack .../252-python3-pil_11.1.0-5_s390x.deb ... 726s Unpacking python3-pil:s390x (11.1.0-5) ... 726s Selecting previously unselected package python3.12-tk. 726s Preparing to unpack .../253-python3.12-tk_3.12.9-1_s390x.deb ... 726s Unpacking python3.12-tk (3.12.9-1) ... 726s Selecting previously unselected package python3.13-tk. 726s Preparing to unpack .../254-python3.13-tk_3.13.2-1_s390x.deb ... 726s Unpacking python3.13-tk (3.13.2-1) ... 726s Selecting previously unselected package python3-tk:s390x. 726s Preparing to unpack .../255-python3-tk_3.13.1-1_s390x.deb ... 726s Unpacking python3-tk:s390x (3.13.1-1) ... 726s Selecting previously unselected package python3-pil.imagetk:s390x. 726s Preparing to unpack .../256-python3-pil.imagetk_11.1.0-5_s390x.deb ... 726s Unpacking python3-pil.imagetk:s390x (11.1.0-5) ... 726s Selecting previously unselected package python3-matplotlib. 726s Preparing to unpack .../257-python3-matplotlib_3.8.3-3ubuntu2_s390x.deb ... 726s Unpacking python3-matplotlib (3.8.3-3ubuntu2) ... 726s Selecting previously unselected package libopengl0:s390x. 726s Preparing to unpack .../258-libopengl0_1.7.0-1build1_s390x.deb ... 726s Unpacking libopengl0:s390x (1.7.0-1build1) ... 726s Selecting previously unselected package libglu1-mesa:s390x. 726s Preparing to unpack .../259-libglu1-mesa_9.0.2-1.1build1_s390x.deb ... 726s Unpacking libglu1-mesa:s390x (9.0.2-1.1build1) ... 726s Selecting previously unselected package python3-opengl. 726s Preparing to unpack .../260-python3-opengl_3.1.7+dfsg-1_all.deb ... 726s Unpacking python3-opengl (3.1.7+dfsg-1) ... 726s Selecting previously unselected package python3-pyqt5.sip. 726s Preparing to unpack .../261-python3-pyqt5.sip_12.17.0-1_s390x.deb ... 726s Unpacking python3-pyqt5.sip (12.17.0-1) ... 726s Selecting previously unselected package python3-pyqt5. 726s Preparing to unpack .../262-python3-pyqt5_5.15.11+dfsg-1build2_s390x.deb ... 726s Unpacking python3-pyqt5 (5.15.11+dfsg-1build2) ... 726s Selecting previously unselected package python3-pyqt5.qtchart. 726s Preparing to unpack .../263-python3-pyqt5.qtchart_5.15.7+dfsg-1_s390x.deb ... 726s Unpacking python3-pyqt5.qtchart (5.15.7+dfsg-1) ... 726s Selecting previously unselected package python3-pyqt5.qtmultimedia. 726s Preparing to unpack .../264-python3-pyqt5.qtmultimedia_5.15.11+dfsg-1build2_s390x.deb ... 726s Unpacking python3-pyqt5.qtmultimedia (5.15.11+dfsg-1build2) ... 726s Selecting previously unselected package python3-pyqt5.qtopengl. 726s Preparing to unpack .../265-python3-pyqt5.qtopengl_5.15.11+dfsg-1build2_s390x.deb ... 726s Unpacking python3-pyqt5.qtopengl (5.15.11+dfsg-1build2) ... 726s Selecting previously unselected package python3-pyqt5.qtpositioning. 726s Preparing to unpack .../266-python3-pyqt5.qtpositioning_5.15.11+dfsg-1build2_s390x.deb ... 726s Unpacking python3-pyqt5.qtpositioning (5.15.11+dfsg-1build2) ... 726s Selecting previously unselected package python3-pyqt5.qtquick. 726s Preparing to unpack .../267-python3-pyqt5.qtquick_5.15.11+dfsg-1build2_s390x.deb ... 726s Unpacking python3-pyqt5.qtquick (5.15.11+dfsg-1build2) ... 727s Selecting previously unselected package python3-pyqt5.qtremoteobjects. 727s Preparing to unpack .../268-python3-pyqt5.qtremoteobjects_5.15.11+dfsg-1build2_s390x.deb ... 727s Unpacking python3-pyqt5.qtremoteobjects (5.15.11+dfsg-1build2) ... 727s Selecting previously unselected package python3-pyqt5.qtsensors. 727s Preparing to unpack .../269-python3-pyqt5.qtsensors_5.15.11+dfsg-1build2_s390x.deb ... 727s Unpacking python3-pyqt5.qtsensors (5.15.11+dfsg-1build2) ... 727s Selecting previously unselected package python3-pyqt5.qtserialport. 727s Preparing to unpack .../270-python3-pyqt5.qtserialport_5.15.11+dfsg-1build2_s390x.deb ... 727s Unpacking python3-pyqt5.qtserialport (5.15.11+dfsg-1build2) ... 727s Selecting previously unselected package python3-pyqt5.qtsql. 727s Preparing to unpack .../271-python3-pyqt5.qtsql_5.15.11+dfsg-1build2_s390x.deb ... 727s Unpacking python3-pyqt5.qtsql (5.15.11+dfsg-1build2) ... 727s Selecting previously unselected package python3-pyqt5.qtsvg. 727s Preparing to unpack .../272-python3-pyqt5.qtsvg_5.15.11+dfsg-1build2_s390x.deb ... 727s Unpacking python3-pyqt5.qtsvg (5.15.11+dfsg-1build2) ... 727s Selecting previously unselected package python3-pyqt5.qttexttospeech. 727s Preparing to unpack .../273-python3-pyqt5.qttexttospeech_5.15.11+dfsg-1build2_s390x.deb ... 727s Unpacking python3-pyqt5.qttexttospeech (5.15.11+dfsg-1build2) ... 727s Selecting previously unselected package python3-pyqt5.qtwebchannel. 727s Preparing to unpack .../274-python3-pyqt5.qtwebchannel_5.15.11+dfsg-1build2_s390x.deb ... 727s Unpacking python3-pyqt5.qtwebchannel (5.15.11+dfsg-1build2) ... 727s Selecting previously unselected package python3-pyqt5.qtwebkit. 727s Preparing to unpack .../275-python3-pyqt5.qtwebkit_5.15.11+dfsg-1build2_s390x.deb ... 727s Unpacking python3-pyqt5.qtwebkit (5.15.11+dfsg-1build2) ... 727s Selecting previously unselected package python3-pyqt5.qtwebsockets. 727s Preparing to unpack .../276-python3-pyqt5.qtwebsockets_5.15.11+dfsg-1build2_s390x.deb ... 727s Unpacking python3-pyqt5.qtwebsockets (5.15.11+dfsg-1build2) ... 727s Selecting previously unselected package python3-pyqt5.qtxmlpatterns. 727s Preparing to unpack .../277-python3-pyqt5.qtxmlpatterns_5.15.11+dfsg-1build2_s390x.deb ... 727s Unpacking python3-pyqt5.qtxmlpatterns (5.15.11+dfsg-1build2) ... 727s Selecting previously unselected package python3-qtpy. 727s Preparing to unpack .../278-python3-qtpy_2.4.2-4_all.deb ... 727s Unpacking python3-qtpy (2.4.2-4) ... 727s Selecting previously unselected package python3-qtconsole. 727s Preparing to unpack .../279-python3-qtconsole_5.6.1-4_all.deb ... 727s Unpacking python3-qtconsole (5.6.1-4) ... 727s Selecting previously unselected package x11-xkb-utils. 727s Preparing to unpack .../280-x11-xkb-utils_7.7+9_s390x.deb ... 727s Unpacking x11-xkb-utils (7.7+9) ... 727s Selecting previously unselected package xserver-common. 727s Preparing to unpack .../281-xserver-common_2%3a21.1.14-2ubuntu1_all.deb ... 727s Unpacking xserver-common (2:21.1.14-2ubuntu1) ... 727s Selecting previously unselected package xvfb. 727s Preparing to unpack .../282-xvfb_2%3a21.1.14-2ubuntu1_s390x.deb ... 727s Unpacking xvfb (2:21.1.14-2ubuntu1) ... 727s Selecting previously unselected package libjs-mathjax. 727s Preparing to unpack .../283-libjs-mathjax_2.7.9+dfsg-1_all.deb ... 727s Unpacking libjs-mathjax (2.7.9+dfsg-1) ... 727s Selecting previously unselected package mesa-utils. 727s Preparing to unpack .../284-mesa-utils_9.0.0-2_s390x.deb ... 727s Unpacking mesa-utils (9.0.0-2) ... 727s Selecting previously unselected package pymca-data. 727s Preparing to unpack .../285-pymca-data_5.9.3+dfsg-2_all.deb ... 727s Unpacking pymca-data (5.9.3+dfsg-2) ... 727s Selecting previously unselected package python3-pymca5. 727s Preparing to unpack .../286-python3-pymca5_5.9.3+dfsg-2_s390x.deb ... 727s Unpacking python3-pymca5 (5.9.3+dfsg-2) ... 728s Selecting previously unselected package pymca. 728s Preparing to unpack .../287-pymca_5.9.3+dfsg-2_all.deb ... 728s Unpacking pymca (5.9.3+dfsg-2) ... 728s Selecting previously unselected package pymca-doc. 728s Preparing to unpack .../288-pymca-doc_5.9.3+dfsg-2_all.deb ... 728s Unpacking pymca-doc (5.9.3+dfsg-2) ... 728s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 728s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 728s Setting up liblcms2-2:s390x (2.16-2) ... 728s Setting up libpixman-1-0:s390x (0.44.0-3) ... 728s Setting up python3-tornado (6.4.2-1) ... 728s Setting up libnorm1t64:s390x (1.5.9+dfsg-3.1build1) ... 728s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 728s Setting up libwayland-server0:s390x (1.23.1-1) ... 728s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 728s Setting up python3-pure-eval (0.2.3-1) ... 728s Setting up libdouble-conversion3:s390x (3.3.0-1build1) ... 728s Setting up fonts-mathjax (2.7.9+dfsg-1) ... 728s Setting up libsodium23:s390x (1.0.18-1build3) ... 728s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 728s Setting up libogg0:s390x (1.3.5-3build1) ... 728s Setting up libxpm4:s390x (1:3.5.17-1build2) ... 728s Setting up libjs-mathjax (2.7.9+dfsg-1) ... 728s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 728s Setting up libwoff1:s390x (1.0.2-2build1) ... 728s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 728s Setting up libhyphen0:s390x (2.8.8-7build3) ... 728s Setting up libdebuginfod-common (0.192-4) ... 728s Setting up python3-parso (0.8.4-1) ... 729s Setting up python3-lz4 (4.4.0+dfsg-1) ... 729s Setting up libxcb-render0:s390x (1.17.0-2) ... 729s Setting up libarchive-zip-perl (1.68-1) ... 729s Setting up python3-asttokens (3.0.0-1) ... 729s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 729s Setting up libglvnd0:s390x (1.7.0-1build1) ... 729s Setting up python3-unicodedata2 (15.1.0+ds-1build2) ... 729s Setting up fonts-lyx (2.4.3-1) ... 729s Setting up libxcb-glx0:s390x (1.17.0-2) ... 729s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 729s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 729s Setting up libxcb-shape0:s390x (1.17.0-2) ... 729s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 729s Setting up x11-common (1:7.7+23ubuntu3) ... 729s Setting up libdeflate0:s390x (1.23-1) ... 729s Setting up m4 (1.4.19-5) ... 729s Setting up libqhull-r8.0:s390x (2020.2-6build1) ... 729s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 729s Setting up python3-pytz (2025.1-3) ... 729s Setting up libxcb-shm0:s390x (1.17.0-2) ... 729s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 729s Setting up libmpg123-0t64:s390x (1.32.10-1) ... 729s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 729s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 729s Setting up python-fisx-common (1.3.1-1build4) ... 729s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 729s Setting up libaec0:s390x (1.1.3-1) ... 729s Setting up python3-platformdirs (4.3.6-1) ... 729s Setting up python3-psutil (5.9.8-2build3) ... 730s Setting up libsource-highlight-common (3.1.9-4.3build1) ... 730s Setting up libopengl0:s390x (1.7.0-1build1) ... 730s Setting up python3-tz (2025.1-3) ... 730s Setting up libxcb-util1:s390x (0.4.1-1) ... 730s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 730s Setting up liborc-0.4-0t64:s390x (1:0.4.41-1) ... 730s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 730s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 730s Setting up python3-fs (2.4.16-6) ... 730s Setting up libxcb-present0:s390x (1.17.0-2) ... 730s Setting up unicode-data (15.1.0-1) ... 730s Setting up libpgm-5.3-0t64:s390x (5.3.128~dfsg-2.1build1) ... 730s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 730s Setting up python3-decorator (5.1.1-5) ... 730s Setting up libqt5texttospeech5:s390x (5.15.15-2) ... 730s Setting up libfontenc1:s390x (1:1.1.8-1build1) ... 730s Setting up autotools-dev (20220109.1) ... 730s Setting up libblas3:s390x (3.12.1-2) ... 730s 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 730s Setting up python3-packaging (24.2-1) ... 730s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 730s Setting up libgles2:s390x (1.7.0-1build1) ... 730s Setting up python3-wcwidth (0.2.13+dfsg1-1) ... 731s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 731s Setting up python3-typeshed (0.0~git20241223.ea91db2-1) ... 731s Setting up libxcb-sync1:s390x (1.17.0-2) ... 731s Setting up python3-executing (2.2.0-0.1) ... 731s Setting up python3-nest-asyncio (1.5.4-1) ... 731s Setting up python3-brotli (1.1.0-2build3) ... 731s Setting up libavahi-common-data:s390x (0.8-14ubuntu1) ... 731s Setting up liblzf1:s390x (3.6-4) ... 731s Setting up libopus0:s390x (1.5.2-2) ... 731s Setting up python3-cycler (0.12.1-1) ... 731s Setting up libimagequant0:s390x (2.18.0-1build1) ... 731s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 731s Setting up fonts-dejavu-mono (2.37-8) ... 731s Setting up python3-kiwisolver (1.4.7-3) ... 731s Setting up libmpc3:s390x (1.3.1-1build2) ... 731s Setting up libvorbis0a:s390x (1.3.7-2) ... 731s Setting up libxrandr2:s390x (2:1.5.4-1) ... 731s Setting up libtcl8.6:s390x (8.6.16+dfsg-1) ... 731s Setting up autopoint (0.23.1-1) ... 731s Setting up fonts-dejavu-core (2.37-8) ... 731s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 731s Setting up libbabeltrace1:s390x (1.5.11-4build1) ... 731s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 731s Setting up libgfortran5:s390x (15-20250213-1ubuntu1) ... 731s Setting up libvulkan1:s390x (1.4.304.0-1) ... 731s Setting up autoconf (2.72-3) ... 731s Setting up libwebp7:s390x (1.5.0-0.1) ... 731s Setting up libubsan1:s390x (15-20250213-1ubuntu1) ... 731s Setting up python3-pyqt5.sip (12.17.0-1) ... 731s Setting up dwz (0.15-1build6) ... 731s Setting up libmtdev1t64:s390x (1.1.7-1) ... 731s Setting up libasyncns0:s390x (0.8-6build4) ... 731s Setting up libxshmfence1:s390x (1.3-1build5) ... 731s Setting up libxcb-randr0:s390x (1.17.0-2) ... 731s Setting up python3-traitlets (5.14.3+really5.14.3-1) ... 732s Setting up libasan8:s390x (15-20250213-1ubuntu1) ... 732s Setting up libnsl2:s390x (1.3.0-3build3) ... 732s Setting up libxslt1.1:s390x (1.1.39-0exp1ubuntu2) ... 732s Setting up pymca-data (5.9.3+dfsg-2) ... 732s Setting up libqt5sql5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 732s Setting up debugedit (1:5.1-2) ... 732s Setting up libmd4c0:s390x (0.5.2-2) ... 732s Setting up libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 732s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 732s Setting up python3-dateutil (2.9.0-3) ... 732s Setting up libglu1-mesa:s390x (9.0.2-1.1build1) ... 732s Setting up libflac12t64:s390x (1.4.3+ds-4) ... 732s Setting up libwayland-egl1:s390x (1.23.1-1) ... 732s Setting up libxss1:s390x (1:1.2.3-1build3) ... 732s Setting up libxkbfile1:s390x (1:1.1.0-1build4) ... 732s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 732s Setting up python3-mpmath (1.3.0-1) ... 733s Setting up libisl23:s390x (0.27-1) ... 733s Setting up python-matplotlib-data (3.8.3-3ubuntu2) ... 733s Setting up libwebpmux3:s390x (1.5.0-0.1) ... 733s Setting up libxfont2:s390x (1:2.0.6-1build1) ... 733s Setting up python3-stack-data (0.6.3-1) ... 733s Setting up libcc1-0:s390x (15-20250213-1ubuntu1) ... 733s Setting up python3-jupyter-core (5.7.2-5) ... 733s Setting up libgstreamer1.0-0:s390x (1.25.50-1) ... 733s Setcap worked! gst-ptp-helper is not suid! 733s Setting up libmp3lame0:s390x (3.100-6build1) ... 733s Setting up libsz2:s390x (1.1.3-1) ... 733s Setting up libitm1:s390x (15-20250213-1ubuntu1) ... 733s Setting up libvorbisenc2:s390x (1.3.7-2) ... 733s Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 733s Setting up python3-ptyprocess (0.7.0-6) ... 733s Setting up libwacom-common (2.14.0-1) ... 733s Setting up libwayland-client0:s390x (1.23.1-1) ... 733s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 733s Setting up automake (1:1.17-3) ... 733s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 733s Setting up python3-prompt-toolkit (3.0.50-1) ... 734s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 734s Setting up python3-sympy (1.13.3-1) ... 745s Setting up python3.12-minimal (3.12.9-1) ... 745s Setting up libdebuginfod1t64:s390x (0.192-4) ... 745s Setting up libice6:s390x (2:1.1.1-1) ... 745s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 745s Setting up liblapack3:s390x (3.12.1-2) ... 745s 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 745s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 745s Setting up gettext (0.23.1-1) ... 745s Setting up libzmq5:s390x (4.3.5-1build2) ... 745s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 745s Setting up python3-jedi (0.19.1+ds1-1) ... 746s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 746s Setting up libwacom9:s390x (2.14.0-1) ... 746s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 746s Setting up libwebpdemux2:s390x (1.5.0-0.1) ... 746s Setting up python3.12 (3.12.9-1) ... 747s Setting up libqt5positioning5:s390x (5.15.15+dfsg-3) ... 747s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 747s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 747s Setting up libavahi-common3:s390x (0.8-14ubuntu1) ... 747s Setting up libqt5xml5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 747s Setting up python3-coverage (7.4.4+dfsg1-0ubuntu3) ... 747s Setting up libgstreamer-plugins-base1.0-0:s390x (1.25.50-1) ... 747s Setting up libsource-highlight4t64:s390x (3.1.9-4.3build1) ... 747s Setting up libqt5serialport5:s390x (5.15.15-2) ... 747s Setting up libqt5test5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 747s Setting up libinput-bin (1.27.1-1) ... 747s Setting up intltool-debian (0.35.0+20060710.6) ... 747s Setting up python3-matplotlib-inline (0.1.6-2) ... 747s Setting up python3-comm (0.2.1-1) ... 747s Setting up libqt5websockets5:s390x (5.15.15-2) ... 747s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 747s Setting up gdb (16.2-1ubuntu1) ... 747s Setting up libjs-jquery-ui (1.13.2+dfsg-1) ... 747s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 747s Setting up python3-pexpect (4.9-3) ... 747s Setting up python3-zmq (26.2.1-1) ... 748s Setting up libraqm0:s390x (0.10.2-1) ... 748s Setting up libqt5webchannel5:s390x (5.15.15-2) ... 748s Setting up python3-numpy (1:1.26.4+ds-13) ... 751s Setting up libjs-sphinxdoc (8.1.3-5) ... 751s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 751s Setting up pymca-doc (5.9.3+dfsg-2) ... 751s Setting up cpp-14 (14.2.0-17ubuntu1) ... 751s Setting up dh-strip-nondeterminism (1.14.1-2) ... 751s Setting up libhdf5-310:s390x (1.14.5+repack-3) ... 751s Setting up python3-lxml:s390x (5.3.1-1) ... 751s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 751s Setting up libegl1:s390x (1.7.0-1build1) ... 751s Setting up libdecor-0-0:s390x (0.2.2-2) ... 751s Setting up python3-jupyter-client (8.6.3-2) ... 751s Setting up python3-contourpy (1.3.1-1) ... 751s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 751s Setting up libsndfile1:s390x (1.2.2-2) ... 751s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 751s Setting up libqt5sensors5:s390x (5.15.15-2) ... 751s Setting up libsm6:s390x (2:1.2.4-1) ... 751s Setting up libavahi-client3:s390x (0.8-14ubuntu1) ... 751s Setting up liblbfgsb0:s390x (3.0+dfsg.4-1build1) ... 751s Setting up libinput10:s390x (1.27.1-1) ... 751s Setting up libhdf5-hl-310:s390x (1.14.5+repack-3) ... 751s Setting up fontconfig (2.15.0-2ubuntu1) ... 753s Regenerating fonts cache... done. 753s Setting up libxft2:s390x (2.3.6-1build1) ... 753s Setting up libqt5qmlmodels5:s390x (5.15.15+dfsg-3) ... 753s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 753s Setting up python3-scipy (1.14.1-4ubuntu1) ... 759s Setting up libglx0:s390x (1.7.0-1build1) ... 759s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 759s Setting up libpulse0:s390x (1:17.0+dfsg1-2ubuntu1) ... 759s Setting up libqt5xmlpatterns5:s390x (5.15.15-2) ... 759s Setting up libqt5remoteobjects5:s390x (5.15.15-2) ... 759s Setting up po-debconf (1.0.21+nmu1) ... 759s Setting up libtk8.6:s390x (8.6.16-1) ... 759s Setting up python3.12-tk (3.12.9-1) ... 759s Setting up python3-h5py-serial (3.12.1-1) ... 760s Setting up python3-debugpy (1.8.8+ds-2ubuntu1) ... 761s Setting up python3.13-tk (3.13.2-1) ... 761s Setting up python3-fisx (1.3.1-1build4) ... 761s Setting up python3-pil:s390x (11.1.0-5) ... 761s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 761s Setting up libgl1:s390x (1.7.0-1build1) ... 761s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 761s Setting up mesa-utils-bin:s390x (9.0.0-2) ... 761s Setting up python3-ipython (8.30.0-2) ... 762s Setting up libxt6t64:s390x (1:1.2.1-1.2build1) ... 762s Setting up python3-ipykernel (6.29.5-2) ... 762s Setting up python3-h5py (3.12.1-1) ... 763s Setting up cpp (4:14.2.0-1ubuntu1) ... 763s Setting up libcups2t64:s390x (2.4.11-0ubuntu2) ... 763s Setting up tk8.6-blt2.5 (2.5.3+dfsg-7build1) ... 763s Setting up libxmu6:s390x (2:1.1.3-3build2) ... 763s Setting up blt (2.5.3+dfsg-7build1) ... 763s Setting up python3-tk:s390x (3.13.1-1) ... 763s Setting up libxaw7:s390x (2:1.0.16-1) ... 763s Setting up python3-opengl (3.1.7+dfsg-1) ... 763s /usr/lib/python3/dist-packages/OpenGL/GL/AMD/vertex_shader_tessellator.py:1: SyntaxWarning: invalid escape sequence '\ ' 763s '''OpenGL extension AMD.vertex_shader_tessellator 764s /usr/lib/python3/dist-packages/OpenGL/GL/AMD/vertex_shader_tessellator.py:1: SyntaxWarning: invalid escape sequence '\ ' 764s '''OpenGL extension AMD.vertex_shader_tessellator 765s Setting up gcc-14 (14.2.0-17ubuntu1) ... 765s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 765s Setting up mesa-utils (9.0.0-2) ... 765s Setting up python3-pil.imagetk:s390x (11.1.0-5) ... 765s Setting up libqt5quick5:s390x (5.15.15+dfsg-3) ... 765s Setting up libqt5positioningquick5:s390x (5.15.15+dfsg-3) ... 765s Setting up libqt5location5:s390x (5.15.15+dfsg-3) ... 765s Setting up libtool (2.5.4-3build1) ... 765s Setting up libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 765s Setting up x11-xkb-utils (7.7+9) ... 765s Setting up libqt5svg5:s390x (5.15.15-2) ... 765s Setting up libqt5help5:s390x (5.15.15-6) ... 765s Setting up libqt5charts5:s390x (5.15.15-2) ... 765s Setting up gcc (4:14.2.0-1ubuntu1) ... 765s Setting up libqt5multimedia5:s390x (5.15.15-2) ... 765s Setting up libqt5quickwidgets5:s390x (5.15.15+dfsg-3) ... 765s Setting up dh-autoreconf (20) ... 765s Setting up libqt5multimediawidgets5:s390x (5.15.15-2) ... 765s Setting up libqt5opengl5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 765s Setting up xserver-common (2:21.1.14-2ubuntu1) ... 765s Setting up libqt5printsupport5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 765s Setting up libqt5designer5:s390x (5.15.15-6) ... 765s Setting up xvfb (2:21.1.14-2ubuntu1) ... 765s Setting up debhelper (13.24.1ubuntu2) ... 765s Setting up libqt5webkit5:s390x (5.212.0~alpha4-42) ... 765s Setting up python3-pyqt5 (5.15.11+dfsg-1build2) ... 765s Setting up python3-pyqt5.qtpositioning (5.15.11+dfsg-1build2) ... 765s Setting up python3-pyqt5.qtsvg (5.15.11+dfsg-1build2) ... 765s Setting up python3-pyqt5.qttexttospeech (5.15.11+dfsg-1build2) ... 765s Setting up python3-pyqt5.qtsql (5.15.11+dfsg-1build2) ... 765s Setting up python3-pyqt5.qtopengl (5.15.11+dfsg-1build2) ... 765s Setting up python3-pyqt5.qtmultimedia (5.15.11+dfsg-1build2) ... 765s Setting up python3-pyqt5.qtchart (5.15.7+dfsg-1) ... 765s Setting up python3-pyqt5.qtxmlpatterns (5.15.11+dfsg-1build2) ... 765s Setting up python3-pyqt5.qtsensors (5.15.11+dfsg-1build2) ... 765s Setting up python3-pyqt5.qtwebsockets (5.15.11+dfsg-1build2) ... 765s Setting up python3-pyqt5.qtserialport (5.15.11+dfsg-1build2) ... 765s Setting up python3-pyqt5.qtremoteobjects (5.15.11+dfsg-1build2) ... 765s Setting up python3-pyqt5.qtwebchannel (5.15.11+dfsg-1build2) ... 765s Setting up python3-pyqt5.qtwebkit (5.15.11+dfsg-1build2) ... 765s Setting up python3-pyqt5.qtquick (5.15.11+dfsg-1build2) ... 765s Setting up python3-qtpy (2.4.2-4) ... 765s Setting up python3-qtconsole (5.6.1-4) ... 766s Setting up python3-fonttools (4.55.3-2) ... 767s Setting up python3-ufolib2 (0.17.0+dfsg1-1) ... 767s Setting up python3-matplotlib (3.8.3-3ubuntu2) ... 770s Setting up python3-pymca5 (5.9.3+dfsg-2) ... 772s Setting up pymca (5.9.3+dfsg-2) ... 772s Processing triggers for libc-bin (2.40-4ubuntu1) ... 772s Processing triggers for systemd (257.2-3ubuntu1) ... 773s Processing triggers for man-db (2.13.0-1) ... 773s Processing triggers for shared-mime-info (2.4-5) ... 773s Warning: program compiled against libxml 212 using older 209 774s Processing triggers for udev (257.2-3ubuntu1) ... 774s Processing triggers for install-info (7.1.1-1) ... 774s autopkgtest: DBG: testbed command exited with code 0 774s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'pymca'], kind short, sout pipe, serr pipe, env [] 774s autopkgtest: DBG: testbed command exited with code 0 774s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pymca5'], kind short, sout pipe, serr pipe, env [] 775s autopkgtest: DBG: testbed command exited with code 0 775s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'pymca-data'], kind short, sout pipe, serr pipe, env [] 775s autopkgtest: DBG: testbed command exited with code 0 775s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'pymca-doc'], kind short, sout pipe, serr pipe, env [] 775s autopkgtest: DBG: testbed command exited with code 0 775s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.FxMiJp/command2-packages.all"], kind short, sout raw, serr pipe, env [] 775s autopkgtest: DBG: testbed command exited with code 0 775s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.FxMiJp/command2-packages.all /tmp/autopkgtest-work.gxceld1u/out/command2-packages.all 775s autopkgtest: DBG: got reply from testbed: ok 775s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.FxMiJp/build.ylo/src'], kind short, sout raw, serr raw, env [] 776s autopkgtest: DBG: testbed command exited with code 1 776s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.FxMiJp/build.ylo'], kind short, sout raw, serr pipe, env [] 776s autopkgtest: DBG: testbed command exited with code 0 776s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.gxceld1u/out/tests-tree/ /tmp/autopkgtest.FxMiJp/build.ylo/src/ 778s autopkgtest: DBG: got reply from testbed: ok 778s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.FxMiJp/build.ylo/src'], kind short, sout raw, serr pipe, env [] 778s autopkgtest: DBG: testbed command exited with code 0 778s autopkgtest [12:40:29]: test command2: xvfb-run -s "-screen 0 1024x768x24 -ac +extension GLX +render -noreset" debian/tests/gui 778s autopkgtest [12:40:29]: test command2: [----------------------- 778s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.FxMiJp/wrapper.sh --debug --artifacts=/tmp/autopkgtest.FxMiJp/command2-artifacts --chdir=/tmp/autopkgtest.FxMiJp/build.ylo/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.FxMiJp/command2-stderr --stdout=/tmp/autopkgtest.FxMiJp/command2-stdout --tmp=/tmp/autopkgtest.FxMiJp/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec \'xvfb-run -s "-screen 0 1024x768x24 -ac +extension GLX +render -noreset" debian/tests/gui\''], kind test, sout raw, serr raw, env [] 779s /tmp/autopkgtest.FxMiJp/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.FxMiJp/command2-artifacts 779s /tmp/autopkgtest.FxMiJp/wrapper.sh: changing to directory: /tmp/autopkgtest.FxMiJp/build.ylo/src 779s /tmp/autopkgtest.FxMiJp/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 779s /tmp/autopkgtest.FxMiJp/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 779s /tmp/autopkgtest.FxMiJp/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 779s /tmp/autopkgtest.FxMiJp/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 779s /tmp/autopkgtest.FxMiJp/wrapper.sh: setting environment: LANG=C.UTF-8 779s /tmp/autopkgtest.FxMiJp/wrapper.sh: unsetting environment: LANGUAGE 779s /tmp/autopkgtest.FxMiJp/wrapper.sh: unsetting environment: LC_ADDRESS 779s /tmp/autopkgtest.FxMiJp/wrapper.sh: unsetting environment: LC_ALL 779s /tmp/autopkgtest.FxMiJp/wrapper.sh: unsetting environment: LC_COLLATE 779s /tmp/autopkgtest.FxMiJp/wrapper.sh: unsetting environment: LC_CTYPE 779s /tmp/autopkgtest.FxMiJp/wrapper.sh: unsetting environment: LC_IDENTIFICATION 779s /tmp/autopkgtest.FxMiJp/wrapper.sh: unsetting environment: LC_MEASUREMENT 779s /tmp/autopkgtest.FxMiJp/wrapper.sh: unsetting environment: LC_MESSAGES 779s /tmp/autopkgtest.FxMiJp/wrapper.sh: unsetting environment: LC_MONETARY 779s /tmp/autopkgtest.FxMiJp/wrapper.sh: unsetting environment: LC_NAME 779s /tmp/autopkgtest.FxMiJp/wrapper.sh: unsetting environment: LC_NUMERIC 779s /tmp/autopkgtest.FxMiJp/wrapper.sh: unsetting environment: LC_PAPER 779s /tmp/autopkgtest.FxMiJp/wrapper.sh: unsetting environment: LC_TELEPHONE 779s /tmp/autopkgtest.FxMiJp/wrapper.sh: unsetting environment: LC_TIME 779s /tmp/autopkgtest.FxMiJp/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 779s /tmp/autopkgtest.FxMiJp/wrapper.sh: pretending to be a login shell 779s /tmp/autopkgtest.FxMiJp/wrapper.sh: will write standard error to /tmp/autopkgtest.FxMiJp/command2-stderr 779s /tmp/autopkgtest.FxMiJp/wrapper.sh: will write stdout to /tmp/autopkgtest.FxMiJp/command2-stdout 779s /tmp/autopkgtest.FxMiJp/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.FxMiJp/autopkgtest_tmp 779s /tmp/autopkgtest.FxMiJp/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 779s /tmp/autopkgtest.FxMiJp/wrapper.sh: command to run: bash -ec xvfb-run -s "-screen 0 1024x768x24 -ac +extension GLX +render -noreset" debian/tests/gui 779s /tmp/autopkgtest.FxMiJp/wrapper.sh: copying /tmp/tmp.UsPaGtXnSc/out to stdout and file: /tmp/autopkgtest.FxMiJp/command2-stdout 779s /tmp/autopkgtest.FxMiJp/wrapper.sh: copying /tmp/tmp.UsPaGtXnSc/err to standard error and file: /tmp/autopkgtest.FxMiJp/command2-stdout 779s /tmp/autopkgtest.FxMiJp/wrapper.sh: writing script pid 4877 to /tmp/autopkgtest_script_pid 779s name of display: :99 779s display: :99 screen: 0 779s direct rendering: Yes 779s server glx vendor string: SGI 779s server glx version string: 1.4 779s server glx extensions: 779s GLX_ARB_context_flush_control, GLX_ARB_create_context, 779s GLX_ARB_create_context_no_error, GLX_ARB_create_context_profile, 779s GLX_ARB_fbconfig_float, GLX_ARB_framebuffer_sRGB, GLX_ARB_multisample, 779s GLX_EXT_create_context_es2_profile, GLX_EXT_create_context_es_profile, 779s GLX_EXT_fbconfig_packed_float, GLX_EXT_framebuffer_sRGB, 779s GLX_EXT_get_drawable_type, GLX_EXT_libglvnd, GLX_EXT_no_config_context, 779s GLX_EXT_texture_from_pixmap, GLX_EXT_visual_info, GLX_EXT_visual_rating, 779s GLX_MESA_copy_sub_buffer, GLX_OML_swap_method, GLX_SGIS_multisample, 779s GLX_SGIX_fbconfig, GLX_SGIX_pbuffer, GLX_SGIX_visual_select_group, 779s GLX_SGI_make_current_read 779s client glx vendor string: Mesa Project and SGI 779s client glx version string: 1.4 779s client glx extensions: 779s GLX_ARB_context_flush_control, GLX_ARB_create_context, 779s GLX_ARB_create_context_no_error, GLX_ARB_create_context_profile, 779s GLX_ARB_create_context_robustness, GLX_ARB_fbconfig_float, 779s GLX_ARB_framebuffer_sRGB, GLX_ARB_get_proc_address, GLX_ARB_multisample, 779s GLX_ATI_pixel_format_float, GLX_EXT_buffer_age, 779s GLX_EXT_create_context_es2_profile, GLX_EXT_create_context_es_profile, 779s GLX_EXT_fbconfig_packed_float, GLX_EXT_framebuffer_sRGB, 779s GLX_EXT_import_context, GLX_EXT_no_config_context, GLX_EXT_swap_control, 779s GLX_EXT_swap_control_tear, GLX_EXT_texture_from_pixmap, 779s GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_INTEL_swap_event, 779s GLX_MESA_copy_sub_buffer, GLX_MESA_gl_interop, GLX_MESA_query_renderer, 779s GLX_MESA_swap_control, GLX_NV_float_buffer, GLX_OML_sync_control, 779s GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer, 779s GLX_SGIX_visual_select_group, GLX_SGI_make_current_read, 779s GLX_SGI_swap_control, GLX_SGI_video_sync 779s GLX version: 1.4 779s GLX extensions: 779s GLX_ARB_context_flush_control, GLX_ARB_create_context, 779s GLX_ARB_create_context_no_error, GLX_ARB_create_context_profile, 779s GLX_ARB_fbconfig_float, GLX_ARB_framebuffer_sRGB, 779s GLX_ARB_get_proc_address, GLX_ARB_multisample, 779s GLX_EXT_create_context_es2_profile, GLX_EXT_create_context_es_profile, 779s GLX_EXT_fbconfig_packed_float, GLX_EXT_framebuffer_sRGB, 779s GLX_EXT_no_config_context, GLX_EXT_texture_from_pixmap, 779s GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_copy_sub_buffer, 779s GLX_MESA_gl_interop, GLX_MESA_query_renderer, GLX_SGIS_multisample, 779s GLX_SGIX_fbconfig, GLX_SGIX_pbuffer, GLX_SGIX_visual_select_group, 779s GLX_SGI_make_current_read 779s Extended renderer info (GLX_MESA_query_renderer): 779s Vendor: Mesa (0xffffffff) 779s Device: llvmpipe (LLVM 19.1.7, 128 bits) (0xffffffff) 779s Version: 24.3.4 779s Accelerated: no 779s Video memory: 3997MB 779s Unified memory: yes 779s Preferred profile: core (0x1) 779s Max core profile version: 4.5 779s Max compat profile version: 4.5 779s Max GLES1 profile version: 1.1 779s Max GLES[23] profile version: 3.2 779s Memory info (GL_ATI_meminfo): 779s VBO free memory - total: 0 MB, largest block: 0 MB 779s VBO free aux. memory - total: 3660 MB, largest block: 3660 MB 779s Texture free memory - total: 0 MB, largest block: 0 MB 779s Texture free aux. memory - total: 3660 MB, largest block: 3660 MB 779s Renderbuffer free memory - total: 0 MB, largest block: 0 MB 779s Renderbuffer free aux. memory - total: 3660 MB, largest block: 3660 MB 779s Memory info (GL_NVX_gpu_memory_info): 779s Dedicated video memory: 0 MB 779s Total available memory: 3997 MB 779s Currently available dedicated video memory: 0 MB 779s OpenGL vendor string: Mesa 779s OpenGL renderer string: llvmpipe (LLVM 19.1.7, 128 bits) 779s OpenGL core profile version string: 4.5 (Core Profile) Mesa 24.3.4-3ubuntu1 779s OpenGL core profile shading language version string: 4.50 779s OpenGL core profile context flags: (none) 779s OpenGL core profile profile mask: core profile 779s OpenGL core profile extensions: 779s GL_3DFX_texture_compression_FXT1, GL_AMD_conservative_depth, 779s GL_AMD_draw_buffers_blend, GL_AMD_gpu_shader_int64, 779s GL_AMD_multi_draw_indirect, GL_AMD_pinned_memory, 779s GL_AMD_query_buffer_object, GL_AMD_seamless_cubemap_per_texture, 779s GL_AMD_shader_stencil_export, GL_AMD_shader_trinary_minmax, 779s GL_AMD_texture_texture4, GL_AMD_vertex_shader_layer, 779s GL_AMD_vertex_shader_viewport_index, GL_ANGLE_texture_compression_dxt3, 779s GL_ANGLE_texture_compression_dxt5, GL_ARB_ES2_compatibility, 779s GL_ARB_ES3_1_compatibility, GL_ARB_ES3_2_compatibility, 779s GL_ARB_ES3_compatibility, GL_ARB_arrays_of_arrays, GL_ARB_base_instance, 779s GL_ARB_blend_func_extended, GL_ARB_buffer_storage, 779s GL_ARB_clear_buffer_object, GL_ARB_clear_texture, GL_ARB_clip_control, 779s GL_ARB_compressed_texture_pixel_storage, GL_ARB_compute_shader, 779s GL_ARB_conditional_render_inverted, GL_ARB_conservative_depth, 779s GL_ARB_copy_buffer, GL_ARB_copy_image, GL_ARB_cull_distance, 779s GL_ARB_debug_output, GL_ARB_depth_buffer_float, GL_ARB_depth_clamp, 779s GL_ARB_derivative_control, GL_ARB_direct_state_access, 779s GL_ARB_draw_buffers, GL_ARB_draw_buffers_blend, 779s GL_ARB_draw_elements_base_vertex, GL_ARB_draw_indirect, 779s GL_ARB_draw_instanced, GL_ARB_enhanced_layouts, 779s GL_ARB_explicit_attrib_location, GL_ARB_explicit_uniform_location, 779s GL_ARB_fragment_coord_conventions, GL_ARB_fragment_layer_viewport, 779s GL_ARB_fragment_shader, GL_ARB_framebuffer_no_attachments, 779s GL_ARB_framebuffer_object, GL_ARB_framebuffer_sRGB, 779s GL_ARB_get_program_binary, GL_ARB_get_texture_sub_image, GL_ARB_gl_spirv, 779s GL_ARB_gpu_shader5, GL_ARB_gpu_shader_fp64, GL_ARB_gpu_shader_int64, 779s GL_ARB_half_float_pixel, GL_ARB_half_float_vertex, 779s GL_ARB_indirect_parameters, GL_ARB_instanced_arrays, 779s GL_ARB_internalformat_query, GL_ARB_internalformat_query2, 779s GL_ARB_invalidate_subdata, GL_ARB_map_buffer_alignment, 779s GL_ARB_map_buffer_range, GL_ARB_multi_bind, GL_ARB_multi_draw_indirect, 779s GL_ARB_occlusion_query2, GL_ARB_parallel_shader_compile, 779s GL_ARB_pipeline_statistics_query, GL_ARB_pixel_buffer_object, 779s GL_ARB_point_sprite, GL_ARB_polygon_offset_clamp, 779s GL_ARB_post_depth_coverage, GL_ARB_program_interface_query, 779s GL_ARB_provoking_vertex, GL_ARB_query_buffer_object, 779s GL_ARB_robust_buffer_access_behavior, GL_ARB_robustness, 779s GL_ARB_sample_shading, GL_ARB_sampler_objects, GL_ARB_seamless_cube_map, 779s GL_ARB_seamless_cubemap_per_texture, GL_ARB_separate_shader_objects, 779s GL_ARB_shader_atomic_counter_ops, GL_ARB_shader_atomic_counters, 779s GL_ARB_shader_ballot, GL_ARB_shader_bit_encoding, GL_ARB_shader_clock, 779s GL_ARB_shader_draw_parameters, GL_ARB_shader_group_vote, 779s GL_ARB_shader_image_load_store, GL_ARB_shader_image_size, 779s GL_ARB_shader_objects, GL_ARB_shader_precision, 779s GL_ARB_shader_stencil_export, GL_ARB_shader_storage_buffer_object, 779s GL_ARB_shader_subroutine, GL_ARB_shader_texture_image_samples, 779s GL_ARB_shader_texture_lod, GL_ARB_shader_viewport_layer_array, 779s GL_ARB_shading_language_420pack, GL_ARB_shading_language_include, 779s GL_ARB_shading_language_packing, GL_ARB_spirv_extensions, 779s GL_ARB_stencil_texturing, GL_ARB_sync, GL_ARB_tessellation_shader, 779s GL_ARB_texture_barrier, GL_ARB_texture_border_clamp, 779s GL_ARB_texture_buffer_object, GL_ARB_texture_buffer_object_rgb32, 779s GL_ARB_texture_buffer_range, GL_ARB_texture_compression_bptc, 779s GL_ARB_texture_compression_rgtc, GL_ARB_texture_cube_map_array, 779s GL_ARB_texture_filter_anisotropic, GL_ARB_texture_filter_minmax, 779s GL_ARB_texture_float, GL_ARB_texture_gather, 779s GL_ARB_texture_mirror_clamp_to_edge, GL_ARB_texture_multisample, 779s GL_ARB_texture_non_power_of_two, GL_ARB_texture_query_levels, 779s GL_ARB_texture_query_lod, GL_ARB_texture_rectangle, GL_ARB_texture_rg, 779s GL_ARB_texture_rgb10_a2ui, GL_ARB_texture_stencil8, 779s GL_ARB_texture_storage, GL_ARB_texture_storage_multisample, 779s GL_ARB_texture_swizzle, GL_ARB_texture_view, GL_ARB_timer_query, 779s GL_ARB_transform_feedback2, GL_ARB_transform_feedback3, 779s GL_ARB_transform_feedback_instanced, 779s GL_ARB_transform_feedback_overflow_query, GL_ARB_uniform_buffer_object, 779s GL_ARB_vertex_array_bgra, GL_ARB_vertex_array_object, 779s GL_ARB_vertex_attrib_64bit, GL_ARB_vertex_attrib_binding, 779s GL_ARB_vertex_buffer_object, GL_ARB_vertex_shader, 779s GL_ARB_vertex_type_10f_11f_11f_rev, GL_ARB_vertex_type_2_10_10_10_rev, 779s GL_ARB_viewport_array, GL_ARM_shader_framebuffer_fetch_depth_stencil, 779s GL_ATI_blend_equation_separate, GL_ATI_meminfo, GL_ATI_texture_float, 779s GL_ATI_texture_mirror_once, GL_EXT_EGL_image_storage, 779s GL_EXT_EGL_image_storage_compression, GL_EXT_EGL_sync, GL_EXT_abgr, 779s GL_EXT_blend_equation_separate, GL_EXT_debug_label, GL_EXT_draw_buffers2, 779s GL_EXT_draw_instanced, GL_EXT_framebuffer_blit, 779s GL_EXT_framebuffer_multisample, GL_EXT_framebuffer_multisample_blit_scaled, 779s GL_EXT_framebuffer_object, GL_EXT_framebuffer_sRGB, GL_EXT_memory_object, 779s GL_EXT_memory_object_fd, GL_EXT_packed_depth_stencil, GL_EXT_packed_float, 779s GL_EXT_pixel_buffer_object, GL_EXT_polygon_offset_clamp, 779s GL_EXT_provoking_vertex, GL_EXT_shader_framebuffer_fetch, 779s GL_EXT_shader_framebuffer_fetch_non_coherent, 779s GL_EXT_shader_image_load_formatted, GL_EXT_shader_integer_mix, 779s GL_EXT_texture_array, GL_EXT_texture_compression_dxt1, 779s GL_EXT_texture_compression_rgtc, GL_EXT_texture_compression_s3tc, 779s GL_EXT_texture_filter_anisotropic, GL_EXT_texture_filter_minmax, 779s GL_EXT_texture_integer, GL_EXT_texture_mirror_clamp, GL_EXT_texture_sRGB, 779s GL_EXT_texture_sRGB_R8, GL_EXT_texture_sRGB_RG8, 779s GL_EXT_texture_sRGB_decode, GL_EXT_texture_shadow_lod, 779s GL_EXT_texture_shared_exponent, GL_EXT_texture_snorm, 779s GL_EXT_texture_storage, GL_EXT_texture_swizzle, GL_EXT_timer_query, 779s GL_EXT_transform_feedback, GL_EXT_vertex_array_bgra, 779s GL_EXT_vertex_attrib_64bit, GL_IBM_multimode_draw_arrays, 779s GL_INTEL_shader_atomic_float_minmax, GL_KHR_blend_equation_advanced, 779s GL_KHR_blend_equation_advanced_coherent, GL_KHR_context_flush_control, 779s GL_KHR_debug, GL_KHR_no_error, GL_KHR_parallel_shader_compile, 779s GL_KHR_robust_buffer_access_behavior, GL_KHR_robustness, 779s GL_KHR_texture_compression_astc_ldr, 779s GL_KHR_texture_compression_astc_sliced_3d, GL_MESA_framebuffer_flip_y, 779s GL_MESA_pack_invert, GL_MESA_shader_integer_functions, 779s GL_MESA_texture_signed_rgba, GL_MESA_ycbcr_texture, 779s GL_NVX_gpu_memory_info, GL_NV_alpha_to_coverage_dither_control, 779s GL_NV_conditional_render, GL_NV_copy_image, GL_NV_depth_clamp, 779s GL_NV_packed_depth_stencil, GL_NV_shader_atomic_float, 779s GL_NV_texture_barrier, GL_OES_EGL_image, GL_OVR_multiview, 779s GL_OVR_multiview2, GL_S3_s3tc 779s 779s OpenGL version string: 4.5 (Compatibility Profile) Mesa 24.3.4-3ubuntu1 779s OpenGL shading language version string: 4.50 779s OpenGL context flags: (none) 779s OpenGL profile mask: compatibility profile 779s OpenGL extensions: 779s GL_3DFX_texture_compression_FXT1, GL_AMD_conservative_depth, 779s GL_AMD_draw_buffers_blend, GL_AMD_multi_draw_indirect, 779s GL_AMD_pinned_memory, GL_AMD_query_buffer_object, 779s GL_AMD_seamless_cubemap_per_texture, GL_AMD_shader_stencil_export, 779s GL_AMD_shader_trinary_minmax, GL_AMD_texture_texture4, 779s GL_AMD_vertex_shader_layer, GL_AMD_vertex_shader_viewport_index, 779s GL_ANGLE_texture_compression_dxt3, GL_ANGLE_texture_compression_dxt5, 779s GL_APPLE_packed_pixels, GL_ARB_ES2_compatibility, 779s GL_ARB_ES3_1_compatibility, GL_ARB_ES3_2_compatibility, 779s GL_ARB_ES3_compatibility, GL_ARB_arrays_of_arrays, GL_ARB_base_instance, 779s GL_ARB_blend_func_extended, GL_ARB_buffer_storage, 779s GL_ARB_clear_buffer_object, GL_ARB_clear_texture, GL_ARB_clip_control, 779s GL_ARB_color_buffer_float, GL_ARB_compatibility, 779s GL_ARB_compressed_texture_pixel_storage, GL_ARB_compute_shader, 779s GL_ARB_conditional_render_inverted, GL_ARB_conservative_depth, 779s GL_ARB_copy_buffer, GL_ARB_copy_image, GL_ARB_cull_distance, 779s GL_ARB_debug_output, GL_ARB_depth_buffer_float, GL_ARB_depth_clamp, 779s GL_ARB_depth_texture, GL_ARB_derivative_control, 779s GL_ARB_direct_state_access, GL_ARB_draw_buffers, 779s GL_ARB_draw_buffers_blend, GL_ARB_draw_elements_base_vertex, 779s GL_ARB_draw_indirect, GL_ARB_draw_instanced, GL_ARB_enhanced_layouts, 779s GL_ARB_explicit_attrib_location, GL_ARB_explicit_uniform_location, 779s GL_ARB_fragment_coord_conventions, GL_ARB_fragment_layer_viewport, 779s GL_ARB_fragment_program, GL_ARB_fragment_program_shadow, 779s GL_ARB_fragment_shader, GL_ARB_framebuffer_no_attachments, 779s GL_ARB_framebuffer_object, GL_ARB_framebuffer_sRGB, 779s GL_ARB_get_program_binary, GL_ARB_get_texture_sub_image, GL_ARB_gl_spirv, 779s GL_ARB_gpu_shader5, GL_ARB_gpu_shader_fp64, GL_ARB_gpu_shader_int64, 779s GL_ARB_half_float_pixel, GL_ARB_half_float_vertex, 779s GL_ARB_indirect_parameters, GL_ARB_instanced_arrays, 779s GL_ARB_internalformat_query, GL_ARB_internalformat_query2, 779s GL_ARB_invalidate_subdata, GL_ARB_map_buffer_alignment, 779s GL_ARB_map_buffer_range, GL_ARB_multi_bind, GL_ARB_multi_draw_indirect, 779s GL_ARB_multisample, GL_ARB_multitexture, GL_ARB_occlusion_query, 779s GL_ARB_occlusion_query2, GL_ARB_parallel_shader_compile, 779s GL_ARB_pipeline_statistics_query, GL_ARB_pixel_buffer_object, 779s GL_ARB_point_parameters, GL_ARB_point_sprite, GL_ARB_polygon_offset_clamp, 779s GL_ARB_post_depth_coverage, GL_ARB_program_interface_query, 779s GL_ARB_provoking_vertex, GL_ARB_query_buffer_object, 779s GL_ARB_robust_buffer_access_behavior, GL_ARB_robustness, 779s GL_ARB_sample_shading, GL_ARB_sampler_objects, GL_ARB_seamless_cube_map, 779s GL_ARB_seamless_cubemap_per_texture, GL_ARB_separate_shader_objects, 779s GL_ARB_shader_atomic_counter_ops, GL_ARB_shader_atomic_counters, 779s GL_ARB_shader_ballot, GL_ARB_shader_bit_encoding, GL_ARB_shader_clock, 779s GL_ARB_shader_draw_parameters, GL_ARB_shader_group_vote, 779s GL_ARB_shader_image_load_store, GL_ARB_shader_image_size, 779s GL_ARB_shader_objects, GL_ARB_shader_precision, 779s GL_ARB_shader_stencil_export, GL_ARB_shader_storage_buffer_object, 779s GL_ARB_shader_subroutine, GL_ARB_shader_texture_image_samples, 779s GL_ARB_shader_texture_lod, GL_ARB_shader_viewport_layer_array, 779s GL_ARB_shading_language_100, GL_ARB_shading_language_420pack, 779s GL_ARB_shading_language_include, GL_ARB_shading_language_packing, 779s GL_ARB_shadow, GL_ARB_spirv_extensions, GL_ARB_stencil_texturing, 779s GL_ARB_sync, GL_ARB_tessellation_shader, GL_ARB_texture_barrier, 779s GL_ARB_texture_border_clamp, GL_ARB_texture_buffer_object, 779s GL_ARB_texture_buffer_object_rgb32, GL_ARB_texture_buffer_range, 779s GL_ARB_texture_compression, GL_ARB_texture_compression_bptc, 779s GL_ARB_texture_compression_rgtc, GL_ARB_texture_cube_map, 779s GL_ARB_texture_cube_map_array, GL_ARB_texture_env_add, 779s GL_ARB_texture_env_combine, GL_ARB_texture_env_crossbar, 779s GL_ARB_texture_env_dot3, GL_ARB_texture_filter_anisotropic, 779s GL_ARB_texture_filter_minmax, GL_ARB_texture_float, GL_ARB_texture_gather, 779s GL_ARB_texture_mirror_clamp_to_edge, GL_ARB_texture_mirrored_repeat, 779s GL_ARB_texture_multisample, GL_ARB_texture_non_power_of_two, 779s GL_ARB_texture_query_levels, GL_ARB_texture_query_lod, 779s GL_ARB_texture_rectangle, GL_ARB_texture_rg, GL_ARB_texture_rgb10_a2ui, 779s GL_ARB_texture_stencil8, GL_ARB_texture_storage, 779s GL_ARB_texture_storage_multisample, GL_ARB_texture_swizzle, 779s GL_ARB_texture_view, GL_ARB_timer_query, GL_ARB_transform_feedback2, 779s GL_ARB_transform_feedback3, GL_ARB_transform_feedback_instanced, 779s GL_ARB_transform_feedback_overflow_query, GL_ARB_transpose_matrix, 779s GL_ARB_uniform_buffer_object, GL_ARB_vertex_array_bgra, 779s GL_ARB_vertex_array_object, GL_ARB_vertex_attrib_64bit, 779s GL_ARB_vertex_attrib_binding, GL_ARB_vertex_buffer_object, 779s GL_ARB_vertex_program, GL_ARB_vertex_shader, 779s GL_ARB_vertex_type_10f_11f_11f_rev, GL_ARB_vertex_type_2_10_10_10_rev, 779s GL_ARB_viewport_array, GL_ARB_window_pos, 779s GL_ARM_shader_framebuffer_fetch_depth_stencil, 779s GL_ATI_blend_equation_separate, GL_ATI_draw_buffers, 779s GL_ATI_fragment_shader, GL_ATI_meminfo, GL_ATI_separate_stencil, 779s GL_ATI_texture_compression_3dc, GL_ATI_texture_env_combine3, 779s GL_ATI_texture_float, GL_ATI_texture_mirror_once, 779s GL_EXT_EGL_image_storage, GL_EXT_EGL_image_storage_compression, 779s GL_EXT_EGL_sync, GL_EXT_abgr, GL_EXT_bgra, GL_EXT_blend_color, 779s GL_EXT_blend_equation_separate, GL_EXT_blend_func_separate, 779s GL_EXT_blend_minmax, GL_EXT_blend_subtract, GL_EXT_compiled_vertex_array, 779s GL_EXT_copy_texture, GL_EXT_debug_label, GL_EXT_direct_state_access, 779s GL_EXT_draw_buffers2, GL_EXT_draw_instanced, GL_EXT_draw_range_elements, 779s GL_EXT_fog_coord, GL_EXT_framebuffer_blit, GL_EXT_framebuffer_multisample, 779s GL_EXT_framebuffer_multisample_blit_scaled, GL_EXT_framebuffer_object, 779s GL_EXT_framebuffer_sRGB, GL_EXT_gpu_program_parameters, 779s GL_EXT_gpu_shader4, GL_EXT_memory_object, GL_EXT_memory_object_fd, 779s GL_EXT_multi_draw_arrays, GL_EXT_packed_depth_stencil, 779s GL_EXT_packed_float, GL_EXT_packed_pixels, GL_EXT_pixel_buffer_object, 779s GL_EXT_point_parameters, GL_EXT_polygon_offset_clamp, 779s GL_EXT_provoking_vertex, GL_EXT_rescale_normal, GL_EXT_secondary_color, 779s GL_EXT_separate_specular_color, GL_EXT_shader_framebuffer_fetch, 779s GL_EXT_shader_framebuffer_fetch_non_coherent, 779s GL_EXT_shader_image_load_formatted, GL_EXT_shader_integer_mix, 779s GL_EXT_shadow_funcs, GL_EXT_stencil_two_side, GL_EXT_stencil_wrap, 779s GL_EXT_subtexture, GL_EXT_texture, GL_EXT_texture3D, 779s GL_EXT_texture_array, GL_EXT_texture_buffer_object, 779s GL_EXT_texture_compression_dxt1, GL_EXT_texture_compression_latc, 779s GL_EXT_texture_compression_rgtc, GL_EXT_texture_compression_s3tc, 779s GL_EXT_texture_cube_map, GL_EXT_texture_edge_clamp, 779s GL_EXT_texture_env_add, GL_EXT_texture_env_combine, 779s GL_EXT_texture_env_dot3, GL_EXT_texture_filter_anisotropic, 779s GL_EXT_texture_filter_minmax, GL_EXT_texture_integer, 779s GL_EXT_texture_lod_bias, GL_EXT_texture_mirror_clamp, 779s GL_EXT_texture_object, GL_EXT_texture_rectangle, GL_EXT_texture_sRGB, 779s GL_EXT_texture_sRGB_R8, GL_EXT_texture_sRGB_RG8, 779s GL_EXT_texture_sRGB_decode, GL_EXT_texture_shadow_lod, 779s GL_EXT_texture_shared_exponent, GL_EXT_texture_snorm, 779s GL_EXT_texture_storage, GL_EXT_texture_swizzle, GL_EXT_timer_query, 779s GL_EXT_transform_feedback, GL_EXT_vertex_array, GL_EXT_vertex_array_bgra, 779s GL_EXT_vertex_attrib_64bit, GL_IBM_multimode_draw_arrays, 779s GL_IBM_rasterpos_clip, GL_IBM_texture_mirrored_repeat, 779s GL_INGR_blend_func_separate, GL_INTEL_shader_atomic_float_minmax, 779s GL_KHR_blend_equation_advanced, GL_KHR_blend_equation_advanced_coherent, 779s GL_KHR_context_flush_control, GL_KHR_debug, GL_KHR_no_error, 779s GL_KHR_parallel_shader_compile, GL_KHR_robust_buffer_access_behavior, 779s GL_KHR_robustness, GL_KHR_texture_compression_astc_ldr, 779s GL_KHR_texture_compression_astc_sliced_3d, GL_MESA_framebuffer_flip_y, 779s GL_MESA_pack_invert, GL_MESA_shader_integer_functions, 779s GL_MESA_texture_signed_rgba, GL_MESA_window_pos, GL_MESA_ycbcr_texture, 779s GL_NVX_gpu_memory_info, GL_NV_ES1_1_compatibility, 779s GL_NV_alpha_to_coverage_dither_control, GL_NV_blend_square, 779s GL_NV_conditional_render, GL_NV_copy_depth_to_color, GL_NV_copy_image, 779s GL_NV_depth_clamp, GL_NV_fog_distance, GL_NV_half_float, 779s GL_NV_light_max_exponent, GL_NV_packed_depth_stencil, 779s GL_NV_primitive_restart, GL_NV_shader_atomic_float, 779s GL_NV_texgen_reflection, GL_NV_texture_barrier, 779s GL_NV_texture_env_combine4, GL_NV_texture_rectangle, GL_OES_EGL_image, 779s GL_OES_read_format, GL_OVR_multiview, GL_OVR_multiview2, GL_S3_s3tc, 779s GL_SGIS_generate_mipmap, GL_SGIS_texture_border_clamp, 779s GL_SGIS_texture_edge_clamp, GL_SGIS_texture_lod, GL_SUN_multi_draw_arrays 779s 779s OpenGL ES profile version string: OpenGL ES 3.2 Mesa 24.3.4-3ubuntu1 779s OpenGL ES profile shading language version string: OpenGL ES GLSL ES 3.20 779s OpenGL ES profile extensions: 779s GL_ANDROID_extension_pack_es31a, GL_ANGLE_pack_reverse_row_order, 779s GL_ANGLE_texture_compression_dxt3, GL_ANGLE_texture_compression_dxt5, 779s GL_APPLE_sync, GL_APPLE_texture_max_level, 779s GL_ARM_shader_framebuffer_fetch_depth_stencil, GL_EXT_EGL_image_storage, 779s GL_EXT_EGL_image_storage_compression, GL_EXT_base_instance, 779s GL_EXT_blend_func_extended, GL_EXT_blend_minmax, GL_EXT_buffer_storage, 779s GL_EXT_clear_texture, GL_EXT_clip_control, GL_EXT_clip_cull_distance, 779s GL_EXT_color_buffer_float, GL_EXT_color_buffer_half_float, 779s GL_EXT_compressed_ETC1_RGB8_sub_texture, GL_EXT_copy_image, 779s GL_EXT_debug_label, GL_EXT_depth_clamp, GL_EXT_discard_framebuffer, 779s GL_EXT_disjoint_timer_query, GL_EXT_draw_buffers, 779s GL_EXT_draw_buffers_indexed, GL_EXT_draw_elements_base_vertex, 779s GL_EXT_draw_instanced, GL_EXT_float_blend, GL_EXT_frag_depth, 779s GL_EXT_geometry_point_size, GL_EXT_geometry_shader, GL_EXT_gpu_shader5, 779s GL_EXT_instanced_arrays, GL_EXT_map_buffer_range, GL_EXT_memory_object, 779s GL_EXT_memory_object_fd, GL_EXT_multi_draw_arrays, 779s GL_EXT_multi_draw_indirect, GL_EXT_occlusion_query_boolean, 779s GL_EXT_polygon_offset_clamp, GL_EXT_primitive_bounding_box, 779s GL_EXT_read_format_bgra, GL_EXT_render_snorm, GL_EXT_robustness, 779s GL_EXT_sRGB_write_control, GL_EXT_separate_shader_objects, 779s GL_EXT_shader_framebuffer_fetch, 779s GL_EXT_shader_framebuffer_fetch_non_coherent, GL_EXT_shader_group_vote, 779s GL_EXT_shader_implicit_conversions, GL_EXT_shader_integer_mix, 779s GL_EXT_shader_io_blocks, GL_EXT_shadow_samplers, 779s GL_EXT_tessellation_point_size, GL_EXT_tessellation_shader, 779s GL_EXT_texture_border_clamp, GL_EXT_texture_buffer, 779s GL_EXT_texture_compression_bptc, GL_EXT_texture_compression_dxt1, 779s GL_EXT_texture_compression_rgtc, GL_EXT_texture_compression_s3tc, 779s GL_EXT_texture_compression_s3tc_srgb, GL_EXT_texture_cube_map_array, 779s GL_EXT_texture_filter_anisotropic, GL_EXT_texture_filter_minmax, 779s GL_EXT_texture_format_BGRA8888, GL_EXT_texture_mirror_clamp_to_edge, 779s GL_EXT_texture_norm16, GL_EXT_texture_query_lod, GL_EXT_texture_rg, 779s GL_EXT_texture_sRGB_R8, GL_EXT_texture_sRGB_RG8, 779s GL_EXT_texture_sRGB_decode, GL_EXT_texture_shadow_lod, 779s GL_EXT_texture_storage, GL_EXT_texture_storage_compression, 779s GL_EXT_texture_type_2_10_10_10_REV, GL_EXT_texture_view, 779s GL_EXT_unpack_subimage, GL_KHR_blend_equation_advanced, 779s GL_KHR_blend_equation_advanced_coherent, GL_KHR_context_flush_control, 779s GL_KHR_debug, GL_KHR_no_error, GL_KHR_parallel_shader_compile, 779s GL_KHR_robust_buffer_access_behavior, GL_KHR_robustness, 779s GL_KHR_texture_compression_astc_ldr, 779s GL_KHR_texture_compression_astc_sliced_3d, GL_MESA_bgra, 779s GL_MESA_framebuffer_flip_y, GL_MESA_sampler_objects, 779s GL_MESA_shader_integer_functions, GL_NV_alpha_to_coverage_dither_control, 779s GL_NV_conditional_render, GL_NV_draw_buffers, GL_NV_fbo_color_attachments, 779s GL_NV_generate_mipmap_sRGB, GL_NV_image_formats, GL_NV_pack_subimage, 779s GL_NV_pixel_buffer_object, GL_NV_read_buffer, GL_NV_read_depth, 779s GL_NV_read_depth_stencil, GL_NV_read_stencil, 779s GL_NV_shader_noperspective_interpolation, GL_NV_texture_barrier, 779s GL_OES_EGL_image, GL_OES_EGL_image_external, 779s GL_OES_EGL_image_external_essl3, GL_OES_EGL_sync, 779s GL_OES_compressed_ETC1_RGB8_texture, GL_OES_copy_image, GL_OES_depth24, 779s GL_OES_depth_texture, GL_OES_depth_texture_cube_map, 779s GL_OES_draw_buffers_indexed, GL_OES_draw_elements_base_vertex, 779s GL_OES_element_index_uint, GL_OES_fbo_render_mipmap, 779s GL_OES_geometry_point_size, GL_OES_geometry_shader, 779s GL_OES_get_program_binary, GL_OES_gpu_shader5, GL_OES_mapbuffer, 779s GL_OES_packed_depth_stencil, GL_OES_primitive_bounding_box, 779s GL_OES_required_internalformat, GL_OES_rgb8_rgba8, GL_OES_sample_shading, 779s GL_OES_sample_variables, GL_OES_shader_image_atomic, 779s GL_OES_shader_io_blocks, GL_OES_shader_multisample_interpolation, 779s GL_OES_standard_derivatives, GL_OES_stencil8, GL_OES_surfaceless_context, 779s GL_OES_tessellation_point_size, GL_OES_tessellation_shader, 779s GL_OES_texture_3D, GL_OES_texture_border_clamp, GL_OES_texture_buffer, 779s GL_OES_texture_cube_map_array, GL_OES_texture_float, 779s GL_OES_texture_float_linear, GL_OES_texture_half_float, 779s GL_OES_texture_half_float_linear, GL_OES_texture_npot, 779s GL_OES_texture_stencil8, GL_OES_texture_storage_multisample_2d_array, 779s GL_OES_texture_view, GL_OES_vertex_array_object, GL_OES_vertex_half_float, 779s GL_OES_viewport_array, GL_OVR_multiview, GL_OVR_multiview2 779s 779s 80 GLX Visuals 779s visual x bf lv rg d st colorbuffer sr ax dp st accumbuffer ms sw cav 779s id dep cl sp sz l ci b ro r g b a F gb bf th cl r g b a ns b ap eat 779s ---------------------------------------------------------------------------- 779s 0x1bf 24 tc 0 32 0 r . . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x1c0 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x1c1 24 tc 0 32 0 r . . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x1c2 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x1c3 24 tc 0 32 0 r . . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x1c4 24 tc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x1c5 24 tc 0 32 0 r . . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x1c6 24 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x1c9 24 tc 0 24 0 r . . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x1ca 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x1cb 24 tc 0 24 0 r . . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x1cc 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x1cd 24 tc 0 24 0 r . . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x1ce 24 tc 0 24 0 r y . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x1cf 24 tc 0 24 0 r . . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x1d0 24 tc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x1d3 24 tc 0 32 0 r . . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x1d4 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x1d5 24 tc 0 32 0 r . . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x1d6 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x1d7 24 tc 0 32 0 r . . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x1d8 24 tc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x1d9 24 tc 0 32 0 r . . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x1da 24 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x1dd 24 tc 0 24 0 r . . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x1de 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x1df 24 tc 0 24 0 r . . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x1e0 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x1e1 24 tc 0 24 0 r . . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x1e2 24 tc 0 24 0 r y . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x1e3 24 tc 0 24 0 r . . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x1e4 24 tc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x1e7 24 dc 0 32 0 r . . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x1e8 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x1e9 24 dc 0 32 0 r . . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x1ea 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x1eb 24 dc 0 32 0 r . . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x1ec 24 dc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x1ed 24 dc 0 32 0 r . . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x1ee 24 dc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x1f1 24 dc 0 24 0 r . . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x1f2 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x1f3 24 dc 0 24 0 r . . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x1f4 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x1f5 24 dc 0 24 0 r . . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x1f6 24 dc 0 24 0 r y . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x1f7 24 dc 0 24 0 r . . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x1f8 24 dc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x1fb 24 dc 0 32 0 r . . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x1fc 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x1fd 24 dc 0 32 0 r . . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x1fe 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x1ff 24 dc 0 32 0 r . . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x200 24 dc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x201 24 dc 0 32 0 r . . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x202 24 dc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x205 24 dc 0 24 0 r . . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x206 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x207 24 dc 0 24 0 r . . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x208 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x209 24 dc 0 24 0 r . . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x20a 24 dc 0 24 0 r y . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x20b 24 dc 0 24 0 r . . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x20c 24 dc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x20f 32 tc 0 32 0 r . . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x210 32 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x211 32 tc 0 32 0 r . . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x212 32 tc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x213 32 tc 0 32 0 r . . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x214 32 tc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x215 32 tc 0 32 0 r . . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x216 32 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x219 32 tc 0 32 0 r . . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x21a 32 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x21b 32 tc 0 32 0 r . . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x21c 32 tc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x21d 32 tc 0 32 0 r . . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x21e 32 tc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x21f 32 tc 0 32 0 r . . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x220 32 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 . None 779s 779s 240 GLXFBConfigs: 779s visual x bf lv rg d st colorbuffer sr ax dp st accumbuffer ms sw cav 779s id dep cl sp sz l ci b ro r g b a F gb bf th cl r g b a ns b ap eat 779s ---------------------------------------------------------------------------- 779s 0x043 24 tc 0 32 0 r . . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x044 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x045 24 tc 0 32 0 r . . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x046 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x047 24 tc 0 32 0 r . . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x048 24 tc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x049 24 tc 0 32 0 r . . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x04a 24 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x04d 24 tc 0 24 0 r . . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x04e 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x04f 24 tc 0 24 0 r . . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x050 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x051 24 tc 0 24 0 r . . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x052 24 tc 0 24 0 r y . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x053 24 tc 0 24 0 r . . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x054 24 tc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x057 24 tc 0 32 0 r . . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x058 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x059 24 tc 0 32 0 r . . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x05a 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x05b 24 tc 0 32 0 r . . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x05c 24 tc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x05d 24 tc 0 32 0 r . . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x05e 24 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x061 24 tc 0 24 0 r . . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x062 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x063 24 tc 0 24 0 r . . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x064 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x065 24 tc 0 24 0 r . . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x066 24 tc 0 24 0 r y . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x067 24 tc 0 24 0 r . . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x068 24 tc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x06b 0 tc 0 32 0 r . . 10 10 10 2 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x06c 0 tc 0 32 0 r y . 10 10 10 2 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x06d 0 tc 0 32 0 r . . 10 10 10 2 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x06e 0 tc 0 32 0 r y . 10 10 10 2 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x06f 0 tc 0 32 0 r . . 10 10 10 2 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x070 0 tc 0 32 0 r y . 10 10 10 2 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x071 0 tc 0 32 0 r . . 10 10 10 2 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x072 0 tc 0 32 0 r y . 10 10 10 2 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x075 0 tc 0 30 0 r . . 10 10 10 0 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x076 0 tc 0 30 0 r y . 10 10 10 0 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x077 0 tc 0 30 0 r . . 10 10 10 0 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x078 0 tc 0 30 0 r y . 10 10 10 0 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x079 0 tc 0 30 0 r . . 10 10 10 0 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x07a 0 tc 0 30 0 r y . 10 10 10 0 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x07b 0 tc 0 30 0 r . . 10 10 10 0 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x07c 0 tc 0 30 0 r y . 10 10 10 0 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x07f 0 tc 0 32 0 r . . 10 10 10 2 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x080 0 tc 0 32 0 r y . 10 10 10 2 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x081 0 tc 0 32 0 r . . 10 10 10 2 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x082 0 tc 0 32 0 r y . 10 10 10 2 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x083 0 tc 0 32 0 r . . 10 10 10 2 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x084 0 tc 0 32 0 r y . 10 10 10 2 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x085 0 tc 0 32 0 r . . 10 10 10 2 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x086 0 tc 0 32 0 r y . 10 10 10 2 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x089 0 tc 0 30 0 r . . 10 10 10 0 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x08a 0 tc 0 30 0 r y . 10 10 10 0 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x08b 0 tc 0 30 0 r . . 10 10 10 0 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x08c 0 tc 0 30 0 r y . 10 10 10 0 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x08d 0 tc 0 30 0 r . . 10 10 10 0 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x08e 0 tc 0 30 0 r y . 10 10 10 0 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x08f 0 tc 0 30 0 r . . 10 10 10 0 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x090 0 tc 0 30 0 r y . 10 10 10 0 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x093 0 tc 0 16 0 r . . 5 6 5 0 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x094 0 tc 0 16 0 r y . 5 6 5 0 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x095 0 tc 0 16 0 r . . 5 6 5 0 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x096 0 tc 0 16 0 r y . 5 6 5 0 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x097 0 tc 0 16 0 r . . 5 6 5 0 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x098 0 tc 0 16 0 r y . 5 6 5 0 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x099 0 tc 0 16 0 r . . 5 6 5 0 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x09a 0 tc 0 16 0 r y . 5 6 5 0 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x09d 0 tc 0 16 0 r . . 5 5 5 1 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x09e 0 tc 0 16 0 r y . 5 5 5 1 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x09f 0 tc 0 16 0 r . . 5 5 5 1 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x0a0 0 tc 0 16 0 r y . 5 5 5 1 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x0a1 0 tc 0 16 0 r . . 5 5 5 1 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x0a2 0 tc 0 16 0 r y . 5 5 5 1 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x0a3 0 tc 0 16 0 r . . 5 5 5 1 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x0a4 0 tc 0 16 0 r y . 5 5 5 1 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x0b1 0 tc 0 16 0 r . . 4 4 4 4 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x0b2 0 tc 0 16 0 r y . 4 4 4 4 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x0b3 0 tc 0 16 0 r . . 4 4 4 4 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x0b4 0 tc 0 16 0 r y . 4 4 4 4 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x0b5 0 tc 0 16 0 r . . 4 4 4 4 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x0b6 0 tc 0 16 0 r y . 4 4 4 4 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x0b7 0 tc 0 16 0 r . . 4 4 4 4 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x0b8 0 tc 0 16 0 r y . 4 4 4 4 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x0c5 0 tc 0 16 0 r . . 5 6 5 0 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x0c6 0 tc 0 16 0 r y . 5 6 5 0 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x0c7 0 tc 0 16 0 r . . 5 6 5 0 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x0c8 0 tc 0 16 0 r y . 5 6 5 0 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x0c9 0 tc 0 16 0 r . . 5 6 5 0 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x0ca 0 tc 0 16 0 r y . 5 6 5 0 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x0cb 0 tc 0 16 0 r . . 5 6 5 0 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x0cc 0 tc 0 16 0 r y . 5 6 5 0 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x0cf 0 tc 0 16 0 r . . 5 5 5 1 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x0d0 0 tc 0 16 0 r y . 5 5 5 1 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x0d1 0 tc 0 16 0 r . . 5 5 5 1 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x0d2 0 tc 0 16 0 r y . 5 5 5 1 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x0d3 0 tc 0 16 0 r . . 5 5 5 1 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x0d4 0 tc 0 16 0 r y . 5 5 5 1 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x0d5 0 tc 0 16 0 r . . 5 5 5 1 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x0d6 0 tc 0 16 0 r y . 5 5 5 1 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x0e3 0 tc 0 16 0 r . . 4 4 4 4 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x0e4 0 tc 0 16 0 r y . 4 4 4 4 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x0e5 0 tc 0 16 0 r . . 4 4 4 4 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x0e6 0 tc 0 16 0 r y . 4 4 4 4 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x0e7 0 tc 0 16 0 r . . 4 4 4 4 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x0e8 0 tc 0 16 0 r y . 4 4 4 4 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x0e9 0 tc 0 16 0 r . . 4 4 4 4 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x0ea 0 tc 0 16 0 r y . 4 4 4 4 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x0f7 24 dc 0 32 0 r . . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x0f8 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x0f9 24 dc 0 32 0 r . . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x0fa 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x0fb 24 dc 0 32 0 r . . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x0fc 24 dc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x0fd 24 dc 0 32 0 r . . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x0fe 24 dc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x101 24 dc 0 24 0 r . . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x102 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x103 24 dc 0 24 0 r . . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x104 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x105 24 dc 0 24 0 r . . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x106 24 dc 0 24 0 r y . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x107 24 dc 0 24 0 r . . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x108 24 dc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x10b 24 dc 0 32 0 r . . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x10c 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x10d 24 dc 0 32 0 r . . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x10e 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x10f 24 dc 0 32 0 r . . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x110 24 dc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x111 24 dc 0 32 0 r . . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x112 24 dc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x115 24 dc 0 24 0 r . . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x116 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x117 24 dc 0 24 0 r . . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x118 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x119 24 dc 0 24 0 r . . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x11a 24 dc 0 24 0 r y . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x11b 24 dc 0 24 0 r . . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x11c 24 dc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x11f 0 dc 0 32 0 r . . 10 10 10 2 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x120 0 dc 0 32 0 r y . 10 10 10 2 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x121 0 dc 0 32 0 r . . 10 10 10 2 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x122 0 dc 0 32 0 r y . 10 10 10 2 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x123 0 dc 0 32 0 r . . 10 10 10 2 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x124 0 dc 0 32 0 r y . 10 10 10 2 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x125 0 dc 0 32 0 r . . 10 10 10 2 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x126 0 dc 0 32 0 r y . 10 10 10 2 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x129 0 dc 0 30 0 r . . 10 10 10 0 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x12a 0 dc 0 30 0 r y . 10 10 10 0 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x12b 0 dc 0 30 0 r . . 10 10 10 0 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x12c 0 dc 0 30 0 r y . 10 10 10 0 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x12d 0 dc 0 30 0 r . . 10 10 10 0 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x12e 0 dc 0 30 0 r y . 10 10 10 0 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x12f 0 dc 0 30 0 r . . 10 10 10 0 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x130 0 dc 0 30 0 r y . 10 10 10 0 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x133 0 dc 0 32 0 r . . 10 10 10 2 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x134 0 dc 0 32 0 r y . 10 10 10 2 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x135 0 dc 0 32 0 r . . 10 10 10 2 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x136 0 dc 0 32 0 r y . 10 10 10 2 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x137 0 dc 0 32 0 r . . 10 10 10 2 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x138 0 dc 0 32 0 r y . 10 10 10 2 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x139 0 dc 0 32 0 r . . 10 10 10 2 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x13a 0 dc 0 32 0 r y . 10 10 10 2 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x13d 0 dc 0 30 0 r . . 10 10 10 0 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x13e 0 dc 0 30 0 r y . 10 10 10 0 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x13f 0 dc 0 30 0 r . . 10 10 10 0 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x140 0 dc 0 30 0 r y . 10 10 10 0 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x141 0 dc 0 30 0 r . . 10 10 10 0 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x142 0 dc 0 30 0 r y . 10 10 10 0 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x143 0 dc 0 30 0 r . . 10 10 10 0 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x144 0 dc 0 30 0 r y . 10 10 10 0 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x147 0 dc 0 16 0 r . . 5 6 5 0 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x148 0 dc 0 16 0 r y . 5 6 5 0 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x149 0 dc 0 16 0 r . . 5 6 5 0 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x14a 0 dc 0 16 0 r y . 5 6 5 0 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x14b 0 dc 0 16 0 r . . 5 6 5 0 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x14c 0 dc 0 16 0 r y . 5 6 5 0 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x14d 0 dc 0 16 0 r . . 5 6 5 0 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x14e 0 dc 0 16 0 r y . 5 6 5 0 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x151 0 dc 0 16 0 r . . 5 5 5 1 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x152 0 dc 0 16 0 r y . 5 5 5 1 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x153 0 dc 0 16 0 r . . 5 5 5 1 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x154 0 dc 0 16 0 r y . 5 5 5 1 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x155 0 dc 0 16 0 r . . 5 5 5 1 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x156 0 dc 0 16 0 r y . 5 5 5 1 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x157 0 dc 0 16 0 r . . 5 5 5 1 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x158 0 dc 0 16 0 r y . 5 5 5 1 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x165 0 dc 0 16 0 r . . 4 4 4 4 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x166 0 dc 0 16 0 r y . 4 4 4 4 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x167 0 dc 0 16 0 r . . 4 4 4 4 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x168 0 dc 0 16 0 r y . 4 4 4 4 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x169 0 dc 0 16 0 r . . 4 4 4 4 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x16a 0 dc 0 16 0 r y . 4 4 4 4 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x16b 0 dc 0 16 0 r . . 4 4 4 4 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x16c 0 dc 0 16 0 r y . 4 4 4 4 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x179 0 dc 0 16 0 r . . 5 6 5 0 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x17a 0 dc 0 16 0 r y . 5 6 5 0 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x17b 0 dc 0 16 0 r . . 5 6 5 0 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x17c 0 dc 0 16 0 r y . 5 6 5 0 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x17d 0 dc 0 16 0 r . . 5 6 5 0 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x17e 0 dc 0 16 0 r y . 5 6 5 0 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x17f 0 dc 0 16 0 r . . 5 6 5 0 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x180 0 dc 0 16 0 r y . 5 6 5 0 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x183 0 dc 0 16 0 r . . 5 5 5 1 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x184 0 dc 0 16 0 r y . 5 5 5 1 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x185 0 dc 0 16 0 r . . 5 5 5 1 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x186 0 dc 0 16 0 r y . 5 5 5 1 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x187 0 dc 0 16 0 r . . 5 5 5 1 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x188 0 dc 0 16 0 r y . 5 5 5 1 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x189 0 dc 0 16 0 r . . 5 5 5 1 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x18a 0 dc 0 16 0 r y . 5 5 5 1 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x197 0 dc 0 16 0 r . . 4 4 4 4 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x198 0 dc 0 16 0 r y . 4 4 4 4 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x199 0 dc 0 16 0 r . . 4 4 4 4 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x19a 0 dc 0 16 0 r y . 4 4 4 4 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x19b 0 dc 0 16 0 r . . 4 4 4 4 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x19c 0 dc 0 16 0 r y . 4 4 4 4 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x19d 0 dc 0 16 0 r . . 4 4 4 4 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x19e 0 dc 0 16 0 r y . 4 4 4 4 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x1ab 32 tc 0 32 0 r . . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x1ac 32 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x1ad 32 tc 0 32 0 r . . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x1ae 32 tc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x1af 32 tc 0 32 0 r . . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x1b0 32 tc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x1b1 32 tc 0 32 0 r . . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x1b2 32 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x1b5 32 tc 0 32 0 r . . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x1b6 32 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 . None 779s 0x1b7 32 tc 0 32 0 r . . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x1b8 32 tc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 . None 779s 0x1b9 32 tc 0 32 0 r . . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x1ba 32 tc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 . None 779s 0x1bb 32 tc 0 32 0 r . . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 . None 779s 0x1bc 32 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 . None 779s 779s Package pymca: 784s -testing /usr/bin/edfviewer: 143 trapped (SIGTERM) This is not an error 789s -testing /usr/bin/elementsinfo: 143 trapped (SIGTERM) This is not an error 794s -testing /usr/bin/mca2edf: 143 trapped (SIGTERM) This is not an error 799s -testing /usr/bin/peakidentifier: 143 trapped (SIGTERM) This is not an error 804s -testing /usr/bin/pymca: 143 trapped (SIGTERM) This is not an error 809s -testing /usr/bin/pymcabatch: 143 trapped (SIGTERM) This is not an error 814s -testing /usr/bin/pymcapostbatch: 143 trapped (SIGTERM) This is not an error 819s -testing /usr/bin/pymcaroitool: 143 trapped (SIGTERM) This is not an error 824s -testing /usr/bin/rgbcorrelator: 143 trapped (SIGTERM) This is not an error 824s Package python3-pymca5: nothing to do 824s Package pymca-data: nothing to do 824s Package pymca-doc: nothing to do 824s /tmp/autopkgtest.FxMiJp/wrapper.sh: checking for leaked background processes... 824s /tmp/autopkgtest.FxMiJp/wrapper.sh: waiting for tee/cat subprocesses... 824s /tmp/autopkgtest.FxMiJp/wrapper.sh: cleaning up... 824s /tmp/autopkgtest.FxMiJp/wrapper.sh: Exit status: 0 824s autopkgtest: DBG: testbed command exited with code 0 824s autopkgtest [12:41:15]: test command2: -----------------------] 824s autopkgtest: DBG: testbed executing test finished with exit status 0 824s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.FxMiJp/command2-stdout /tmp/autopkgtest-work.gxceld1u/out/command2-stdout 825s autopkgtest: DBG: got reply from testbed: ok 825s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.FxMiJp/command2-stderr /tmp/autopkgtest-work.gxceld1u/out/command2-stderr 825s autopkgtest: DBG: got reply from testbed: ok 825s command2 PASS 825s autopkgtest [12:41:16]: test command2: - - - - - - - - - - results - - - - - - - - - - 825s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.FxMiJp/command2-artifacts/ /tmp/autopkgtest-work.gxceld1u/out/artifacts/ 825s autopkgtest: DBG: got reply from testbed: ok 825s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.FxMiJp/command2-artifacts', '/tmp/autopkgtest.FxMiJp/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 825s autopkgtest: DBG: testbed command exited with code 0 825s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 825s autopkgtest [12:41:16]: @@@@@@@@@@@@@@@@@@@@ summary 825s command1 PASS 825s command2 PASS 825s autopkgtest: DBG: testbed stop 825s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.FxMiJp 825s autopkgtest: DBG: sending command to testbed: close 844s autopkgtest: DBG: got reply from testbed: ok 844s autopkgtest: DBG: sending command to testbed: quit 844s nova [W] Using flock in prodstack6-s390x 844s flock: timeout while waiting to get lock 844s Creating nova instance adt-plucky-s390x-pymca-20250219-122731-juju-7f2275-prod-proposed-migration-environment-15-48807185-69b4-4f9c-834d-e7523fe7e00c from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 844s nova [W] Timed out waiting for 2887d691-c533-4455-b6ae-d25baf80772b to get deleted. 844s nova [W] Using flock in prodstack6-s390x 844s flock: timeout while waiting to get lock 844s Creating nova instance adt-plucky-s390x-pymca-20250219-122731-juju-7f2275-prod-proposed-migration-environment-15-48807185-69b4-4f9c-834d-e7523fe7e00c from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 844s nova [W] Timed out waiting for d989142b-7668-4ccd-9269-dc6a8fb54d86 to get deleted.