0s autopkgtest: DBG: testbed init 0s autopkgtest [21:45:34]: starting date and time: 2025-02-15 21:45:34+0000 0s autopkgtest [21:45:34]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [21:45:34]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.yxn4og1o/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:glibc,src:iproute2,src:php-twig,src:postgresql-17,src:postgresql-common,src:roundcube --apt-upgrade chatty --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-5.secgroup --name adt-plucky-s390x-chatty-20250215-214534-juju-7f2275-prod-proposed-migration-environment-15-606f2472-c02e-41d3-b0bc-de933786d8eb --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 108s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.xnTLih 108s autopkgtest: DBG: sending command to testbed: print-execute-command 108s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.ujh2fpfm/runcmd 108s autopkgtest: DBG: sending command to testbed: capabilities 108s autopkgtest: DBG: got reply from testbed: ok revert-full-system isolation-machine revert suggested-normal-user=ubuntu reboot root-on-testbed 108s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'isolation-machine', 'revert', 'suggested-normal-user=ubuntu', 'reboot', 'root-on-testbed', 'has_internet'] 108s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.xnTLih'], kind short, sout raw, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.xnTLih/wrapper.sh 109s autopkgtest: DBG: got reply from testbed: ok 109s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.xnTLih/wrapper.sh'], kind short, sout raw, serr pipe, env [] 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest [21:47:23]: testbed dpkg architecture: s390x 109s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest [21:47:23]: testbed apt version: 2.9.28 109s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest: DBG: testbed has eatmydata 109s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest [21:47:24]: @@@@@@@@@@@@@@@@@@@@ test bed setup 110s 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 [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest [21:47:24]: testbed release detected to be: None 110s 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 [] 110s autopkgtest: DBG: testbed command exited with code 0 110s 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 [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: adding APT source: Types: deb deb-src 110s URIs: http://ftpmaster.internal/ubuntu/ 110s Suites: plucky-proposed 110s Components: main restricted universe multiverse 110s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 110s 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 [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 110s Package: * 110s Pin: release plucky-proposed 110s Pin-Priority: 500 110s 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 [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest [21:47:24]: updating testbed package index (apt update) 110s 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'] 111s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 111s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 111s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 111s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 111s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 111s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [820 kB] 111s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [62.8 kB] 111s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 111s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [80.2 kB] 111s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 111s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [795 kB] 112s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 112s Fetched 1889 kB in 1s (2020 kB/s) 112s Reading package lists... 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 112s Package: * 112s Pin: release plucky-proposed 112s Pin-Priority: 100 112s 112s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 112s Pin: release plucky-proposed 112s Pin-Priority: 995 112s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 112s autopkgtest: DBG: testbed command exited with code 0 112s 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.xnTLih/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 113s autopkgtest: DBG: testbed command exited with code 0 113s 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'] 113s + lsb_release --codename --short 113s + RELEASE=plucky 113s + cat 113s + [ plucky != trusty ] 113s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 113s Reading package lists... 113s Building dependency tree... 113s Reading state information... 113s Calculating upgrade... 113s The following packages were automatically installed and are no longer required: 113s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 113s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 113s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 113s linux-tools-6.11.0-8-generic 113s Use 'sudo apt autoremove' to remove them. 113s The following packages will be upgraded: 113s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 113s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 113s Need to get 1155 kB of archives. 113s After this operation, 16.4 kB of additional disk space will be used. 113s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 114s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 114s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 114s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 114s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 114s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 114s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 114s Preconfiguring packages ... 114s Fetched 1155 kB in 1s (1860 kB/s) 114s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 114s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 114s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 114s Setting up dash (0.5.12-12ubuntu1) ... 114s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 114s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 114s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 114s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 114s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 114s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 115s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 115s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 115s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 115s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 115s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 115s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 115s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 115s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 115s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 115s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 115s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 115s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 115s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 115s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 115s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 115s Setting up libtasn1-6:s390x (4.20.0-2) ... 115s Processing triggers for libc-bin (2.40-4ubuntu1) ... 115s Processing triggers for man-db (2.13.0-1) ... 115s Processing triggers for debianutils (5.21) ... 115s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 115s + /usr/lib/apt/apt-helper analyze-pattern ?true 115s + uname -r 115s + sed s/\./\\./g 115s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 115s + apt list ?obsolete 115s + tail -n+2 115s + cut -d/ -f1 115s + grep -v ^linux-.*6\.12\.0-15-generic.* 116s + true 116s + obsolete_pkgs= 116s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 116s Reading package lists... 116s Building dependency tree... 116s Reading state information... 116s The following packages will be REMOVED: 116s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 116s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 116s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 116s linux-tools-6.11.0-8-generic* 116s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 116s After this operation, 167 MB disk space will be freed. 116s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 116s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 116s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 116s Removing libpython3.12t64:s390x (3.12.9-1) ... 116s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 116s Removing libnsl2:s390x (1.3.0-3build3) ... 116s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 116s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 116s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 117s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 117s Processing triggers for libc-bin (2.40-4ubuntu1) ... 117s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 117s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 117s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 118s + grep -q trusty /etc/lsb-release 118s + [ ! -d /usr/share/doc/unattended-upgrades ] 118s + [ ! -d /usr/share/doc/lxd ] 118s + [ ! -d /usr/share/doc/lxd-client ] 118s + [ ! -d /usr/share/doc/snapd ] 118s + type iptables 118s + cat 118s + chmod 755 /etc/rc.local 118s + . /etc/rc.local 118s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 118s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 118s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 118s + uname -m 118s + [ s390x = ppc64le ] 118s + [ -d /run/systemd/system ] 118s + systemd-detect-virt --quiet --vm 118s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 118s + cat 118s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 118s + echo COMPRESS=lz4 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest [21:47:32]: upgrading testbed (apt dist-upgrade and autopurge) 118s 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'] 118s Reading package lists... 118s Building dependency tree... 118s Reading state information... 118s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 118s Starting 2 pkgProblemResolver with broken count: 0 118s Done 119s Entering ResolveByKeep 119s 119s The following packages will be upgraded: 119s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 119s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 119s Need to get 10.7 MB of archives. 119s After this operation, 305 kB of additional disk space will be used. 119s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 119s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 120s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 120s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 120s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 120s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 120s Preconfiguring packages ... 120s Fetched 10.7 MB in 1s (9367 kB/s) 120s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55867 files and directories currently installed.) 120s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 120s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 120s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 120s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 120s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 120s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 121s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 121s Checking for services that may need to be restarted... 121s Checking init scripts... 121s Checking for services that may need to be restarted... 121s Checking init scripts... 121s Stopping some services possibly affected by the upgrade (will be restarted later): 121s cron: stopping...done. 121s 121s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 121s Setting up libc6:s390x (2.41-1ubuntu1) ... 121s Checking for services that may need to be restarted... 121s Checking init scripts... 121s Restarting services possibly affected by the upgrade: 121s cron: restarting...done. 121s 121s Services restarted successfully. 121s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 121s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 121s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 121s Setting up libc-bin (2.41-1ubuntu1) ... 121s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 121s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 121s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 121s Setting up iproute2 (6.13.0-1ubuntu1) ... 121s Setting up locales (2.41-1ubuntu1) ... 121s Installing new version of config file /etc/locale.alias ... 122s Generating locales (this might take a while)... 123s en_US.UTF-8... done 123s Generation complete. 123s Setting up libc-dev-bin (2.41-1ubuntu1) ... 123s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 123s Processing triggers for man-db (2.13.0-1) ... 124s Processing triggers for systemd (257.2-3ubuntu1) ... 124s autopkgtest: DBG: testbed command exited with code 0 124s 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'] 125s Reading package lists... 125s Building dependency tree... 125s Reading state information... 125s Starting pkgProblemResolver with broken count: 0 125s Starting 2 pkgProblemResolver with broken count: 0 125s Done 125s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 125s autopkgtest: DBG: testbed command exited with code 0 125s 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.xnTLih/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 125s autopkgtest: DBG: testbed command exited with code 1 125s autopkgtest [21:47:39]: rebooting testbed after setup commands that affected boot 125s autopkgtest: DBG: sending command to testbed: reboot 144s autopkgtest: DBG: got reply from testbed: ok 144s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 144s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.xnTLih'], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.xnTLih/autopkgtest-reboot 144s autopkgtest: DBG: got reply from testbed: ok 144s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.xnTLih/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.xnTLih/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.xnTLih/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.xnTLih'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.xnTLih/autopkgtest-reboot-prepare 145s autopkgtest: DBG: got reply from testbed: ok 145s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.xnTLih/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.xnTLih/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest [21:48:00]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 146s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.xnTLih/testbed-packages"], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xnTLih/testbed-packages /tmp/autopkgtest-work.yxn4og1o/out/testbed-packages 147s autopkgtest: DBG: got reply from testbed: ok 147s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 147s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.xnTLih'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.xnTLih/autopkgtest-reboot 147s autopkgtest: DBG: got reply from testbed: ok 147s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.xnTLih/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.xnTLih/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.xnTLih/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.xnTLih'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.xnTLih/autopkgtest-reboot-prepare 148s autopkgtest: DBG: got reply from testbed: ok 148s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.xnTLih/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.xnTLih/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: Binaries: initialising 149s autopkgtest [21:48:03]: @@@@@@@@@@@@@@@@@@@@ apt-source chatty 149s autopkgtest: DBG: blame += chatty 149s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 149s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'chatty'], kind short, sout pipe, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^chatty$'], kind short, sout pipe, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'chatty=0.8.6~rc.0-1'], kind short, sout pipe, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: install_deps: deps_new=[] 150s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s 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.xnTLih/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source chatty=0.8.6~rc.0-1 2>&1) || RC=$?;if [ -n "$RC" ]; then if echo "$OUT" | grep -q "Unable to find a source package"; then exit 1; else exit $RC; fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x chatty_*.dsc src >/dev/null; chmod -R a+rX .; cd [a-z0-9]*/.; pwd >&3; sed -n "1 {s/).*//; s/ (/\\n/; p}" debian/changelog >&3\''], kind build, sout pipe, serr raw, env ['ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1'] 150s + cd / 150s + mktemp -d /tmp/autopkgtest.xnTLih/build.XXX 150s + builddir=/tmp/autopkgtest.xnTLih/build.SiH 150s + cd /tmp/autopkgtest.xnTLih/build.SiH 150s + apt-get source -d -q --only-source chatty=0.8.6~rc.0-1 151s + OUT=Reading package lists... 151s NOTICE: 'chatty' packaging is maintained in the 'Git' version control system at: 151s https://salsa.debian.org/DebianOnMobile-team/chatty.git 151s Please use: 151s git clone https://salsa.debian.org/DebianOnMobile-team/chatty.git 151s to retrieve the latest (possibly unreleased) updates to the package. 151s Need to get 2419 kB of source archives. 151s Get:1 http://ftpmaster.internal/ubuntu plucky/universe chatty 0.8.6~rc.0-1 (dsc) [2894 B] 151s Get:2 http://ftpmaster.internal/ubuntu plucky/universe chatty 0.8.6~rc.0-1 (tar) [2403 kB] 151s Get:3 http://ftpmaster.internal/ubuntu plucky/universe chatty 0.8.6~rc.0-1 (diff) [13.2 kB] 151s Fetched 2419 kB in 1s (3295 kB/s) 151s Download complete and in download only mode 151s + [ -n ] 151s + echo Reading package lists... 151s NOTICE: 'chatty' packaging is maintained in the 'Git' version control system at: 151s https://salsa.debian.org/DebianOnMobile-team/chatty.git 151s Please use: 151s git clone https://salsa.debian.org/DebianOnMobile-team/chatty.git 151s to retrieve the latest (possibly unreleased) updates to the package. 151s Need to get 2419 kB of source archives. 151s Get:1 http://ftpmaster.internal/ubuntu plucky/universe chatty 0.8.6~rc.0-1 (dsc) [2894 B] 151s Get:2 http://ftpmaster.internal/ubuntu plucky/universe chatty 0.8.6~rc.0-1 (tar) [2403 kB] 151s Get:3 http://ftpmaster.internal/ubuntu plucky/universe chatty 0.8.6~rc.0-1 (diff) [13.2 kB] 151s Fetched 2419 kB in 1s (3295 kB/s) 151s Download complete and in download only mode 151s + grep ^Get: 151s Get:1 http://ftpmaster.internal/ubuntu plucky/universe chatty 0.8.6~rc.0-1 (dsc) [2894 B] 151s Get:2 http://ftpmaster.internal/ubuntu plucky/universe chatty 0.8.6~rc.0-1 (tar) [2403 kB] 151s Get:3 http://ftpmaster.internal/ubuntu plucky/universe chatty 0.8.6~rc.0-1 (diff) [13.2 kB] 151s + dpkg-source -x chatty_0.8.6~rc.0-1.dsc src 151s gpgv: Signature made Sat Nov 16 13:05:38 2024 UTC 151s gpgv: using RSA key B9386554B7DD266BCB8E29A990F0C9B18A6B4A19 151s gpgv: issuer "devrtz-debian@fortysixandtwo.eu" 151s gpgv: Can't check signature: No public key 151s dpkg-source: warning: cannot verify inline signature for ./chatty_0.8.6~rc.0-1.dsc: no acceptable signature found 151s + chmod -R a+rX . 151s + cd src/. 151s + pwd 151s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest [21:48:05]: testing package chatty version 0.8.6~rc.0-1 151s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xnTLih/build.SiH/src/debian/ /tmp/autopkgtest-work.yxn4og1o/out/pkg/debian/ 152s autopkgtest: DBG: got reply from testbed: ok 152s autopkgtest: DBG: processing dependency chatty 152s autopkgtest: DBG: marked alternatives ['chatty'] as a synthesised dependency 152s autopkgtest: DBG: processing dependency xauth 152s autopkgtest: DBG: processing dependency xvfb 152s autopkgtest: DBG: Test defined: name command1 path None command "xvfb-run /usr/bin/chatty --help" restrictions ['superficial'] features [] depends ['chatty', 'xauth', 'xvfb'] 152s autopkgtest [21:48:06]: build not needed 152s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xnTLih/build.SiH/src/ /tmp/autopkgtest-work.yxn4og1o/out/tests-tree/ 153s autopkgtest: DBG: got reply from testbed: ok 153s autopkgtest: DBG: processing dependency chatty 153s autopkgtest: DBG: marked alternatives ['chatty'] as a synthesised dependency 153s autopkgtest: DBG: processing dependency xauth 153s autopkgtest: DBG: processing dependency xvfb 153s autopkgtest: DBG: Test defined: name command1 path None command "xvfb-run /usr/bin/chatty --help" restrictions ['superficial'] features [] depends ['chatty', 'xauth', 'xvfb'] 153s autopkgtest [21:48:07]: test command1: preparing testbed 153s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['chatty', 'xauth', 'xvfb'] 153s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 153s autopkgtest: DBG: install_deps: deps_new=['chatty', 'xauth', 'xvfb'] 153s autopkgtest: DBG: install-deps: satisfying chatty, xauth, xvfb 153s autopkgtest: DBG: can use apt-get on testbed: True 153s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'chatty, xauth, xvfb'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 153s Reading package lists... 153s Building dependency tree... 153s Reading state information... 153s Starting pkgProblemResolver with broken count: 0 153s Starting 2 pkgProblemResolver with broken count: 0 153s Done 153s The following NEW packages will be installed: 153s adwaita-icon-theme bubblewrap chatty dconf-gsettings-backend dconf-service 153s dictionaries-common emacsen-common evolution-data-server-common fontconfig 153s fontconfig-config fonts-dejavu-core fonts-dejavu-mono glib-networking 153s glib-networking-common glib-networking-services gnome-desktop3-data 153s gsettings-desktop-schemas gtk-update-icon-cache hicolor-icon-theme 153s hunspell-en-us libabsl20230802 libadwaita-1-0 libappstream5 libaspell15 153s libavahi-client3 libavahi-common-data libavahi-common3 libavahi-glib1 153s libcairo-gobject2 libcairo-script-interpreter2 libcairo2 libcamel-1.2-64t64 153s libcpdb-frontend2t64 libcpdb2t64 libdatrie1 libdbus-glib-1-2 libdconf1 153s libdeflate0 libdrm-radeon1 libduktape207 libebackend-1.2-11t64 153s libebook-1.2-21t64 libebook-contacts-1.2-4t64 libedata-book-1.2-27t64 153s libedataserver-1.2-27t64 libenchant-2-2 libepoxy0 libfarstream-0.2-5 153s libfontconfig1 libfontenc1 libfreetype6 libgadu3t64 libgbm1 153s libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-common libgl1 libgl1-mesa-dri 153s libglapi-mesa libgles2 libglvnd0 libglx-mesa0 libglx0 153s libgnome-desktop-4-2t64 libgraphene-1.0-0 libgraphite2-3 libgssdp-1.6-0 153s libgstreamer-plugins-base1.0-0 libgstreamer1.0-0 libgtk-4-1 libgtk-4-common 153s libgtksourceview-5-0 libgtksourceview-5-common libgupnp-1.6-0 153s libgupnp-igd-1.6-0 libharfbuzz-subset0 libharfbuzz0b libhunspell-1.7-0 153s libice6 libidn12 libjbig0 libjpeg-turbo8 libjpeg8 libmeanwhile1 libnice10 153s libolm3 liborc-0.4-0t64 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 153s libphonenumber8 libpixman-1-0 libprotobuf32t64 libproxy1v5 libpurple0t64 153s libsecret-1-0 libsecret-common libsharpyuv0 libsm6 libsoup-3.0-0 153s libsoup-3.0-common libspelling-1-2 libspelling-common libstemmer0d 153s libthai-data libthai0 libtiff6 libvulkan1 libwayland-client0 libwayland-egl1 153s libwayland-server0 libwebp7 libx11-xcb1 libxaw7 libxcb-dri3-0 libxcb-glx0 153s libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shm0 libxcb-sync1 153s libxcb-xfixes0 libxcursor1 libxdamage1 libxfixes3 libxfont2 libxi6 153s libxinerama1 libxkbfile1 libxkbregistry0 libxmu6 libxpm4 libxrandr2 153s libxrender1 libxshmfence1 libxt6t64 libxxf86vm1 libzephyr4 mesa-libgallium 153s pidgin-data x11-common x11-xkb-utils xserver-common xvfb 154s 0 upgraded, 143 newly installed, 0 to remove and 0 not upgraded. 154s Need to get 38.9 MB of archives. 154s After this operation, 162 MB of additional disk space will be used. 154s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libgdk-pixbuf2.0-common all 2.42.12+dfsg-2 [8004 B] 154s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 154s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 154s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 154s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 154s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 154s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 154s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 154s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libgdk-pixbuf-2.0-0 s390x 2.42.12+dfsg-2 [154 kB] 154s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x gtk-update-icon-cache s390x 4.17.4+ds-4 [52.9 kB] 154s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x hicolor-icon-theme all 0.18-2 [13.3 kB] 154s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x adwaita-icon-theme all 48~beta-3 [578 kB] 154s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x bubblewrap s390x 0.11.0-2 [54.1 kB] 154s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libdconf1 s390x 0.40.0-5 [40.0 kB] 154s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x dconf-service s390x 0.40.0-5 [28.4 kB] 154s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x dconf-gsettings-backend s390x 0.40.0-5 [22.8 kB] 154s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libstemmer0d s390x 2.2.0-4build1 [174 kB] 154s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libappstream5 s390x 1.0.4-1 [236 kB] 154s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphene-1.0-0 s390x 1.10.8-5 [54.2 kB] 154s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 154s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 154s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 154s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-1.1ubuntu2 [37.4 kB] 154s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-1.1ubuntu2 [150 kB] 154s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-0 s390x 0.44.0-3 [201 kB] 154s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 154s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 154s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 154s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo2 s390x 1.18.2-2 [580 kB] 154s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo-gobject2 s390x 1.18.2-2 [127 kB] 154s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo-script-interpreter2 s390x 1.18.2-2 [62.3 kB] 154s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libcpdb2t64 s390x 2.0~b5-1.2build1 [26.3 kB] 154s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libcpdb-frontend2t64 s390x 2.0~b5-1.2build1 [19.4 kB] 154s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libepoxy0 s390x 1.5.10-2 [222 kB] 154s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 154s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 154s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz-subset0 s390x 10.2.0-1 [552 kB] 154s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-1.1ubuntu2 [191 kB] 154s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libthai-data all 0.1.29-2build1 [158 kB] 154s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libdatrie1 s390x 0.2.13-3build1 [20.6 kB] 154s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libthai0 s390x 0.1.29-2build1 [20.7 kB] 154s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libpango-1.0-0 s390x 1.56.1-1 [253 kB] 154s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libpangoft2-1.0-0 s390x 1.56.1-1 [50.3 kB] 154s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libpangocairo-1.0-0 s390x 1.56.1-1 [28.3 kB] 154s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 154s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-1 [27.8 kB] 154s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-egl1 s390x 1.23.1-1 [5654 B] 154s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libxfixes3 s390x 1:6.0.0-2build1 [11.3 kB] 154s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libxcursor1 s390x 1:1.2.3-1 [23.4 kB] 154s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libxdamage1 s390x 1:1.1.6-1build1 [6156 B] 154s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libxi6 s390x 2:1.8.2-1 [35.4 kB] 155s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libxinerama1 s390x 2:1.1.4-3build1 [6476 B] 155s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libxrandr2 s390x 2:1.5.4-1 [20.8 kB] 155s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 155s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libgles2 s390x 1.7.0-1build1 [22.4 kB] 155s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libgtk-4-common all 4.17.4+ds-4 [1508 kB] 155s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libgtk-4-1 s390x 4.17.4+ds-4 [3252 kB] 155s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libadwaita-1-0 s390x 1.6.2-1ubuntu1 [421 kB] 155s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libcamel-1.2-64t64 s390x 3.55.2-1 [504 kB] 155s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libsecret-common all 0.21.6-3 [5130 B] 155s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libsecret-1-0 s390x 0.21.6-3 [115 kB] 155s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libduktape207 s390x 2.7.0+tests-0ubuntu3 [150 kB] 155s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libproxy1v5 s390x 0.5.9-1 [27.8 kB] 155s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x glib-networking-common all 2.80.1-1 [6680 B] 155s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x glib-networking-services s390x 2.80.1-1 [12.8 kB] 155s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x gsettings-desktop-schemas all 48~beta-1ubuntu1 [37.4 kB] 155s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x glib-networking s390x 2.80.1-1 [65.5 kB] 155s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x libsoup-3.0-common all 3.6.4-2 [10.8 kB] 155s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x libsoup-3.0-0 s390x 3.6.4-2 [290 kB] 155s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x evolution-data-server-common all 3.55.2-1 [190 kB] 155s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x libedataserver-1.2-27t64 s390x 3.55.2-1 [288 kB] 155s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x libabsl20230802 s390x 20230802.1-4ubuntu2 [529 kB] 155s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x libprotobuf32t64 s390x 3.21.12-10build1 [944 kB] 155s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x libphonenumber8 s390x 8.13.51+ds-4ubuntu1 [226 kB] 155s Get:75 http://ftpmaster.internal/ubuntu plucky/main s390x libebook-contacts-1.2-4t64 s390x 3.55.2-1 [69.1 kB] 155s Get:76 http://ftpmaster.internal/ubuntu plucky/main s390x libebackend-1.2-11t64 s390x 3.55.2-1 [113 kB] 155s Get:77 http://ftpmaster.internal/ubuntu plucky/main s390x libedata-book-1.2-27t64 s390x 3.55.2-1 [268 kB] 155s Get:78 http://ftpmaster.internal/ubuntu plucky/main s390x libebook-1.2-21t64 s390x 3.55.2-1 [89.7 kB] 155s Get:79 http://ftpmaster.internal/ubuntu plucky/main s390x gnome-desktop3-data all 44.1-2 [29.6 kB] 155s Get:80 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbregistry0 s390x 1.7.0-2 [14.4 kB] 155s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x libgnome-desktop-4-2t64 s390x 44.1-2 [84.3 kB] 155s Get:82 http://ftpmaster.internal/ubuntu plucky/main s390x libgstreamer1.0-0 s390x 1.25.50-1 [1240 kB] 155s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x libgtksourceview-5-common all 5.15.0-3 [14.1 kB] 155s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x libgtksourceview-5-0 s390x 5.15.0-3 [589 kB] 155s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x libolm3 s390x 3.2.16+dfsg-3 [124 kB] 155s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x pidgin-data all 1:2.14.13-1ubuntu3 [4401 kB] 155s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-common-data s390x 0.8-14ubuntu1 [30.5 kB] 155s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-common3 s390x 0.8-14ubuntu1 [23.6 kB] 155s Get:89 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-client3 s390x 0.8-14ubuntu1 [26.8 kB] 155s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-glib1 s390x 0.8-14ubuntu1 [7994 B] 155s Get:91 http://ftpmaster.internal/ubuntu plucky/main s390x libdbus-glib-1-2 s390x 0.112-4 [65.9 kB] 155s Get:92 http://ftpmaster.internal/ubuntu plucky/main s390x liborc-0.4-0t64 s390x 1:0.4.40-1 [212 kB] 155s Get:93 http://ftpmaster.internal/ubuntu plucky/main s390x libgstreamer-plugins-base1.0-0 s390x 1.25.50-1 [919 kB] 155s Get:94 http://ftpmaster.internal/ubuntu plucky/main s390x libgssdp-1.6-0 s390x 1.6.3-1build3 [40.5 kB] 155s Get:95 http://ftpmaster.internal/ubuntu plucky/main s390x libgupnp-1.6-0 s390x 1.6.8-1 [92.4 kB] 155s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x libgupnp-igd-1.6-0 s390x 1.6.0-4 [16.5 kB] 155s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x libnice10 s390x 0.1.22-1 [156 kB] 155s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x libfarstream-0.2-5 s390x 0.2.9-2build3 [193 kB] 155s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x libgadu3t64 s390x 1:1.12.2-6.1build2 [89.5 kB] 155s Get:100 http://ftpmaster.internal/ubuntu plucky/main s390x libidn12 s390x 1.42-3 [56.9 kB] 155s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x libmeanwhile1 s390x 1.1.1-2build2 [76.9 kB] 155s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x libzephyr4 s390x 3.1.2-1.1build1 [29.6 kB] 156s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x libpurple0t64 s390x 1:2.14.13-1ubuntu3 [963 kB] 156s Get:104 http://ftpmaster.internal/ubuntu plucky/main s390x emacsen-common all 3.0.5 [12.1 kB] 156s Get:105 http://ftpmaster.internal/ubuntu plucky/main s390x dictionaries-common all 1.30.4 [176 kB] 156s Get:106 http://ftpmaster.internal/ubuntu plucky/main s390x hunspell-en-us all 1:2020.12.07-3 [586 kB] 156s Get:107 http://ftpmaster.internal/ubuntu plucky/main s390x libaspell15 s390x 0.60.8.1-3 [355 kB] 156s Get:108 http://ftpmaster.internal/ubuntu plucky/main s390x libhunspell-1.7-0 s390x 1.7.2+really1.7.2-10build3 [304 kB] 156s Get:109 http://ftpmaster.internal/ubuntu plucky/main s390x libenchant-2-2 s390x 2.8.2+dfsg1-3 [61.2 kB] 156s Get:110 http://ftpmaster.internal/ubuntu plucky/main s390x libspelling-common all 0.4.6-1 [2746 B] 156s Get:111 http://ftpmaster.internal/ubuntu plucky/main s390x libspelling-1-2 s390x 0.4.6-1 [59.3 kB] 156s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x chatty s390x 0.8.6~rc.0-1 [592 kB] 156s Get:113 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 156s Get:114 http://ftpmaster.internal/ubuntu plucky/main s390x libfontenc1 s390x 1:1.1.8-1build1 [14.8 kB] 156s Get:115 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 156s Get:116 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 156s Get:117 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 156s Get:118 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 156s Get:119 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 156s Get:120 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 156s Get:121 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 156s Get:122 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 156s Get:123 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 156s Get:124 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 156s Get:125 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 156s Get:126 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 156s Get:127 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 156s Get:128 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 156s Get:129 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 156s Get:130 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 156s Get:131 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 156s Get:132 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 156s Get:133 http://ftpmaster.internal/ubuntu plucky/main s390x libxt6t64 s390x 1:1.2.1-1.2build1 [184 kB] 156s Get:134 http://ftpmaster.internal/ubuntu plucky/main s390x libxmu6 s390x 2:1.1.3-3build2 [53.0 kB] 156s Get:135 http://ftpmaster.internal/ubuntu plucky/main s390x libxpm4 s390x 1:3.5.17-1build2 [41.2 kB] 156s Get:136 http://ftpmaster.internal/ubuntu plucky/main s390x libxaw7 s390x 2:1.0.16-1 [201 kB] 157s Get:137 http://ftpmaster.internal/ubuntu plucky/main s390x libxfont2 s390x 1:2.0.6-1build1 [101 kB] 157s Get:138 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbfile1 s390x 1:1.1.0-1build4 [76.5 kB] 157s Get:139 http://ftpmaster.internal/ubuntu plucky/main s390x x11-xkb-utils s390x 7.7+9 [169 kB] 157s Get:140 http://ftpmaster.internal/ubuntu plucky/main s390x xserver-common all 2:21.1.14-2ubuntu1 [33.7 kB] 157s Get:141 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 157s Get:142 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 157s Get:143 http://ftpmaster.internal/ubuntu plucky/universe s390x xvfb s390x 2:21.1.14-2ubuntu1 [941 kB] 157s Preconfiguring packages ... 157s Fetched 38.9 MB in 3s (12.2 MB/s) 157s Selecting previously unselected package libgdk-pixbuf2.0-common. 157s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 157s Preparing to unpack .../000-libgdk-pixbuf2.0-common_2.42.12+dfsg-2_all.deb ... 157s Unpacking libgdk-pixbuf2.0-common (2.42.12+dfsg-2) ... 157s Selecting previously unselected package libjpeg-turbo8:s390x. 157s Preparing to unpack .../001-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 157s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 157s Selecting previously unselected package libjpeg8:s390x. 157s Preparing to unpack .../002-libjpeg8_8c-2ubuntu11_s390x.deb ... 157s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 157s Selecting previously unselected package libdeflate0:s390x. 157s Preparing to unpack .../003-libdeflate0_1.23-1_s390x.deb ... 157s Unpacking libdeflate0:s390x (1.23-1) ... 157s Selecting previously unselected package libjbig0:s390x. 157s Preparing to unpack .../004-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 157s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 157s Selecting previously unselected package libsharpyuv0:s390x. 157s Preparing to unpack .../005-libsharpyuv0_1.5.0-0.1_s390x.deb ... 157s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 157s Selecting previously unselected package libwebp7:s390x. 157s Preparing to unpack .../006-libwebp7_1.5.0-0.1_s390x.deb ... 157s Unpacking libwebp7:s390x (1.5.0-0.1) ... 157s Selecting previously unselected package libtiff6:s390x. 157s Preparing to unpack .../007-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 157s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 157s Selecting previously unselected package libgdk-pixbuf-2.0-0:s390x. 157s Preparing to unpack .../008-libgdk-pixbuf-2.0-0_2.42.12+dfsg-2_s390x.deb ... 157s Unpacking libgdk-pixbuf-2.0-0:s390x (2.42.12+dfsg-2) ... 157s Selecting previously unselected package gtk-update-icon-cache. 157s Preparing to unpack .../009-gtk-update-icon-cache_4.17.4+ds-4_s390x.deb ... 157s No diversion 'diversion of /usr/sbin/update-icon-caches to /usr/sbin/update-icon-caches.gtk2 by libgtk-3-bin', none removed. 157s No diversion 'diversion of /usr/share/man/man8/update-icon-caches.8.gz to /usr/share/man/man8/update-icon-caches.gtk2.8.gz by libgtk-3-bin', none removed. 157s Unpacking gtk-update-icon-cache (4.17.4+ds-4) ... 157s Selecting previously unselected package hicolor-icon-theme. 157s Preparing to unpack .../010-hicolor-icon-theme_0.18-2_all.deb ... 157s Unpacking hicolor-icon-theme (0.18-2) ... 157s Selecting previously unselected package adwaita-icon-theme. 157s Preparing to unpack .../011-adwaita-icon-theme_48~beta-3_all.deb ... 157s Unpacking adwaita-icon-theme (48~beta-3) ... 157s Selecting previously unselected package bubblewrap. 157s Preparing to unpack .../012-bubblewrap_0.11.0-2_s390x.deb ... 157s Unpacking bubblewrap (0.11.0-2) ... 158s Selecting previously unselected package libdconf1:s390x. 158s Preparing to unpack .../013-libdconf1_0.40.0-5_s390x.deb ... 158s Unpacking libdconf1:s390x (0.40.0-5) ... 158s Selecting previously unselected package dconf-service. 158s Preparing to unpack .../014-dconf-service_0.40.0-5_s390x.deb ... 158s Unpacking dconf-service (0.40.0-5) ... 158s Selecting previously unselected package dconf-gsettings-backend:s390x. 158s Preparing to unpack .../015-dconf-gsettings-backend_0.40.0-5_s390x.deb ... 158s Unpacking dconf-gsettings-backend:s390x (0.40.0-5) ... 158s Selecting previously unselected package libstemmer0d:s390x. 158s Preparing to unpack .../016-libstemmer0d_2.2.0-4build1_s390x.deb ... 158s Unpacking libstemmer0d:s390x (2.2.0-4build1) ... 158s Selecting previously unselected package libappstream5:s390x. 158s Preparing to unpack .../017-libappstream5_1.0.4-1_s390x.deb ... 158s Unpacking libappstream5:s390x (1.0.4-1) ... 158s Selecting previously unselected package libgraphene-1.0-0:s390x. 158s Preparing to unpack .../018-libgraphene-1.0-0_1.10.8-5_s390x.deb ... 158s Unpacking libgraphene-1.0-0:s390x (1.10.8-5) ... 158s Selecting previously unselected package libfreetype6:s390x. 158s Preparing to unpack .../019-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 158s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 158s Selecting previously unselected package fonts-dejavu-mono. 158s Preparing to unpack .../020-fonts-dejavu-mono_2.37-8_all.deb ... 158s Unpacking fonts-dejavu-mono (2.37-8) ... 158s Selecting previously unselected package fonts-dejavu-core. 158s Preparing to unpack .../021-fonts-dejavu-core_2.37-8_all.deb ... 158s Unpacking fonts-dejavu-core (2.37-8) ... 158s Selecting previously unselected package fontconfig-config. 158s Preparing to unpack .../022-fontconfig-config_2.15.0-1.1ubuntu2_s390x.deb ... 158s Unpacking fontconfig-config (2.15.0-1.1ubuntu2) ... 158s Selecting previously unselected package libfontconfig1:s390x. 158s Preparing to unpack .../023-libfontconfig1_2.15.0-1.1ubuntu2_s390x.deb ... 158s Unpacking libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 158s Selecting previously unselected package libpixman-1-0:s390x. 158s Preparing to unpack .../024-libpixman-1-0_0.44.0-3_s390x.deb ... 158s Unpacking libpixman-1-0:s390x (0.44.0-3) ... 158s Selecting previously unselected package libxcb-render0:s390x. 158s Preparing to unpack .../025-libxcb-render0_1.17.0-2_s390x.deb ... 158s Unpacking libxcb-render0:s390x (1.17.0-2) ... 158s Selecting previously unselected package libxcb-shm0:s390x. 158s Preparing to unpack .../026-libxcb-shm0_1.17.0-2_s390x.deb ... 158s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 158s Selecting previously unselected package libxrender1:s390x. 158s Preparing to unpack .../027-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 158s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 158s Selecting previously unselected package libcairo2:s390x. 158s Preparing to unpack .../028-libcairo2_1.18.2-2_s390x.deb ... 158s Unpacking libcairo2:s390x (1.18.2-2) ... 158s Selecting previously unselected package libcairo-gobject2:s390x. 158s Preparing to unpack .../029-libcairo-gobject2_1.18.2-2_s390x.deb ... 158s Unpacking libcairo-gobject2:s390x (1.18.2-2) ... 158s Selecting previously unselected package libcairo-script-interpreter2:s390x. 158s Preparing to unpack .../030-libcairo-script-interpreter2_1.18.2-2_s390x.deb ... 158s Unpacking libcairo-script-interpreter2:s390x (1.18.2-2) ... 158s Selecting previously unselected package libcpdb2t64:s390x. 158s Preparing to unpack .../031-libcpdb2t64_2.0~b5-1.2build1_s390x.deb ... 158s Unpacking libcpdb2t64:s390x (2.0~b5-1.2build1) ... 158s Selecting previously unselected package libcpdb-frontend2t64:s390x. 158s Preparing to unpack .../032-libcpdb-frontend2t64_2.0~b5-1.2build1_s390x.deb ... 158s Unpacking libcpdb-frontend2t64:s390x (2.0~b5-1.2build1) ... 158s Selecting previously unselected package libepoxy0:s390x. 158s Preparing to unpack .../033-libepoxy0_1.5.10-2_s390x.deb ... 158s Unpacking libepoxy0:s390x (1.5.10-2) ... 158s Selecting previously unselected package libgraphite2-3:s390x. 158s Preparing to unpack .../034-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 158s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 158s Selecting previously unselected package libharfbuzz0b:s390x. 158s Preparing to unpack .../035-libharfbuzz0b_10.2.0-1_s390x.deb ... 158s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 158s Selecting previously unselected package libharfbuzz-subset0:s390x. 158s Preparing to unpack .../036-libharfbuzz-subset0_10.2.0-1_s390x.deb ... 158s Unpacking libharfbuzz-subset0:s390x (10.2.0-1) ... 158s Selecting previously unselected package fontconfig. 158s Preparing to unpack .../037-fontconfig_2.15.0-1.1ubuntu2_s390x.deb ... 158s Unpacking fontconfig (2.15.0-1.1ubuntu2) ... 158s Selecting previously unselected package libthai-data. 158s Preparing to unpack .../038-libthai-data_0.1.29-2build1_all.deb ... 158s Unpacking libthai-data (0.1.29-2build1) ... 158s Selecting previously unselected package libdatrie1:s390x. 158s Preparing to unpack .../039-libdatrie1_0.2.13-3build1_s390x.deb ... 158s Unpacking libdatrie1:s390x (0.2.13-3build1) ... 158s Selecting previously unselected package libthai0:s390x. 158s Preparing to unpack .../040-libthai0_0.1.29-2build1_s390x.deb ... 158s Unpacking libthai0:s390x (0.1.29-2build1) ... 158s Selecting previously unselected package libpango-1.0-0:s390x. 158s Preparing to unpack .../041-libpango-1.0-0_1.56.1-1_s390x.deb ... 158s Unpacking libpango-1.0-0:s390x (1.56.1-1) ... 158s Selecting previously unselected package libpangoft2-1.0-0:s390x. 158s Preparing to unpack .../042-libpangoft2-1.0-0_1.56.1-1_s390x.deb ... 158s Unpacking libpangoft2-1.0-0:s390x (1.56.1-1) ... 158s Selecting previously unselected package libpangocairo-1.0-0:s390x. 158s Preparing to unpack .../043-libpangocairo-1.0-0_1.56.1-1_s390x.deb ... 158s Unpacking libpangocairo-1.0-0:s390x (1.56.1-1) ... 158s Selecting previously unselected package libvulkan1:s390x. 158s Preparing to unpack .../044-libvulkan1_1.4.304.0-1_s390x.deb ... 158s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 158s Selecting previously unselected package libwayland-client0:s390x. 158s Preparing to unpack .../045-libwayland-client0_1.23.1-1_s390x.deb ... 158s Unpacking libwayland-client0:s390x (1.23.1-1) ... 158s Selecting previously unselected package libwayland-egl1:s390x. 158s Preparing to unpack .../046-libwayland-egl1_1.23.1-1_s390x.deb ... 158s Unpacking libwayland-egl1:s390x (1.23.1-1) ... 158s Selecting previously unselected package libxfixes3:s390x. 158s Preparing to unpack .../047-libxfixes3_1%3a6.0.0-2build1_s390x.deb ... 158s Unpacking libxfixes3:s390x (1:6.0.0-2build1) ... 158s Selecting previously unselected package libxcursor1:s390x. 158s Preparing to unpack .../048-libxcursor1_1%3a1.2.3-1_s390x.deb ... 158s Unpacking libxcursor1:s390x (1:1.2.3-1) ... 158s Selecting previously unselected package libxdamage1:s390x. 158s Preparing to unpack .../049-libxdamage1_1%3a1.1.6-1build1_s390x.deb ... 158s Unpacking libxdamage1:s390x (1:1.1.6-1build1) ... 158s Selecting previously unselected package libxi6:s390x. 158s Preparing to unpack .../050-libxi6_2%3a1.8.2-1_s390x.deb ... 158s Unpacking libxi6:s390x (2:1.8.2-1) ... 158s Selecting previously unselected package libxinerama1:s390x. 158s Preparing to unpack .../051-libxinerama1_2%3a1.1.4-3build1_s390x.deb ... 158s Unpacking libxinerama1:s390x (2:1.1.4-3build1) ... 158s Selecting previously unselected package libxrandr2:s390x. 158s Preparing to unpack .../052-libxrandr2_2%3a1.5.4-1_s390x.deb ... 158s Unpacking libxrandr2:s390x (2:1.5.4-1) ... 158s Selecting previously unselected package libglvnd0:s390x. 158s Preparing to unpack .../053-libglvnd0_1.7.0-1build1_s390x.deb ... 158s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 158s Selecting previously unselected package libgles2:s390x. 158s Preparing to unpack .../054-libgles2_1.7.0-1build1_s390x.deb ... 158s Unpacking libgles2:s390x (1.7.0-1build1) ... 158s Selecting previously unselected package libgtk-4-common. 158s Preparing to unpack .../055-libgtk-4-common_4.17.4+ds-4_all.deb ... 158s Unpacking libgtk-4-common (4.17.4+ds-4) ... 158s Selecting previously unselected package libgtk-4-1:s390x. 158s Preparing to unpack .../056-libgtk-4-1_4.17.4+ds-4_s390x.deb ... 158s Unpacking libgtk-4-1:s390x (4.17.4+ds-4) ... 158s Selecting previously unselected package libadwaita-1-0:s390x. 158s Preparing to unpack .../057-libadwaita-1-0_1.6.2-1ubuntu1_s390x.deb ... 158s Unpacking libadwaita-1-0:s390x (1.6.2-1ubuntu1) ... 158s Selecting previously unselected package libcamel-1.2-64t64:s390x. 158s Preparing to unpack .../058-libcamel-1.2-64t64_3.55.2-1_s390x.deb ... 158s Unpacking libcamel-1.2-64t64:s390x (3.55.2-1) ... 158s Selecting previously unselected package libsecret-common. 158s Preparing to unpack .../059-libsecret-common_0.21.6-3_all.deb ... 158s Unpacking libsecret-common (0.21.6-3) ... 158s Selecting previously unselected package libsecret-1-0:s390x. 158s Preparing to unpack .../060-libsecret-1-0_0.21.6-3_s390x.deb ... 158s Unpacking libsecret-1-0:s390x (0.21.6-3) ... 158s Selecting previously unselected package libduktape207:s390x. 158s Preparing to unpack .../061-libduktape207_2.7.0+tests-0ubuntu3_s390x.deb ... 158s Unpacking libduktape207:s390x (2.7.0+tests-0ubuntu3) ... 158s Selecting previously unselected package libproxy1v5:s390x. 158s Preparing to unpack .../062-libproxy1v5_0.5.9-1_s390x.deb ... 158s Unpacking libproxy1v5:s390x (0.5.9-1) ... 158s Selecting previously unselected package glib-networking-common. 158s Preparing to unpack .../063-glib-networking-common_2.80.1-1_all.deb ... 158s Unpacking glib-networking-common (2.80.1-1) ... 158s Selecting previously unselected package glib-networking-services. 158s Preparing to unpack .../064-glib-networking-services_2.80.1-1_s390x.deb ... 158s Unpacking glib-networking-services (2.80.1-1) ... 158s Selecting previously unselected package gsettings-desktop-schemas. 158s Preparing to unpack .../065-gsettings-desktop-schemas_48~beta-1ubuntu1_all.deb ... 158s Unpacking gsettings-desktop-schemas (48~beta-1ubuntu1) ... 158s Selecting previously unselected package glib-networking:s390x. 158s Preparing to unpack .../066-glib-networking_2.80.1-1_s390x.deb ... 158s Unpacking glib-networking:s390x (2.80.1-1) ... 158s Selecting previously unselected package libsoup-3.0-common. 158s Preparing to unpack .../067-libsoup-3.0-common_3.6.4-2_all.deb ... 158s Unpacking libsoup-3.0-common (3.6.4-2) ... 158s Selecting previously unselected package libsoup-3.0-0:s390x. 158s Preparing to unpack .../068-libsoup-3.0-0_3.6.4-2_s390x.deb ... 158s Unpacking libsoup-3.0-0:s390x (3.6.4-2) ... 158s Selecting previously unselected package evolution-data-server-common. 158s Preparing to unpack .../069-evolution-data-server-common_3.55.2-1_all.deb ... 158s Unpacking evolution-data-server-common (3.55.2-1) ... 158s Selecting previously unselected package libedataserver-1.2-27t64:s390x. 158s Preparing to unpack .../070-libedataserver-1.2-27t64_3.55.2-1_s390x.deb ... 158s Unpacking libedataserver-1.2-27t64:s390x (3.55.2-1) ... 158s Selecting previously unselected package libabsl20230802:s390x. 158s Preparing to unpack .../071-libabsl20230802_20230802.1-4ubuntu2_s390x.deb ... 158s Unpacking libabsl20230802:s390x (20230802.1-4ubuntu2) ... 158s Selecting previously unselected package libprotobuf32t64:s390x. 158s Preparing to unpack .../072-libprotobuf32t64_3.21.12-10build1_s390x.deb ... 158s Unpacking libprotobuf32t64:s390x (3.21.12-10build1) ... 158s Selecting previously unselected package libphonenumber8:s390x. 158s Preparing to unpack .../073-libphonenumber8_8.13.51+ds-4ubuntu1_s390x.deb ... 158s Unpacking libphonenumber8:s390x (8.13.51+ds-4ubuntu1) ... 158s Selecting previously unselected package libebook-contacts-1.2-4t64:s390x. 158s Preparing to unpack .../074-libebook-contacts-1.2-4t64_3.55.2-1_s390x.deb ... 158s Unpacking libebook-contacts-1.2-4t64:s390x (3.55.2-1) ... 158s Selecting previously unselected package libebackend-1.2-11t64:s390x. 158s Preparing to unpack .../075-libebackend-1.2-11t64_3.55.2-1_s390x.deb ... 158s Unpacking libebackend-1.2-11t64:s390x (3.55.2-1) ... 158s Selecting previously unselected package libedata-book-1.2-27t64:s390x. 158s Preparing to unpack .../076-libedata-book-1.2-27t64_3.55.2-1_s390x.deb ... 158s Unpacking libedata-book-1.2-27t64:s390x (3.55.2-1) ... 158s Selecting previously unselected package libebook-1.2-21t64:s390x. 158s Preparing to unpack .../077-libebook-1.2-21t64_3.55.2-1_s390x.deb ... 158s Unpacking libebook-1.2-21t64:s390x (3.55.2-1) ... 158s Selecting previously unselected package gnome-desktop3-data. 158s Preparing to unpack .../078-gnome-desktop3-data_44.1-2_all.deb ... 158s Unpacking gnome-desktop3-data (44.1-2) ... 158s Selecting previously unselected package libxkbregistry0:s390x. 158s Preparing to unpack .../079-libxkbregistry0_1.7.0-2_s390x.deb ... 158s Unpacking libxkbregistry0:s390x (1.7.0-2) ... 158s Selecting previously unselected package libgnome-desktop-4-2t64:s390x. 159s Preparing to unpack .../080-libgnome-desktop-4-2t64_44.1-2_s390x.deb ... 159s Unpacking libgnome-desktop-4-2t64:s390x (44.1-2) ... 159s Selecting previously unselected package libgstreamer1.0-0:s390x. 159s Preparing to unpack .../081-libgstreamer1.0-0_1.25.50-1_s390x.deb ... 159s Unpacking libgstreamer1.0-0:s390x (1.25.50-1) ... 159s Selecting previously unselected package libgtksourceview-5-common. 159s Preparing to unpack .../082-libgtksourceview-5-common_5.15.0-3_all.deb ... 159s Unpacking libgtksourceview-5-common (5.15.0-3) ... 159s Selecting previously unselected package libgtksourceview-5-0:s390x. 159s Preparing to unpack .../083-libgtksourceview-5-0_5.15.0-3_s390x.deb ... 159s Unpacking libgtksourceview-5-0:s390x (5.15.0-3) ... 159s Selecting previously unselected package libolm3:s390x. 159s Preparing to unpack .../084-libolm3_3.2.16+dfsg-3_s390x.deb ... 159s Unpacking libolm3:s390x (3.2.16+dfsg-3) ... 159s Selecting previously unselected package pidgin-data. 159s Preparing to unpack .../085-pidgin-data_1%3a2.14.13-1ubuntu3_all.deb ... 159s Unpacking pidgin-data (1:2.14.13-1ubuntu3) ... 159s Selecting previously unselected package libavahi-common-data:s390x. 159s Preparing to unpack .../086-libavahi-common-data_0.8-14ubuntu1_s390x.deb ... 159s Unpacking libavahi-common-data:s390x (0.8-14ubuntu1) ... 159s Selecting previously unselected package libavahi-common3:s390x. 159s Preparing to unpack .../087-libavahi-common3_0.8-14ubuntu1_s390x.deb ... 159s Unpacking libavahi-common3:s390x (0.8-14ubuntu1) ... 159s Selecting previously unselected package libavahi-client3:s390x. 159s Preparing to unpack .../088-libavahi-client3_0.8-14ubuntu1_s390x.deb ... 159s Unpacking libavahi-client3:s390x (0.8-14ubuntu1) ... 159s Selecting previously unselected package libavahi-glib1:s390x. 159s Preparing to unpack .../089-libavahi-glib1_0.8-14ubuntu1_s390x.deb ... 159s Unpacking libavahi-glib1:s390x (0.8-14ubuntu1) ... 159s Selecting previously unselected package libdbus-glib-1-2:s390x. 159s Preparing to unpack .../090-libdbus-glib-1-2_0.112-4_s390x.deb ... 159s Unpacking libdbus-glib-1-2:s390x (0.112-4) ... 159s Selecting previously unselected package liborc-0.4-0t64:s390x. 159s Preparing to unpack .../091-liborc-0.4-0t64_1%3a0.4.40-1_s390x.deb ... 159s Unpacking liborc-0.4-0t64:s390x (1:0.4.40-1) ... 159s Selecting previously unselected package libgstreamer-plugins-base1.0-0:s390x. 159s Preparing to unpack .../092-libgstreamer-plugins-base1.0-0_1.25.50-1_s390x.deb ... 159s Unpacking libgstreamer-plugins-base1.0-0:s390x (1.25.50-1) ... 159s Selecting previously unselected package libgssdp-1.6-0:s390x. 159s Preparing to unpack .../093-libgssdp-1.6-0_1.6.3-1build3_s390x.deb ... 159s Unpacking libgssdp-1.6-0:s390x (1.6.3-1build3) ... 159s Selecting previously unselected package libgupnp-1.6-0:s390x. 159s Preparing to unpack .../094-libgupnp-1.6-0_1.6.8-1_s390x.deb ... 159s Unpacking libgupnp-1.6-0:s390x (1.6.8-1) ... 159s Selecting previously unselected package libgupnp-igd-1.6-0:s390x. 159s Preparing to unpack .../095-libgupnp-igd-1.6-0_1.6.0-4_s390x.deb ... 159s Unpacking libgupnp-igd-1.6-0:s390x (1.6.0-4) ... 159s Selecting previously unselected package libnice10:s390x. 159s Preparing to unpack .../096-libnice10_0.1.22-1_s390x.deb ... 159s Unpacking libnice10:s390x (0.1.22-1) ... 159s Selecting previously unselected package libfarstream-0.2-5:s390x. 159s Preparing to unpack .../097-libfarstream-0.2-5_0.2.9-2build3_s390x.deb ... 159s Unpacking libfarstream-0.2-5:s390x (0.2.9-2build3) ... 159s Selecting previously unselected package libgadu3t64:s390x. 159s Preparing to unpack .../098-libgadu3t64_1%3a1.12.2-6.1build2_s390x.deb ... 159s Unpacking libgadu3t64:s390x (1:1.12.2-6.1build2) ... 159s Selecting previously unselected package libidn12:s390x. 159s Preparing to unpack .../099-libidn12_1.42-3_s390x.deb ... 159s Unpacking libidn12:s390x (1.42-3) ... 159s Selecting previously unselected package libmeanwhile1:s390x. 159s Preparing to unpack .../100-libmeanwhile1_1.1.1-2build2_s390x.deb ... 159s Unpacking libmeanwhile1:s390x (1.1.1-2build2) ... 159s Selecting previously unselected package libzephyr4:s390x. 159s Preparing to unpack .../101-libzephyr4_3.1.2-1.1build1_s390x.deb ... 159s Unpacking libzephyr4:s390x (3.1.2-1.1build1) ... 159s Selecting previously unselected package libpurple0t64:s390x. 159s Preparing to unpack .../102-libpurple0t64_1%3a2.14.13-1ubuntu3_s390x.deb ... 159s Unpacking libpurple0t64:s390x (1:2.14.13-1ubuntu3) ... 159s Selecting previously unselected package emacsen-common. 159s Preparing to unpack .../103-emacsen-common_3.0.5_all.deb ... 159s Unpacking emacsen-common (3.0.5) ... 159s Selecting previously unselected package dictionaries-common. 159s Preparing to unpack .../104-dictionaries-common_1.30.4_all.deb ... 159s Adding 'diversion of /usr/share/dict/words to /usr/share/dict/words.pre-dictionaries-common by dictionaries-common' 159s Unpacking dictionaries-common (1.30.4) ... 159s Selecting previously unselected package hunspell-en-us. 159s Preparing to unpack .../105-hunspell-en-us_1%3a2020.12.07-3_all.deb ... 159s Unpacking hunspell-en-us (1:2020.12.07-3) ... 159s Selecting previously unselected package libaspell15:s390x. 159s Preparing to unpack .../106-libaspell15_0.60.8.1-3_s390x.deb ... 159s Unpacking libaspell15:s390x (0.60.8.1-3) ... 159s Selecting previously unselected package libhunspell-1.7-0:s390x. 159s Preparing to unpack .../107-libhunspell-1.7-0_1.7.2+really1.7.2-10build3_s390x.deb ... 159s Unpacking libhunspell-1.7-0:s390x (1.7.2+really1.7.2-10build3) ... 159s Selecting previously unselected package libenchant-2-2:s390x. 159s Preparing to unpack .../108-libenchant-2-2_2.8.2+dfsg1-3_s390x.deb ... 159s Unpacking libenchant-2-2:s390x (2.8.2+dfsg1-3) ... 159s Selecting previously unselected package libspelling-common. 159s Preparing to unpack .../109-libspelling-common_0.4.6-1_all.deb ... 159s Unpacking libspelling-common (0.4.6-1) ... 159s Selecting previously unselected package libspelling-1-2:s390x. 159s Preparing to unpack .../110-libspelling-1-2_0.4.6-1_s390x.deb ... 159s Unpacking libspelling-1-2:s390x (0.4.6-1) ... 159s Selecting previously unselected package chatty. 159s Preparing to unpack .../111-chatty_0.8.6~rc.0-1_s390x.deb ... 159s Unpacking chatty (0.8.6~rc.0-1) ... 159s Selecting previously unselected package libdrm-radeon1:s390x. 159s Preparing to unpack .../112-libdrm-radeon1_2.4.123-1_s390x.deb ... 159s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 159s Selecting previously unselected package libfontenc1:s390x. 159s Preparing to unpack .../113-libfontenc1_1%3a1.1.8-1build1_s390x.deb ... 159s Unpacking libfontenc1:s390x (1:1.1.8-1build1) ... 159s Selecting previously unselected package libwayland-server0:s390x. 159s Preparing to unpack .../114-libwayland-server0_1.23.1-1_s390x.deb ... 159s Unpacking libwayland-server0:s390x (1.23.1-1) ... 159s Selecting previously unselected package libglapi-mesa:s390x. 159s Preparing to unpack .../115-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 159s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 159s Selecting previously unselected package libx11-xcb1:s390x. 159s Preparing to unpack .../116-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 159s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 159s Selecting previously unselected package libxcb-dri3-0:s390x. 159s Preparing to unpack .../117-libxcb-dri3-0_1.17.0-2_s390x.deb ... 159s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 159s Selecting previously unselected package libxcb-present0:s390x. 159s Preparing to unpack .../118-libxcb-present0_1.17.0-2_s390x.deb ... 159s Unpacking libxcb-present0:s390x (1.17.0-2) ... 159s Selecting previously unselected package libxcb-randr0:s390x. 159s Preparing to unpack .../119-libxcb-randr0_1.17.0-2_s390x.deb ... 159s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 159s Selecting previously unselected package libxcb-sync1:s390x. 159s Preparing to unpack .../120-libxcb-sync1_1.17.0-2_s390x.deb ... 159s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 159s Selecting previously unselected package libxcb-xfixes0:s390x. 159s Preparing to unpack .../121-libxcb-xfixes0_1.17.0-2_s390x.deb ... 159s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 159s Selecting previously unselected package libxshmfence1:s390x. 159s Preparing to unpack .../122-libxshmfence1_1.3-1build5_s390x.deb ... 159s Unpacking libxshmfence1:s390x (1.3-1build5) ... 159s Selecting previously unselected package mesa-libgallium:s390x. 159s Preparing to unpack .../123-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 159s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 159s Selecting previously unselected package libgbm1:s390x. 159s Preparing to unpack .../124-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 159s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 159s Selecting previously unselected package libgl1-mesa-dri:s390x. 159s Preparing to unpack .../125-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 159s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 159s Selecting previously unselected package libxcb-glx0:s390x. 159s Preparing to unpack .../126-libxcb-glx0_1.17.0-2_s390x.deb ... 159s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 159s Selecting previously unselected package libxxf86vm1:s390x. 159s Preparing to unpack .../127-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 159s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 159s Selecting previously unselected package libglx-mesa0:s390x. 159s Preparing to unpack .../128-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 159s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 159s Selecting previously unselected package x11-common. 159s Preparing to unpack .../129-x11-common_1%3a7.7+23ubuntu3_all.deb ... 159s Unpacking x11-common (1:7.7+23ubuntu3) ... 159s Selecting previously unselected package libice6:s390x. 159s Preparing to unpack .../130-libice6_2%3a1.1.1-1_s390x.deb ... 159s Unpacking libice6:s390x (2:1.1.1-1) ... 159s Selecting previously unselected package libsm6:s390x. 159s Preparing to unpack .../131-libsm6_2%3a1.2.4-1_s390x.deb ... 159s Unpacking libsm6:s390x (2:1.2.4-1) ... 159s Selecting previously unselected package libxt6t64:s390x. 159s Preparing to unpack .../132-libxt6t64_1%3a1.2.1-1.2build1_s390x.deb ... 159s Unpacking libxt6t64:s390x (1:1.2.1-1.2build1) ... 159s Selecting previously unselected package libxmu6:s390x. 159s Preparing to unpack .../133-libxmu6_2%3a1.1.3-3build2_s390x.deb ... 159s Unpacking libxmu6:s390x (2:1.1.3-3build2) ... 159s Selecting previously unselected package libxpm4:s390x. 159s Preparing to unpack .../134-libxpm4_1%3a3.5.17-1build2_s390x.deb ... 159s Unpacking libxpm4:s390x (1:3.5.17-1build2) ... 159s Selecting previously unselected package libxaw7:s390x. 159s Preparing to unpack .../135-libxaw7_2%3a1.0.16-1_s390x.deb ... 159s Unpacking libxaw7:s390x (2:1.0.16-1) ... 160s Selecting previously unselected package libxfont2:s390x. 160s Preparing to unpack .../136-libxfont2_1%3a2.0.6-1build1_s390x.deb ... 160s Unpacking libxfont2:s390x (1:2.0.6-1build1) ... 160s Selecting previously unselected package libxkbfile1:s390x. 160s Preparing to unpack .../137-libxkbfile1_1%3a1.1.0-1build4_s390x.deb ... 160s Unpacking libxkbfile1:s390x (1:1.1.0-1build4) ... 160s Selecting previously unselected package x11-xkb-utils. 160s Preparing to unpack .../138-x11-xkb-utils_7.7+9_s390x.deb ... 160s Unpacking x11-xkb-utils (7.7+9) ... 160s Selecting previously unselected package xserver-common. 160s Preparing to unpack .../139-xserver-common_2%3a21.1.14-2ubuntu1_all.deb ... 160s Unpacking xserver-common (2:21.1.14-2ubuntu1) ... 160s Selecting previously unselected package libglx0:s390x. 160s Preparing to unpack .../140-libglx0_1.7.0-1build1_s390x.deb ... 160s Unpacking libglx0:s390x (1.7.0-1build1) ... 160s Selecting previously unselected package libgl1:s390x. 160s Preparing to unpack .../141-libgl1_1.7.0-1build1_s390x.deb ... 160s Unpacking libgl1:s390x (1.7.0-1build1) ... 160s Selecting previously unselected package xvfb. 160s Preparing to unpack .../142-xvfb_2%3a21.1.14-2ubuntu1_s390x.deb ... 160s Unpacking xvfb (2:21.1.14-2ubuntu1) ... 160s Setting up libcamel-1.2-64t64:s390x (3.55.2-1) ... 160s Setting up bubblewrap (0.11.0-2) ... 160s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 160s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 160s Setting up libpixman-1-0:s390x (0.44.0-3) ... 160s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 160s Setting up libwayland-server0:s390x (1.23.1-1) ... 160s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 160s Setting up libprotobuf32t64:s390x (3.21.12-10build1) ... 160s Setting up libxdamage1:s390x (1:1.1.6-1build1) ... 160s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 160s Setting up libxpm4:s390x (1:3.5.17-1build2) ... 160s Setting up hicolor-icon-theme (0.18-2) ... 160s Setting up libxi6:s390x (2:1.8.2-1) ... 160s Setting up libgtksourceview-5-common (5.15.0-3) ... 160s Setting up libzephyr4:s390x (3.1.2-1.1build1) ... 160s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 160s Setting up libdatrie1:s390x (0.2.13-3build1) ... 160s Setting up libxcb-render0:s390x (1.17.0-2) ... 160s Setting up pidgin-data (1:2.14.13-1ubuntu3) ... 160s Setting up libaspell15:s390x (0.60.8.1-3) ... 160s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 160s Setting up libglvnd0:s390x (1.7.0-1build1) ... 160s Setting up libxcb-glx0:s390x (1.17.0-2) ... 160s Setting up libgdk-pixbuf2.0-common (2.42.12+dfsg-2) ... 160s Setting up x11-common (1:7.7+23ubuntu3) ... 160s Setting up libdeflate0:s390x (1.23-1) ... 160s Setting up libcpdb2t64:s390x (2.0~b5-1.2build1) ... 160s Setting up libmeanwhile1:s390x (1.1.1-2build2) ... 160s Setting up libgadu3t64:s390x (1:1.12.2-6.1build2) ... 160s Setting up libspelling-common (0.4.6-1) ... 160s Setting up libxcb-shm0:s390x (1.17.0-2) ... 160s Setting up libcpdb-frontend2t64:s390x (2.0~b5-1.2build1) ... 160s Setting up libsoup-3.0-common (3.6.4-2) ... 160s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 160s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 160s Setting up liborc-0.4-0t64:s390x (1:0.4.40-1) ... 160s Setting up libxcb-present0:s390x (1.17.0-2) ... 160s Setting up libdconf1:s390x (0.40.0-5) ... 160s Setting up gnome-desktop3-data (44.1-2) ... 160s Setting up libfontenc1:s390x (1:1.1.8-1build1) ... 160s Setting up libgles2:s390x (1.7.0-1build1) ... 160s Setting up emacsen-common (3.0.5) ... 160s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 160s Setting up libxkbregistry0:s390x (1.7.0-2) ... 160s Setting up libepoxy0:s390x (1.5.10-2) ... 160s Setting up libxfixes3:s390x (1:6.0.0-2build1) ... 160s Setting up libxcb-sync1:s390x (1.17.0-2) ... 160s Setting up libolm3:s390x (3.2.16+dfsg-3) ... 160s Setting up libdbus-glib-1-2:s390x (0.112-4) ... 160s Setting up libavahi-common-data:s390x (0.8-14ubuntu1) ... 160s Setting up libxinerama1:s390x (2:1.1.4-3build1) ... 160s Setting up fonts-dejavu-mono (2.37-8) ... 160s Setting up libidn12:s390x (1.42-3) ... 160s Setting up libxrandr2:s390x (2:1.5.4-1) ... 160s Setting up fonts-dejavu-core (2.37-8) ... 160s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 160s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 160s Setting up libvulkan1:s390x (1.4.304.0-1) ... 160s Setting up libwebp7:s390x (1.5.0-0.1) ... 160s Setting up libduktape207:s390x (2.7.0+tests-0ubuntu3) ... 160s Setting up libxshmfence1:s390x (1.3-1build5) ... 160s Setting up libxcb-randr0:s390x (1.17.0-2) ... 160s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 160s Setting up libthai-data (0.1.29-2build1) ... 160s Setting up libabsl20230802:s390x (20230802.1-4ubuntu2) ... 160s Setting up libwayland-egl1:s390x (1.23.1-1) ... 160s Setting up libstemmer0d:s390x (2.2.0-4build1) ... 160s Setting up libxkbfile1:s390x (1:1.1.0-1build4) ... 160s Setting up libhunspell-1.7-0:s390x (1.7.2+really1.7.2-10build3) ... 160s Setting up glib-networking-common (2.80.1-1) ... 160s Setting up libxfont2:s390x (1:2.0.6-1build1) ... 160s Setting up libsecret-common (0.21.6-3) ... 160s Setting up libgstreamer1.0-0:s390x (1.25.50-1) ... 160s Setcap worked! gst-ptp-helper is not suid! 160s Setting up libgraphene-1.0-0:s390x (1.10.8-5) ... 160s Setting up libwayland-client0:s390x (1.23.1-1) ... 160s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 160s Setting up libice6:s390x (2:1.1.1-1) ... 160s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 160s Setting up libproxy1v5:s390x (0.5.9-1) ... 160s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 160s Setting up dictionaries-common (1.30.4) ... 160s Setting up fontconfig-config (2.15.0-1.1ubuntu2) ... 160s Setting up libxcursor1:s390x (1:1.2.3-1) ... 160s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 160s Setting up libavahi-common3:s390x (0.8-14ubuntu1) ... 160s Setting up libappstream5:s390x (1.0.4-1) ... 160s Setting up libgstreamer-plugins-base1.0-0:s390x (1.25.50-1) ... 160s Setting up dconf-service (0.40.0-5) ... 160s Setting up libphonenumber8:s390x (8.13.51+ds-4ubuntu1) ... 160s Setting up libthai0:s390x (0.1.29-2build1) ... 160s Setting up libsecret-1-0:s390x (0.21.6-3) ... 160s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 160s Setting up hunspell-en-us (1:2020.12.07-3) ... 160s Setting up libharfbuzz-subset0:s390x (10.2.0-1) ... 160s Setting up libgdk-pixbuf-2.0-0:s390x (2.42.12+dfsg-2) ... 160s Setting up libavahi-glib1:s390x (0.8-14ubuntu1) ... 160s Setting up libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 160s Setting up libsm6:s390x (2:1.2.4-1) ... 160s Setting up libavahi-client3:s390x (0.8-14ubuntu1) ... 160s Setting up glib-networking-services (2.80.1-1) ... 160s Setting up gtk-update-icon-cache (4.17.4+ds-4) ... 160s Setting up fontconfig (2.15.0-1.1ubuntu2) ... 162s Regenerating fonts cache... done. 162s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 162s Setting up libglx0:s390x (1.7.0-1build1) ... 162s Setting up dconf-gsettings-backend:s390x (0.40.0-5) ... 162s Setting up libenchant-2-2:s390x (2.8.2+dfsg1-3) ... 162s Setting up libpango-1.0-0:s390x (1.56.1-1) ... 162s Setting up libcairo2:s390x (1.18.2-2) ... 162s Setting up libgl1:s390x (1.7.0-1build1) ... 162s Setting up adwaita-icon-theme (48~beta-3) ... 162s update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode 162s Setting up libxt6t64:s390x (1:1.2.1-1.2build1) ... 162s Setting up libcairo-gobject2:s390x (1.18.2-2) ... 162s Setting up libgtk-4-common (4.17.4+ds-4) ... 162s Setting up libpangoft2-1.0-0:s390x (1.56.1-1) ... 162s Setting up evolution-data-server-common (3.55.2-1) ... 162s Setting up libpangocairo-1.0-0:s390x (1.56.1-1) ... 162s Setting up libcairo-script-interpreter2:s390x (1.18.2-2) ... 162s Setting up gsettings-desktop-schemas (48~beta-1ubuntu1) ... 162s Setting up libxmu6:s390x (2:1.1.3-3build2) ... 162s Setting up libxaw7:s390x (2:1.0.16-1) ... 162s Setting up x11-xkb-utils (7.7+9) ... 162s Setting up xserver-common (2:21.1.14-2ubuntu1) ... 162s Setting up xvfb (2:21.1.14-2ubuntu1) ... 162s Processing triggers for systemd (257.2-3ubuntu1) ... 162s Processing triggers for man-db (2.13.0-1) ... 163s Processing triggers for libglib2.0-0t64:s390x (2.83.3-2) ... 163s Setting up libgtk-4-1:s390x (4.17.4+ds-4) ... 163s Setting up glib-networking:s390x (2.80.1-1) ... 163s Setting up libgtksourceview-5-0:s390x (5.15.0-3) ... 163s Processing triggers for libc-bin (2.41-1ubuntu1) ... 163s Setting up libsoup-3.0-0:s390x (3.6.4-2) ... 163s Setting up libadwaita-1-0:s390x (1.6.2-1ubuntu1) ... 163s Setting up libgssdp-1.6-0:s390x (1.6.3-1build3) ... 163s Setting up libgnome-desktop-4-2t64:s390x (44.1-2) ... 163s Setting up libspelling-1-2:s390x (0.4.6-1) ... 163s Setting up libedataserver-1.2-27t64:s390x (3.55.2-1) ... 163s Setting up libgupnp-1.6-0:s390x (1.6.8-1) ... 163s Setting up libebook-contacts-1.2-4t64:s390x (3.55.2-1) ... 163s Setting up libgupnp-igd-1.6-0:s390x (1.6.0-4) ... 163s Setting up libebackend-1.2-11t64:s390x (3.55.2-1) ... 163s Setting up libedata-book-1.2-27t64:s390x (3.55.2-1) ... 163s Setting up libnice10:s390x (0.1.22-1) ... 163s Setting up libfarstream-0.2-5:s390x (0.2.9-2build3) ... 163s Setting up libebook-1.2-21t64:s390x (3.55.2-1) ... 163s Setting up libpurple0t64:s390x (1:2.14.13-1ubuntu3) ... 163s Setting up chatty (0.8.6~rc.0-1) ... 163s Processing triggers for dictionaries-common (1.30.4) ... 164s Processing triggers for libc-bin (2.41-1ubuntu1) ... 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'chatty'], kind short, sout pipe, serr pipe, env [] 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.xnTLih/command1-packages.all"], kind short, sout raw, serr pipe, env [] 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xnTLih/command1-packages.all /tmp/autopkgtest-work.yxn4og1o/out/command1-packages.all 164s autopkgtest: DBG: got reply from testbed: ok 164s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.xnTLih/build.SiH/src'], kind short, sout raw, serr raw, env [] 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.xnTLih/build.SiH/src already exists 164s autopkgtest [21:48:18]: test command1: xvfb-run /usr/bin/chatty --help 164s autopkgtest [21:48:18]: test command1: [----------------------- 164s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.xnTLih/wrapper.sh --debug --artifacts=/tmp/autopkgtest.xnTLih/command1-artifacts --chdir=/tmp/autopkgtest.xnTLih/build.SiH/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.xnTLih/command1-stderr --stdout=/tmp/autopkgtest.xnTLih/command1-stdout --tmp=/tmp/autopkgtest.xnTLih/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- bash -ec 'xvfb-run /usr/bin/chatty --help'"], kind test, sout raw, serr raw, env [] 165s /tmp/autopkgtest.xnTLih/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.xnTLih/command1-artifacts 165s /tmp/autopkgtest.xnTLih/wrapper.sh: changing to directory: /tmp/autopkgtest.xnTLih/build.SiH/src 165s /tmp/autopkgtest.xnTLih/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 165s /tmp/autopkgtest.xnTLih/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 165s /tmp/autopkgtest.xnTLih/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 165s /tmp/autopkgtest.xnTLih/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 165s /tmp/autopkgtest.xnTLih/wrapper.sh: setting environment: LANG=C.UTF-8 165s /tmp/autopkgtest.xnTLih/wrapper.sh: unsetting environment: LANGUAGE 165s /tmp/autopkgtest.xnTLih/wrapper.sh: unsetting environment: LC_ADDRESS 165s /tmp/autopkgtest.xnTLih/wrapper.sh: unsetting environment: LC_ALL 165s /tmp/autopkgtest.xnTLih/wrapper.sh: unsetting environment: LC_COLLATE 165s /tmp/autopkgtest.xnTLih/wrapper.sh: unsetting environment: LC_CTYPE 165s /tmp/autopkgtest.xnTLih/wrapper.sh: unsetting environment: LC_IDENTIFICATION 165s /tmp/autopkgtest.xnTLih/wrapper.sh: unsetting environment: LC_MEASUREMENT 165s /tmp/autopkgtest.xnTLih/wrapper.sh: unsetting environment: LC_MESSAGES 165s /tmp/autopkgtest.xnTLih/wrapper.sh: unsetting environment: LC_MONETARY 165s /tmp/autopkgtest.xnTLih/wrapper.sh: unsetting environment: LC_NAME 165s /tmp/autopkgtest.xnTLih/wrapper.sh: unsetting environment: LC_NUMERIC 165s /tmp/autopkgtest.xnTLih/wrapper.sh: unsetting environment: LC_PAPER 165s /tmp/autopkgtest.xnTLih/wrapper.sh: unsetting environment: LC_TELEPHONE 165s /tmp/autopkgtest.xnTLih/wrapper.sh: unsetting environment: LC_TIME 165s /tmp/autopkgtest.xnTLih/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 165s /tmp/autopkgtest.xnTLih/wrapper.sh: pretending to be a login shell 165s /tmp/autopkgtest.xnTLih/wrapper.sh: will write standard error to /tmp/autopkgtest.xnTLih/command1-stderr 165s /tmp/autopkgtest.xnTLih/wrapper.sh: will write stdout to /tmp/autopkgtest.xnTLih/command1-stdout 165s /tmp/autopkgtest.xnTLih/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.xnTLih/autopkgtest_tmp 165s /tmp/autopkgtest.xnTLih/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 165s /tmp/autopkgtest.xnTLih/wrapper.sh: command to run: bash -ec xvfb-run /usr/bin/chatty --help 165s /tmp/autopkgtest.xnTLih/wrapper.sh: copying /tmp/tmp.3XYYBKLSpi/out to stdout and file: /tmp/autopkgtest.xnTLih/command1-stdout 165s /tmp/autopkgtest.xnTLih/wrapper.sh: copying /tmp/tmp.3XYYBKLSpi/err to standard error and file: /tmp/autopkgtest.xnTLih/command1-stdout 165s /tmp/autopkgtest.xnTLih/wrapper.sh: writing script pid 3067 to /tmp/autopkgtest_script_pid 165s Usage: 165s sm.puri.Chatty [OPTION…] 165s 165s Help Options: 165s -h, --help Show help options 165s --help-all Show all help options 165s --help-gapplication Show GApplication options 165s 165s Application Options: 165s --version Show release version 165s -n, --nologin Disable all accounts 165s -d, --debug Enable libpurple debug messages 165s -v, --verbose Enable verbose debug messages (repeat option for more verbosity) 165s 165s /tmp/autopkgtest.xnTLih/wrapper.sh: checking for leaked background processes... 165s /tmp/autopkgtest.xnTLih/wrapper.sh: waiting for tee/cat subprocesses... 165s /tmp/autopkgtest.xnTLih/wrapper.sh: cleaning up... 165s /tmp/autopkgtest.xnTLih/wrapper.sh: Exit status: 0 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest [21:48:19]: test command1: -----------------------] 165s autopkgtest: DBG: testbed executing test finished with exit status 0 165s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xnTLih/command1-stdout /tmp/autopkgtest-work.yxn4og1o/out/command1-stdout 165s autopkgtest: DBG: got reply from testbed: ok 165s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xnTLih/command1-stderr /tmp/autopkgtest-work.yxn4og1o/out/command1-stderr 165s autopkgtest: DBG: got reply from testbed: ok 166s command1 PASS (superficial) 166s autopkgtest [21:48:20]: test command1: - - - - - - - - - - results - - - - - - - - - - 166s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xnTLih/command1-artifacts/ /tmp/autopkgtest-work.yxn4og1o/out/artifacts/ 166s autopkgtest: DBG: got reply from testbed: ok 166s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.xnTLih/command1-artifacts', '/tmp/autopkgtest.xnTLih/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 166s autopkgtest [21:48:20]: @@@@@@@@@@@@@@@@@@@@ summary 166s command1 PASS (superficial) 166s autopkgtest: DBG: testbed stop 166s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.xnTLih 166s autopkgtest: DBG: sending command to testbed: close 184s autopkgtest: DBG: got reply from testbed: ok 184s autopkgtest: DBG: sending command to testbed: quit 184s nova [W] Using flock in prodstack6-s390x 184s Creating nova instance adt-plucky-s390x-chatty-20250215-214534-juju-7f2275-prod-proposed-migration-environment-15-606f2472-c02e-41d3-b0bc-de933786d8eb from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 184s nova [W] Timed out waiting for 39ecb717-c1fa-4aa0-b0ed-d2d1cdf503bd to get deleted.