0s autopkgtest: DBG: testbed init 0s autopkgtest [11:37:20]: starting date and time: 2025-02-19 11:37:20+0000 0s autopkgtest [11:37:20]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [11:37:20]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.nwu61632/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:sphinx --apt-upgrade cloudkitty --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-24.secgroup --name adt-plucky-s390x-cloudkitty-20250219-113719-juju-7f2275-prod-proposed-migration-environment-15-92206bbb-5dab-4427-b322-dee2c17bbdaf --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 105s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.s4Obx1 105s autopkgtest: DBG: sending command to testbed: print-execute-command 105s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.lo82wa1w/runcmd 105s autopkgtest: DBG: sending command to testbed: capabilities 105s autopkgtest: DBG: got reply from testbed: ok revert-full-system suggested-normal-user=ubuntu reboot revert isolation-machine root-on-testbed 105s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'suggested-normal-user=ubuntu', 'reboot', 'revert', 'isolation-machine', 'root-on-testbed', 'has_internet'] 105s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.s4Obx1'], kind short, sout raw, serr pipe, env [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.s4Obx1/wrapper.sh 105s autopkgtest: DBG: got reply from testbed: ok 105s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.s4Obx1/wrapper.sh'], kind short, sout raw, serr pipe, env [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest [11:39:06]: testbed dpkg architecture: s390x 106s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest [11:39:06]: testbed apt version: 2.9.30 106s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest: DBG: testbed has eatmydata 106s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest [11:39:06]: @@@@@@@@@@@@@@@@@@@@ test bed setup 106s 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 [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest [11:39:06]: testbed release detected to be: None 106s 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 [] 107s autopkgtest: DBG: testbed command exited with code 0 107s 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 [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: adding APT source: Types: deb deb-src 107s URIs: http://ftpmaster.internal/ubuntu/ 107s Suites: plucky-proposed 107s Components: main restricted universe multiverse 107s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 107s 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 [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 107s Package: * 107s Pin: release plucky-proposed 107s Pin-Priority: 500 107s 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 [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest [11:39:07]: updating testbed package index (apt update) 107s 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'] 107s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 108s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 108s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 108s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 108s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 108s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 108s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 108s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 108s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 108s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 108s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 108s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 108s Fetched 1700 kB in 1s (1864 kB/s) 109s Reading package lists... 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 109s Package: * 109s Pin: release plucky-proposed 109s Pin-Priority: 100 109s 109s Package: src:sphinx:any 109s Pin: release plucky-proposed 109s Pin-Priority: 995 109s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:sphinx:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 109s autopkgtest: DBG: testbed command exited with code 0 109s 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.s4Obx1/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 109s autopkgtest: DBG: testbed command exited with code 0 109s 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'] 109s + lsb_release --codename --short 109s + RELEASE=plucky 109s + cat 109s + [ plucky != trusty ] 109s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 109s Reading package lists... 109s Building dependency tree... 109s Reading state information... 110s Calculating upgrade... 110s The following packages were automatically installed and are no longer required: 110s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 110s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 110s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 110s linux-tools-6.11.0-8-generic 110s Use 'sudo apt autoremove' to remove them. 110s The following packages will be upgraded: 110s iproute2 liblsof0 libp11-kit0 lsof 110s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 110s Need to get 1791 kB of archives. 110s After this operation, 17.4 kB of additional disk space will be used. 110s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 110s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 110s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 110s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 111s Preconfiguring packages ... 111s Fetched 1791 kB in 1s (2826 kB/s) 111s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 111s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 111s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 111s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 111s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 111s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 111s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 111s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 111s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 111s Setting up liblsof0 (4.99.4+dfsg-1) ... 111s Setting up iproute2 (6.13.0-1ubuntu1) ... 111s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 111s Setting up lsof (4.99.4+dfsg-1) ... 111s Processing triggers for man-db (2.13.0-1) ... 112s Processing triggers for libc-bin (2.40-4ubuntu1) ... 112s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 112s + /usr/lib/apt/apt-helper analyze-pattern ?true 112s + uname -r 112s + sed s/\./\\./g 112s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 112s + apt list ?obsolete 112s + cut+ tail -n+2 112s + grep -v ^linux-.*6\.12\.0-15-generic.* 112s -d/ -f1 112s + true 112s + obsolete_pkgs= 112s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 112s Reading package lists... 112s Building dependency tree... 112s Reading state information... 112s The following packages will be REMOVED: 112s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 112s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 112s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 112s linux-tools-6.11.0-8-generic* 113s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 113s After this operation, 167 MB disk space will be freed. 113s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81031 files and directories currently installed.) 113s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 113s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 113s Removing libpython3.12t64:s390x (3.12.9-1) ... 113s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 113s Removing libnsl2:s390x (1.3.0-3build3) ... 113s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 113s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 113s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 114s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 114s Processing triggers for libc-bin (2.40-4ubuntu1) ... 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 ... 55931 files and directories currently installed.) 114s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 114s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 114s + grep -q trusty /etc/lsb-release 114s + [ ! -d /usr/share/doc/unattended-upgrades ] 114s + [ ! -d /usr/share/doc/lxd ] 114s + [ ! -d /usr/share/doc/lxd-client ] 114s + [ ! -d /usr/share/doc/snapd ] 114s + type iptables 114s + cat 114s + chmod 755 /etc/rc.local 114s + . /etc/rc.local 114s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 114s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 114s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 114s + uname -m 114s + [ s390x = ppc64le ] 114s + [ -d /run/systemd/system ] 114s + systemd-detect-virt --quiet --vm 114s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 114s + cat 114s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 114s + echo COMPRESS=lz4 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest [11:39:14]: upgrading testbed (apt dist-upgrade and autopurge) 114s 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'] 114s Reading package lists... 114s Building dependency tree... 114s Reading state information... 115s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 115s Starting 2 pkgProblemResolver with broken count: 0 115s Done 115s Entering ResolveByKeep 115s 115s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 115s autopkgtest: DBG: testbed command exited with code 0 115s 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'] 115s Reading package lists... 115s Building dependency tree... 115s Reading state information... 115s Starting pkgProblemResolver with broken count: 0 116s Starting 2 pkgProblemResolver with broken count: 0 116s Done 116s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 116s autopkgtest: DBG: testbed command exited with code 0 116s 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.s4Obx1/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 116s autopkgtest: DBG: testbed command exited with code 1 116s autopkgtest [11:39:16]: rebooting testbed after setup commands that affected boot 116s autopkgtest: DBG: sending command to testbed: reboot 135s autopkgtest: DBG: got reply from testbed: ok 135s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 135s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.s4Obx1'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.s4Obx1/autopkgtest-reboot 135s autopkgtest: DBG: got reply from testbed: ok 135s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.s4Obx1/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.s4Obx1/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.s4Obx1/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.s4Obx1'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.s4Obx1/autopkgtest-reboot-prepare 136s autopkgtest: DBG: got reply from testbed: ok 136s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.s4Obx1/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.s4Obx1/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest [11:39:37]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 137s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.s4Obx1/testbed-packages"], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.s4Obx1/testbed-packages /tmp/autopkgtest-work.nwu61632/out/testbed-packages 137s autopkgtest: DBG: got reply from testbed: ok 137s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 137s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.s4Obx1'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.s4Obx1/autopkgtest-reboot 138s autopkgtest: DBG: got reply from testbed: ok 138s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.s4Obx1/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.s4Obx1/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.s4Obx1/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.s4Obx1'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.s4Obx1/autopkgtest-reboot-prepare 138s autopkgtest: DBG: got reply from testbed: ok 138s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.s4Obx1/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.s4Obx1/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: Binaries: initialising 139s autopkgtest [11:39:39]: @@@@@@@@@@@@@@@@@@@@ apt-source cloudkitty 139s autopkgtest: DBG: blame += cloudkitty 139s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 139s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'cloudkitty'], kind short, sout pipe, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-cloudkitty$'], kind short, sout pipe, serr raw, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-cloudkitty=21.0.0-0ubuntu1'], kind short, sout pipe, serr raw, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^cloudkitty-processor$'], kind short, sout pipe, serr raw, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'cloudkitty-processor=21.0.0-0ubuntu1'], kind short, sout pipe, serr raw, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^cloudkitty-common$'], kind short, sout pipe, serr raw, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'cloudkitty-common=21.0.0-0ubuntu1'], kind short, sout pipe, serr raw, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^cloudkitty-api$'], kind short, sout pipe, serr raw, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'cloudkitty-api=21.0.0-0ubuntu1'], kind short, sout pipe, serr raw, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^cloudkitty-doc$'], kind short, sout pipe, serr raw, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'cloudkitty-doc=21.0.0-0ubuntu1'], kind short, sout pipe, serr raw, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: install_deps: deps_new=[] 141s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s 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.s4Obx1/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source cloudkitty=21.0.0-0ubuntu1 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 cloudkitty_*.dsc src >/dev/null; chmod -R a+rX .; cd [a-z0-9]*/.; pwd >&3; sed -n "1 {s/).*//; s/ (/\\n/; p}" debian/changelog >&3\''], kind build, sout pipe, serr raw, env ['ADT_TEST_TRIGGERS=sphinx/8.1.3-5'] 142s + cd / 142s + mktemp -d /tmp/autopkgtest.s4Obx1/build.XXX 142s + builddir=/tmp/autopkgtest.s4Obx1/build.PjK 142s + cd /tmp/autopkgtest.s4Obx1/build.PjK 142s + apt-get source -d -q --only-source cloudkitty=21.0.0-0ubuntu1 142s + OUT=Reading package lists... 142s NOTICE: 'cloudkitty' packaging is maintained in the 'Git' version control system at: 142s https://salsa.debian.org/openstack-team/services/cloudkitty.git 142s Please use: 142s git clone https://salsa.debian.org/openstack-team/services/cloudkitty.git 142s to retrieve the latest (possibly unreleased) updates to the package. 142s Need to get 581 kB of source archives. 142s Get:1 http://ftpmaster.internal/ubuntu plucky/universe cloudkitty 21.0.0-0ubuntu1 (dsc) [3548 B] 142s Get:2 http://ftpmaster.internal/ubuntu plucky/universe cloudkitty 21.0.0-0ubuntu1 (tar) [555 kB] 142s Get:3 http://ftpmaster.internal/ubuntu plucky/universe cloudkitty 21.0.0-0ubuntu1 (diff) [22.5 kB] 142s Fetched 581 kB in 1s (983 kB/s) 142s Download complete and in download only mode 142s + [ -n ] 142s + echo Reading package lists... 142s NOTICE: 'cloudkitty' packaging is maintained in the 'Git' version control system at: 142s https://salsa.debian.org/openstack-team/services/cloudkitty.git 142s Please use: 142s git clone https://salsa.debian.org/openstack-team/services/cloudkitty.git 142s to retrieve the latest (possibly unreleased) updates to the package. 142s Need to get 581 kB of source archives. 142s Get:1 http://ftpmaster.internal/ubuntu plucky/universe cloudkitty 21.0.0-0ubuntu1 (dsc) [3548 B] 142s Get:2 http://ftpmaster.internal/ubuntu plucky/universe cloudkitty 21.0.0-0ubuntu1 (tar) [555 kB] 142s Get:3 http://ftpmaster.internal/ubuntu plucky/universe cloudkitty 21.0.0-0ubuntu1 (diff) [22.5 kB] 142s Fetched 581 kB in 1s (983 kB/s) 142s Download complete and in download only mode 142s + grep ^Get: 142s Get:1 http://ftpmaster.internal/ubuntu plucky/universe cloudkitty 21.0.0-0ubuntu1 (dsc) [3548 B] 142s Get:2 http://ftpmaster.internal/ubuntu plucky/universe cloudkitty 21.0.0-0ubuntu1 (tar) [555 kB] 142s Get:3 http://ftpmaster.internal/ubuntu plucky/universe cloudkitty 21.0.0-0ubuntu1 (diff) [22.5 kB] 142s + dpkg-source -x cloudkitty_21.0.0-0ubuntu1.dsc src 142s gpgv: Signature made Thu Oct 3 09:21:24 2024 UTC 142s gpgv: using RSA key AB23E9A98422889E08C3838CBFECAECBA0E7D8C3 142s gpgv: Can't check signature: No public key 142s dpkg-source: warning: cannot verify inline signature for ./cloudkitty_21.0.0-0ubuntu1.dsc: no acceptable signature found 143s + chmod -R a+rX . 143s + cd src/. 143s + pwd 143s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest [11:39:43]: testing package cloudkitty version 21.0.0-0ubuntu1 143s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.s4Obx1/build.PjK/src/debian/ /tmp/autopkgtest-work.nwu61632/out/pkg/debian/ 143s autopkgtest: DBG: got reply from testbed: ok 143s autopkgtest: DBG: processing dependency @ 143s autopkgtest: DBG: synthesised dependency cloudkitty-api 143s autopkgtest: DBG: synthesised dependency cloudkitty-common 143s autopkgtest: DBG: synthesised dependency cloudkitty-doc 143s autopkgtest: DBG: synthesised dependency cloudkitty-processor 143s autopkgtest: DBG: synthesised dependency python3-cloudkitty 143s autopkgtest: DBG: processing dependency @builddeps@ 143s autopkgtest: DBG: synthesised dependency debhelper-compat (= 11) 143s autopkgtest: DBG: synthesised dependency dh-python 143s autopkgtest: DBG: synthesised dependency openstack-pkg-tools (>= 123~) 143s autopkgtest: DBG: synthesised dependency po-debconf 143s autopkgtest: DBG: synthesised dependency python3-all 143s autopkgtest: DBG: synthesised dependency python3-pbr 143s autopkgtest: DBG: synthesised dependency python3-setuptools 143s autopkgtest: DBG: synthesised dependency python3-sphinx 143s autopkgtest: DBG: synthesised dependency python3-alembic 143s autopkgtest: DBG: synthesised dependency python3-cotyledon 143s autopkgtest: DBG: synthesised dependency python3-coverage 143s autopkgtest: DBG: synthesised dependency python3-datetimerange 143s autopkgtest: DBG: synthesised dependency python3-dateutil 143s autopkgtest: DBG: synthesised dependency python3-ddt 143s autopkgtest: DBG: synthesised dependency python3-doc8 143s autopkgtest: DBG: synthesised dependency python3-flask 143s autopkgtest: DBG: synthesised dependency python3-flask-restful 143s autopkgtest: DBG: synthesised dependency python3-futurist 143s autopkgtest: DBG: synthesised dependency python3-gabbi 143s autopkgtest: DBG: synthesised dependency python3-gnocchiclient 143s autopkgtest: DBG: synthesised dependency python3-hacking 143s autopkgtest: DBG: synthesised dependency python3-influxdb 143s autopkgtest: DBG: synthesised dependency python3-influxdb-client 143s autopkgtest: DBG: synthesised dependency python3-iso8601 143s autopkgtest: DBG: synthesised dependency python3-keystoneauth1 143s autopkgtest: DBG: synthesised dependency python3-keystoneclient 143s autopkgtest: DBG: synthesised dependency python3-keystonemiddleware 143s autopkgtest: DBG: synthesised dependency python3-kombu 143s autopkgtest: DBG: synthesised dependency python3-openstackdocstheme 143s autopkgtest: DBG: synthesised dependency python3-os-api-ref 143s autopkgtest: DBG: synthesised dependency python3-oslo.concurrency 143s autopkgtest: DBG: synthesised dependency python3-oslo.config 143s autopkgtest: DBG: synthesised dependency python3-oslo.context 143s autopkgtest: DBG: synthesised dependency python3-oslo.db 143s autopkgtest: DBG: synthesised dependency python3-oslo.i18n 143s autopkgtest: DBG: synthesised dependency python3-oslo.log 143s autopkgtest: DBG: synthesised dependency python3-oslo.messaging (>= 14.1.0) 143s autopkgtest: DBG: synthesised dependency python3-oslo.middleware 143s autopkgtest: DBG: synthesised dependency python3-oslo.policy 143s autopkgtest: DBG: synthesised dependency python3-oslo.upgradecheck 143s autopkgtest: DBG: synthesised dependency python3-oslo.utils 143s autopkgtest: DBG: synthesised dependency python3-oslotest 143s autopkgtest: DBG: synthesised dependency python3-pastedeploy 143s autopkgtest: DBG: synthesised dependency python3-pecan 143s autopkgtest: DBG: synthesised dependency python3-pep8 143s autopkgtest: DBG: synthesised dependency python3-pygments 143s autopkgtest: DBG: synthesised dependency python3-reno 143s autopkgtest: DBG: synthesised dependency python3-sphinxcontrib-pecanwsme 143s autopkgtest: DBG: synthesised dependency python3-sphinxcontrib.httpdomain 143s autopkgtest: DBG: synthesised dependency python3-sqlalchemy 143s autopkgtest: DBG: synthesised dependency python3-stestr 143s autopkgtest: DBG: synthesised dependency python3-stevedore 143s autopkgtest: DBG: synthesised dependency python3-testscenarios 143s autopkgtest: DBG: synthesised dependency python3-tooz 143s autopkgtest: DBG: synthesised dependency python3-voluptuous 143s autopkgtest: DBG: synthesised dependency python3-wsme 143s autopkgtest: DBG: synthesised dependency subunit 143s autopkgtest: DBG: synthesised dependency build-essential 143s autopkgtest: DBG: Test defined: name unittests path debian/tests/unittests command "None" restrictions ['allow-stderr', 'needs-root'] features [] depends ['cloudkitty-api', 'cloudkitty-common', 'cloudkitty-doc', 'cloudkitty-processor', 'python3-cloudkitty', 'debhelper-compat (= 11)', 'dh-python', 'openstack-pkg-tools (>= 123~)', 'po-debconf', 'python3-all', 'python3-pbr', 'python3-setuptools', 'python3-sphinx', 'python3-alembic', 'python3-cotyledon', 'python3-coverage', 'python3-datetimerange', 'python3-dateutil', 'python3-ddt', 'python3-doc8', 'python3-flask', 'python3-flask-restful', 'python3-futurist', 'python3-gabbi', 'python3-gnocchiclient', 'python3-hacking', 'python3-influxdb', 'python3-influxdb-client', 'python3-iso8601', 'python3-keystoneauth1', 'python3-keystoneclient', 'python3-keystonemiddleware', 'python3-kombu', 'python3-openstackdocstheme', 'python3-os-api-ref', 'python3-oslo.concurrency', 'python3-oslo.config', 'python3-oslo.context', 'python3-oslo.db', 'python3-oslo.i18n', 'python3-oslo.log', 'python3-oslo.messaging (>= 14.1.0)', 'python3-oslo.middleware', 'python3-oslo.policy', 'python3-oslo.upgradecheck', 'python3-oslo.utils', 'python3-oslotest', 'python3-pastedeploy', 'python3-pecan', 'python3-pep8', 'python3-pygments', 'python3-reno', 'python3-sphinxcontrib-pecanwsme', 'python3-sphinxcontrib.httpdomain', 'python3-sqlalchemy', 'python3-stestr', 'python3-stevedore', 'python3-testscenarios', 'python3-tooz', 'python3-voluptuous', 'python3-wsme', 'subunit', 'build-essential'] 143s autopkgtest [11:39:43]: build not needed 143s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.s4Obx1/build.PjK/src/ /tmp/autopkgtest-work.nwu61632/out/tests-tree/ 143s autopkgtest: DBG: got reply from testbed: ok 143s autopkgtest: DBG: processing dependency @ 143s autopkgtest: DBG: synthesised dependency cloudkitty-api 143s autopkgtest: DBG: synthesised dependency cloudkitty-common 143s autopkgtest: DBG: synthesised dependency cloudkitty-doc 143s autopkgtest: DBG: synthesised dependency cloudkitty-processor 143s autopkgtest: DBG: synthesised dependency python3-cloudkitty 143s autopkgtest: DBG: processing dependency @builddeps@ 143s autopkgtest: DBG: synthesised dependency debhelper-compat (= 11) 143s autopkgtest: DBG: synthesised dependency dh-python 143s autopkgtest: DBG: synthesised dependency openstack-pkg-tools (>= 123~) 143s autopkgtest: DBG: synthesised dependency po-debconf 143s autopkgtest: DBG: synthesised dependency python3-all 143s autopkgtest: DBG: synthesised dependency python3-pbr 143s autopkgtest: DBG: synthesised dependency python3-setuptools 143s autopkgtest: DBG: synthesised dependency python3-sphinx 143s autopkgtest: DBG: synthesised dependency python3-alembic 143s autopkgtest: DBG: synthesised dependency python3-cotyledon 143s autopkgtest: DBG: synthesised dependency python3-coverage 143s autopkgtest: DBG: synthesised dependency python3-datetimerange 143s autopkgtest: DBG: synthesised dependency python3-dateutil 143s autopkgtest: DBG: synthesised dependency python3-ddt 143s autopkgtest: DBG: synthesised dependency python3-doc8 143s autopkgtest: DBG: synthesised dependency python3-flask 143s autopkgtest: DBG: synthesised dependency python3-flask-restful 143s autopkgtest: DBG: synthesised dependency python3-futurist 143s autopkgtest: DBG: synthesised dependency python3-gabbi 143s autopkgtest: DBG: synthesised dependency python3-gnocchiclient 143s autopkgtest: DBG: synthesised dependency python3-hacking 143s autopkgtest: DBG: synthesised dependency python3-influxdb 143s autopkgtest: DBG: synthesised dependency python3-influxdb-client 143s autopkgtest: DBG: synthesised dependency python3-iso8601 143s autopkgtest: DBG: synthesised dependency python3-keystoneauth1 143s autopkgtest: DBG: synthesised dependency python3-keystoneclient 143s autopkgtest: DBG: synthesised dependency python3-keystonemiddleware 143s autopkgtest: DBG: synthesised dependency python3-kombu 143s autopkgtest: DBG: synthesised dependency python3-openstackdocstheme 143s autopkgtest: DBG: synthesised dependency python3-os-api-ref 143s autopkgtest: DBG: synthesised dependency python3-oslo.concurrency 143s autopkgtest: DBG: synthesised dependency python3-oslo.config 143s autopkgtest: DBG: synthesised dependency python3-oslo.context 143s autopkgtest: DBG: synthesised dependency python3-oslo.db 143s autopkgtest: DBG: synthesised dependency python3-oslo.i18n 143s autopkgtest: DBG: synthesised dependency python3-oslo.log 143s autopkgtest: DBG: synthesised dependency python3-oslo.messaging (>= 14.1.0) 143s autopkgtest: DBG: synthesised dependency python3-oslo.middleware 143s autopkgtest: DBG: synthesised dependency python3-oslo.policy 143s autopkgtest: DBG: synthesised dependency python3-oslo.upgradecheck 143s autopkgtest: DBG: synthesised dependency python3-oslo.utils 143s autopkgtest: DBG: synthesised dependency python3-oslotest 143s autopkgtest: DBG: synthesised dependency python3-pastedeploy 143s autopkgtest: DBG: synthesised dependency python3-pecan 143s autopkgtest: DBG: synthesised dependency python3-pep8 143s autopkgtest: DBG: synthesised dependency python3-pygments 143s autopkgtest: DBG: synthesised dependency python3-reno 143s autopkgtest: DBG: synthesised dependency python3-sphinxcontrib-pecanwsme 143s autopkgtest: DBG: synthesised dependency python3-sphinxcontrib.httpdomain 143s autopkgtest: DBG: synthesised dependency python3-sqlalchemy 143s autopkgtest: DBG: synthesised dependency python3-stestr 143s autopkgtest: DBG: synthesised dependency python3-stevedore 143s autopkgtest: DBG: synthesised dependency python3-testscenarios 143s autopkgtest: DBG: synthesised dependency python3-tooz 143s autopkgtest: DBG: synthesised dependency python3-voluptuous 143s autopkgtest: DBG: synthesised dependency python3-wsme 143s autopkgtest: DBG: synthesised dependency subunit 143s autopkgtest: DBG: synthesised dependency build-essential 143s autopkgtest: DBG: Test defined: name unittests path debian/tests/unittests command "None" restrictions ['allow-stderr', 'needs-root'] features [] depends ['cloudkitty-api', 'cloudkitty-common', 'cloudkitty-doc', 'cloudkitty-processor', 'python3-cloudkitty', 'debhelper-compat (= 11)', 'dh-python', 'openstack-pkg-tools (>= 123~)', 'po-debconf', 'python3-all', 'python3-pbr', 'python3-setuptools', 'python3-sphinx', 'python3-alembic', 'python3-cotyledon', 'python3-coverage', 'python3-datetimerange', 'python3-dateutil', 'python3-ddt', 'python3-doc8', 'python3-flask', 'python3-flask-restful', 'python3-futurist', 'python3-gabbi', 'python3-gnocchiclient', 'python3-hacking', 'python3-influxdb', 'python3-influxdb-client', 'python3-iso8601', 'python3-keystoneauth1', 'python3-keystoneclient', 'python3-keystonemiddleware', 'python3-kombu', 'python3-openstackdocstheme', 'python3-os-api-ref', 'python3-oslo.concurrency', 'python3-oslo.config', 'python3-oslo.context', 'python3-oslo.db', 'python3-oslo.i18n', 'python3-oslo.log', 'python3-oslo.messaging (>= 14.1.0)', 'python3-oslo.middleware', 'python3-oslo.policy', 'python3-oslo.upgradecheck', 'python3-oslo.utils', 'python3-oslotest', 'python3-pastedeploy', 'python3-pecan', 'python3-pep8', 'python3-pygments', 'python3-reno', 'python3-sphinxcontrib-pecanwsme', 'python3-sphinxcontrib.httpdomain', 'python3-sqlalchemy', 'python3-stestr', 'python3-stevedore', 'python3-testscenarios', 'python3-tooz', 'python3-voluptuous', 'python3-wsme', 'subunit', 'build-essential'] 143s autopkgtest [11:39:43]: test unittests: preparing testbed 143s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['cloudkitty-api', 'cloudkitty-common', 'cloudkitty-doc', 'cloudkitty-processor', 'python3-cloudkitty', 'debhelper-compat (= 11)', 'dh-python', 'openstack-pkg-tools (>= 123~)', 'po-debconf', 'python3-all', 'python3-pbr', 'python3-setuptools', 'python3-sphinx', 'python3-alembic', 'python3-cotyledon', 'python3-coverage', 'python3-datetimerange', 'python3-dateutil', 'python3-ddt', 'python3-doc8', 'python3-flask', 'python3-flask-restful', 'python3-futurist', 'python3-gabbi', 'python3-gnocchiclient', 'python3-hacking', 'python3-influxdb', 'python3-influxdb-client', 'python3-iso8601', 'python3-keystoneauth1', 'python3-keystoneclient', 'python3-keystonemiddleware', 'python3-kombu', 'python3-openstackdocstheme', 'python3-os-api-ref', 'python3-oslo.concurrency', 'python3-oslo.config', 'python3-oslo.context', 'python3-oslo.db', 'python3-oslo.i18n', 'python3-oslo.log', 'python3-oslo.messaging (>= 14.1.0)', 'python3-oslo.middleware', 'python3-oslo.policy', 'python3-oslo.upgradecheck', 'python3-oslo.utils', 'python3-oslotest', 'python3-pastedeploy', 'python3-pecan', 'python3-pep8', 'python3-pygments', 'python3-reno', 'python3-sphinxcontrib-pecanwsme', 'python3-sphinxcontrib.httpdomain', 'python3-sqlalchemy', 'python3-stestr', 'python3-stevedore', 'python3-testscenarios', 'python3-tooz', 'python3-voluptuous', 'python3-wsme', 'subunit', 'build-essential'] 143s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 143s autopkgtest: DBG: install_deps: deps_new=['cloudkitty-api', 'cloudkitty-common', 'cloudkitty-doc', 'cloudkitty-processor', 'python3-cloudkitty', 'debhelper-compat (= 11)', 'dh-python', 'openstack-pkg-tools (>= 123~)', 'po-debconf', 'python3-all', 'python3-pbr', 'python3-setuptools', 'python3-sphinx', 'python3-alembic', 'python3-cotyledon', 'python3-coverage', 'python3-datetimerange', 'python3-dateutil', 'python3-ddt', 'python3-doc8', 'python3-flask', 'python3-flask-restful', 'python3-futurist', 'python3-gabbi', 'python3-gnocchiclient', 'python3-hacking', 'python3-influxdb', 'python3-influxdb-client', 'python3-iso8601', 'python3-keystoneauth1', 'python3-keystoneclient', 'python3-keystonemiddleware', 'python3-kombu', 'python3-openstackdocstheme', 'python3-os-api-ref', 'python3-oslo.concurrency', 'python3-oslo.config', 'python3-oslo.context', 'python3-oslo.db', 'python3-oslo.i18n', 'python3-oslo.log', 'python3-oslo.messaging (>= 14.1.0)', 'python3-oslo.middleware', 'python3-oslo.policy', 'python3-oslo.upgradecheck', 'python3-oslo.utils', 'python3-oslotest', 'python3-pastedeploy', 'python3-pecan', 'python3-pep8', 'python3-pygments', 'python3-reno', 'python3-sphinxcontrib-pecanwsme', 'python3-sphinxcontrib.httpdomain', 'python3-sqlalchemy', 'python3-stestr', 'python3-stevedore', 'python3-testscenarios', 'python3-tooz', 'python3-voluptuous', 'python3-wsme', 'subunit', 'build-essential'] 143s autopkgtest: DBG: install-deps: satisfying cloudkitty-api, cloudkitty-common, cloudkitty-doc, cloudkitty-processor, python3-cloudkitty, debhelper-compat (= 11), dh-python, openstack-pkg-tools (>= 123~), po-debconf, python3-all, python3-pbr, python3-setuptools, python3-sphinx, python3-alembic, python3-cotyledon, python3-coverage, python3-datetimerange, python3-dateutil, python3-ddt, python3-doc8, python3-flask, python3-flask-restful, python3-futurist, python3-gabbi, python3-gnocchiclient, python3-hacking, python3-influxdb, python3-influxdb-client, python3-iso8601, python3-keystoneauth1, python3-keystoneclient, python3-keystonemiddleware, python3-kombu, python3-openstackdocstheme, python3-os-api-ref, python3-oslo.concurrency, python3-oslo.config, python3-oslo.context, python3-oslo.db, python3-oslo.i18n, python3-oslo.log, python3-oslo.messaging (>= 14.1.0), python3-oslo.middleware, python3-oslo.policy, python3-oslo.upgradecheck, python3-oslo.utils, python3-oslotest, python3-pastedeploy, python3-pecan, python3-pep8, python3-pygments, python3-reno, python3-sphinxcontrib-pecanwsme, python3-sphinxcontrib.httpdomain, python3-sqlalchemy, python3-stestr, python3-stevedore, python3-testscenarios, python3-tooz, python3-voluptuous, python3-wsme, subunit, build-essential 143s autopkgtest: DBG: can use apt-get on testbed: True 143s 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', 'cloudkitty-api, cloudkitty-common, cloudkitty-doc, cloudkitty-processor, python3-cloudkitty, debhelper-compat (= 11), dh-python, openstack-pkg-tools (>= 123~), po-debconf, python3-all, python3-pbr, python3-setuptools, python3-sphinx, python3-alembic, python3-cotyledon, python3-coverage, python3-datetimerange, python3-dateutil, python3-ddt, python3-doc8, python3-flask, python3-flask-restful, python3-futurist, python3-gabbi, python3-gnocchiclient, python3-hacking, python3-influxdb, python3-influxdb-client, python3-iso8601, python3-keystoneauth1, python3-keystoneclient, python3-keystonemiddleware, python3-kombu, python3-openstackdocstheme, python3-os-api-ref, python3-oslo.concurrency, python3-oslo.config, python3-oslo.context, python3-oslo.db, python3-oslo.i18n, python3-oslo.log, python3-oslo.messaging (>= 14.1.0), python3-oslo.middleware, python3-oslo.policy, python3-oslo.upgradecheck, python3-oslo.utils, python3-oslotest, python3-pastedeploy, python3-pecan, python3-pep8, python3-pygments, python3-reno, python3-sphinxcontrib-pecanwsme, python3-sphinxcontrib.httpdomain, python3-sqlalchemy, python3-stestr, python3-stevedore, python3-testscenarios, python3-tooz, python3-voluptuous, python3-wsme, subunit, build-essential'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 144s Reading package lists... 144s Building dependency tree... 144s Reading state information... 144s Starting pkgProblemResolver with broken count: 0 144s Starting 2 pkgProblemResolver with broken count: 0 144s Done 144s The following NEW packages will be installed: 144s alembic autoconf automake autopoint autotools-dev build-essential 144s cloudkitty-api cloudkitty-common cloudkitty-doc cloudkitty-processor cpp 144s cpp-14 cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu dbconfig-common debhelper 144s debugedit dh-autoreconf dh-python dh-strip-nondeterminism docutils-common 144s dwz flake8 fonts-font-awesome fonts-glyphicons-halflings g++ g++-14 144s g++-14-s390x-linux-gnu g++-s390x-linux-gnu gcc gcc-14 gcc-14-s390x-linux-gnu 144s gcc-s390x-linux-gnu gettext git git-man intltool-debian libarchive-zip-perl 144s libasan8 libblas3 libcc1-0 libdebhelper-perl liberror-perl 144s libfile-stripnondeterminism-perl libgcc-14-dev libgfortran5 libgomp1 144s libisl23 libitm1 libjs-bootstrap libjs-jquery libjs-sphinxdoc 144s libjs-underscore libjson-perl liblapack3 libmpc3 libnorm1t64 libnsl2 144s libpgm-5.3-0t64 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 144s libsodium23 libstdc++-14-dev libsubunit-perl libtool libubsan1 libxslt1.1 144s libyajl2 libzmq5 m4 openstack-pkg-tools po-debconf pycadf-common pyflakes3 144s python-os-api-ref-common python3-alabaster python3-alembic python3-all 144s python3-amqp python3-aniso8601 python3-autopage python3-cachetools 144s python3-cinderclient python3-click python3-cliff python3-cloudkitty 144s python3-cmd2 python3-colorama python3-cotyledon python3-coverage 144s python3-datetimerange python3-dateutil python3-ddt python3-debtcollector 144s python3-decorator python3-defusedxml python3-deprecation python3-dnspython 144s python3-doc8 python3-docutils python3-dogpile.cache python3-dulwich 144s python3-eventlet python3-extras python3-fasteners python3-fixtures 144s python3-flake8 python3-flask python3-flask-restful python3-futurist 144s python3-gabbi python3-gnocchiclient python3-greenlet python3-hacking 144s python3-imagesize python3-importlib-metadata python3-influxdb 144s python3-influxdb-client python3-iniconfig python3-iso8601 144s python3-itsdangerous python3-jmespath python3-jsonpath-rw 144s python3-jsonpath-rw-ext python3-keystoneauth1 python3-keystoneclient 144s python3-keystonemiddleware python3-kombu python3-legacy-cgi python3-logutils 144s python3-lxml python3-mako python3-mbstrdecoder python3-mccabe 144s python3-memcache python3-monotonic python3-msgpack python3-munch 144s python3-numpy python3-openstackclient python3-openstackdocstheme 144s python3-openstacksdk python3-os-api-ref python3-os-client-config 144s python3-os-service-types python3-osc-lib python3-osc-placement 144s python3-oslo.cache python3-oslo.concurrency python3-oslo.config 144s python3-oslo.context python3-oslo.db python3-oslo.i18n python3-oslo.log 144s python3-oslo.messaging python3-oslo.metrics python3-oslo.middleware 144s python3-oslo.policy python3-oslo.serialization python3-oslo.service 144s python3-oslo.upgradecheck python3-oslo.utils python3-oslotest 144s python3-packaging python3-pandas python3-pandas-lib python3-paste 144s python3-pastedeploy python3-pastedeploy-tpl python3-pastescript python3-pbr 144s python3-pecan python3-pep8 python3-pip python3-platformdirs python3-pluggy 144s python3-ply python3-prettytable python3-prometheus-client python3-psutil 144s python3-pycadf python3-pycodestyle python3-pyflakes python3-pymemcache 144s python3-pymysql python3-pyperclip python3-pytest python3-pytz 144s python3-q-text-as-data python3-reno python3-repoze.lru 144s python3-requestsexceptions python3-restructuredtext-lint python3-rfc3986 144s python3-roman python3-routes python3-rx python3-setproctitle 144s python3-simplegeneric python3-six python3-snowballstemmer python3-sphinx 144s python3-sphinxcontrib-pecanwsme python3-sphinxcontrib.httpdomain 144s python3-sqlalchemy python3-statsd python3-stestr python3-stevedore 144s python3-subunit python3-tempita python3-tenacity python3-testresources 144s python3-testscenarios python3-testtools python3-tomlkit python3-tooz 144s python3-typepy python3-tz python3-vine python3-voluptuous python3-wcwidth 144s python3-webob python3-werkzeug python3-wheel python3-wrapt 144s python3-wsgi-intercept python3-wsme python3.12 python3.12-minimal sgml-base 144s sphinx-common sqlite3 subunit tzdata-legacy uwsgi-core uwsgi-plugin-python3 144s xml-core 144s 0 upgraded, 238 newly installed, 0 to remove and 0 not upgraded. 144s Need to get 108 MB of archives. 144s After this operation, 460 MB of additional disk space will be used. 144s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 145s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 145s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x sgml-base all 1.31 [11.4 kB] 145s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 145s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 145s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 145s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x python3-importlib-metadata all 8.6.1-1 [20.7 kB] 145s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x python3-mako all 1.3.8-2 [63.5 kB] 145s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x python3-greenlet s390x 3.1.0-1 [176 kB] 145s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x python3-sqlalchemy all 2.0.38+ds1-0ubuntu1 [1215 kB] 145s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x python3-alembic all 1.13.2-4 [149 kB] 145s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 145s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB] 145s Get:14 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libjs-sphinxdoc all 8.1.3-5 [31.0 kB] 145s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x alembic all 1.13.2-4 [294 kB] 145s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 145s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 145s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 145s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 145s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 145s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 145s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 145s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 145s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 145s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 145s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 145s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 15-20250213-1ubuntu1 [49.2 kB] 145s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 145s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 15-20250213-1ubuntu1 [31.2 kB] 145s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 15-20250213-1ubuntu1 [2970 kB] 146s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 15-20250213-1ubuntu1 [1213 kB] 146s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 146s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 146s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 146s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 146s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 146s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 146s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 146s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 146s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 146s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 146s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 146s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x dbconfig-common all 2.0.24 [596 kB] 146s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x python3-setproctitle s390x 1.3.4-1 [20.3 kB] 146s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x python3-cotyledon all 1.7.3-3 [12.1 kB] 146s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dateutil all 2.9.0-3 [80.2 kB] 146s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-mbstrdecoder all 1.1.0-4 [7452 B] 146s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pytz all 2025.1-3 [162 kB] 146s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tz all 2025.1-3 [1866 B] 146s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-typepy all 1.3.2-1 [14.0 kB] 146s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x tzdata-legacy all 2025a-2ubuntu1 [99.2 kB] 146s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-datetimerange all 2.3.0-1 [10.3 kB] 146s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x python3-click all 8.1.8-1 [79.8 kB] 146s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x python3-itsdangerous all 2.2.0-2 [15.3 kB] 146s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x python3-werkzeug all 3.1.3-2 [169 kB] 146s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x python3-flask all 3.1.0-2ubuntu1 [84.4 kB] 146s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x python3-aniso8601 all 10.0.0-2 [40.5 kB] 147s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x python3-flask-restful all 0.3.10-5 [24.3 kB] 147s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pbr all 6.1.1-0ubuntu1 [58.2 kB] 147s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x python3-futurist all 3.0.0-3 [24.2 kB] 147s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x python3-autopage all 0.4.0-4 [13.1 kB] 147s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x python3-wcwidth all 0.2.13+dfsg1-1 [26.3 kB] 147s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pyperclip all 1.8.2-2 [11.5 kB] 147s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x python3-cmd2 all 2.5.7+ds-1 [123 kB] 147s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x xml-core all 0.19 [20.3 kB] 147s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x docutils-common all 0.21.2+dfsg-2 [131 kB] 147s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x python3-roman all 5.0-1 [10.3 kB] 147s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x python3-docutils all 0.21.2+dfsg-2 [409 kB] 147s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x python3-prettytable all 3.12.0-1 [36.5 kB] 147s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x python3-stevedore all 1:5.4.0-0ubuntu1 [21.1 kB] 147s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x python3-cliff all 4.8.0-0ubuntu1 [43.3 kB] 147s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x python3-wrapt s390x 1.15.0-4 [34.4 kB] 147s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x python3-debtcollector all 3.0.0-3 [13.3 kB] 147s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x python3-iso8601 all 2.1.0-2 [9136 B] 147s Get:75 http://ftpmaster.internal/ubuntu plucky/main s390x libxslt1.1 s390x 1.1.39-0exp1ubuntu2 [169 kB] 147s Get:76 http://ftpmaster.internal/ubuntu plucky/main s390x python3-lxml s390x 5.3.1-1 [1773 kB] 147s Get:77 http://ftpmaster.internal/ubuntu plucky/main s390x python3-six all 1.17.0-1 [13.2 kB] 147s Get:78 http://ftpmaster.internal/ubuntu plucky/main s390x python3-os-service-types all 1.7.0-5 [12.8 kB] 147s Get:79 http://ftpmaster.internal/ubuntu plucky/main s390x python3-keystoneauth1 all 5.9.1-0ubuntu1 [171 kB] 147s Get:80 http://ftpmaster.internal/ubuntu plucky/main s390x python3-decorator all 5.1.1-5 [10.1 kB] 147s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 147s Get:82 http://ftpmaster.internal/ubuntu plucky/main s390x python3-deprecation all 2.1.0-3 [8806 B] 147s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dogpile.cache all 1.3.3-1 [46.8 kB] 147s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x python3-jmespath all 1.0.1-1 [21.3 kB] 147s Get:85 http://ftpmaster.internal/ubuntu plucky/main s390x python3-munch all 4.0.0-2 [10.9 kB] 147s Get:86 http://ftpmaster.internal/ubuntu plucky/main s390x python3-platformdirs all 4.3.6-1 [16.8 kB] 147s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x python3-psutil s390x 5.9.8-2build3 [195 kB] 147s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x python3-requestsexceptions all 1.4.0-5 [3824 B] 147s Get:89 http://ftpmaster.internal/ubuntu plucky/main s390x python3-openstacksdk all 4.3.0-0ubuntu1 [676 kB] 147s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x python3-os-client-config all 2.1.0-0ubuntu5 [17.6 kB] 147s Get:91 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.i18n all 6.5.0-0ubuntu1 [22.3 kB] 147s Get:92 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.utils all 8.1.0-0ubuntu1 [88.4 kB] 147s Get:93 http://ftpmaster.internal/ubuntu plucky/main s390x python3-osc-lib all 3.2.0-0ubuntu1 [53.9 kB] 147s Get:94 http://ftpmaster.internal/ubuntu plucky/main s390x python3-gnocchiclient all 7.0.8-0ubuntu1 [31.9 kB] 147s Get:95 http://ftpmaster.internal/ubuntu plucky/main s390x python3-msgpack s390x 1.0.3-3build3 [117 kB] 147s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-influxdb all 5.3.2-5 [54.2 kB] 147s Get:97 http://ftpmaster.internal/ubuntu plucky/main s390x libblas3 s390x 3.12.1-2 [252 kB] 147s Get:98 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran5 s390x 15-20250213-1ubuntu1 [620 kB] 147s Get:99 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack3 s390x 3.12.1-2 [2971 kB] 147s Get:100 http://ftpmaster.internal/ubuntu plucky/main s390x python3-numpy s390x 1:1.26.4+ds-13 [4601 kB] 147s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pandas-lib s390x 2.2.3+dfsg-8 [8022 kB] 148s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pandas all 2.2.3+dfsg-8 [3112 kB] 150s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-rx all 4.0.4-3 [109 kB] 150s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-influxdb-client all 1.40.0-3 [205 kB] 150s Get:105 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dnspython all 2.7.0-1ubuntu1 [167 kB] 150s Get:106 http://ftpmaster.internal/ubuntu plucky/main s390x python3-eventlet all 0.39.0-0ubuntu1 [277 kB] 150s Get:107 http://ftpmaster.internal/ubuntu plucky/main s390x python3-monotonic all 1.6-3 [5344 B] 150s Get:108 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.context all 1:5.7.0-0ubuntu1 [13.8 kB] 150s Get:109 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.serialization all 5.6.0-0ubuntu1 [15.8 kB] 150s Get:110 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.log all 7.0.0-0ubuntu1 [45.6 kB] 150s Get:111 http://ftpmaster.internal/ubuntu plucky/main s390x python3-rfc3986 all 2.0.0-3 [22.0 kB] 150s Get:112 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.config all 1:9.7.0-0ubuntu1 [90.4 kB] 150s Get:113 http://ftpmaster.internal/ubuntu plucky/main s390x python3-keystoneclient all 1:5.5.0-0ubuntu1 [180 kB] 150s Get:114 http://ftpmaster.internal/ubuntu plucky/main s390x python3-memcache all 1.62-3 [17.6 kB] 150s Get:115 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.cache all 3.10.0-0ubuntu1 [41.1 kB] 150s Get:116 http://ftpmaster.internal/ubuntu plucky/main s390x pycadf-common all 3.1.1-5 [4556 B] 150s Get:117 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pycadf all 3.1.1-5 [17.5 kB] 150s Get:118 http://ftpmaster.internal/ubuntu plucky/main s390x python3-legacy-cgi all 2.6.1-2 [16.3 kB] 150s Get:119 http://ftpmaster.internal/ubuntu plucky/main s390x python3-webob all 1:1.8.9-1 [86.8 kB] 150s Get:120 http://ftpmaster.internal/ubuntu plucky/main s390x python3-keystonemiddleware all 10.8.0-0ubuntu1 [80.5 kB] 150s Get:121 http://ftpmaster.internal/ubuntu plucky/main s390x python3-fasteners all 0.18-2 [12.5 kB] 150s Get:122 http://ftpmaster.internal/ubuntu plucky/main s390x python3-testtools all 2.7.2-4 [124 kB] 150s Get:123 http://ftpmaster.internal/ubuntu plucky/main s390x python3-fixtures all 4.1.0-3 [34.8 kB] 150s Get:124 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.concurrency all 6.2.0-0ubuntu1 [31.0 kB] 150s Get:125 http://ftpmaster.internal/ubuntu plucky/main s390x python3-testresources all 2.0.1-5 [26.8 kB] 150s Get:126 http://ftpmaster.internal/ubuntu plucky/main s390x python3-testscenarios all 0.5.0-4 [13.0 kB] 150s Get:127 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.db all 17.1.0-0ubuntu2 [101 kB] 150s Get:128 http://ftpmaster.internal/ubuntu plucky/main s390x python3-vine all 5.1.0+dfsg-1 [14.2 kB] 150s Get:129 http://ftpmaster.internal/ubuntu plucky/main s390x python3-amqp all 5.3.1-2 [43.5 kB] 150s Get:130 http://ftpmaster.internal/ubuntu plucky/main s390x python3-cachetools all 5.3.3-1 [10.3 kB] 150s Get:131 http://ftpmaster.internal/ubuntu plucky/main s390x python3-kombu all 5.4.2-3 [145 kB] 150s Get:132 http://ftpmaster.internal/ubuntu plucky/main s390x python3-prometheus-client all 0.21.1+ds1-1 [45.8 kB] 150s Get:133 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.metrics all 0.10.1-0ubuntu1 [7594 B] 150s Get:134 http://ftpmaster.internal/ubuntu plucky/main s390x python3-statsd all 4.0.1-2 [12.2 kB] 150s Get:135 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.middleware all 6.3.0-0ubuntu1 [34.5 kB] 150s Get:136 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tempita all 0.6.0-1 [14.8 kB] 150s Get:137 http://ftpmaster.internal/ubuntu plucky/main s390x python3-paste all 3.10.1-1 [210 kB] 150s Get:138 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pastedeploy-tpl all 3.1-1 [5652 B] 150s Get:139 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pastedeploy all 3.1-1 [13.5 kB] 150s Get:140 http://ftpmaster.internal/ubuntu plucky/main s390x python3-repoze.lru all 0.7-3 [12.3 kB] 150s Get:141 http://ftpmaster.internal/ubuntu plucky/main s390x python3-routes all 2.5.1-7 [90.8 kB] 150s Get:142 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.service all 4.0.0-0ubuntu1 [49.4 kB] 150s Get:143 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tenacity all 9.0.0-0ubuntu1 [17.0 kB] 150s Get:144 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.messaging all 16.0.0-0ubuntu1 [119 kB] 150s Get:145 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.policy all 4.5.0-0ubuntu1 [58.3 kB] 150s Get:146 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.upgradecheck all 2.4.0-0ubuntu1 [9386 B] 150s Get:147 http://ftpmaster.internal/ubuntu plucky/main s390x python3-logutils all 0.3.5-5 [17.8 kB] 150s Get:148 http://ftpmaster.internal/ubuntu plucky/main s390x python3-simplegeneric all 0.8.1-5 [10.7 kB] 150s Get:149 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pecan all 1.5.1-6 [86.8 kB] 150s Get:150 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pymemcache all 4.0.0-8 [42.6 kB] 150s Get:151 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pymysql all 1.1.1-2ubuntu1 [39.5 kB] 151s Get:152 http://ftpmaster.internal/ubuntu plucky/main s390x python3-voluptuous all 0.14.2-1 [42.7 kB] 151s Get:153 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tooz all 6.3.0-0ubuntu1 [53.9 kB] 151s Get:154 http://ftpmaster.internal/ubuntu plucky/main s390x python3-wsme all 0.12.1-5ubuntu1 [44.9 kB] 151s Get:155 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-cloudkitty all 21.0.0-0ubuntu1 [161 kB] 151s Get:156 http://ftpmaster.internal/ubuntu plucky/universe s390x cloudkitty-common all 21.0.0-0ubuntu1 [38.0 kB] 151s Get:157 http://ftpmaster.internal/ubuntu plucky/main s390x python3-cinderclient all 1:9.6.0-0ubuntu1 [133 kB] 151s Get:158 http://ftpmaster.internal/ubuntu plucky/main s390x python3-osc-placement all 4.5.0-0ubuntu1 [35.3 kB] 151s Get:159 http://ftpmaster.internal/ubuntu plucky/main s390x python3-openstackclient all 7.2.1-0ubuntu1 [439 kB] 151s Get:160 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pastescript all 3.7.0-1 [56.1 kB] 151s Get:161 http://ftpmaster.internal/ubuntu plucky/main s390x sqlite3 s390x 3.46.1-1 [158 kB] 151s Get:162 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-q-text-as-data all 3.1.6-4 [40.1 kB] 151s Get:163 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12t64 s390x 3.12.9-1 [2508 kB] 151s Get:164 http://ftpmaster.internal/ubuntu plucky/main s390x libyajl2 s390x 2.1.0-5build1 [22.2 kB] 151s Get:165 http://ftpmaster.internal/ubuntu plucky/universe s390x libnorm1t64 s390x 1.5.9+dfsg-3.1build1 [158 kB] 151s Get:166 http://ftpmaster.internal/ubuntu plucky/universe s390x libpgm-5.3-0t64 s390x 5.3.128~dfsg-2.1build1 [169 kB] 151s Get:167 http://ftpmaster.internal/ubuntu plucky/main s390x libsodium23 s390x 1.0.18-1build3 [138 kB] 151s Get:168 http://ftpmaster.internal/ubuntu plucky/universe s390x libzmq5 s390x 4.3.5-1build2 [258 kB] 151s Get:169 http://ftpmaster.internal/ubuntu plucky/universe s390x uwsgi-core s390x 2.0.28-8 [605 kB] 151s Get:170 http://ftpmaster.internal/ubuntu plucky/universe s390x uwsgi-plugin-python3 s390x 2.0.28+1ubuntu1+0.0.2 [98.2 kB] 151s Get:171 http://ftpmaster.internal/ubuntu plucky/universe s390x cloudkitty-api all 21.0.0-0ubuntu1 [22.6 kB] 151s Get:172 http://ftpmaster.internal/ubuntu plucky/universe s390x fonts-glyphicons-halflings all 1.009~3.4.1+dfsg-3 [118 kB] 151s Get:173 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-bootstrap all 3.4.1+dfsg-3 [129 kB] 151s Get:174 http://ftpmaster.internal/ubuntu plucky/universe s390x python-os-api-ref-common all 2.3.0-0ubuntu1 [9660 B] 151s Get:175 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-font-awesome all 5.0.10+really4.7.0~dfsg-4.1 [516 kB] 151s Get:176 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-dulwich s390x 0.22.7-1 [183 kB] 152s Get:177 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-openstackdocstheme all 3.2.0-0ubuntu2 [863 kB] 152s Get:178 http://ftpmaster.internal/ubuntu plucky/main s390x python3-defusedxml all 0.7.1-3 [42.2 kB] 152s Get:179 http://ftpmaster.internal/ubuntu plucky/main s390x libjson-perl all 4.10000-1 [81.9 kB] 152s Get:180 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x sphinx-common all 8.1.3-5 [663 kB] 152s Get:181 http://ftpmaster.internal/ubuntu plucky/main s390x python3-alabaster all 0.7.16-0.1 [18.5 kB] 152s Get:182 http://ftpmaster.internal/ubuntu plucky/main s390x python3-imagesize all 1.4.1-1 [6844 B] 152s Get:183 http://ftpmaster.internal/ubuntu plucky/main s390x python3-snowballstemmer all 2.2.0-4build1 [59.8 kB] 152s Get:184 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x python3-sphinx all 8.1.3-5 [474 kB] 152s Get:185 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-os-api-ref all 2.3.0-0ubuntu1 [23.6 kB] 152s Get:186 http://ftpmaster.internal/ubuntu plucky/universe s390x cloudkitty-doc all 21.0.0-0ubuntu1 [1130 kB] 152s Get:187 http://ftpmaster.internal/ubuntu plucky/universe s390x cloudkitty-processor all 21.0.0-0ubuntu1 [5378 B] 152s Get:188 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 152s Get:189 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 152s Get:190 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 152s Get:191 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 152s Get:192 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 152s Get:193 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 152s Get:194 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 152s Get:195 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 152s Get:196 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 152s Get:197 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 152s Get:198 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 152s Get:199 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 152s Get:200 http://ftpmaster.internal/ubuntu plucky/universe s390x dh-python all 6.20250108 [117 kB] 152s Get:201 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-mccabe all 0.7.0-1 [8678 B] 152s Get:202 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pycodestyle all 2.12.1-2 [30.2 kB] 152s Get:203 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyflakes all 3.2.0-3 [53.0 kB] 152s Get:204 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-flake8 all 7.1.1-3 [44.0 kB] 152s Get:205 http://ftpmaster.internal/ubuntu plucky/universe s390x flake8 all 7.1.1-3 [6438 B] 152s Get:206 http://ftpmaster.internal/ubuntu plucky/main s390x liberror-perl all 0.17029-2 [25.6 kB] 153s Get:207 http://ftpmaster.internal/ubuntu plucky/main s390x git-man all 1:2.47.1-1ubuntu1 [1142 kB] 153s Get:208 http://ftpmaster.internal/ubuntu plucky/main s390x git s390x 1:2.47.1-1ubuntu1 [4260 kB] 153s Get:209 http://ftpmaster.internal/ubuntu plucky/universe s390x libsubunit-perl all 1.4.2-3build1 [5936 B] 153s Get:210 http://ftpmaster.internal/ubuntu plucky/universe s390x pyflakes3 all 3.2.0-3 [3476 B] 153s Get:211 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B] 153s Get:212 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-colorama all 0.4.6-4 [32.1 kB] 153s Get:213 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-coverage s390x 7.4.4+dfsg1-0ubuntu3 [150 kB] 153s Get:214 http://ftpmaster.internal/ubuntu plucky/main s390x python3-ddt all 1.7.2-4 [8862 B] 153s Get:215 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-restructuredtext-lint all 1.3.2-3 [12.8 kB] 153s Get:216 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-doc8 all 0.10.1-5 [17.2 kB] 153s Get:217 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-extras all 1.0.0-6 [7040 B] 153s Get:218 http://ftpmaster.internal/ubuntu plucky/main s390x python3-ply all 3.11-7 [45.4 kB] 153s Get:219 http://ftpmaster.internal/ubuntu plucky/main s390x python3-jsonpath-rw all 1.4.0-7 [15.0 kB] 153s Get:220 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-wsgi-intercept all 1.9.3-2ubuntu1 [18.5 kB] 153s Get:221 http://ftpmaster.internal/ubuntu plucky/main s390x python3-jsonpath-rw-ext all 1.2.2-4 [11.8 kB] 153s Get:222 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-iniconfig all 1.1.1-2 [6024 B] 153s Get:223 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pluggy all 1.5.0-1 [21.0 kB] 153s Get:224 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest all 8.3.4-1 [252 kB] 153s Get:225 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-gabbi all 2.4.0-3 [29.0 kB] 153s Get:226 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-hacking all 4.1.0-4 [22.7 kB] 153s Get:227 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-tomlkit all 0.13.2-1 [37.6 kB] 153s Get:228 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-subunit all 1.4.2-3build1 [67.6 kB] 153s Get:229 http://ftpmaster.internal/ubuntu plucky/universe s390x subunit all 1.4.2-3build1 [4500 B] 153s Get:230 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-stestr all 4.1.0-3 [57.6 kB] 153s Get:231 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-oslotest all 1:5.0.0-4 [17.5 kB] 153s Get:232 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pep8 all 1.7.1-11ubuntu1 [32.0 kB] 153s Get:233 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-wheel all 0.45.1-1 [57.7 kB] 153s Get:234 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pip all 25.0+dfsg-1 [1417 kB] 154s Get:235 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-reno all 4.1.0-2 [44.8 kB] 154s Get:236 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sphinxcontrib.httpdomain all 1.8.1-2 [18.5 kB] 154s Get:237 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sphinxcontrib-pecanwsme all 0.11.0-1 [6514 B] 154s Get:238 http://ftpmaster.internal/ubuntu plucky/universe s390x openstack-pkg-tools all 123ubuntu2 [94.5 kB] 154s Preconfiguring packages ... 154s Fetched 108 MB in 9s (11.6 MB/s) 154s Selecting previously unselected package libpython3.12-minimal:s390x. 155s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55929 files and directories currently installed.) 155s Preparing to unpack .../000-libpython3.12-minimal_3.12.9-1_s390x.deb ... 155s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 155s Selecting previously unselected package python3.12-minimal. 155s Preparing to unpack .../001-python3.12-minimal_3.12.9-1_s390x.deb ... 155s Unpacking python3.12-minimal (3.12.9-1) ... 155s Selecting previously unselected package sgml-base. 155s Preparing to unpack .../002-sgml-base_1.31_all.deb ... 155s Unpacking sgml-base (1.31) ... 155s Selecting previously unselected package libnsl2:s390x. 155s Preparing to unpack .../003-libnsl2_1.3.0-3build3_s390x.deb ... 155s Unpacking libnsl2:s390x (1.3.0-3build3) ... 155s Selecting previously unselected package libpython3.12-stdlib:s390x. 155s Preparing to unpack .../004-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 155s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 155s Selecting previously unselected package python3.12. 155s Preparing to unpack .../005-python3.12_3.12.9-1_s390x.deb ... 155s Unpacking python3.12 (3.12.9-1) ... 155s Selecting previously unselected package python3-importlib-metadata. 155s Preparing to unpack .../006-python3-importlib-metadata_8.6.1-1_all.deb ... 155s Unpacking python3-importlib-metadata (8.6.1-1) ... 155s Selecting previously unselected package python3-mako. 155s Preparing to unpack .../007-python3-mako_1.3.8-2_all.deb ... 155s Unpacking python3-mako (1.3.8-2) ... 155s Selecting previously unselected package python3-greenlet. 155s Preparing to unpack .../008-python3-greenlet_3.1.0-1_s390x.deb ... 155s Unpacking python3-greenlet (3.1.0-1) ... 155s Selecting previously unselected package python3-sqlalchemy. 155s Preparing to unpack .../009-python3-sqlalchemy_2.0.38+ds1-0ubuntu1_all.deb ... 155s Unpacking python3-sqlalchemy (2.0.38+ds1-0ubuntu1) ... 155s Selecting previously unselected package python3-alembic. 155s Preparing to unpack .../010-python3-alembic_1.13.2-4_all.deb ... 155s Unpacking python3-alembic (1.13.2-4) ... 155s Selecting previously unselected package libjs-jquery. 155s Preparing to unpack .../011-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 155s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 155s Selecting previously unselected package libjs-underscore. 155s Preparing to unpack .../012-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ... 155s Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 155s Selecting previously unselected package libjs-sphinxdoc. 155s Preparing to unpack .../013-libjs-sphinxdoc_8.1.3-5_all.deb ... 155s Unpacking libjs-sphinxdoc (8.1.3-5) ... 155s Selecting previously unselected package alembic. 155s Preparing to unpack .../014-alembic_1.13.2-4_all.deb ... 155s Unpacking alembic (1.13.2-4) ... 155s Selecting previously unselected package m4. 155s Preparing to unpack .../015-m4_1.4.19-5_s390x.deb ... 155s Unpacking m4 (1.4.19-5) ... 155s Selecting previously unselected package autoconf. 155s Preparing to unpack .../016-autoconf_2.72-3_all.deb ... 155s Unpacking autoconf (2.72-3) ... 155s Selecting previously unselected package autotools-dev. 155s Preparing to unpack .../017-autotools-dev_20220109.1_all.deb ... 155s Unpacking autotools-dev (20220109.1) ... 155s Selecting previously unselected package automake. 155s Preparing to unpack .../018-automake_1%3a1.17-3_all.deb ... 155s Unpacking automake (1:1.17-3) ... 155s Selecting previously unselected package autopoint. 155s Preparing to unpack .../019-autopoint_0.23.1-1_all.deb ... 155s Unpacking autopoint (0.23.1-1) ... 155s Selecting previously unselected package libisl23:s390x. 155s Preparing to unpack .../020-libisl23_0.27-1_s390x.deb ... 155s Unpacking libisl23:s390x (0.27-1) ... 155s Selecting previously unselected package libmpc3:s390x. 155s Preparing to unpack .../021-libmpc3_1.3.1-1build2_s390x.deb ... 155s Unpacking libmpc3:s390x (1.3.1-1build2) ... 155s Selecting previously unselected package cpp-14-s390x-linux-gnu. 155s Preparing to unpack .../022-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 155s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 155s Selecting previously unselected package cpp-14. 155s Preparing to unpack .../023-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 155s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 155s Selecting previously unselected package cpp-s390x-linux-gnu. 155s Preparing to unpack .../024-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 155s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 155s Selecting previously unselected package cpp. 155s Preparing to unpack .../025-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 155s Unpacking cpp (4:14.2.0-1ubuntu1) ... 155s Selecting previously unselected package libcc1-0:s390x. 155s Preparing to unpack .../026-libcc1-0_15-20250213-1ubuntu1_s390x.deb ... 155s Unpacking libcc1-0:s390x (15-20250213-1ubuntu1) ... 155s Selecting previously unselected package libgomp1:s390x. 155s Preparing to unpack .../027-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 155s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 155s Selecting previously unselected package libitm1:s390x. 155s Preparing to unpack .../028-libitm1_15-20250213-1ubuntu1_s390x.deb ... 155s Unpacking libitm1:s390x (15-20250213-1ubuntu1) ... 155s Selecting previously unselected package libasan8:s390x. 155s Preparing to unpack .../029-libasan8_15-20250213-1ubuntu1_s390x.deb ... 155s Unpacking libasan8:s390x (15-20250213-1ubuntu1) ... 155s Selecting previously unselected package libubsan1:s390x. 155s Preparing to unpack .../030-libubsan1_15-20250213-1ubuntu1_s390x.deb ... 155s Unpacking libubsan1:s390x (15-20250213-1ubuntu1) ... 155s Selecting previously unselected package libgcc-14-dev:s390x. 155s Preparing to unpack .../031-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 155s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 155s Selecting previously unselected package gcc-14-s390x-linux-gnu. 155s Preparing to unpack .../032-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 155s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 156s Selecting previously unselected package gcc-14. 156s Preparing to unpack .../033-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 156s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 156s Selecting previously unselected package gcc-s390x-linux-gnu. 156s Preparing to unpack .../034-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 156s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 156s Selecting previously unselected package gcc. 156s Preparing to unpack .../035-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 156s Unpacking gcc (4:14.2.0-1ubuntu1) ... 156s Selecting previously unselected package libstdc++-14-dev:s390x. 156s Preparing to unpack .../036-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 156s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 156s Selecting previously unselected package g++-14-s390x-linux-gnu. 156s Preparing to unpack .../037-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 156s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 156s Selecting previously unselected package g++-14. 156s Preparing to unpack .../038-g++-14_14.2.0-17ubuntu1_s390x.deb ... 156s Unpacking g++-14 (14.2.0-17ubuntu1) ... 156s Selecting previously unselected package g++-s390x-linux-gnu. 156s Preparing to unpack .../039-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 156s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 156s Selecting previously unselected package g++. 156s Preparing to unpack .../040-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 156s Unpacking g++ (4:14.2.0-1ubuntu1) ... 156s Selecting previously unselected package build-essential. 156s Preparing to unpack .../041-build-essential_12.10ubuntu1_s390x.deb ... 156s Unpacking build-essential (12.10ubuntu1) ... 156s Selecting previously unselected package dbconfig-common. 156s Preparing to unpack .../042-dbconfig-common_2.0.24_all.deb ... 156s Unpacking dbconfig-common (2.0.24) ... 156s Selecting previously unselected package python3-setproctitle:s390x. 156s Preparing to unpack .../043-python3-setproctitle_1.3.4-1_s390x.deb ... 156s Unpacking python3-setproctitle:s390x (1.3.4-1) ... 156s Selecting previously unselected package python3-cotyledon. 156s Preparing to unpack .../044-python3-cotyledon_1.7.3-3_all.deb ... 156s Unpacking python3-cotyledon (1.7.3-3) ... 156s Selecting previously unselected package python3-dateutil. 156s Preparing to unpack .../045-python3-dateutil_2.9.0-3_all.deb ... 156s Unpacking python3-dateutil (2.9.0-3) ... 156s Selecting previously unselected package python3-mbstrdecoder. 156s Preparing to unpack .../046-python3-mbstrdecoder_1.1.0-4_all.deb ... 156s Unpacking python3-mbstrdecoder (1.1.0-4) ... 156s Selecting previously unselected package python3-pytz. 156s Preparing to unpack .../047-python3-pytz_2025.1-3_all.deb ... 156s Unpacking python3-pytz (2025.1-3) ... 156s Selecting previously unselected package python3-tz. 156s Preparing to unpack .../048-python3-tz_2025.1-3_all.deb ... 156s Unpacking python3-tz (2025.1-3) ... 156s Selecting previously unselected package python3-typepy. 156s Preparing to unpack .../049-python3-typepy_1.3.2-1_all.deb ... 156s Unpacking python3-typepy (1.3.2-1) ... 156s Selecting previously unselected package tzdata-legacy. 156s Preparing to unpack .../050-tzdata-legacy_2025a-2ubuntu1_all.deb ... 156s Unpacking tzdata-legacy (2025a-2ubuntu1) ... 156s Selecting previously unselected package python3-datetimerange. 156s Preparing to unpack .../051-python3-datetimerange_2.3.0-1_all.deb ... 156s Unpacking python3-datetimerange (2.3.0-1) ... 156s Selecting previously unselected package python3-click. 156s Preparing to unpack .../052-python3-click_8.1.8-1_all.deb ... 156s Unpacking python3-click (8.1.8-1) ... 156s Selecting previously unselected package python3-itsdangerous. 156s Preparing to unpack .../053-python3-itsdangerous_2.2.0-2_all.deb ... 156s Unpacking python3-itsdangerous (2.2.0-2) ... 156s Selecting previously unselected package python3-werkzeug. 156s Preparing to unpack .../054-python3-werkzeug_3.1.3-2_all.deb ... 156s Unpacking python3-werkzeug (3.1.3-2) ... 156s Selecting previously unselected package python3-flask. 156s Preparing to unpack .../055-python3-flask_3.1.0-2ubuntu1_all.deb ... 156s Unpacking python3-flask (3.1.0-2ubuntu1) ... 156s Selecting previously unselected package python3-aniso8601. 156s Preparing to unpack .../056-python3-aniso8601_10.0.0-2_all.deb ... 156s Unpacking python3-aniso8601 (10.0.0-2) ... 156s Selecting previously unselected package python3-flask-restful. 156s Preparing to unpack .../057-python3-flask-restful_0.3.10-5_all.deb ... 156s Unpacking python3-flask-restful (0.3.10-5) ... 156s Selecting previously unselected package python3-pbr. 156s Preparing to unpack .../058-python3-pbr_6.1.1-0ubuntu1_all.deb ... 156s Unpacking python3-pbr (6.1.1-0ubuntu1) ... 156s Selecting previously unselected package python3-futurist. 156s Preparing to unpack .../059-python3-futurist_3.0.0-3_all.deb ... 156s Unpacking python3-futurist (3.0.0-3) ... 156s Selecting previously unselected package python3-autopage. 156s Preparing to unpack .../060-python3-autopage_0.4.0-4_all.deb ... 156s Unpacking python3-autopage (0.4.0-4) ... 156s Selecting previously unselected package python3-wcwidth. 156s Preparing to unpack .../061-python3-wcwidth_0.2.13+dfsg1-1_all.deb ... 156s Unpacking python3-wcwidth (0.2.13+dfsg1-1) ... 156s Selecting previously unselected package python3-pyperclip. 156s Preparing to unpack .../062-python3-pyperclip_1.8.2-2_all.deb ... 156s Unpacking python3-pyperclip (1.8.2-2) ... 156s Selecting previously unselected package python3-cmd2. 156s Preparing to unpack .../063-python3-cmd2_2.5.7+ds-1_all.deb ... 156s Unpacking python3-cmd2 (2.5.7+ds-1) ... 156s Selecting previously unselected package xml-core. 156s Preparing to unpack .../064-xml-core_0.19_all.deb ... 156s Unpacking xml-core (0.19) ... 156s Selecting previously unselected package docutils-common. 156s Preparing to unpack .../065-docutils-common_0.21.2+dfsg-2_all.deb ... 156s Unpacking docutils-common (0.21.2+dfsg-2) ... 156s Selecting previously unselected package python3-roman. 156s Preparing to unpack .../066-python3-roman_5.0-1_all.deb ... 156s Unpacking python3-roman (5.0-1) ... 156s Selecting previously unselected package python3-docutils. 156s Preparing to unpack .../067-python3-docutils_0.21.2+dfsg-2_all.deb ... 156s Unpacking python3-docutils (0.21.2+dfsg-2) ... 156s Selecting previously unselected package python3-prettytable. 156s Preparing to unpack .../068-python3-prettytable_3.12.0-1_all.deb ... 156s Unpacking python3-prettytable (3.12.0-1) ... 156s Selecting previously unselected package python3-stevedore. 156s Preparing to unpack .../069-python3-stevedore_1%3a5.4.0-0ubuntu1_all.deb ... 156s Unpacking python3-stevedore (1:5.4.0-0ubuntu1) ... 156s Selecting previously unselected package python3-cliff. 156s Preparing to unpack .../070-python3-cliff_4.8.0-0ubuntu1_all.deb ... 156s Unpacking python3-cliff (4.8.0-0ubuntu1) ... 157s Selecting previously unselected package python3-wrapt. 157s Preparing to unpack .../071-python3-wrapt_1.15.0-4_s390x.deb ... 157s Unpacking python3-wrapt (1.15.0-4) ... 157s Selecting previously unselected package python3-debtcollector. 157s Preparing to unpack .../072-python3-debtcollector_3.0.0-3_all.deb ... 157s Unpacking python3-debtcollector (3.0.0-3) ... 157s Selecting previously unselected package python3-iso8601. 157s Preparing to unpack .../073-python3-iso8601_2.1.0-2_all.deb ... 157s Unpacking python3-iso8601 (2.1.0-2) ... 157s Selecting previously unselected package libxslt1.1:s390x. 157s Preparing to unpack .../074-libxslt1.1_1.1.39-0exp1ubuntu2_s390x.deb ... 157s Unpacking libxslt1.1:s390x (1.1.39-0exp1ubuntu2) ... 157s Selecting previously unselected package python3-lxml:s390x. 157s Preparing to unpack .../075-python3-lxml_5.3.1-1_s390x.deb ... 157s Unpacking python3-lxml:s390x (5.3.1-1) ... 157s Selecting previously unselected package python3-six. 157s Preparing to unpack .../076-python3-six_1.17.0-1_all.deb ... 157s Unpacking python3-six (1.17.0-1) ... 157s Selecting previously unselected package python3-os-service-types. 157s Preparing to unpack .../077-python3-os-service-types_1.7.0-5_all.deb ... 157s Unpacking python3-os-service-types (1.7.0-5) ... 157s Selecting previously unselected package python3-keystoneauth1. 157s Preparing to unpack .../078-python3-keystoneauth1_5.9.1-0ubuntu1_all.deb ... 157s Unpacking python3-keystoneauth1 (5.9.1-0ubuntu1) ... 157s Selecting previously unselected package python3-decorator. 157s Preparing to unpack .../079-python3-decorator_5.1.1-5_all.deb ... 157s Unpacking python3-decorator (5.1.1-5) ... 157s Selecting previously unselected package python3-packaging. 157s Preparing to unpack .../080-python3-packaging_24.2-1_all.deb ... 157s Unpacking python3-packaging (24.2-1) ... 157s Selecting previously unselected package python3-deprecation. 157s Preparing to unpack .../081-python3-deprecation_2.1.0-3_all.deb ... 157s Unpacking python3-deprecation (2.1.0-3) ... 157s Selecting previously unselected package python3-dogpile.cache. 157s Preparing to unpack .../082-python3-dogpile.cache_1.3.3-1_all.deb ... 157s Unpacking python3-dogpile.cache (1.3.3-1) ... 157s Selecting previously unselected package python3-jmespath. 157s Preparing to unpack .../083-python3-jmespath_1.0.1-1_all.deb ... 157s Unpacking python3-jmespath (1.0.1-1) ... 157s Selecting previously unselected package python3-munch. 157s Preparing to unpack .../084-python3-munch_4.0.0-2_all.deb ... 157s Unpacking python3-munch (4.0.0-2) ... 157s Selecting previously unselected package python3-platformdirs. 157s Preparing to unpack .../085-python3-platformdirs_4.3.6-1_all.deb ... 157s Unpacking python3-platformdirs (4.3.6-1) ... 157s Selecting previously unselected package python3-psutil. 157s Preparing to unpack .../086-python3-psutil_5.9.8-2build3_s390x.deb ... 157s Unpacking python3-psutil (5.9.8-2build3) ... 157s Selecting previously unselected package python3-requestsexceptions. 157s Preparing to unpack .../087-python3-requestsexceptions_1.4.0-5_all.deb ... 157s Unpacking python3-requestsexceptions (1.4.0-5) ... 157s Selecting previously unselected package python3-openstacksdk. 157s Preparing to unpack .../088-python3-openstacksdk_4.3.0-0ubuntu1_all.deb ... 157s Unpacking python3-openstacksdk (4.3.0-0ubuntu1) ... 157s Selecting previously unselected package python3-os-client-config. 157s Preparing to unpack .../089-python3-os-client-config_2.1.0-0ubuntu5_all.deb ... 157s Unpacking python3-os-client-config (2.1.0-0ubuntu5) ... 157s Selecting previously unselected package python3-oslo.i18n. 157s Preparing to unpack .../090-python3-oslo.i18n_6.5.0-0ubuntu1_all.deb ... 157s Unpacking python3-oslo.i18n (6.5.0-0ubuntu1) ... 157s Selecting previously unselected package python3-oslo.utils. 157s Preparing to unpack .../091-python3-oslo.utils_8.1.0-0ubuntu1_all.deb ... 157s Unpacking python3-oslo.utils (8.1.0-0ubuntu1) ... 157s Selecting previously unselected package python3-osc-lib. 157s Preparing to unpack .../092-python3-osc-lib_3.2.0-0ubuntu1_all.deb ... 157s Unpacking python3-osc-lib (3.2.0-0ubuntu1) ... 157s Selecting previously unselected package python3-gnocchiclient. 157s Preparing to unpack .../093-python3-gnocchiclient_7.0.8-0ubuntu1_all.deb ... 157s Unpacking python3-gnocchiclient (7.0.8-0ubuntu1) ... 157s Selecting previously unselected package python3-msgpack. 157s Preparing to unpack .../094-python3-msgpack_1.0.3-3build3_s390x.deb ... 157s Unpacking python3-msgpack (1.0.3-3build3) ... 157s Selecting previously unselected package python3-influxdb. 157s Preparing to unpack .../095-python3-influxdb_5.3.2-5_all.deb ... 157s Unpacking python3-influxdb (5.3.2-5) ... 157s Selecting previously unselected package libblas3:s390x. 157s Preparing to unpack .../096-libblas3_3.12.1-2_s390x.deb ... 157s Unpacking libblas3:s390x (3.12.1-2) ... 157s Selecting previously unselected package libgfortran5:s390x. 157s Preparing to unpack .../097-libgfortran5_15-20250213-1ubuntu1_s390x.deb ... 157s Unpacking libgfortran5:s390x (15-20250213-1ubuntu1) ... 157s Selecting previously unselected package liblapack3:s390x. 157s Preparing to unpack .../098-liblapack3_3.12.1-2_s390x.deb ... 157s Unpacking liblapack3:s390x (3.12.1-2) ... 157s Selecting previously unselected package python3-numpy. 157s Preparing to unpack .../099-python3-numpy_1%3a1.26.4+ds-13_s390x.deb ... 157s Unpacking python3-numpy (1:1.26.4+ds-13) ... 157s Selecting previously unselected package python3-pandas-lib:s390x. 157s Preparing to unpack .../100-python3-pandas-lib_2.2.3+dfsg-8_s390x.deb ... 157s Unpacking python3-pandas-lib:s390x (2.2.3+dfsg-8) ... 157s Selecting previously unselected package python3-pandas. 157s Preparing to unpack .../101-python3-pandas_2.2.3+dfsg-8_all.deb ... 157s Unpacking python3-pandas (2.2.3+dfsg-8) ... 158s Selecting previously unselected package python3-rx. 158s Preparing to unpack .../102-python3-rx_4.0.4-3_all.deb ... 158s Unpacking python3-rx (4.0.4-3) ... 158s Selecting previously unselected package python3-influxdb-client. 158s Preparing to unpack .../103-python3-influxdb-client_1.40.0-3_all.deb ... 158s Unpacking python3-influxdb-client (1.40.0-3) ... 158s Selecting previously unselected package python3-dnspython. 158s Preparing to unpack .../104-python3-dnspython_2.7.0-1ubuntu1_all.deb ... 158s Unpacking python3-dnspython (2.7.0-1ubuntu1) ... 158s Selecting previously unselected package python3-eventlet. 158s Preparing to unpack .../105-python3-eventlet_0.39.0-0ubuntu1_all.deb ... 158s Unpacking python3-eventlet (0.39.0-0ubuntu1) ... 158s Selecting previously unselected package python3-monotonic. 158s Preparing to unpack .../106-python3-monotonic_1.6-3_all.deb ... 158s Unpacking python3-monotonic (1.6-3) ... 158s Selecting previously unselected package python3-oslo.context. 158s Preparing to unpack .../107-python3-oslo.context_1%3a5.7.0-0ubuntu1_all.deb ... 158s Unpacking python3-oslo.context (1:5.7.0-0ubuntu1) ... 158s Selecting previously unselected package python3-oslo.serialization. 158s Preparing to unpack .../108-python3-oslo.serialization_5.6.0-0ubuntu1_all.deb ... 158s Unpacking python3-oslo.serialization (5.6.0-0ubuntu1) ... 158s Selecting previously unselected package python3-oslo.log. 158s Preparing to unpack .../109-python3-oslo.log_7.0.0-0ubuntu1_all.deb ... 158s Unpacking python3-oslo.log (7.0.0-0ubuntu1) ... 158s Selecting previously unselected package python3-rfc3986. 158s Preparing to unpack .../110-python3-rfc3986_2.0.0-3_all.deb ... 158s Unpacking python3-rfc3986 (2.0.0-3) ... 158s Selecting previously unselected package python3-oslo.config. 158s Preparing to unpack .../111-python3-oslo.config_1%3a9.7.0-0ubuntu1_all.deb ... 158s Unpacking python3-oslo.config (1:9.7.0-0ubuntu1) ... 158s Selecting previously unselected package python3-keystoneclient. 158s Preparing to unpack .../112-python3-keystoneclient_1%3a5.5.0-0ubuntu1_all.deb ... 158s Unpacking python3-keystoneclient (1:5.5.0-0ubuntu1) ... 158s Selecting previously unselected package python3-memcache. 158s Preparing to unpack .../113-python3-memcache_1.62-3_all.deb ... 158s Unpacking python3-memcache (1.62-3) ... 158s Selecting previously unselected package python3-oslo.cache. 158s Preparing to unpack .../114-python3-oslo.cache_3.10.0-0ubuntu1_all.deb ... 158s Unpacking python3-oslo.cache (3.10.0-0ubuntu1) ... 158s Selecting previously unselected package pycadf-common. 158s Preparing to unpack .../115-pycadf-common_3.1.1-5_all.deb ... 158s Unpacking pycadf-common (3.1.1-5) ... 158s Selecting previously unselected package python3-pycadf. 158s Preparing to unpack .../116-python3-pycadf_3.1.1-5_all.deb ... 158s Unpacking python3-pycadf (3.1.1-5) ... 158s Selecting previously unselected package python3-legacy-cgi. 158s Preparing to unpack .../117-python3-legacy-cgi_2.6.1-2_all.deb ... 158s Unpacking python3-legacy-cgi (2.6.1-2) ... 158s Selecting previously unselected package python3-webob. 158s Preparing to unpack .../118-python3-webob_1%3a1.8.9-1_all.deb ... 158s Unpacking python3-webob (1:1.8.9-1) ... 158s Selecting previously unselected package python3-keystonemiddleware. 158s Preparing to unpack .../119-python3-keystonemiddleware_10.8.0-0ubuntu1_all.deb ... 158s Unpacking python3-keystonemiddleware (10.8.0-0ubuntu1) ... 158s Selecting previously unselected package python3-fasteners. 158s Preparing to unpack .../120-python3-fasteners_0.18-2_all.deb ... 158s Unpacking python3-fasteners (0.18-2) ... 158s Selecting previously unselected package python3-testtools. 158s Preparing to unpack .../121-python3-testtools_2.7.2-4_all.deb ... 158s Unpacking python3-testtools (2.7.2-4) ... 158s Selecting previously unselected package python3-fixtures. 158s Preparing to unpack .../122-python3-fixtures_4.1.0-3_all.deb ... 158s Unpacking python3-fixtures (4.1.0-3) ... 158s Selecting previously unselected package python3-oslo.concurrency. 158s Preparing to unpack .../123-python3-oslo.concurrency_6.2.0-0ubuntu1_all.deb ... 158s Unpacking python3-oslo.concurrency (6.2.0-0ubuntu1) ... 158s Selecting previously unselected package python3-testresources. 158s Preparing to unpack .../124-python3-testresources_2.0.1-5_all.deb ... 158s Unpacking python3-testresources (2.0.1-5) ... 158s Selecting previously unselected package python3-testscenarios. 158s Preparing to unpack .../125-python3-testscenarios_0.5.0-4_all.deb ... 158s Unpacking python3-testscenarios (0.5.0-4) ... 158s Selecting previously unselected package python3-oslo.db. 158s Preparing to unpack .../126-python3-oslo.db_17.1.0-0ubuntu2_all.deb ... 158s Unpacking python3-oslo.db (17.1.0-0ubuntu2) ... 158s Selecting previously unselected package python3-vine. 158s Preparing to unpack .../127-python3-vine_5.1.0+dfsg-1_all.deb ... 158s Unpacking python3-vine (5.1.0+dfsg-1) ... 158s Selecting previously unselected package python3-amqp. 158s Preparing to unpack .../128-python3-amqp_5.3.1-2_all.deb ... 158s Unpacking python3-amqp (5.3.1-2) ... 158s Selecting previously unselected package python3-cachetools. 158s Preparing to unpack .../129-python3-cachetools_5.3.3-1_all.deb ... 158s Unpacking python3-cachetools (5.3.3-1) ... 158s Selecting previously unselected package python3-kombu. 158s Preparing to unpack .../130-python3-kombu_5.4.2-3_all.deb ... 158s Unpacking python3-kombu (5.4.2-3) ... 158s Selecting previously unselected package python3-prometheus-client. 158s Preparing to unpack .../131-python3-prometheus-client_0.21.1+ds1-1_all.deb ... 158s Unpacking python3-prometheus-client (0.21.1+ds1-1) ... 158s Selecting previously unselected package python3-oslo.metrics. 158s Preparing to unpack .../132-python3-oslo.metrics_0.10.1-0ubuntu1_all.deb ... 158s Unpacking python3-oslo.metrics (0.10.1-0ubuntu1) ... 158s Selecting previously unselected package python3-statsd. 158s Preparing to unpack .../133-python3-statsd_4.0.1-2_all.deb ... 158s Unpacking python3-statsd (4.0.1-2) ... 158s Selecting previously unselected package python3-oslo.middleware. 158s Preparing to unpack .../134-python3-oslo.middleware_6.3.0-0ubuntu1_all.deb ... 158s Unpacking python3-oslo.middleware (6.3.0-0ubuntu1) ... 158s Selecting previously unselected package python3-tempita. 158s Preparing to unpack .../135-python3-tempita_0.6.0-1_all.deb ... 158s Unpacking python3-tempita (0.6.0-1) ... 158s Selecting previously unselected package python3-paste. 158s Preparing to unpack .../136-python3-paste_3.10.1-1_all.deb ... 158s Unpacking python3-paste (3.10.1-1) ... 158s Selecting previously unselected package python3-pastedeploy-tpl. 158s Preparing to unpack .../137-python3-pastedeploy-tpl_3.1-1_all.deb ... 158s Unpacking python3-pastedeploy-tpl (3.1-1) ... 158s Selecting previously unselected package python3-pastedeploy. 158s Preparing to unpack .../138-python3-pastedeploy_3.1-1_all.deb ... 158s Unpacking python3-pastedeploy (3.1-1) ... 158s Selecting previously unselected package python3-repoze.lru. 158s Preparing to unpack .../139-python3-repoze.lru_0.7-3_all.deb ... 158s Unpacking python3-repoze.lru (0.7-3) ... 158s Selecting previously unselected package python3-routes. 158s Preparing to unpack .../140-python3-routes_2.5.1-7_all.deb ... 158s Unpacking python3-routes (2.5.1-7) ... 158s Selecting previously unselected package python3-oslo.service. 158s Preparing to unpack .../141-python3-oslo.service_4.0.0-0ubuntu1_all.deb ... 158s Unpacking python3-oslo.service (4.0.0-0ubuntu1) ... 158s Selecting previously unselected package python3-tenacity. 158s Preparing to unpack .../142-python3-tenacity_9.0.0-0ubuntu1_all.deb ... 158s Unpacking python3-tenacity (9.0.0-0ubuntu1) ... 158s Selecting previously unselected package python3-oslo.messaging. 158s Preparing to unpack .../143-python3-oslo.messaging_16.0.0-0ubuntu1_all.deb ... 158s Unpacking python3-oslo.messaging (16.0.0-0ubuntu1) ... 158s Selecting previously unselected package python3-oslo.policy. 158s Preparing to unpack .../144-python3-oslo.policy_4.5.0-0ubuntu1_all.deb ... 158s Unpacking python3-oslo.policy (4.5.0-0ubuntu1) ... 158s Selecting previously unselected package python3-oslo.upgradecheck. 158s Preparing to unpack .../145-python3-oslo.upgradecheck_2.4.0-0ubuntu1_all.deb ... 158s Unpacking python3-oslo.upgradecheck (2.4.0-0ubuntu1) ... 158s Selecting previously unselected package python3-logutils. 158s Preparing to unpack .../146-python3-logutils_0.3.5-5_all.deb ... 158s Unpacking python3-logutils (0.3.5-5) ... 158s Selecting previously unselected package python3-simplegeneric. 158s Preparing to unpack .../147-python3-simplegeneric_0.8.1-5_all.deb ... 158s Unpacking python3-simplegeneric (0.8.1-5) ... 158s Selecting previously unselected package python3-pecan. 158s Preparing to unpack .../148-python3-pecan_1.5.1-6_all.deb ... 158s Unpacking python3-pecan (1.5.1-6) ... 158s Selecting previously unselected package python3-pymemcache. 158s Preparing to unpack .../149-python3-pymemcache_4.0.0-8_all.deb ... 158s Unpacking python3-pymemcache (4.0.0-8) ... 158s Selecting previously unselected package python3-pymysql. 158s Preparing to unpack .../150-python3-pymysql_1.1.1-2ubuntu1_all.deb ... 158s Unpacking python3-pymysql (1.1.1-2ubuntu1) ... 158s Selecting previously unselected package python3-voluptuous. 158s Preparing to unpack .../151-python3-voluptuous_0.14.2-1_all.deb ... 158s Unpacking python3-voluptuous (0.14.2-1) ... 158s Selecting previously unselected package python3-tooz. 158s Preparing to unpack .../152-python3-tooz_6.3.0-0ubuntu1_all.deb ... 158s Unpacking python3-tooz (6.3.0-0ubuntu1) ... 158s Selecting previously unselected package python3-wsme. 158s Preparing to unpack .../153-python3-wsme_0.12.1-5ubuntu1_all.deb ... 158s Unpacking python3-wsme (0.12.1-5ubuntu1) ... 158s Selecting previously unselected package python3-cloudkitty. 158s Preparing to unpack .../154-python3-cloudkitty_21.0.0-0ubuntu1_all.deb ... 158s Unpacking python3-cloudkitty (21.0.0-0ubuntu1) ... 158s Selecting previously unselected package cloudkitty-common. 158s Preparing to unpack .../155-cloudkitty-common_21.0.0-0ubuntu1_all.deb ... 158s Unpacking cloudkitty-common (21.0.0-0ubuntu1) ... 158s Selecting previously unselected package python3-cinderclient. 158s Preparing to unpack .../156-python3-cinderclient_1%3a9.6.0-0ubuntu1_all.deb ... 158s Unpacking python3-cinderclient (1:9.6.0-0ubuntu1) ... 158s Selecting previously unselected package python3-osc-placement. 158s Preparing to unpack .../157-python3-osc-placement_4.5.0-0ubuntu1_all.deb ... 158s Unpacking python3-osc-placement (4.5.0-0ubuntu1) ... 158s Selecting previously unselected package python3-openstackclient. 158s Preparing to unpack .../158-python3-openstackclient_7.2.1-0ubuntu1_all.deb ... 158s Unpacking python3-openstackclient (7.2.1-0ubuntu1) ... 159s Selecting previously unselected package python3-pastescript. 159s Preparing to unpack .../159-python3-pastescript_3.7.0-1_all.deb ... 159s Unpacking python3-pastescript (3.7.0-1) ... 159s Selecting previously unselected package sqlite3. 159s Preparing to unpack .../160-sqlite3_3.46.1-1_s390x.deb ... 159s Unpacking sqlite3 (3.46.1-1) ... 159s Selecting previously unselected package python3-q-text-as-data. 159s Preparing to unpack .../161-python3-q-text-as-data_3.1.6-4_all.deb ... 159s Unpacking python3-q-text-as-data (3.1.6-4) ... 159s Selecting previously unselected package libpython3.12t64:s390x. 159s Preparing to unpack .../162-libpython3.12t64_3.12.9-1_s390x.deb ... 159s Unpacking libpython3.12t64:s390x (3.12.9-1) ... 159s Selecting previously unselected package libyajl2:s390x. 159s Preparing to unpack .../163-libyajl2_2.1.0-5build1_s390x.deb ... 159s Unpacking libyajl2:s390x (2.1.0-5build1) ... 159s Selecting previously unselected package libnorm1t64:s390x. 159s Preparing to unpack .../164-libnorm1t64_1.5.9+dfsg-3.1build1_s390x.deb ... 159s Unpacking libnorm1t64:s390x (1.5.9+dfsg-3.1build1) ... 159s Selecting previously unselected package libpgm-5.3-0t64:s390x. 159s Preparing to unpack .../165-libpgm-5.3-0t64_5.3.128~dfsg-2.1build1_s390x.deb ... 159s Unpacking libpgm-5.3-0t64:s390x (5.3.128~dfsg-2.1build1) ... 159s Selecting previously unselected package libsodium23:s390x. 159s Preparing to unpack .../166-libsodium23_1.0.18-1build3_s390x.deb ... 159s Unpacking libsodium23:s390x (1.0.18-1build3) ... 159s Selecting previously unselected package libzmq5:s390x. 159s Preparing to unpack .../167-libzmq5_4.3.5-1build2_s390x.deb ... 159s Unpacking libzmq5:s390x (4.3.5-1build2) ... 159s Selecting previously unselected package uwsgi-core. 159s Preparing to unpack .../168-uwsgi-core_2.0.28-8_s390x.deb ... 159s Unpacking uwsgi-core (2.0.28-8) ... 159s Selecting previously unselected package uwsgi-plugin-python3. 159s Preparing to unpack .../169-uwsgi-plugin-python3_2.0.28+1ubuntu1+0.0.2_s390x.deb ... 159s Unpacking uwsgi-plugin-python3 (2.0.28+1ubuntu1+0.0.2) ... 159s Selecting previously unselected package cloudkitty-api. 159s Preparing to unpack .../170-cloudkitty-api_21.0.0-0ubuntu1_all.deb ... 159s Unpacking cloudkitty-api (21.0.0-0ubuntu1) ... 159s Selecting previously unselected package fonts-glyphicons-halflings. 159s Preparing to unpack .../171-fonts-glyphicons-halflings_1.009~3.4.1+dfsg-3_all.deb ... 159s Unpacking fonts-glyphicons-halflings (1.009~3.4.1+dfsg-3) ... 159s Selecting previously unselected package libjs-bootstrap. 159s Preparing to unpack .../172-libjs-bootstrap_3.4.1+dfsg-3_all.deb ... 159s Unpacking libjs-bootstrap (3.4.1+dfsg-3) ... 159s Selecting previously unselected package python-os-api-ref-common. 159s Preparing to unpack .../173-python-os-api-ref-common_2.3.0-0ubuntu1_all.deb ... 159s Unpacking python-os-api-ref-common (2.3.0-0ubuntu1) ... 159s Selecting previously unselected package fonts-font-awesome. 159s Preparing to unpack .../174-fonts-font-awesome_5.0.10+really4.7.0~dfsg-4.1_all.deb ... 159s Unpacking fonts-font-awesome (5.0.10+really4.7.0~dfsg-4.1) ... 159s Selecting previously unselected package python3-dulwich. 159s Preparing to unpack .../175-python3-dulwich_0.22.7-1_s390x.deb ... 159s Unpacking python3-dulwich (0.22.7-1) ... 159s Selecting previously unselected package python3-openstackdocstheme. 159s Preparing to unpack .../176-python3-openstackdocstheme_3.2.0-0ubuntu2_all.deb ... 159s Unpacking python3-openstackdocstheme (3.2.0-0ubuntu2) ... 159s Selecting previously unselected package python3-defusedxml. 159s Preparing to unpack .../177-python3-defusedxml_0.7.1-3_all.deb ... 159s Unpacking python3-defusedxml (0.7.1-3) ... 159s Selecting previously unselected package libjson-perl. 159s Preparing to unpack .../178-libjson-perl_4.10000-1_all.deb ... 159s Unpacking libjson-perl (4.10000-1) ... 159s Selecting previously unselected package sphinx-common. 159s Preparing to unpack .../179-sphinx-common_8.1.3-5_all.deb ... 159s Unpacking sphinx-common (8.1.3-5) ... 159s Selecting previously unselected package python3-alabaster. 159s Preparing to unpack .../180-python3-alabaster_0.7.16-0.1_all.deb ... 159s Unpacking python3-alabaster (0.7.16-0.1) ... 159s Selecting previously unselected package python3-imagesize. 159s Preparing to unpack .../181-python3-imagesize_1.4.1-1_all.deb ... 159s Unpacking python3-imagesize (1.4.1-1) ... 159s Selecting previously unselected package python3-snowballstemmer. 159s Preparing to unpack .../182-python3-snowballstemmer_2.2.0-4build1_all.deb ... 159s Unpacking python3-snowballstemmer (2.2.0-4build1) ... 159s Selecting previously unselected package python3-sphinx. 159s Preparing to unpack .../183-python3-sphinx_8.1.3-5_all.deb ... 159s Unpacking python3-sphinx (8.1.3-5) ... 159s Selecting previously unselected package python3-os-api-ref. 159s Preparing to unpack .../184-python3-os-api-ref_2.3.0-0ubuntu1_all.deb ... 159s Unpacking python3-os-api-ref (2.3.0-0ubuntu1) ... 159s Selecting previously unselected package cloudkitty-doc. 159s Preparing to unpack .../185-cloudkitty-doc_21.0.0-0ubuntu1_all.deb ... 159s Unpacking cloudkitty-doc (21.0.0-0ubuntu1) ... 159s Selecting previously unselected package cloudkitty-processor. 159s Preparing to unpack .../186-cloudkitty-processor_21.0.0-0ubuntu1_all.deb ... 159s Unpacking cloudkitty-processor (21.0.0-0ubuntu1) ... 159s Selecting previously unselected package libdebhelper-perl. 159s Preparing to unpack .../187-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 159s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 159s Selecting previously unselected package libtool. 159s Preparing to unpack .../188-libtool_2.5.4-3build1_all.deb ... 159s Unpacking libtool (2.5.4-3build1) ... 159s Selecting previously unselected package dh-autoreconf. 159s Preparing to unpack .../189-dh-autoreconf_20_all.deb ... 159s Unpacking dh-autoreconf (20) ... 159s Selecting previously unselected package libarchive-zip-perl. 159s Preparing to unpack .../190-libarchive-zip-perl_1.68-1_all.deb ... 159s Unpacking libarchive-zip-perl (1.68-1) ... 159s Selecting previously unselected package libfile-stripnondeterminism-perl. 159s Preparing to unpack .../191-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 159s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 159s Selecting previously unselected package dh-strip-nondeterminism. 159s Preparing to unpack .../192-dh-strip-nondeterminism_1.14.1-2_all.deb ... 159s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 159s Selecting previously unselected package debugedit. 159s Preparing to unpack .../193-debugedit_1%3a5.1-2_s390x.deb ... 159s Unpacking debugedit (1:5.1-2) ... 159s Selecting previously unselected package dwz. 159s Preparing to unpack .../194-dwz_0.15-1build6_s390x.deb ... 159s Unpacking dwz (0.15-1build6) ... 159s Selecting previously unselected package gettext. 159s Preparing to unpack .../195-gettext_0.23.1-1_s390x.deb ... 159s Unpacking gettext (0.23.1-1) ... 159s Selecting previously unselected package intltool-debian. 159s Preparing to unpack .../196-intltool-debian_0.35.0+20060710.6_all.deb ... 159s Unpacking intltool-debian (0.35.0+20060710.6) ... 159s Selecting previously unselected package po-debconf. 159s Preparing to unpack .../197-po-debconf_1.0.21+nmu1_all.deb ... 159s Unpacking po-debconf (1.0.21+nmu1) ... 159s Selecting previously unselected package debhelper. 159s Preparing to unpack .../198-debhelper_13.24.1ubuntu2_all.deb ... 159s Unpacking debhelper (13.24.1ubuntu2) ... 159s Selecting previously unselected package dh-python. 159s Preparing to unpack .../199-dh-python_6.20250108_all.deb ... 159s Unpacking dh-python (6.20250108) ... 159s Selecting previously unselected package python3-mccabe. 159s Preparing to unpack .../200-python3-mccabe_0.7.0-1_all.deb ... 159s Unpacking python3-mccabe (0.7.0-1) ... 159s Selecting previously unselected package python3-pycodestyle. 159s Preparing to unpack .../201-python3-pycodestyle_2.12.1-2_all.deb ... 159s Unpacking python3-pycodestyle (2.12.1-2) ... 159s Selecting previously unselected package python3-pyflakes. 159s Preparing to unpack .../202-python3-pyflakes_3.2.0-3_all.deb ... 159s Unpacking python3-pyflakes (3.2.0-3) ... 159s Selecting previously unselected package python3-flake8. 159s Preparing to unpack .../203-python3-flake8_7.1.1-3_all.deb ... 159s Unpacking python3-flake8 (7.1.1-3) ... 159s Selecting previously unselected package flake8. 159s Preparing to unpack .../204-flake8_7.1.1-3_all.deb ... 159s Unpacking flake8 (7.1.1-3) ... 159s Selecting previously unselected package liberror-perl. 159s Preparing to unpack .../205-liberror-perl_0.17029-2_all.deb ... 159s Unpacking liberror-perl (0.17029-2) ... 159s Selecting previously unselected package git-man. 159s Preparing to unpack .../206-git-man_1%3a2.47.1-1ubuntu1_all.deb ... 159s Unpacking git-man (1:2.47.1-1ubuntu1) ... 160s Selecting previously unselected package git. 160s Preparing to unpack .../207-git_1%3a2.47.1-1ubuntu1_s390x.deb ... 160s Unpacking git (1:2.47.1-1ubuntu1) ... 160s Selecting previously unselected package libsubunit-perl. 160s Preparing to unpack .../208-libsubunit-perl_1.4.2-3build1_all.deb ... 160s Unpacking libsubunit-perl (1.4.2-3build1) ... 160s Selecting previously unselected package pyflakes3. 160s Preparing to unpack .../209-pyflakes3_3.2.0-3_all.deb ... 160s Unpacking pyflakes3 (3.2.0-3) ... 160s Selecting previously unselected package python3-all. 160s Preparing to unpack .../210-python3-all_3.13.1-1~exp2_s390x.deb ... 160s Unpacking python3-all (3.13.1-1~exp2) ... 160s Selecting previously unselected package python3-colorama. 160s Preparing to unpack .../211-python3-colorama_0.4.6-4_all.deb ... 160s Unpacking python3-colorama (0.4.6-4) ... 160s Selecting previously unselected package python3-coverage. 160s Preparing to unpack .../212-python3-coverage_7.4.4+dfsg1-0ubuntu3_s390x.deb ... 160s Unpacking python3-coverage (7.4.4+dfsg1-0ubuntu3) ... 160s Selecting previously unselected package python3-ddt. 160s Preparing to unpack .../213-python3-ddt_1.7.2-4_all.deb ... 160s Unpacking python3-ddt (1.7.2-4) ... 160s Selecting previously unselected package python3-restructuredtext-lint. 160s Preparing to unpack .../214-python3-restructuredtext-lint_1.3.2-3_all.deb ... 160s Unpacking python3-restructuredtext-lint (1.3.2-3) ... 160s Selecting previously unselected package python3-doc8. 160s Preparing to unpack .../215-python3-doc8_0.10.1-5_all.deb ... 160s Unpacking python3-doc8 (0.10.1-5) ... 160s Selecting previously unselected package python3-extras. 160s Preparing to unpack .../216-python3-extras_1.0.0-6_all.deb ... 160s Unpacking python3-extras (1.0.0-6) ... 160s Selecting previously unselected package python3-ply. 160s Preparing to unpack .../217-python3-ply_3.11-7_all.deb ... 160s Unpacking python3-ply (3.11-7) ... 160s Selecting previously unselected package python3-jsonpath-rw. 160s Preparing to unpack .../218-python3-jsonpath-rw_1.4.0-7_all.deb ... 160s Unpacking python3-jsonpath-rw (1.4.0-7) ... 160s Selecting previously unselected package python3-wsgi-intercept. 160s Preparing to unpack .../219-python3-wsgi-intercept_1.9.3-2ubuntu1_all.deb ... 160s Unpacking python3-wsgi-intercept (1.9.3-2ubuntu1) ... 160s Selecting previously unselected package python3-jsonpath-rw-ext. 160s Preparing to unpack .../220-python3-jsonpath-rw-ext_1.2.2-4_all.deb ... 160s Unpacking python3-jsonpath-rw-ext (1.2.2-4) ... 160s Selecting previously unselected package python3-iniconfig. 160s Preparing to unpack .../221-python3-iniconfig_1.1.1-2_all.deb ... 160s Unpacking python3-iniconfig (1.1.1-2) ... 160s Selecting previously unselected package python3-pluggy. 160s Preparing to unpack .../222-python3-pluggy_1.5.0-1_all.deb ... 160s Unpacking python3-pluggy (1.5.0-1) ... 160s Selecting previously unselected package python3-pytest. 160s Preparing to unpack .../223-python3-pytest_8.3.4-1_all.deb ... 160s Unpacking python3-pytest (8.3.4-1) ... 160s Selecting previously unselected package python3-gabbi. 160s Preparing to unpack .../224-python3-gabbi_2.4.0-3_all.deb ... 160s Unpacking python3-gabbi (2.4.0-3) ... 160s Selecting previously unselected package python3-hacking. 160s Preparing to unpack .../225-python3-hacking_4.1.0-4_all.deb ... 160s Unpacking python3-hacking (4.1.0-4) ... 160s Selecting previously unselected package python3-tomlkit. 160s Preparing to unpack .../226-python3-tomlkit_0.13.2-1_all.deb ... 160s Unpacking python3-tomlkit (0.13.2-1) ... 160s Selecting previously unselected package python3-subunit. 160s Preparing to unpack .../227-python3-subunit_1.4.2-3build1_all.deb ... 160s Unpacking python3-subunit (1.4.2-3build1) ... 160s Selecting previously unselected package subunit. 160s Preparing to unpack .../228-subunit_1.4.2-3build1_all.deb ... 160s Unpacking subunit (1.4.2-3build1) ... 160s Selecting previously unselected package python3-stestr. 160s Preparing to unpack .../229-python3-stestr_4.1.0-3_all.deb ... 160s Unpacking python3-stestr (4.1.0-3) ... 160s Selecting previously unselected package python3-oslotest. 160s Preparing to unpack .../230-python3-oslotest_1%3a5.0.0-4_all.deb ... 160s Unpacking python3-oslotest (1:5.0.0-4) ... 160s Selecting previously unselected package python3-pep8. 160s Preparing to unpack .../231-python3-pep8_1.7.1-11ubuntu1_all.deb ... 160s Unpacking python3-pep8 (1.7.1-11ubuntu1) ... 160s Selecting previously unselected package python3-wheel. 160s Preparing to unpack .../232-python3-wheel_0.45.1-1_all.deb ... 160s Unpacking python3-wheel (0.45.1-1) ... 160s Selecting previously unselected package python3-pip. 160s Preparing to unpack .../233-python3-pip_25.0+dfsg-1_all.deb ... 160s Unpacking python3-pip (25.0+dfsg-1) ... 160s Selecting previously unselected package python3-reno. 160s Preparing to unpack .../234-python3-reno_4.1.0-2_all.deb ... 160s Unpacking python3-reno (4.1.0-2) ... 160s Selecting previously unselected package python3-sphinxcontrib.httpdomain. 160s Preparing to unpack .../235-python3-sphinxcontrib.httpdomain_1.8.1-2_all.deb ... 160s Unpacking python3-sphinxcontrib.httpdomain (1.8.1-2) ... 160s Selecting previously unselected package python3-sphinxcontrib-pecanwsme. 160s Preparing to unpack .../236-python3-sphinxcontrib-pecanwsme_0.11.0-1_all.deb ... 160s Unpacking python3-sphinxcontrib-pecanwsme (0.11.0-1) ... 160s Selecting previously unselected package openstack-pkg-tools. 160s Preparing to unpack .../237-openstack-pkg-tools_123ubuntu2_all.deb ... 160s Unpacking openstack-pkg-tools (123ubuntu2) ... 160s Setting up dh-python (6.20250108) ... 160s Setting up python3-iniconfig (1.1.1-2) ... 160s Setting up libnorm1t64:s390x (1.5.9+dfsg-3.1build1) ... 160s Setting up python3-pymemcache (4.0.0-8) ... 161s Setting up libsubunit-perl (1.4.2-3build1) ... 161s Setting up libsodium23:s390x (1.0.18-1build3) ... 161s Setting up python3-ddt (1.7.2-4) ... 161s Setting up python3-importlib-metadata (8.6.1-1) ... 161s Setting up python3-repoze.lru (0.7-3) ... 161s Setting up python3-cachetools (5.3.3-1) ... 161s Setting up python3-colorama (0.4.6-4) ... 161s Setting up python3-defusedxml (0.7.1-3) ... 162s Setting up python3-pbr (6.1.1-0ubuntu1) ... 162s Setting up libarchive-zip-perl (1.68-1) ... 162s Setting up python3-statsd (4.0.1-2) ... 162s Setting up fonts-glyphicons-halflings (1.009~3.4.1+dfsg-3) ... 162s Setting up python3-alabaster (0.7.16-0.1) ... 162s Setting up python3-tenacity (9.0.0-0ubuntu1) ... 162s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 162s Setting up python3-ply (3.11-7) ... 162s Setting up python3-autopage (0.4.0-4) ... 163s Setting up python3-pyflakes (3.2.0-3) ... 163s Setting up python3-extras (1.0.0-6) ... 163s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 163s Setting up libyajl2:s390x (2.1.0-5build1) ... 163s Setting up python3-memcache (1.62-3) ... 163s Setting up m4 (1.4.19-5) ... 163s Setting up python3-itsdangerous (2.2.0-2) ... 163s Setting up python3-requestsexceptions (1.4.0-5) ... 163s Setting up python3-pyperclip (1.8.2-2) ... 163s Setting up python3-pytz (2025.1-3) ... 164s Setting up dbconfig-common (2.0.24) ... 164s Creating config file /etc/dbconfig-common/config with new version 164s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 164s Setting up python3-click (8.1.8-1) ... 164s Setting up python3-wheel (0.45.1-1) ... 164s Setting up python3-platformdirs (4.3.6-1) ... 164s Setting up python3-munch (4.0.0-2) ... 164s Setting up python3-psutil (5.9.8-2build3) ... 165s Setting up tzdata-legacy (2025a-2ubuntu1) ... 165s Setting up python3-tz (2025.1-3) ... 165s Setting up python3-vine (5.1.0+dfsg-1) ... 165s Setting up python3-monotonic (1.6-3) ... 165s Setting up liberror-perl (0.17029-2) ... 165s Setting up python3-six (1.17.0-1) ... 165s Setting up python3-roman (5.0-1) ... 165s Setting up libpgm-5.3-0t64:s390x (5.3.128~dfsg-2.1build1) ... 165s Setting up python3-decorator (5.1.1-5) ... 166s Setting up python3-pycodestyle (2.12.1-2) ... 166s Setting up autotools-dev (20220109.1) ... 166s Setting up python3-tempita (0.6.0-1) ... 166s Setting up libblas3:s390x (3.12.1-2) ... 166s update-alternatives: using /usr/lib/s390x-linux-gnu/blas/libblas.so.3 to provide /usr/lib/s390x-linux-gnu/libblas.so.3 (libblas.so.3-s390x-linux-gnu) in auto mode 166s Setting up python3-packaging (24.2-1) ... 166s Setting up python3-iso8601 (2.1.0-2) ... 166s Setting up python3-wcwidth (0.2.13+dfsg1-1) ... 166s Setting up python3-aniso8601 (10.0.0-2) ... 167s Setting up python3-rfc3986 (2.0.0-3) ... 167s Setting up python3-paste (3.10.1-1) ... 167s Setting up python3-cmd2 (2.5.7+ds-1) ... 167s Setting up python3-snowballstemmer (2.2.0-4build1) ... 168s Setting up python3-werkzeug (3.1.3-2) ... 168s Setting up python3-jmespath (1.0.1-1) ... 168s Setting up python3-greenlet (3.1.0-1) ... 169s Setting up python3-pastedeploy-tpl (3.1-1) ... 169s Setting up libmpc3:s390x (1.3.1-1build2) ... 169s Setting up python3-setproctitle:s390x (1.3.4-1) ... 169s Setting up python3-wrapt (1.15.0-4) ... 169s Setting up autopoint (0.23.1-1) ... 169s Setting up python3-deprecation (2.1.0-3) ... 169s Setting up python3-pymysql (1.1.1-2ubuntu1) ... 169s Setting up python3-fasteners (0.18-2) ... 169s Setting up python3-pip (25.0+dfsg-1) ... 171s Setting up libgfortran5:s390x (15-20250213-1ubuntu1) ... 171s Setting up autoconf (2.72-3) ... 171s Setting up python3-pluggy (1.5.0-1) ... 171s Setting up pycadf-common (3.1.1-5) ... 171s Setting up libubsan1:s390x (15-20250213-1ubuntu1) ... 171s Setting up python3-legacy-cgi (2.6.1-2) ... 171s Setting up dwz (0.15-1build6) ... 171s Setting up python3-dnspython (2.7.0-1ubuntu1) ... 172s Setting up python3-dulwich (0.22.7-1) ... 172s Setting up libasan8:s390x (15-20250213-1ubuntu1) ... 172s Setting up libjson-perl (4.10000-1) ... 172s Setting up libnsl2:s390x (1.3.0-3build3) ... 172s Setting up python3-amqp (5.3.1-2) ... 172s Setting up libxslt1.1:s390x (1.1.39-0exp1ubuntu2) ... 172s Setting up debugedit (1:5.1-2) ... 172s Setting up python3-os-service-types (1.7.0-5) ... 173s Setting up python3-stevedore (1:5.4.0-0ubuntu1) ... 173s Setting up git-man (1:2.47.1-1ubuntu1) ... 173s Setting up python3-dateutil (2.9.0-3) ... 173s Setting up python3-mccabe (0.7.0-1) ... 173s Setting up sgml-base (1.31) ... 173s Setting up python3-msgpack (1.0.3-3build3) ... 173s Setting up python3-voluptuous (0.14.2-1) ... 173s Setting up python3-logutils (0.3.5-5) ... 174s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 174s Setting up libisl23:s390x (0.27-1) ... 174s Setting up python3-simplegeneric (0.8.1-5) ... 174s Setting up python3-mbstrdecoder (1.1.0-4) ... 174s Setting up python3-prettytable (3.12.0-1) ... 174s Setting up python3-tomlkit (0.13.2-1) ... 174s Setting up fonts-font-awesome (5.0.10+really4.7.0~dfsg-4.1) ... 174s Setting up libcc1-0:s390x (15-20250213-1ubuntu1) ... 174s Setting up sqlite3 (3.46.1-1) ... 174s Setting up libjs-bootstrap (3.4.1+dfsg-3) ... 174s Setting up libitm1:s390x (15-20250213-1ubuntu1) ... 174s Setting up python3-oslo.i18n (6.5.0-0ubuntu1) ... 174s Setting up python3-mako (1.3.8-2) ... 175s Setting up python3-pep8 (1.7.1-11ubuntu1) ... 175s Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 175s Setting up python3-webob (1:1.8.9-1) ... 175s Setting up python3-imagesize (1.4.1-1) ... 175s Setting up python3-rx (4.0.4-3) ... 175s Setting up automake (1:1.17-3) ... 175s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 175s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 175s Setting up python3.12-minimal (3.12.9-1) ... 176s Setting up python3-pecan (1.5.1-6) ... 177s Setting up pyflakes3 (3.2.0-3) ... 177s Setting up liblapack3:s390x (3.12.1-2) ... 177s update-alternatives: using /usr/lib/s390x-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/s390x-linux-gnu/liblapack.so.3 (liblapack.so.3-s390x-linux-gnu) in auto mode 177s Setting up python3-testresources (2.0.1-5) ... 177s Setting up gettext (0.23.1-1) ... 177s Setting up python3-q-text-as-data (3.1.6-4) ... 177s Setting up libzmq5:s390x (4.3.5-1build2) ... 177s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 177s Setting up python3-wsme (0.12.1-5ubuntu1) ... 177s Setting up python3-influxdb (5.3.2-5) ... 177s Setting up python3-pytest (8.3.4-1) ... 178s Setting up python3-flask (3.1.0-2ubuntu1) ... 178s Setting up python3-pastedeploy (3.1-1) ... 178s Setting up python3.12 (3.12.9-1) ... 179s Setting up python3-wsgi-intercept (1.9.3-2ubuntu1) ... 179s Setting up python3-jsonpath-rw (1.4.0-7) ... 179s Setting up python3-all (3.13.1-1~exp2) ... 179s Setting up python3-coverage (7.4.4+dfsg1-0ubuntu3) ... 180s Setting up python3-futurist (3.0.0-3) ... 180s Setting up python3-debtcollector (3.0.0-3) ... 180s Setting up python3-typepy (1.3.2-1) ... 180s Setting up uwsgi-core (2.0.28-8) ... 180s Setting up python3-kombu (5.4.2-3) ... 181s Setting up python3-sqlalchemy (2.0.38+ds1-0ubuntu1) ... 183s Setting up python3-cotyledon (1.7.3-3) ... 183s Setting up intltool-debian (0.35.0+20060710.6) ... 183s Setting up python3-flake8 (7.1.1-3) ... 183s Setting up python3-dogpile.cache (1.3.3-1) ... 183s Setting up libpython3.12t64:s390x (3.12.9-1) ... 183s Setting up python3-prometheus-client (0.21.1+ds1-1) ... 184s Setting up python3-eventlet (0.39.0-0ubuntu1) ... 184s Setting up python3-flask-restful (0.3.10-5) ... 184s Setting up python-os-api-ref-common (2.3.0-0ubuntu1) ... 184s Setting up python3-jsonpath-rw-ext (1.2.2-4) ... 184s Setting up python3-oslo.context (1:5.7.0-0ubuntu1) ... 184s Setting up git (1:2.47.1-1ubuntu1) ... 184s Setting up python3-numpy (1:1.26.4+ds-13) ... 188s Setting up libjs-sphinxdoc (8.1.3-5) ... 188s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 188s Setting up cpp-14 (14.2.0-17ubuntu1) ... 188s Setting up dh-strip-nondeterminism (1.14.1-2) ... 188s Setting up python3-lxml:s390x (5.3.1-1) ... 188s Setting up python3-alembic (1.13.2-4) ... 189s Setting up python3-reno (4.1.0-2) ... 189s Setting up xml-core (0.19) ... 189s Setting up python3-openstackdocstheme (3.2.0-0ubuntu2) ... 189s Setting up uwsgi-plugin-python3 (2.0.28+1ubuntu1+0.0.2) ... 189s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 189s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 189s Setting up python3-datetimerange (2.3.0-1) ... 189s Setting up python3-keystoneauth1 (5.9.1-0ubuntu1) ... 190s Setting up alembic (1.13.2-4) ... 190s Setting up python3-pastescript (3.7.0-1) ... 190s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 190s Setting up po-debconf (1.0.21+nmu1) ... 190s Setting up python3-pandas-lib:s390x (2.2.3+dfsg-8) ... 190s Setting up python3-oslo.utils (8.1.0-0ubuntu1) ... 190s Setting up flake8 (7.1.1-3) ... 190s Setting up openstack-pkg-tools (123ubuntu2) ... 190s Setting up python3-routes (2.5.1-7) ... 191s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 191s Setting up python3-pandas (2.2.3+dfsg-8) ... 201s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 201s Setting up python3-influxdb-client (1.40.0-3) ... 202s Setting up sphinx-common (8.1.3-5) ... 202s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 202s Setting up python3-openstacksdk (4.3.0-0ubuntu1) ... 204s Setting up cpp (4:14.2.0-1ubuntu1) ... 204s Setting up python3-cinderclient (1:9.6.0-0ubuntu1) ... 205s Setting up python3-os-client-config (2.1.0-0ubuntu5) ... 205s Setting up python3-hacking (4.1.0-4) ... 205s Setting up python3-oslo.serialization (5.6.0-0ubuntu1) ... 205s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 205s Setting up gcc-14 (14.2.0-17ubuntu1) ... 205s Setting up g++-14 (14.2.0-17ubuntu1) ... 205s Setting up python3-tooz (6.3.0-0ubuntu1) ... 206s Setting up libtool (2.5.4-3build1) ... 206s Setting up gcc (4:14.2.0-1ubuntu1) ... 206s Setting up dh-autoreconf (20) ... 206s Setting up g++ (4:14.2.0-1ubuntu1) ... 206s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 206s Setting up build-essential (12.10ubuntu1) ... 206s Setting up debhelper (13.24.1ubuntu2) ... 206s Setting up python3-fixtures (4.1.0-3) ... 206s Setting up python3-testtools (2.7.2-4) ... 206s Setting up python3-subunit (1.4.2-3build1) ... 206s Setting up python3-testscenarios (0.5.0-4) ... 207s Setting up python3-gabbi (2.4.0-3) ... 207s Setting up subunit (1.4.2-3build1) ... 207s Processing triggers for libc-bin (2.40-4ubuntu1) ... 207s Processing triggers for systemd (257.2-3ubuntu1) ... 207s Processing triggers for man-db (2.13.0-1) ... 208s Processing triggers for install-info (7.1.1-1) ... 208s Processing triggers for sgml-base (1.31) ... 208s Setting up docutils-common (0.21.2+dfsg-2) ... 209s Processing triggers for sgml-base (1.31) ... 209s Setting up python3-docutils (0.21.2+dfsg-2) ... 209s Setting up python3-restructuredtext-lint (1.3.2-3) ... 209s Setting up python3-doc8 (0.10.1-5) ... 209s Setting up python3-cliff (4.8.0-0ubuntu1) ... 210s Setting up python3-oslo.config (1:9.7.0-0ubuntu1) ... 210s Setting up python3-oslo.middleware (6.3.0-0ubuntu1) ... 210s Setting up python3-keystoneclient (1:5.5.0-0ubuntu1) ... 211s Setting up python3-oslo.db (17.1.0-0ubuntu2) ... 211s Setting up python3-osc-lib (3.2.0-0ubuntu1) ... 211s Setting up python3-oslo.concurrency (6.2.0-0ubuntu1) ... 212s Setting up python3-sphinx (8.1.3-5) ... 213s Setting up python3-oslo.log (7.0.0-0ubuntu1) ... 213s Setting up python3-pycadf (3.1.1-5) ... 213s Setting up python3-gnocchiclient (7.0.8-0ubuntu1) ... 214s Setting up python3-oslo.metrics (0.10.1-0ubuntu1) ... 214s Setting up python3-oslo.policy (4.5.0-0ubuntu1) ... 214s Setting up python3-stestr (4.1.0-3) ... 214s Setting up python3-sphinxcontrib.httpdomain (1.8.1-2) ... 214s Setting up python3-sphinxcontrib-pecanwsme (0.11.0-1) ... 215s Setting up python3-osc-placement (4.5.0-0ubuntu1) ... 215s Setting up python3-oslo.service (4.0.0-0ubuntu1) ... 215s Setting up python3-oslo.upgradecheck (2.4.0-0ubuntu1) ... 215s Setting up python3-oslotest (1:5.0.0-4) ... 215s Setting up python3-openstackclient (7.2.1-0ubuntu1) ... 217s Setting up python3-oslo.messaging (16.0.0-0ubuntu1) ... 218s Setting up python3-os-api-ref (2.3.0-0ubuntu1) ... 218s Setting up python3-oslo.cache (3.10.0-0ubuntu1) ... 218s Setting up cloudkitty-doc (21.0.0-0ubuntu1) ... 218s Setting up python3-keystonemiddleware (10.8.0-0ubuntu1) ... 218s Setting up python3-cloudkitty (21.0.0-0ubuntu1) ... 219s Setting up cloudkitty-common (21.0.0-0ubuntu1) ... 219s Setting up cloudkitty-processor (21.0.0-0ubuntu1) ... 220s Created symlink '/etc/systemd/system/multi-user.target.wants/cloudkitty-processor.service' → '/usr/lib/systemd/system/cloudkitty-processor.service'. 220s Setting up cloudkitty-api (21.0.0-0ubuntu1) ... 220s Will not register cloudkitty endpoint this time (no user request for it). 220s Created symlink '/etc/systemd/system/multi-user.target.wants/cloudkitty-api.service' → '/usr/lib/systemd/system/cloudkitty-api.service'. 220s autopkgtest: DBG: testbed command exited with code 0 220s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'cloudkitty-api'], kind short, sout pipe, serr pipe, env [] 220s autopkgtest: DBG: testbed command exited with code 0 220s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'cloudkitty-common'], kind short, sout pipe, serr pipe, env [] 221s autopkgtest: DBG: testbed command exited with code 0 221s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'cloudkitty-doc'], kind short, sout pipe, serr pipe, env [] 221s autopkgtest: DBG: testbed command exited with code 0 221s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'cloudkitty-processor'], kind short, sout pipe, serr pipe, env [] 221s autopkgtest: DBG: testbed command exited with code 0 221s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-cloudkitty'], kind short, sout pipe, serr pipe, env [] 221s autopkgtest: DBG: testbed command exited with code 0 221s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.s4Obx1/unittests-packages.all"], kind short, sout raw, serr pipe, env [] 221s autopkgtest: DBG: testbed command exited with code 0 221s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.s4Obx1/unittests-packages.all /tmp/autopkgtest-work.nwu61632/out/unittests-packages.all 222s autopkgtest: DBG: got reply from testbed: ok 222s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.s4Obx1/build.PjK/src'], kind short, sout raw, serr raw, env [] 222s autopkgtest: DBG: testbed command exited with code 0 222s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.s4Obx1/build.PjK/src already exists 222s autopkgtest [11:41:02]: test unittests: [----------------------- 222s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'root', '-c', 'set -e; exec /tmp/autopkgtest.s4Obx1/wrapper.sh --debug --artifacts=/tmp/autopkgtest.s4Obx1/unittests-artifacts --chdir=/tmp/autopkgtest.s4Obx1/build.PjK/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.s4Obx1/unittests-stderr --stdout=/tmp/autopkgtest.s4Obx1/unittests-stdout --tmp=/tmp/autopkgtest.s4Obx1/autopkgtest_tmp --env=AUTOPKGTEST_NORMAL_USER=ubuntu --env=ADT_NORMAL_USER=ubuntu --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 --make-executable=/tmp/autopkgtest.s4Obx1/build.PjK/src/debian/tests/unittests -- /tmp/autopkgtest.s4Obx1/build.PjK/src/debian/tests/unittests'], kind test, sout raw, serr raw, env [] 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.s4Obx1/unittests-artifacts 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: changing to directory: /tmp/autopkgtest.s4Obx1/build.PjK/src 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: setting environment: LANG=C.UTF-8 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: unsetting environment: LANGUAGE 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: unsetting environment: LC_ADDRESS 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: unsetting environment: LC_ALL 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: unsetting environment: LC_COLLATE 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: unsetting environment: LC_CTYPE 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: unsetting environment: LC_IDENTIFICATION 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: unsetting environment: LC_MEASUREMENT 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: unsetting environment: LC_MESSAGES 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: unsetting environment: LC_MONETARY 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: unsetting environment: LC_NAME 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: unsetting environment: LC_NUMERIC 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: unsetting environment: LC_PAPER 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: unsetting environment: LC_TELEPHONE 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: unsetting environment: LC_TIME 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: pretending to be a login shell 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: will write standard error to /tmp/autopkgtest.s4Obx1/unittests-stderr 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: will write stdout to /tmp/autopkgtest.s4Obx1/unittests-stdout 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.s4Obx1/autopkgtest_tmp 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: setting environment: AUTOPKGTEST_NORMAL_USER=ubuntu 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: setting environment: ADT_NORMAL_USER=ubuntu 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: marking as executable: /tmp/autopkgtest.s4Obx1/build.PjK/src/debian/tests/unittests 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: command to run: /tmp/autopkgtest.s4Obx1/build.PjK/src/debian/tests/unittests 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: copying /tmp/tmp.I5saOdUlPw/out to stdout and file: /tmp/autopkgtest.s4Obx1/unittests-stdout 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: copying /tmp/tmp.I5saOdUlPw/err to standard error and file: /tmp/autopkgtest.s4Obx1/unittests-stdout 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: writing script pid 5480 to /tmp/autopkgtest_script_pid 222s Skipping tests due to https://bugs.launchpad.net/bugs/2060760 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: checking for leaked background processes... 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: waiting for tee/cat subprocesses... 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: cleaning up... 222s /tmp/autopkgtest.s4Obx1/wrapper.sh: Exit status: 0 222s autopkgtest: DBG: testbed command exited with code 0 222s autopkgtest [11:41:02]: test unittests: -----------------------] 222s autopkgtest: DBG: testbed executing test finished with exit status 0 222s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.s4Obx1/unittests-stdout /tmp/autopkgtest-work.nwu61632/out/unittests-stdout 223s autopkgtest: DBG: got reply from testbed: ok 223s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.s4Obx1/unittests-stderr /tmp/autopkgtest-work.nwu61632/out/unittests-stderr 223s autopkgtest: DBG: got reply from testbed: ok 223s autopkgtest [11:41:03]: test unittests: - - - - - - - - - - results - - - - - - - - - - 223s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.s4Obx1/unittests-artifacts/ /tmp/autopkgtest-work.nwu61632/out/artifacts/ 223s unittests PASS 223s autopkgtest: DBG: got reply from testbed: ok 223s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.s4Obx1/unittests-artifacts', '/tmp/autopkgtest.s4Obx1/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 223s autopkgtest: DBG: testbed command exited with code 0 223s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 223s autopkgtest [11:41:03]: @@@@@@@@@@@@@@@@@@@@ summary 223s unittests PASS 223s autopkgtest: DBG: testbed stop 223s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.s4Obx1 223s autopkgtest: DBG: sending command to testbed: close 240s autopkgtest: DBG: got reply from testbed: ok 240s autopkgtest: DBG: sending command to testbed: quit 240s nova [W] Using flock in prodstack6-s390x 240s Creating nova instance adt-plucky-s390x-cloudkitty-20250219-113719-juju-7f2275-prod-proposed-migration-environment-15-92206bbb-5dab-4427-b322-dee2c17bbdaf from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 240s nova [W] Timed out waiting for 623381eb-c4ba-4923-a0ac-ce1d88070063 to get deleted.