0s autopkgtest: DBG: testbed init 0s autopkgtest [01:14:27]: starting date and time: 2025-02-16 01:14:27+0000 0s autopkgtest [01:14:27]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [01:14:27]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.zgy9ft2y/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:glibc,src:iproute2,src:php-twig,src:postgresql-17,src:postgresql-common,src:roundcube --apt-upgrade ocaml-cairo2 --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-24.secgroup --name adt-plucky-s390x-ocaml-cairo2-20250216-011426-juju-7f2275-prod-proposed-migration-environment-15-2b124444-88a8-4375-ac7c-5537b79b2e75 --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 106s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.oJkuFg 106s autopkgtest: DBG: sending command to testbed: print-execute-command 106s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.bexg8yzm/runcmd 106s autopkgtest: DBG: sending command to testbed: capabilities 106s autopkgtest: DBG: got reply from testbed: ok revert reboot revert-full-system isolation-machine suggested-normal-user=ubuntu root-on-testbed 106s autopkgtest: DBG: testbed capabilities: ['revert', 'reboot', 'revert-full-system', 'isolation-machine', 'suggested-normal-user=ubuntu', 'root-on-testbed', 'has_internet'] 106s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.oJkuFg'], kind short, sout raw, serr pipe, env [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.oJkuFg/wrapper.sh 107s autopkgtest: DBG: got reply from testbed: ok 107s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.oJkuFg/wrapper.sh'], kind short, sout raw, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest [01:16:14]: testbed dpkg architecture: s390x 107s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest [01:16:14]: testbed apt version: 2.9.28 107s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: testbed has eatmydata 107s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest [01:16:14]: @@@@@@@@@@@@@@@@@@@@ test bed setup 107s 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 [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest [01:16:15]: testbed release detected to be: None 108s 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 [] 108s autopkgtest: DBG: testbed command exited with code 0 108s 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 [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest: DBG: adding APT source: Types: deb deb-src 108s URIs: http://ftpmaster.internal/ubuntu/ 108s Suites: plucky-proposed 108s Components: main restricted universe multiverse 108s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 108s 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 [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 108s Package: * 108s Pin: release plucky-proposed 108s Pin-Priority: 500 108s 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 [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest [01:16:15]: updating testbed package index (apt update) 108s 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'] 109s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 109s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 109s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 109s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 109s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.1 kB] 109s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 109s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [823 kB] 109s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 109s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [164 kB] 109s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 109s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 109s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 110s Fetched 2062 kB in 1s (2040 kB/s) 110s Reading package lists... 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 110s Package: * 110s Pin: release plucky-proposed 110s Pin-Priority: 100 110s 110s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 110s Pin: release plucky-proposed 110s Pin-Priority: 995 110s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 110s autopkgtest: DBG: testbed command exited with code 0 110s 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.oJkuFg/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s 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'] 111s + lsb_release --codename --short 111s + RELEASE=plucky 111s + cat 111s + [ plucky != trusty ] 111s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 111s Reading package lists... 111s Building dependency tree... 111s Reading state information... 111s Calculating upgrade... 111s The following packages were automatically installed and are no longer required: 111s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 111s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 111s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 111s linux-tools-6.11.0-8-generic 111s Use 'sudo apt autoremove' to remove them. 111s The following packages will be upgraded: 111s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 111s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 111s Need to get 1155 kB of archives. 111s After this operation, 16.4 kB of additional disk space will be used. 111s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 111s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 111s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 111s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 112s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 112s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 112s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 112s Preconfiguring packages ... 112s Fetched 1155 kB in 1s (1893 kB/s) 112s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 112s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 112s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 112s Setting up dash (0.5.12-12ubuntu1) ... 112s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 112s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 112s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 112s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 112s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 112s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 112s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 112s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 112s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 112s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 112s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 112s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 112s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 112s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 112s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 112s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 112s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 112s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 112s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 112s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 112s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 112s Setting up libtasn1-6:s390x (4.20.0-2) ... 112s Processing triggers for libc-bin (2.40-4ubuntu1) ... 112s Processing triggers for man-db (2.13.0-1) ... 113s Processing triggers for debianutils (5.21) ... 113s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 113s + /usr/lib/apt/apt-helper analyze-pattern ?true 113s + uname -r 113s + sed s/\./\\./g 113s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 113s + apt list ?obsolete 113s + tail -n+2 113s + cut -d/ -f1 113s + grep -v ^linux-.*6\.12\.0-15-generic.* 113s + true 113s + obsolete_pkgs= 113s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 113s Reading package lists... 113s Building dependency tree... 113s Reading state information... 114s The following packages will be REMOVED: 114s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 114s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 114s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 114s linux-tools-6.11.0-8-generic* 114s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 114s After this operation, 167 MB disk space will be freed. 114s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 114s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 114s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 114s Removing libpython3.12t64:s390x (3.12.9-1) ... 114s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 114s Removing libnsl2:s390x (1.3.0-3build3) ... 114s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 114s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 114s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 115s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 115s Processing triggers for libc-bin (2.40-4ubuntu1) ... 115s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 115s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 115s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 115s + grep -q trusty /etc/lsb-release 115s + [ ! -d /usr/share/doc/unattended-upgrades ] 115s + [ ! -d /usr/share/doc/lxd ] 115s + [ ! -d /usr/share/doc/lxd-client ] 115s + [ ! -d /usr/share/doc/snapd ] 115s + type iptables 115s + cat 115s + chmod 755 /etc/rc.local 115s + . /etc/rc.local 115s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 115s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 115s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 115s + uname -m 115s + [ s390x = ppc64le ] 115s + [ -d /run/systemd/system ] 115s + systemd-detect-virt --quiet --vm 115s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 115s + cat 115s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 115s + echo COMPRESS=lz4 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest [01:16:22]: upgrading testbed (apt dist-upgrade and autopurge) 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', 'dist-upgrade'], 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... 116s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 116s Starting 2 pkgProblemResolver with broken count: 0 116s Done 116s Entering ResolveByKeep 116s 116s The following packages will be upgraded: 116s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 116s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 116s Need to get 10.7 MB of archives. 116s After this operation, 305 kB of additional disk space will be used. 116s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 116s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 117s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 117s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 117s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 117s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 117s Preconfiguring packages ... 117s Fetched 10.7 MB in 1s (11.4 MB/s) 117s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55867 files and directories currently installed.) 117s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 117s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 117s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 117s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 117s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 117s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 118s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 118s Checking for services that may need to be restarted... 118s Checking init scripts... 118s Checking for services that may need to be restarted... 118s Checking init scripts... 118s Stopping some services possibly affected by the upgrade (will be restarted later): 118s cron: stopping...done. 118s 118s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 118s Setting up libc6:s390x (2.41-1ubuntu1) ... 118s Checking for services that may need to be restarted... 118s Checking init scripts... 118s Restarting services possibly affected by the upgrade: 118s cron: restarting...done. 118s 118s Services restarted successfully. 118s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 118s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 118s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 118s Setting up libc-bin (2.41-1ubuntu1) ... 118s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 118s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 118s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 118s Setting up iproute2 (6.13.0-1ubuntu1) ... 118s Setting up locales (2.41-1ubuntu1) ... 118s Installing new version of config file /etc/locale.alias ... 119s Generating locales (this might take a while)... 120s en_US.UTF-8... done 120s Generation complete. 120s Setting up libc-dev-bin (2.41-1ubuntu1) ... 120s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 120s Processing triggers for man-db (2.13.0-1) ... 120s Processing triggers for systemd (257.2-3ubuntu1) ... 121s autopkgtest: DBG: testbed command exited with code 0 121s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 121s Reading package lists... 121s Building dependency tree... 121s Reading state information... 122s Starting pkgProblemResolver with broken count: 0 122s Starting 2 pkgProblemResolver with broken count: 0 122s Done 122s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 122s autopkgtest: DBG: testbed command exited with code 0 122s 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.oJkuFg/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 122s autopkgtest: DBG: testbed command exited with code 1 122s autopkgtest [01:16:29]: rebooting testbed after setup commands that affected boot 122s autopkgtest: DBG: sending command to testbed: reboot 139s autopkgtest: DBG: got reply from testbed: ok 139s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 139s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.oJkuFg'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.oJkuFg/autopkgtest-reboot 140s autopkgtest: DBG: got reply from testbed: ok 140s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.oJkuFg/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.oJkuFg/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.oJkuFg/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.oJkuFg'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.oJkuFg/autopkgtest-reboot-prepare 141s autopkgtest: DBG: got reply from testbed: ok 141s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.oJkuFg/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.oJkuFg/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest [01:16:48]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 141s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.oJkuFg/testbed-packages"], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.oJkuFg/testbed-packages /tmp/autopkgtest-work.zgy9ft2y/out/testbed-packages 142s autopkgtest: DBG: got reply from testbed: ok 142s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 142s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.oJkuFg'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.oJkuFg/autopkgtest-reboot 142s autopkgtest: DBG: got reply from testbed: ok 142s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.oJkuFg/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.oJkuFg/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.oJkuFg/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.oJkuFg'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.oJkuFg/autopkgtest-reboot-prepare 143s autopkgtest: DBG: got reply from testbed: ok 143s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.oJkuFg/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.oJkuFg/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: Binaries: initialising 143s autopkgtest [01:16:50]: @@@@@@@@@@@@@@@@@@@@ apt-source ocaml-cairo2 143s autopkgtest: DBG: blame += ocaml-cairo2 143s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 143s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'ocaml-cairo2'], kind short, sout pipe, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libcairo2-ocaml$'], kind short, sout pipe, serr raw, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libcairo2-ocaml=0.6.5-2'], kind short, sout pipe, serr raw, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libcairo2-ocaml-dev$'], kind short, sout pipe, serr raw, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libcairo2-ocaml-dev=0.6.5-2'], kind short, sout pipe, serr raw, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: install_deps: deps_new=[] 144s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s 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.oJkuFg/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source ocaml-cairo2=0.6.5-2 2>&1) || RC=$?;if [ -n "$RC" ]; then if echo "$OUT" | grep -q "Unable to find a source package"; then exit 1; else exit $RC; fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x ocaml-cairo2_*.dsc src >/dev/null; chmod -R a+rX .; cd [a-z0-9]*/.; pwd >&3; sed -n "1 {s/).*//; s/ (/\\n/; p}" debian/changelog >&3\''], kind build, sout pipe, serr raw, env ['ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1'] 145s + cd / 145s + mktemp -d /tmp/autopkgtest.oJkuFg/build.XXX 145s + builddir=/tmp/autopkgtest.oJkuFg/build.krK 145s + cd /tmp/autopkgtest.oJkuFg/build.krK 145s + apt-get source -d -q --only-source ocaml-cairo2=0.6.5-2 145s + OUT=Reading package lists... 145s NOTICE: 'ocaml-cairo2' packaging is maintained in the 'Git' version control system at: 145s https://salsa.debian.org/ocaml-team/ocaml-cairo2.git 145s Please use: 145s git clone https://salsa.debian.org/ocaml-team/ocaml-cairo2.git 145s to retrieve the latest (possibly unreleased) updates to the package. 145s Need to get 86.6 kB of source archives. 145s Get:1 http://ftpmaster.internal/ubuntu plucky/universe ocaml-cairo2 0.6.5-2 (dsc) [2020 B] 145s Get:2 http://ftpmaster.internal/ubuntu plucky/universe ocaml-cairo2 0.6.5-2 (tar) [81.3 kB] 145s Get:3 http://ftpmaster.internal/ubuntu plucky/universe ocaml-cairo2 0.6.5-2 (diff) [3288 B] 145s Fetched 86.6 kB in 0s (214 kB/s) 145s Download complete and in download only mode 145s + [ -n ] 145s + echo Reading package lists... 145s NOTICE: 'ocaml-cairo2' packaging is maintained in the 'Git' version control system at: 145s https://salsa.debian.org/ocaml-team/ocaml-cairo2.git 145s Please use: 145s git clone https://salsa.debian.org/ocaml-team/ocaml-cairo2.git 145s to retrieve the latest (possibly unreleased) updates to the package. 145s Need to get 86.6 kB of source archives. 145s Get:1 http://ftpmaster.internal/ubuntu plucky/universe ocaml-cairo2 0.6.5-2 (dsc) [2020 B] 145s Get:2 http://ftpmaster.internal/ubuntu plucky/universe ocaml-cairo2 0.6.5-2 (tar) [81.3 kB] 145s Get:3 http://ftpmaster.internal/ubuntu plucky/universe ocaml-cairo2 0.6.5-2 (diff) [3288 B] 145s Fetched 86.6 kB in 0s (214 kB/s) 145s Download complete and in download only mode 145s + grep ^Get: 145s Get:1 http://ftpmaster.internal/ubuntu plucky/universe ocaml-cairo2 0.6.5-2 (dsc) [2020 B] 145s Get:2 http://ftpmaster.internal/ubuntu plucky/universe ocaml-cairo2 0.6.5-2 (tar) [81.3 kB] 145s Get:3 http://ftpmaster.internal/ubuntu plucky/universe ocaml-cairo2 0.6.5-2 (diff) [3288 B] 145s + dpkg-source -x ocaml-cairo2_0.6.5-2.dsc src 146s gpgv: Signature made Tue Jan 7 06:28:34 2025 UTC 146s gpgv: using RSA key 6DE24E97ECA886CC56E6250E21B8EEF1B1893081 146s gpgv: issuer "glondu@debian.org" 146s gpgv: Can't check signature: No public key 146s dpkg-source: warning: cannot verify inline signature for ./ocaml-cairo2_0.6.5-2.dsc: no acceptable signature found 146s + chmod -R a+rX . 146s + cd src/. 146s + pwd 146s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest [01:16:53]: testing package ocaml-cairo2 version 0.6.5-2 146s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.oJkuFg/build.krK/src/debian/ /tmp/autopkgtest-work.zgy9ft2y/out/pkg/debian/ 146s autopkgtest: DBG: got reply from testbed: ok 146s autopkgtest: DBG: processing dependency @ 146s autopkgtest: DBG: synthesised dependency libcairo2-ocaml-dev 146s autopkgtest: DBG: synthesised dependency libcairo2-ocaml 146s autopkgtest: DBG: processing dependency @builddeps@ 146s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 146s autopkgtest: DBG: synthesised dependency dh-ocaml (>= 1.2) 146s autopkgtest: DBG: synthesised dependency ocaml 146s autopkgtest: DBG: synthesised dependency ocaml-findlib 146s autopkgtest: DBG: synthesised dependency ocaml-dune (>= 3.17) 146s autopkgtest: DBG: synthesised dependency libdune-ocaml-dev 146s autopkgtest: DBG: synthesised dependency libgraphics-ocaml-dev 146s autopkgtest: DBG: synthesised dependency libcairo2-dev 146s autopkgtest: DBG: synthesised dependency build-essential 146s autopkgtest: DBG: Test defined: name examples path debian/tests/examples command "None" restrictions [] features [] depends ['libcairo2-ocaml-dev', 'libcairo2-ocaml', 'debhelper-compat (= 13)', 'dh-ocaml (>= 1.2)', 'ocaml', 'ocaml-findlib', 'ocaml-dune (>= 3.17)', 'libdune-ocaml-dev', 'libgraphics-ocaml-dev', 'libcairo2-dev', 'build-essential'] 146s autopkgtest [01:16:53]: build not needed 146s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.oJkuFg/build.krK/src/ /tmp/autopkgtest-work.zgy9ft2y/out/tests-tree/ 146s autopkgtest: DBG: got reply from testbed: ok 146s autopkgtest: DBG: processing dependency @ 146s autopkgtest: DBG: synthesised dependency libcairo2-ocaml-dev 146s autopkgtest: DBG: synthesised dependency libcairo2-ocaml 146s autopkgtest: DBG: processing dependency @builddeps@ 146s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 146s autopkgtest: DBG: synthesised dependency dh-ocaml (>= 1.2) 146s autopkgtest: DBG: synthesised dependency ocaml 146s autopkgtest: DBG: synthesised dependency ocaml-findlib 146s autopkgtest: DBG: synthesised dependency ocaml-dune (>= 3.17) 146s autopkgtest: DBG: synthesised dependency libdune-ocaml-dev 146s autopkgtest: DBG: synthesised dependency libgraphics-ocaml-dev 146s autopkgtest: DBG: synthesised dependency libcairo2-dev 146s autopkgtest: DBG: synthesised dependency build-essential 146s autopkgtest: DBG: Test defined: name examples path debian/tests/examples command "None" restrictions [] features [] depends ['libcairo2-ocaml-dev', 'libcairo2-ocaml', 'debhelper-compat (= 13)', 'dh-ocaml (>= 1.2)', 'ocaml', 'ocaml-findlib', 'ocaml-dune (>= 3.17)', 'libdune-ocaml-dev', 'libgraphics-ocaml-dev', 'libcairo2-dev', 'build-essential'] 146s autopkgtest [01:16:53]: test examples: preparing testbed 146s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['libcairo2-ocaml-dev', 'libcairo2-ocaml', 'debhelper-compat (= 13)', 'dh-ocaml (>= 1.2)', 'ocaml', 'ocaml-findlib', 'ocaml-dune (>= 3.17)', 'libdune-ocaml-dev', 'libgraphics-ocaml-dev', 'libcairo2-dev', 'build-essential'] 146s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 146s autopkgtest: DBG: install_deps: deps_new=['libcairo2-ocaml-dev', 'libcairo2-ocaml', 'debhelper-compat (= 13)', 'dh-ocaml (>= 1.2)', 'ocaml', 'ocaml-findlib', 'ocaml-dune (>= 3.17)', 'libdune-ocaml-dev', 'libgraphics-ocaml-dev', 'libcairo2-dev', 'build-essential'] 146s autopkgtest: DBG: install-deps: satisfying libcairo2-ocaml-dev, libcairo2-ocaml, debhelper-compat (= 13), dh-ocaml (>= 1.2), ocaml, ocaml-findlib, ocaml-dune (>= 3.17), libdune-ocaml-dev, libgraphics-ocaml-dev, libcairo2-dev, build-essential 146s autopkgtest: DBG: can use apt-get on testbed: True 146s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'libcairo2-ocaml-dev, libcairo2-ocaml, debhelper-compat (= 13), dh-ocaml (>= 1.2), ocaml, ocaml-findlib, ocaml-dune (>= 3.17), libdune-ocaml-dev, libgraphics-ocaml-dev, libcairo2-dev, build-essential'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 147s Reading package lists... 147s Building dependency tree... 147s Reading state information... 147s Starting pkgProblemResolver with broken count: 1 147s Starting 2 pkgProblemResolver with broken count: 1 147s Investigating (0) satisfy:command-line:s390x < none -> 1 @un puN Ib > 147s Broken satisfy:command-line:s390x Depends on libcairo2-ocaml-dev:s390x < none | 0.6.5-2 @un uH > 147s Considering libcairo2-ocaml-dev:s390x 1 as a solution to satisfy:command-line:s390x 9998 147s Re-Instated libstdlib-ocaml:s390x 147s Re-Instated ocaml-base:s390x 147s Re-Instated libfreetype6:s390x 147s Re-Instated fonts-dejavu-mono:s390x 147s Re-Instated fonts-dejavu-core:s390x 147s Re-Instated fontconfig-config:s390x 147s Re-Instated libfontconfig1:s390x 147s Re-Instated libpixman-1-0:s390x 147s Re-Instated libxcb-render0:s390x 147s Re-Instated libxcb-shm0:s390x 147s Re-Instated libxrender1:s390x 147s Re-Instated libcairo2:s390x 147s Re-Instated libcairo2-ocaml:s390x 147s Re-Instated libstdlib-ocaml-dev:s390x 147s Re-Instated libcompiler-libs-ocaml-dev:s390x 147s Re-Instated ocaml-interp:s390x 147s Re-Instated libncurses-dev:s390x 147s Re-Instated libisl23:s390x 147s Re-Instated libmpc3:s390x 147s Re-Instated cpp-14-s390x-linux-gnu:s390x 147s Re-Instated cpp-14:s390x 147s Re-Instated cpp-s390x-linux-gnu:s390x 147s Re-Instated cpp:s390x 147s Re-Instated libcc1-0:s390x 147s Re-Instated libgomp1:s390x 147s Re-Instated libitm1:s390x 147s Re-Instated libasan8:s390x 147s Re-Instated libubsan1:s390x 147s Re-Instated libgcc-14-dev:s390x 147s Re-Instated gcc-14-s390x-linux-gnu:s390x 147s Re-Instated gcc-14:s390x 147s Re-Instated gcc-s390x-linux-gnu:s390x 147s Re-Instated gcc:s390x 147s Re-Instated libzstd-dev:s390x 147s Re-Instated ocaml:s390x 147s Re-Instated libcairo2-ocaml-dev:s390x 147s Broken satisfy:command-line:s390x Depends on debhelper-compat:s390x < none @un H > (= 13) 147s Considering debhelper:s390x 0 as a solution to satisfy:command-line:s390x 9998 147s Re-Instated m4:s390x 147s Re-Instated autoconf:s390x 147s Re-Instated autotools-dev:s390x 147s Re-Instated automake:s390x 147s Re-Instated autopoint:s390x 147s Re-Instated libdebhelper-perl:s390x 147s Re-Instated libtool:s390x 147s Re-Instated dh-autoreconf:s390x 147s Re-Instated libarchive-zip-perl:s390x 147s Re-Instated libfile-stripnondeterminism-perl:s390x 147s Re-Instated dh-strip-nondeterminism:s390x 147s Re-Instated debugedit:s390x 147s Re-Instated dwz:s390x 147s Re-Instated gettext:s390x 147s Re-Instated intltool-debian:s390x 147s Re-Instated po-debconf:s390x 147s Re-Instated debhelper:s390x 147s Broken satisfy:command-line:s390x Depends on dh-ocaml:s390x < none | 2.4 @un uH > (>= 1.2) 147s Considering dh-ocaml:s390x 0 as a solution to satisfy:command-line:s390x 9998 147s Re-Instated libconfig-tiny-perl:s390x 147s Re-Instated dh-ocaml:s390x 147s Broken satisfy:command-line:s390x Depends on ocaml-findlib:s390x < none | 1.9.6-3build1 @un uH > 147s Considering ocaml-findlib:s390x 1 as a solution to satisfy:command-line:s390x 9998 147s Re-Instated libfindlib-ocaml:s390x 147s Re-Instated ocaml-findlib:s390x 147s Broken satisfy:command-line:s390x Depends on ocaml-dune:s390x < none | 3.16.0-2build1 @un uH > (>= 3.17) 147s Considering ocaml-dune:s390x 0 as a solution to satisfy:command-line:s390x 9998 147s Re-Instated ocaml-dune:s390x 147s Broken satisfy:command-line:s390x Depends on libdune-ocaml-dev:s390x < none | 3.16.0-2build1 @un uH > 147s Considering libdune-ocaml-dev:s390x 1 as a solution to satisfy:command-line:s390x 9998 147s Re-Instated libdune-ocaml-dev:s390x 147s Broken satisfy:command-line:s390x Depends on libgraphics-ocaml-dev:s390x < none | 5.1.2-3build4 @un uH > 147s Considering libgraphics-ocaml-dev:s390x 1 as a solution to satisfy:command-line:s390x 9998 147s Re-Instated libgraphics-ocaml:s390x 147s Re-Instated libgraphics-ocaml-dev:s390x 147s Broken satisfy:command-line:s390x Depends on libcairo2-dev:s390x < none | 1.18.2-2 @un uH > 147s Considering libcairo2-dev:s390x 1 as a solution to satisfy:command-line:s390x 9998 147s Re-Instated libcairo-gobject2:s390x 147s Re-Instated libcairo-script-interpreter2:s390x 147s Re-Instated libexpat1-dev:s390x 147s Re-Instated libbrotli-dev:s390x 147s Re-Instated libbz2-dev:s390x 147s Re-Instated zlib1g-dev:s390x 147s Re-Instated libpng-dev:s390x 147s Re-Instated libfreetype-dev:s390x 147s Re-Instated uuid-dev:s390x 147s Re-Instated libpkgconf3:s390x 147s Re-Instated pkgconf-bin:s390x 147s Re-Instated pkgconf:s390x 147s Re-Instated libfontconfig-dev:s390x 147s Re-Instated native-architecture:s390x 147s Re-Instated libgirepository-2.0-0:s390x 147s Re-Instated girepository-tools:s390x 147s Re-Instated libffi-dev:s390x 147s Re-Instated libblkid-dev:s390x 147s Re-Instated libsepol-dev:s390x 147s Re-Instated libpcre2-16-0:s390x 147s Re-Instated libpcre2-32-0:s390x 147s Re-Instated libpcre2-posix3:s390x 147s Re-Instated libpcre2-dev:s390x 147s Re-Instated libselinux1-dev:s390x 147s Re-Instated libmount-dev:s390x 147s Re-Instated libsysprof-capture-4-dev:s390x 147s Re-Instated libgio-2.0-dev:s390x 147s Re-Instated libglib2.0-bin:s390x 147s Re-Instated python3-packaging:s390x 147s Re-Instated libgio-2.0-dev-bin:s390x 147s Re-Instated libglib2.0-dev-bin:s390x 147s Re-Instated libglib2.0-dev:s390x 147s Re-Instated libpixman-1-dev:s390x 147s Re-Instated x11-common:s390x 147s Re-Instated libice6:s390x 147s Re-Instated libsm6:s390x 147s Re-Instated xorg-sgml-doctools:s390x 147s Re-Instated x11proto-dev:s390x 147s Re-Instated x11proto-core-dev:s390x 147s Re-Instated libice-dev:s390x 147s Re-Instated libsm-dev:s390x 147s Re-Instated libxau-dev:s390x 147s Re-Instated libxdmcp-dev:s390x 147s Re-Instated xtrans-dev:s390x 147s Re-Instated libxcb1-dev:s390x 147s Re-Instated libx11-dev:s390x 147s Re-Instated libxcb-render0-dev:s390x 147s Re-Instated libxcb-shm0-dev:s390x 147s Re-Instated libxext-dev:s390x 147s Re-Instated libxrender-dev:s390x 147s Re-Instated libcairo2-dev:s390x 147s Broken satisfy:command-line:s390x Depends on build-essential:s390x < none | 12.10ubuntu1 @un uH > 147s Considering build-essential:s390x 2 as a solution to satisfy:command-line:s390x 9998 147s Re-Instated libstdc++-14-dev:s390x 147s Re-Instated g++-14-s390x-linux-gnu:s390x 147s Re-Instated g++-14:s390x 147s Re-Instated g++-s390x-linux-gnu:s390x 147s Re-Instated g++:s390x 147s Re-Instated build-essential:s390x 147s Done 147s Some packages could not be installed. This may mean that you have 147s requested an impossible situation or if you are using the unstable 147s distribution that some required packages have not yet been created 147s or been moved out of Incoming. 147s The following information may help to resolve the situation: 147s 147s The following packages have unmet dependencies: 147s satisfy:command-line : Depends: ocaml-dune (>= 3.17) but 3.16.0-2build1 is to be installed 147s E: Unable to correct problems, you have held broken packages. 147s autopkgtest: DBG: testbed command exited with code 100 147s autopkgtest: DBG: apt-get satisfy failed; status-fd: 147s 147s autopkgtest: WARNING: Test dependencies are unsatisfiable with using apt pinning. Retrying with using all packages from plucky-proposed 147s autopkgtest: DBG: testbed command ['rm', '/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s 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', 'libcairo2-ocaml-dev, libcairo2-ocaml, debhelper-compat (= 13), dh-ocaml (>= 1.2), ocaml, ocaml-findlib, ocaml-dune (>= 3.17), libdune-ocaml-dev, libgraphics-ocaml-dev, libcairo2-dev, build-essential'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 147s Reading package lists... 147s Building dependency tree... 147s Reading state information... 148s Starting pkgProblemResolver with broken count: 0 148s Starting 2 pkgProblemResolver with broken count: 0 148s Done 148s The following NEW packages will be installed: 148s autoconf automake autopoint autotools-dev build-essential cpp cpp-14 148s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 148s dh-ocaml dh-strip-nondeterminism dwz fontconfig-config fonts-dejavu-core 148s fonts-dejavu-mono g++ g++-14 g++-14-s390x-linux-gnu g++-s390x-linux-gnu gcc 148s gcc-14 gcc-14-s390x-linux-gnu gcc-15-base gcc-s390x-linux-gnu gettext 148s girepository-tools intltool-debian libarchive-zip-perl libasan8 libblkid-dev 148s libbrotli-dev libbz2-dev libcairo-gobject2 libcairo-script-interpreter2 148s libcairo2 libcairo2-dev libcairo2-ocaml libcairo2-ocaml-dev libcc1-0 148s libcompiler-libs-ocaml-dev libconfig-tiny-perl libdebhelper-perl 148s libdune-ocaml-dev libexpat1-dev libffi-dev libfile-stripnondeterminism-perl 148s libfindlib-ocaml libfontconfig-dev libfontconfig1 libfreetype-dev 148s libfreetype6 libgcc-14-dev libgio-2.0-dev libgio-2.0-dev-bin 148s libgirepository-2.0-0 libglib2.0-bin libglib2.0-dev libglib2.0-dev-bin 148s libgomp1 libgraphics-ocaml libgraphics-ocaml-dev libice-dev libice6 libisl23 148s libitm1 libmount-dev libmpc3 libncurses-dev libpcre2-16-0 libpcre2-32-0 148s libpcre2-dev libpcre2-posix3 libpixman-1-0 libpixman-1-dev libpkgconf3 148s libpng-dev libselinux1-dev libsepol-dev libsm-dev libsm6 libstdc++-14-dev 148s libstdlib-ocaml libstdlib-ocaml-dev libsysprof-capture-4-dev libtool 148s libubsan1 libx11-dev libxau-dev libxcb-render0 libxcb-render0-dev 148s libxcb-shm0 libxcb-shm0-dev libxcb1-dev libxdmcp-dev libxext-dev 148s libxrender-dev libxrender1 libzstd-dev m4 native-architecture ocaml 148s ocaml-base ocaml-dune ocaml-findlib ocaml-interp pkgconf pkgconf-bin 148s po-debconf python3-packaging uuid-dev x11-common x11proto-core-dev 148s x11proto-dev xorg-sgml-doctools xtrans-dev zlib1g-dev 148s The following packages will be upgraded: 148s libatomic1 libgcc-s1 libpcre2-8-0 libsepol2 libstdc++6 148s 5 upgraded, 119 newly installed, 0 to remove and 33 not upgraded. 148s Need to get 167 MB of archives. 148s After this operation, 508 MB of additional disk space will be used. 148s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x gcc-15-base s390x 15-20250213-1ubuntu1 [53.3 kB] 148s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libgcc-s1 s390x 15-20250213-1ubuntu1 [35.7 kB] 148s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libpcre2-8-0 s390x 10.45-1 [276 kB] 148s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libsepol2 s390x 3.8-1 [332 kB] 148s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libstdc++6 s390x 15-20250213-1ubuntu1 [899 kB] 149s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libatomic1 s390x 15-20250213-1ubuntu1 [9360 B] 149s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 149s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 149s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 149s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 149s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 149s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 149s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 149s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 149s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 149s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 149s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 149s Get:18 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libcc1-0 s390x 15-20250213-1ubuntu1 [49.2 kB] 149s Get:19 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 149s Get:20 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libitm1 s390x 15-20250213-1ubuntu1 [31.2 kB] 149s Get:21 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libasan8 s390x 15-20250213-1ubuntu1 [2970 kB] 149s Get:22 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libubsan1 s390x 15-20250213-1ubuntu1 [1213 kB] 149s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 149s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 150s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 150s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 150s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 150s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 150s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 150s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 150s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 150s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 150s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 150s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 150s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 150s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 150s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 150s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 150s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 150s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 150s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 150s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 150s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 150s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 150s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 150s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 150s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 150s Get:48 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 150s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x native-architecture all 0.2.5 [2082 B] 150s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libgirepository-2.0-0 s390x 2.83.3-2 [75.4 kB] 150s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x girepository-tools s390x 2.83.3-2 [114 kB] 150s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libbrotli-dev s390x 1.1.0-2build3 [395 kB] 150s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libbz2-dev s390x 1.0.8-6 [39.1 kB] 150s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 150s Get:55 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 150s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-0 s390x 0.44.0-3 [201 kB] 150s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 150s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 150s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 150s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo2 s390x 1.18.2-2 [580 kB] 150s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo-gobject2 s390x 1.18.2-2 [127 kB] 150s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo-script-interpreter2 s390x 1.18.2-2 [62.3 kB] 150s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libexpat1-dev s390x 2.6.4-1 [146 kB] 150s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 151s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x libpng-dev s390x 1.6.46-4 [283 kB] 151s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype-dev s390x 2.13.3+dfsg-1 [605 kB] 151s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x uuid-dev s390x 2.40.2-14ubuntu1 [54.0 kB] 151s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x libpkgconf3 s390x 1.8.1-4 [31.2 kB] 151s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf-bin s390x 1.8.1-4 [21.5 kB] 151s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf s390x 1.8.1-4 [16.7 kB] 151s Get:71 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libfontconfig-dev s390x 2.15.0-2ubuntu1 [170 kB] 151s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x libffi-dev s390x 3.4.7-1 [58.9 kB] 151s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x libblkid-dev s390x 2.40.2-14ubuntu1 [233 kB] 151s Get:74 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libsepol-dev s390x 3.8-1 [415 kB] 151s Get:75 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libpcre2-16-0 s390x 10.45-1 [259 kB] 151s Get:76 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libpcre2-32-0 s390x 10.45-1 [245 kB] 151s Get:77 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libpcre2-posix3 s390x 10.45-1 [7080 B] 151s Get:78 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libpcre2-dev s390x 10.45-1 [899 kB] 151s Get:79 http://ftpmaster.internal/ubuntu plucky/main s390x libselinux1-dev s390x 3.7-3ubuntu2 [169 kB] 151s Get:80 http://ftpmaster.internal/ubuntu plucky/main s390x libmount-dev s390x 2.40.2-14ubuntu1 [34.6 kB] 151s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x libsysprof-capture-4-dev s390x 48~beta-2 [51.9 kB] 151s Get:82 http://ftpmaster.internal/ubuntu plucky/main s390x libgio-2.0-dev s390x 2.83.3-2 [1818 kB] 151s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x libglib2.0-bin s390x 2.83.3-2 [99.5 kB] 151s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 151s Get:85 http://ftpmaster.internal/ubuntu plucky/main s390x libgio-2.0-dev-bin s390x 2.83.3-2 [129 kB] 151s Get:86 http://ftpmaster.internal/ubuntu plucky/main s390x libglib2.0-dev-bin s390x 2.83.3-2 [18.1 kB] 151s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x libglib2.0-dev s390x 2.83.3-2 [18.9 kB] 151s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-dev s390x 0.44.0-3 [10.7 kB] 151s Get:89 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 151s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 151s Get:91 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 151s Get:92 http://ftpmaster.internal/ubuntu plucky/main s390x xorg-sgml-doctools all 1:1.11-1.1 [10.9 kB] 151s Get:93 http://ftpmaster.internal/ubuntu plucky/main s390x x11proto-dev all 2024.1-1 [606 kB] 151s Get:94 http://ftpmaster.internal/ubuntu plucky/main s390x x11proto-core-dev all 2024.1-1 [2442 B] 151s Get:95 http://ftpmaster.internal/ubuntu plucky/main s390x libice-dev s390x 2:1.1.1-1 [55.2 kB] 151s Get:96 http://ftpmaster.internal/ubuntu plucky/main s390x libsm-dev s390x 2:1.2.4-1 [20.6 kB] 151s Get:97 http://ftpmaster.internal/ubuntu plucky/main s390x libxau-dev s390x 1:1.0.11-1 [9752 B] 151s Get:98 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp-dev s390x 1:1.1.5-1 [26.9 kB] 151s Get:99 http://ftpmaster.internal/ubuntu plucky/main s390x xtrans-dev all 1.4.0-1 [68.9 kB] 151s Get:100 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb1-dev s390x 1.17.0-2 [88.9 kB] 151s Get:101 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-dev s390x 2:1.8.10-2 [761 kB] 151s Get:102 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0-dev s390x 1.17.0-2 [20.8 kB] 151s Get:103 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0-dev s390x 1.17.0-2 [8516 B] 151s Get:104 http://ftpmaster.internal/ubuntu plucky/main s390x libxext-dev s390x 2:1.3.4-1build2 [85.7 kB] 151s Get:105 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender-dev s390x 1:0.9.10-1.1build1 [27.8 kB] 151s Get:106 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo2-dev s390x 1.18.2-2 [41.1 kB] 151s Get:107 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x libstdlib-ocaml s390x 5.3.0-2 [438 kB] 152s Get:108 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x ocaml-base s390x 5.3.0-2 [329 kB] 152s Get:109 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x libcairo2-ocaml s390x 0.6.5-2build1 [30.7 kB] 152s Get:110 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x libstdlib-ocaml-dev s390x 5.3.0-2 [7845 kB] 152s Get:111 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x libcompiler-libs-ocaml-dev s390x 5.3.0-2 [47.5 MB] 154s Get:112 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x ocaml-interp s390x 5.3.0-2 [8368 kB] 155s Get:113 http://ftpmaster.internal/ubuntu plucky/main s390x libncurses-dev s390x 6.5+20250125-2 [407 kB] 155s Get:114 http://ftpmaster.internal/ubuntu plucky/main s390x libzstd-dev s390x 1.5.6+dfsg-2 [408 kB] 155s Get:115 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x ocaml s390x 5.3.0-2 [20.6 MB] 157s Get:116 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x libcairo2-ocaml-dev s390x 0.6.5-2build1 [408 kB] 157s Get:117 http://ftpmaster.internal/ubuntu plucky/main s390x libconfig-tiny-perl all 2.30-1 [14.7 kB] 157s Get:118 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x libdune-ocaml-dev s390x 3.17.2-1 [6460 kB] 157s Get:119 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x libfindlib-ocaml s390x 1.9.8-1 [225 kB] 157s Get:120 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x libgraphics-ocaml s390x 5.1.2-3build5 [55.2 kB] 157s Get:121 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x libgraphics-ocaml-dev s390x 5.1.2-3build5 [127 kB] 157s Get:122 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x ocaml-dune s390x 3.17.2-1 [5659 kB] 158s Get:123 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x ocaml-findlib s390x 1.9.8-1 [679 kB] 158s Get:124 http://ftpmaster.internal/ubuntu plucky/universe s390x dh-ocaml all 2.4 [63.6 kB] 158s Fetched 167 MB in 10s (16.7 MB/s) 158s Selecting previously unselected package gcc-15-base:s390x. 159s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 159s Preparing to unpack .../gcc-15-base_15-20250213-1ubuntu1_s390x.deb ... 159s Unpacking gcc-15-base:s390x (15-20250213-1ubuntu1) ... 159s Setting up gcc-15-base:s390x (15-20250213-1ubuntu1) ... 159s (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 ... 55874 files and directories currently installed.) 159s Preparing to unpack .../libgcc-s1_15-20250213-1ubuntu1_s390x.deb ... 159s Unpacking libgcc-s1:s390x (15-20250213-1ubuntu1) over (14.2.0-17ubuntu1) ... 159s Setting up libgcc-s1:s390x (15-20250213-1ubuntu1) ... 159s (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 ... 55874 files and directories currently installed.) 159s Preparing to unpack .../libpcre2-8-0_10.45-1_s390x.deb ... 159s Unpacking libpcre2-8-0:s390x (10.45-1) over (10.42-4ubuntu3) ... 159s Setting up libpcre2-8-0:s390x (10.45-1) ... 159s (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 ... 55874 files and directories currently installed.) 159s Preparing to unpack .../libsepol2_3.8-1_s390x.deb ... 159s Unpacking libsepol2:s390x (3.8-1) over (3.7-1) ... 159s Setting up libsepol2:s390x (3.8-1) ... 159s (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 ... 55874 files and directories currently installed.) 159s Preparing to unpack .../libstdc++6_15-20250213-1ubuntu1_s390x.deb ... 159s Unpacking libstdc++6:s390x (15-20250213-1ubuntu1) over (14.2.0-17ubuntu1) ... 159s Setting up libstdc++6:s390x (15-20250213-1ubuntu1) ... 159s (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 ... 55874 files and directories currently installed.) 159s Preparing to unpack .../000-libatomic1_15-20250213-1ubuntu1_s390x.deb ... 159s Unpacking libatomic1:s390x (15-20250213-1ubuntu1) over (14.2.0-17ubuntu1) ... 159s Selecting previously unselected package m4. 159s Preparing to unpack .../001-m4_1.4.19-5_s390x.deb ... 159s Unpacking m4 (1.4.19-5) ... 159s Selecting previously unselected package autoconf. 159s Preparing to unpack .../002-autoconf_2.72-3_all.deb ... 159s Unpacking autoconf (2.72-3) ... 159s Selecting previously unselected package autotools-dev. 159s Preparing to unpack .../003-autotools-dev_20220109.1_all.deb ... 159s Unpacking autotools-dev (20220109.1) ... 159s Selecting previously unselected package automake. 159s Preparing to unpack .../004-automake_1%3a1.17-3_all.deb ... 159s Unpacking automake (1:1.17-3) ... 159s Selecting previously unselected package autopoint. 159s Preparing to unpack .../005-autopoint_0.23.1-1_all.deb ... 159s Unpacking autopoint (0.23.1-1) ... 159s Selecting previously unselected package libisl23:s390x. 159s Preparing to unpack .../006-libisl23_0.27-1_s390x.deb ... 159s Unpacking libisl23:s390x (0.27-1) ... 159s Selecting previously unselected package libmpc3:s390x. 159s Preparing to unpack .../007-libmpc3_1.3.1-1build2_s390x.deb ... 159s Unpacking libmpc3:s390x (1.3.1-1build2) ... 159s Selecting previously unselected package cpp-14-s390x-linux-gnu. 159s Preparing to unpack .../008-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 159s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 159s Selecting previously unselected package cpp-14. 159s Preparing to unpack .../009-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 159s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 159s Selecting previously unselected package cpp-s390x-linux-gnu. 159s Preparing to unpack .../010-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 159s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 159s Selecting previously unselected package cpp. 159s Preparing to unpack .../011-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 159s Unpacking cpp (4:14.2.0-1ubuntu1) ... 159s Selecting previously unselected package libcc1-0:s390x. 159s Preparing to unpack .../012-libcc1-0_15-20250213-1ubuntu1_s390x.deb ... 159s Unpacking libcc1-0:s390x (15-20250213-1ubuntu1) ... 159s Selecting previously unselected package libgomp1:s390x. 159s Preparing to unpack .../013-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 159s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 159s Selecting previously unselected package libitm1:s390x. 159s Preparing to unpack .../014-libitm1_15-20250213-1ubuntu1_s390x.deb ... 159s Unpacking libitm1:s390x (15-20250213-1ubuntu1) ... 159s Selecting previously unselected package libasan8:s390x. 159s Preparing to unpack .../015-libasan8_15-20250213-1ubuntu1_s390x.deb ... 159s Unpacking libasan8:s390x (15-20250213-1ubuntu1) ... 159s Selecting previously unselected package libubsan1:s390x. 159s Preparing to unpack .../016-libubsan1_15-20250213-1ubuntu1_s390x.deb ... 159s Unpacking libubsan1:s390x (15-20250213-1ubuntu1) ... 159s Selecting previously unselected package libgcc-14-dev:s390x. 159s Preparing to unpack .../017-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 159s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 159s Selecting previously unselected package gcc-14-s390x-linux-gnu. 159s Preparing to unpack .../018-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 159s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 160s Selecting previously unselected package gcc-14. 160s Preparing to unpack .../019-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 160s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 160s Selecting previously unselected package gcc-s390x-linux-gnu. 160s Preparing to unpack .../020-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 160s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 160s Selecting previously unselected package gcc. 160s Preparing to unpack .../021-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 160s Unpacking gcc (4:14.2.0-1ubuntu1) ... 160s Selecting previously unselected package libstdc++-14-dev:s390x. 160s Preparing to unpack .../022-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 160s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 160s Selecting previously unselected package g++-14-s390x-linux-gnu. 160s Preparing to unpack .../023-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 160s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 160s Selecting previously unselected package g++-14. 160s Preparing to unpack .../024-g++-14_14.2.0-17ubuntu1_s390x.deb ... 160s Unpacking g++-14 (14.2.0-17ubuntu1) ... 160s Selecting previously unselected package g++-s390x-linux-gnu. 160s Preparing to unpack .../025-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 160s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 160s Selecting previously unselected package g++. 160s Preparing to unpack .../026-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 160s Unpacking g++ (4:14.2.0-1ubuntu1) ... 160s Selecting previously unselected package build-essential. 160s Preparing to unpack .../027-build-essential_12.10ubuntu1_s390x.deb ... 160s Unpacking build-essential (12.10ubuntu1) ... 160s Selecting previously unselected package libdebhelper-perl. 160s Preparing to unpack .../028-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 160s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 160s Selecting previously unselected package libtool. 160s Preparing to unpack .../029-libtool_2.5.4-3build1_all.deb ... 160s Unpacking libtool (2.5.4-3build1) ... 160s Selecting previously unselected package dh-autoreconf. 160s Preparing to unpack .../030-dh-autoreconf_20_all.deb ... 160s Unpacking dh-autoreconf (20) ... 160s Selecting previously unselected package libarchive-zip-perl. 160s Preparing to unpack .../031-libarchive-zip-perl_1.68-1_all.deb ... 160s Unpacking libarchive-zip-perl (1.68-1) ... 160s Selecting previously unselected package libfile-stripnondeterminism-perl. 160s Preparing to unpack .../032-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 160s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 160s Selecting previously unselected package dh-strip-nondeterminism. 160s Preparing to unpack .../033-dh-strip-nondeterminism_1.14.1-2_all.deb ... 160s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 160s Selecting previously unselected package debugedit. 160s Preparing to unpack .../034-debugedit_1%3a5.1-2_s390x.deb ... 160s Unpacking debugedit (1:5.1-2) ... 160s Selecting previously unselected package dwz. 160s Preparing to unpack .../035-dwz_0.15-1build6_s390x.deb ... 160s Unpacking dwz (0.15-1build6) ... 160s Selecting previously unselected package gettext. 160s Preparing to unpack .../036-gettext_0.23.1-1_s390x.deb ... 160s Unpacking gettext (0.23.1-1) ... 160s Selecting previously unselected package intltool-debian. 160s Preparing to unpack .../037-intltool-debian_0.35.0+20060710.6_all.deb ... 160s Unpacking intltool-debian (0.35.0+20060710.6) ... 160s Selecting previously unselected package po-debconf. 160s Preparing to unpack .../038-po-debconf_1.0.21+nmu1_all.deb ... 160s Unpacking po-debconf (1.0.21+nmu1) ... 160s Selecting previously unselected package debhelper. 160s Preparing to unpack .../039-debhelper_13.24.1ubuntu2_all.deb ... 160s Unpacking debhelper (13.24.1ubuntu2) ... 160s Selecting previously unselected package fonts-dejavu-mono. 160s Preparing to unpack .../040-fonts-dejavu-mono_2.37-8_all.deb ... 160s Unpacking fonts-dejavu-mono (2.37-8) ... 160s Selecting previously unselected package fonts-dejavu-core. 160s Preparing to unpack .../041-fonts-dejavu-core_2.37-8_all.deb ... 160s Unpacking fonts-dejavu-core (2.37-8) ... 160s Selecting previously unselected package fontconfig-config. 160s Preparing to unpack .../042-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 160s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 160s Selecting previously unselected package native-architecture. 160s Preparing to unpack .../043-native-architecture_0.2.5_all.deb ... 160s Unpacking native-architecture (0.2.5) ... 160s Selecting previously unselected package libgirepository-2.0-0:s390x. 160s Preparing to unpack .../044-libgirepository-2.0-0_2.83.3-2_s390x.deb ... 160s Unpacking libgirepository-2.0-0:s390x (2.83.3-2) ... 160s Selecting previously unselected package girepository-tools:s390x. 160s Preparing to unpack .../045-girepository-tools_2.83.3-2_s390x.deb ... 160s Unpacking girepository-tools:s390x (2.83.3-2) ... 160s Selecting previously unselected package libbrotli-dev:s390x. 160s Preparing to unpack .../046-libbrotli-dev_1.1.0-2build3_s390x.deb ... 160s Unpacking libbrotli-dev:s390x (1.1.0-2build3) ... 160s Selecting previously unselected package libbz2-dev:s390x. 160s Preparing to unpack .../047-libbz2-dev_1.0.8-6_s390x.deb ... 160s Unpacking libbz2-dev:s390x (1.0.8-6) ... 160s Selecting previously unselected package libfreetype6:s390x. 160s Preparing to unpack .../048-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 160s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 160s Selecting previously unselected package libfontconfig1:s390x. 160s Preparing to unpack .../049-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 160s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 160s Selecting previously unselected package libpixman-1-0:s390x. 160s Preparing to unpack .../050-libpixman-1-0_0.44.0-3_s390x.deb ... 160s Unpacking libpixman-1-0:s390x (0.44.0-3) ... 160s Selecting previously unselected package libxcb-render0:s390x. 160s Preparing to unpack .../051-libxcb-render0_1.17.0-2_s390x.deb ... 160s Unpacking libxcb-render0:s390x (1.17.0-2) ... 160s Selecting previously unselected package libxcb-shm0:s390x. 160s Preparing to unpack .../052-libxcb-shm0_1.17.0-2_s390x.deb ... 160s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 160s Selecting previously unselected package libxrender1:s390x. 160s Preparing to unpack .../053-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 160s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 160s Selecting previously unselected package libcairo2:s390x. 160s Preparing to unpack .../054-libcairo2_1.18.2-2_s390x.deb ... 160s Unpacking libcairo2:s390x (1.18.2-2) ... 160s Selecting previously unselected package libcairo-gobject2:s390x. 160s Preparing to unpack .../055-libcairo-gobject2_1.18.2-2_s390x.deb ... 160s Unpacking libcairo-gobject2:s390x (1.18.2-2) ... 160s Selecting previously unselected package libcairo-script-interpreter2:s390x. 160s Preparing to unpack .../056-libcairo-script-interpreter2_1.18.2-2_s390x.deb ... 160s Unpacking libcairo-script-interpreter2:s390x (1.18.2-2) ... 160s Selecting previously unselected package libexpat1-dev:s390x. 160s Preparing to unpack .../057-libexpat1-dev_2.6.4-1_s390x.deb ... 160s Unpacking libexpat1-dev:s390x (2.6.4-1) ... 160s Selecting previously unselected package zlib1g-dev:s390x. 160s Preparing to unpack .../058-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 160s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 160s Selecting previously unselected package libpng-dev:s390x. 160s Preparing to unpack .../059-libpng-dev_1.6.46-4_s390x.deb ... 160s Unpacking libpng-dev:s390x (1.6.46-4) ... 160s Selecting previously unselected package libfreetype-dev:s390x. 160s Preparing to unpack .../060-libfreetype-dev_2.13.3+dfsg-1_s390x.deb ... 160s Unpacking libfreetype-dev:s390x (2.13.3+dfsg-1) ... 160s Selecting previously unselected package uuid-dev:s390x. 160s Preparing to unpack .../061-uuid-dev_2.40.2-14ubuntu1_s390x.deb ... 160s Unpacking uuid-dev:s390x (2.40.2-14ubuntu1) ... 161s Selecting previously unselected package libpkgconf3:s390x. 161s Preparing to unpack .../062-libpkgconf3_1.8.1-4_s390x.deb ... 161s Unpacking libpkgconf3:s390x (1.8.1-4) ... 161s Selecting previously unselected package pkgconf-bin. 161s Preparing to unpack .../063-pkgconf-bin_1.8.1-4_s390x.deb ... 161s Unpacking pkgconf-bin (1.8.1-4) ... 161s Selecting previously unselected package pkgconf:s390x. 161s Preparing to unpack .../064-pkgconf_1.8.1-4_s390x.deb ... 161s Unpacking pkgconf:s390x (1.8.1-4) ... 161s Selecting previously unselected package libfontconfig-dev:s390x. 161s Preparing to unpack .../065-libfontconfig-dev_2.15.0-2ubuntu1_s390x.deb ... 161s Unpacking libfontconfig-dev:s390x (2.15.0-2ubuntu1) ... 161s Selecting previously unselected package libffi-dev:s390x. 161s Preparing to unpack .../066-libffi-dev_3.4.7-1_s390x.deb ... 161s Unpacking libffi-dev:s390x (3.4.7-1) ... 161s Selecting previously unselected package libblkid-dev:s390x. 161s Preparing to unpack .../067-libblkid-dev_2.40.2-14ubuntu1_s390x.deb ... 161s Unpacking libblkid-dev:s390x (2.40.2-14ubuntu1) ... 161s Selecting previously unselected package libsepol-dev:s390x. 161s Preparing to unpack .../068-libsepol-dev_3.8-1_s390x.deb ... 161s Unpacking libsepol-dev:s390x (3.8-1) ... 161s Selecting previously unselected package libpcre2-16-0:s390x. 161s Preparing to unpack .../069-libpcre2-16-0_10.45-1_s390x.deb ... 161s Unpacking libpcre2-16-0:s390x (10.45-1) ... 161s Selecting previously unselected package libpcre2-32-0:s390x. 161s Preparing to unpack .../070-libpcre2-32-0_10.45-1_s390x.deb ... 161s Unpacking libpcre2-32-0:s390x (10.45-1) ... 161s Selecting previously unselected package libpcre2-posix3:s390x. 161s Preparing to unpack .../071-libpcre2-posix3_10.45-1_s390x.deb ... 161s Unpacking libpcre2-posix3:s390x (10.45-1) ... 161s Selecting previously unselected package libpcre2-dev:s390x. 161s Preparing to unpack .../072-libpcre2-dev_10.45-1_s390x.deb ... 161s Unpacking libpcre2-dev:s390x (10.45-1) ... 161s Selecting previously unselected package libselinux1-dev:s390x. 161s Preparing to unpack .../073-libselinux1-dev_3.7-3ubuntu2_s390x.deb ... 161s Unpacking libselinux1-dev:s390x (3.7-3ubuntu2) ... 161s Selecting previously unselected package libmount-dev:s390x. 161s Preparing to unpack .../074-libmount-dev_2.40.2-14ubuntu1_s390x.deb ... 161s Unpacking libmount-dev:s390x (2.40.2-14ubuntu1) ... 161s Selecting previously unselected package libsysprof-capture-4-dev:s390x. 161s Preparing to unpack .../075-libsysprof-capture-4-dev_48~beta-2_s390x.deb ... 161s Unpacking libsysprof-capture-4-dev:s390x (48~beta-2) ... 161s Selecting previously unselected package libgio-2.0-dev:s390x. 161s Preparing to unpack .../076-libgio-2.0-dev_2.83.3-2_s390x.deb ... 161s Unpacking libgio-2.0-dev:s390x (2.83.3-2) ... 161s Selecting previously unselected package libglib2.0-bin. 161s Preparing to unpack .../077-libglib2.0-bin_2.83.3-2_s390x.deb ... 161s Unpacking libglib2.0-bin (2.83.3-2) ... 161s Selecting previously unselected package python3-packaging. 161s Preparing to unpack .../078-python3-packaging_24.2-1_all.deb ... 161s Unpacking python3-packaging (24.2-1) ... 161s Selecting previously unselected package libgio-2.0-dev-bin. 161s Preparing to unpack .../079-libgio-2.0-dev-bin_2.83.3-2_s390x.deb ... 161s Unpacking libgio-2.0-dev-bin (2.83.3-2) ... 161s Selecting previously unselected package libglib2.0-dev-bin. 161s Preparing to unpack .../080-libglib2.0-dev-bin_2.83.3-2_s390x.deb ... 161s Unpacking libglib2.0-dev-bin (2.83.3-2) ... 161s Selecting previously unselected package libglib2.0-dev:s390x. 161s Preparing to unpack .../081-libglib2.0-dev_2.83.3-2_s390x.deb ... 161s Unpacking libglib2.0-dev:s390x (2.83.3-2) ... 161s Selecting previously unselected package libpixman-1-dev:s390x. 161s Preparing to unpack .../082-libpixman-1-dev_0.44.0-3_s390x.deb ... 161s Unpacking libpixman-1-dev:s390x (0.44.0-3) ... 161s Selecting previously unselected package x11-common. 161s Preparing to unpack .../083-x11-common_1%3a7.7+23ubuntu3_all.deb ... 161s Unpacking x11-common (1:7.7+23ubuntu3) ... 161s Selecting previously unselected package libice6:s390x. 161s Preparing to unpack .../084-libice6_2%3a1.1.1-1_s390x.deb ... 161s Unpacking libice6:s390x (2:1.1.1-1) ... 161s Selecting previously unselected package libsm6:s390x. 161s Preparing to unpack .../085-libsm6_2%3a1.2.4-1_s390x.deb ... 161s Unpacking libsm6:s390x (2:1.2.4-1) ... 161s Selecting previously unselected package xorg-sgml-doctools. 161s Preparing to unpack .../086-xorg-sgml-doctools_1%3a1.11-1.1_all.deb ... 161s Unpacking xorg-sgml-doctools (1:1.11-1.1) ... 161s Selecting previously unselected package x11proto-dev. 161s Preparing to unpack .../087-x11proto-dev_2024.1-1_all.deb ... 161s Unpacking x11proto-dev (2024.1-1) ... 161s Selecting previously unselected package x11proto-core-dev. 161s Preparing to unpack .../088-x11proto-core-dev_2024.1-1_all.deb ... 161s Unpacking x11proto-core-dev (2024.1-1) ... 161s Selecting previously unselected package libice-dev:s390x. 161s Preparing to unpack .../089-libice-dev_2%3a1.1.1-1_s390x.deb ... 161s Unpacking libice-dev:s390x (2:1.1.1-1) ... 161s Selecting previously unselected package libsm-dev:s390x. 161s Preparing to unpack .../090-libsm-dev_2%3a1.2.4-1_s390x.deb ... 161s Unpacking libsm-dev:s390x (2:1.2.4-1) ... 161s Selecting previously unselected package libxau-dev:s390x. 161s Preparing to unpack .../091-libxau-dev_1%3a1.0.11-1_s390x.deb ... 161s Unpacking libxau-dev:s390x (1:1.0.11-1) ... 161s Selecting previously unselected package libxdmcp-dev:s390x. 161s Preparing to unpack .../092-libxdmcp-dev_1%3a1.1.5-1_s390x.deb ... 161s Unpacking libxdmcp-dev:s390x (1:1.1.5-1) ... 161s Selecting previously unselected package xtrans-dev. 161s Preparing to unpack .../093-xtrans-dev_1.4.0-1_all.deb ... 161s Unpacking xtrans-dev (1.4.0-1) ... 161s Selecting previously unselected package libxcb1-dev:s390x. 161s Preparing to unpack .../094-libxcb1-dev_1.17.0-2_s390x.deb ... 161s Unpacking libxcb1-dev:s390x (1.17.0-2) ... 161s Selecting previously unselected package libx11-dev:s390x. 161s Preparing to unpack .../095-libx11-dev_2%3a1.8.10-2_s390x.deb ... 161s Unpacking libx11-dev:s390x (2:1.8.10-2) ... 161s Selecting previously unselected package libxcb-render0-dev:s390x. 161s Preparing to unpack .../096-libxcb-render0-dev_1.17.0-2_s390x.deb ... 161s Unpacking libxcb-render0-dev:s390x (1.17.0-2) ... 161s Selecting previously unselected package libxcb-shm0-dev:s390x. 161s Preparing to unpack .../097-libxcb-shm0-dev_1.17.0-2_s390x.deb ... 161s Unpacking libxcb-shm0-dev:s390x (1.17.0-2) ... 161s Selecting previously unselected package libxext-dev:s390x. 161s Preparing to unpack .../098-libxext-dev_2%3a1.3.4-1build2_s390x.deb ... 161s Unpacking libxext-dev:s390x (2:1.3.4-1build2) ... 161s Selecting previously unselected package libxrender-dev:s390x. 161s Preparing to unpack .../099-libxrender-dev_1%3a0.9.10-1.1build1_s390x.deb ... 161s Unpacking libxrender-dev:s390x (1:0.9.10-1.1build1) ... 161s Selecting previously unselected package libcairo2-dev:s390x. 161s Preparing to unpack .../100-libcairo2-dev_1.18.2-2_s390x.deb ... 161s Unpacking libcairo2-dev:s390x (1.18.2-2) ... 161s Selecting previously unselected package libstdlib-ocaml. 161s Preparing to unpack .../101-libstdlib-ocaml_5.3.0-2_s390x.deb ... 161s Unpacking libstdlib-ocaml (5.3.0-2) ... 161s Selecting previously unselected package ocaml-base. 161s Preparing to unpack .../102-ocaml-base_5.3.0-2_s390x.deb ... 161s Unpacking ocaml-base (5.3.0-2) ... 161s Selecting previously unselected package libcairo2-ocaml. 161s Preparing to unpack .../103-libcairo2-ocaml_0.6.5-2build1_s390x.deb ... 161s Unpacking libcairo2-ocaml (0.6.5-2build1) ... 161s Selecting previously unselected package libstdlib-ocaml-dev. 161s Preparing to unpack .../104-libstdlib-ocaml-dev_5.3.0-2_s390x.deb ... 161s Unpacking libstdlib-ocaml-dev (5.3.0-2) ... 161s Selecting previously unselected package libcompiler-libs-ocaml-dev. 161s Preparing to unpack .../105-libcompiler-libs-ocaml-dev_5.3.0-2_s390x.deb ... 161s Unpacking libcompiler-libs-ocaml-dev (5.3.0-2) ... 162s Selecting previously unselected package ocaml-interp. 162s Preparing to unpack .../106-ocaml-interp_5.3.0-2_s390x.deb ... 162s Unpacking ocaml-interp (5.3.0-2) ... 162s Selecting previously unselected package libncurses-dev:s390x. 162s Preparing to unpack .../107-libncurses-dev_6.5+20250125-2_s390x.deb ... 162s Unpacking libncurses-dev:s390x (6.5+20250125-2) ... 162s Selecting previously unselected package libzstd-dev:s390x. 162s Preparing to unpack .../108-libzstd-dev_1.5.6+dfsg-2_s390x.deb ... 162s Unpacking libzstd-dev:s390x (1.5.6+dfsg-2) ... 162s Selecting previously unselected package ocaml. 162s Preparing to unpack .../109-ocaml_5.3.0-2_s390x.deb ... 162s Unpacking ocaml (5.3.0-2) ... 162s Selecting previously unselected package libcairo2-ocaml-dev. 162s Preparing to unpack .../110-libcairo2-ocaml-dev_0.6.5-2build1_s390x.deb ... 162s Unpacking libcairo2-ocaml-dev (0.6.5-2build1) ... 162s Selecting previously unselected package libconfig-tiny-perl. 162s Preparing to unpack .../111-libconfig-tiny-perl_2.30-1_all.deb ... 162s Unpacking libconfig-tiny-perl (2.30-1) ... 162s Selecting previously unselected package libdune-ocaml-dev. 162s Preparing to unpack .../112-libdune-ocaml-dev_3.17.2-1_s390x.deb ... 162s Unpacking libdune-ocaml-dev (3.17.2-1) ... 162s Selecting previously unselected package libfindlib-ocaml. 162s Preparing to unpack .../113-libfindlib-ocaml_1.9.8-1_s390x.deb ... 162s Unpacking libfindlib-ocaml (1.9.8-1) ... 162s Selecting previously unselected package libgraphics-ocaml. 162s Preparing to unpack .../114-libgraphics-ocaml_5.1.2-3build5_s390x.deb ... 162s Unpacking libgraphics-ocaml (5.1.2-3build5) ... 162s Selecting previously unselected package libgraphics-ocaml-dev. 162s Preparing to unpack .../115-libgraphics-ocaml-dev_5.1.2-3build5_s390x.deb ... 162s Unpacking libgraphics-ocaml-dev (5.1.2-3build5) ... 162s Selecting previously unselected package ocaml-dune. 162s Preparing to unpack .../116-ocaml-dune_3.17.2-1_s390x.deb ... 162s Unpacking ocaml-dune (3.17.2-1) ... 162s Selecting previously unselected package ocaml-findlib. 162s Preparing to unpack .../117-ocaml-findlib_1.9.8-1_s390x.deb ... 162s Unpacking ocaml-findlib (1.9.8-1) ... 162s Selecting previously unselected package dh-ocaml. 162s Preparing to unpack .../118-dh-ocaml_2.4_all.deb ... 162s Unpacking dh-ocaml (2.4) ... 162s Setting up libpixman-1-0:s390x (0.44.0-3) ... 163s Setting up libncurses-dev:s390x (6.5+20250125-2) ... 163s Setting up libpixman-1-dev:s390x (0.44.0-3) ... 163s Setting up native-architecture (0.2.5) ... 163s Setting up libzstd-dev:s390x (1.5.6+dfsg-2) ... 163s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 163s Setting up libgirepository-2.0-0:s390x (2.83.3-2) ... 163s Setting up libxcb-render0:s390x (1.17.0-2) ... 163s Setting up libarchive-zip-perl (1.68-1) ... 163s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 163s Setting up x11-common (1:7.7+23ubuntu3) ... 163s Setting up libglib2.0-bin (2.83.3-2) ... 163s Setting up m4 (1.4.19-5) ... 163s Setting up libxcb-shm0:s390x (1.17.0-2) ... 163s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 163s Setting up libconfig-tiny-perl (2.30-1) ... 163s Setting up libffi-dev:s390x (3.4.7-1) ... 163s Setting up libpcre2-16-0:s390x (10.45-1) ... 163s Setting up ocaml-dune (3.17.2-1) ... 163s Setting up libsysprof-capture-4-dev:s390x (48~beta-2) ... 163s Setting up xtrans-dev (1.4.0-1) ... 163s Setting up autotools-dev (20220109.1) ... 163s Setting up libpcre2-32-0:s390x (10.45-1) ... 163s Setting up python3-packaging (24.2-1) ... 163s Setting up libpkgconf3:s390x (1.8.1-4) ... 163s Setting up libexpat1-dev:s390x (2.6.4-1) ... 163s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 163s Setting up uuid-dev:s390x (2.40.2-14ubuntu1) ... 163s Setting up libstdlib-ocaml (5.3.0-2) ... 163s Setting up fonts-dejavu-mono (2.37-8) ... 163s Setting up libmpc3:s390x (1.3.1-1build2) ... 163s Setting up libatomic1:s390x (15-20250213-1ubuntu1) ... 163s Setting up autopoint (0.23.1-1) ... 163s Setting up ocaml-base (5.3.0-2) ... 163s Setting up fonts-dejavu-core (2.37-8) ... 163s Setting up libsepol-dev:s390x (3.8-1) ... 163s Setting up pkgconf-bin (1.8.1-4) ... 163s Setting up libgraphics-ocaml (5.1.2-3build5) ... 163s Setting up autoconf (2.72-3) ... 163s Setting up libubsan1:s390x (15-20250213-1ubuntu1) ... 163s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 163s Setting up libpcre2-posix3:s390x (10.45-1) ... 163s Setting up dwz (0.15-1build6) ... 163s Setting up libasan8:s390x (15-20250213-1ubuntu1) ... 163s Setting up debugedit (1:5.1-2) ... 163s Setting up xorg-sgml-doctools (1:1.11-1.1) ... 163s Setting up libisl23:s390x (0.27-1) ... 163s Setting up libcc1-0:s390x (15-20250213-1ubuntu1) ... 163s Setting up libbrotli-dev:s390x (1.1.0-2build3) ... 163s Setting up libitm1:s390x (15-20250213-1ubuntu1) ... 163s Setting up libbz2-dev:s390x (1.0.8-6) ... 163s Setting up automake (1:1.17-3) ... 163s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 163s Setting up x11proto-dev (2024.1-1) ... 163s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 163s Setting up libblkid-dev:s390x (2.40.2-14ubuntu1) ... 163s Setting up libice6:s390x (2:1.1.1-1) ... 163s Setting up libgio-2.0-dev-bin (2.83.3-2) ... 163s Setting up gettext (0.23.1-1) ... 163s Setting up girepository-tools:s390x (2.83.3-2) ... 163s Setting up libxau-dev:s390x (1:1.0.11-1) ... 163s Setting up libpcre2-dev:s390x (10.45-1) ... 163s Setting up libice-dev:s390x (2:1.1.1-1) ... 163s Setting up libstdlib-ocaml-dev (5.3.0-2) ... 163s Setting up libselinux1-dev:s390x (3.7-3ubuntu2) ... 163s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 163s Setting up libpng-dev:s390x (1.6.46-4) ... 163s Setting up dh-ocaml (2.4) ... 163s Setting up libfindlib-ocaml (1.9.8-1) ... 163s Setting up pkgconf:s390x (1.8.1-4) ... 163s Setting up libfreetype-dev:s390x (2.13.3+dfsg-1) ... 163s Setting up intltool-debian (0.35.0+20060710.6) ... 163s Setting up libcompiler-libs-ocaml-dev (5.3.0-2) ... 163s Setting up libxdmcp-dev:s390x (1:1.1.5-1) ... 163s Setting up ocaml-interp (5.3.0-2) ... 163s Setting up x11proto-core-dev (2024.1-1) ... 163s Setting up ocaml-findlib (1.9.8-1) ... 163s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 163s Setting up cpp-14 (14.2.0-17ubuntu1) ... 163s Setting up dh-strip-nondeterminism (1.14.1-2) ... 163s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 163s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 163s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 163s Setting up libsm6:s390x (2:1.2.4-1) ... 163s Setting up libmount-dev:s390x (2.40.2-14ubuntu1) ... 163s Setting up libglib2.0-dev-bin (2.83.3-2) ... 163s Setting up libgio-2.0-dev:s390x (2.83.3-2) ... 163s Setting up libxcb1-dev:s390x (1.17.0-2) ... 163s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 163s Setting up libfontconfig-dev:s390x (2.15.0-2ubuntu1) ... 163s Setting up libsm-dev:s390x (2:1.2.4-1) ... 163s Setting up po-debconf (1.0.21+nmu1) ... 163s Setting up libx11-dev:s390x (2:1.8.10-2) ... 163s Setting up libcairo2:s390x (1.18.2-2) ... 163s Setting up libxcb-shm0-dev:s390x (1.17.0-2) ... 163s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 163s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 163s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 163s Setting up libxcb-render0-dev:s390x (1.17.0-2) ... 163s Setting up libxext-dev:s390x (2:1.3.4-1build2) ... 163s Setting up cpp (4:14.2.0-1ubuntu1) ... 163s Setting up libcairo-gobject2:s390x (1.18.2-2) ... 163s Setting up libxrender-dev:s390x (1:0.9.10-1.1build1) ... 163s Setting up libcairo-script-interpreter2:s390x (1.18.2-2) ... 163s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 163s Setting up libcairo2-ocaml (0.6.5-2build1) ... 163s Setting up gcc-14 (14.2.0-17ubuntu1) ... 163s Setting up g++-14 (14.2.0-17ubuntu1) ... 163s Setting up libtool (2.5.4-3build1) ... 163s Setting up gcc (4:14.2.0-1ubuntu1) ... 163s Setting up dh-autoreconf (20) ... 163s Setting up g++ (4:14.2.0-1ubuntu1) ... 163s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 163s Setting up build-essential (12.10ubuntu1) ... 163s Setting up debhelper (13.24.1ubuntu2) ... 163s Setting up ocaml (5.3.0-2) ... 163s Setting up libcairo2-ocaml-dev (0.6.5-2build1) ... 163s Setting up libdune-ocaml-dev (3.17.2-1) ... 163s Setting up libgraphics-ocaml-dev (5.1.2-3build5) ... 163s Processing triggers for install-info (7.1.1-1) ... 163s Processing triggers for libc-bin (2.41-1ubuntu1) ... 163s Processing triggers for man-db (2.13.0-1) ... 164s Processing triggers for libglib2.0-0t64:s390x (2.83.3-2) ... 164s No schema files found: doing nothing. 164s Setting up libglib2.0-dev:s390x (2.83.3-2) ... 164s Setting up libcairo2-dev:s390x (1.18.2-2) ... 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libcairo2-ocaml-dev'], kind short, sout pipe, serr pipe, env [] 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libcairo2-ocaml'], kind short, sout pipe, serr pipe, env [] 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.oJkuFg/examples-packages.all"], kind short, sout raw, serr pipe, env [] 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.oJkuFg/examples-packages.all /tmp/autopkgtest-work.zgy9ft2y/out/examples-packages.all 165s autopkgtest: DBG: got reply from testbed: ok 165s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.oJkuFg/build.krK/src'], kind short, sout raw, serr raw, env [] 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.oJkuFg/build.krK/src already exists 165s autopkgtest [01:17:12]: test examples: [----------------------- 165s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.oJkuFg/wrapper.sh --debug --artifacts=/tmp/autopkgtest.oJkuFg/examples-artifacts --chdir=/tmp/autopkgtest.oJkuFg/build.krK/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.oJkuFg/examples-stderr --stdout=/tmp/autopkgtest.oJkuFg/examples-stdout --tmp=/tmp/autopkgtest.oJkuFg/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' --make-executable=/tmp/autopkgtest.oJkuFg/build.krK/src/debian/tests/examples -- /tmp/autopkgtest.oJkuFg/build.krK/src/debian/tests/examples"], kind test, sout raw, serr raw, env [] 165s /tmp/autopkgtest.oJkuFg/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.oJkuFg/examples-artifacts 165s /tmp/autopkgtest.oJkuFg/wrapper.sh: changing to directory: /tmp/autopkgtest.oJkuFg/build.krK/src 165s /tmp/autopkgtest.oJkuFg/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 165s /tmp/autopkgtest.oJkuFg/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 165s /tmp/autopkgtest.oJkuFg/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 165s /tmp/autopkgtest.oJkuFg/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 165s /tmp/autopkgtest.oJkuFg/wrapper.sh: setting environment: LANG=C.UTF-8 165s /tmp/autopkgtest.oJkuFg/wrapper.sh: unsetting environment: LANGUAGE 165s /tmp/autopkgtest.oJkuFg/wrapper.sh: unsetting environment: LC_ADDRESS 165s /tmp/autopkgtest.oJkuFg/wrapper.sh: unsetting environment: LC_ALL 165s /tmp/autopkgtest.oJkuFg/wrapper.sh: unsetting environment: LC_COLLATE 165s /tmp/autopkgtest.oJkuFg/wrapper.sh: unsetting environment: LC_CTYPE 165s /tmp/autopkgtest.oJkuFg/wrapper.sh: unsetting environment: LC_IDENTIFICATION 165s /tmp/autopkgtest.oJkuFg/wrapper.sh: unsetting environment: LC_MEASUREMENT 165s /tmp/autopkgtest.oJkuFg/wrapper.sh: unsetting environment: LC_MESSAGES 165s /tmp/autopkgtest.oJkuFg/wrapper.sh: unsetting environment: LC_MONETARY 165s /tmp/autopkgtest.oJkuFg/wrapper.sh: unsetting environment: LC_NAME 165s /tmp/autopkgtest.oJkuFg/wrapper.sh: unsetting environment: LC_NUMERIC 165s /tmp/autopkgtest.oJkuFg/wrapper.sh: unsetting environment: LC_PAPER 165s /tmp/autopkgtest.oJkuFg/wrapper.sh: unsetting environment: LC_TELEPHONE 165s /tmp/autopkgtest.oJkuFg/wrapper.sh: unsetting environment: LC_TIME 165s /tmp/autopkgtest.oJkuFg/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 165s /tmp/autopkgtest.oJkuFg/wrapper.sh: pretending to be a login shell 165s /tmp/autopkgtest.oJkuFg/wrapper.sh: will write standard error to /tmp/autopkgtest.oJkuFg/examples-stderr 165s /tmp/autopkgtest.oJkuFg/wrapper.sh: will write stdout to /tmp/autopkgtest.oJkuFg/examples-stdout 165s /tmp/autopkgtest.oJkuFg/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.oJkuFg/autopkgtest_tmp 165s /tmp/autopkgtest.oJkuFg/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 165s /tmp/autopkgtest.oJkuFg/wrapper.sh: marking as executable: /tmp/autopkgtest.oJkuFg/build.krK/src/debian/tests/examples 165s /tmp/autopkgtest.oJkuFg/wrapper.sh: command to run: /tmp/autopkgtest.oJkuFg/build.krK/src/debian/tests/examples 165s /tmp/autopkgtest.oJkuFg/wrapper.sh: copying /tmp/tmp.Dv6LRWE646/out to stdout and file: /tmp/autopkgtest.oJkuFg/examples-stdout 165s /tmp/autopkgtest.oJkuFg/wrapper.sh: copying /tmp/tmp.Dv6LRWE646/err to standard error and file: /tmp/autopkgtest.oJkuFg/examples-stdout 165s /tmp/autopkgtest.oJkuFg/wrapper.sh: writing script pid 3001 to /tmp/autopkgtest_script_pid 165s compile examples. 166s execute compiled examples. 166s executing compiled example examples/arcs.exe. 166s executing compiled example examples/clip.exe. 166s executing compiled example examples/curve_to.exe. 166s executing compiled example examples/dash.exe. 166s executing compiled example examples/fill_stroke.exe. 166s executing compiled example examples/fill_style.exe. 166s executing compiled example examples/gradient.exe. 166s executing compiled example examples/pythagoras_tree.exe. 166s executing compiled example examples/recording.exe. 166s extents = {x=24; y=24; w=96; h=96} 166s executing compiled example examples/set_line_cap.exe. 166s executing compiled example examples/set_line_join.exe. 166s executing compiled example examples/text.exe. 166s executing compiled example examples/text_align_center.exe. 166s executing compiled example examples/text_extents.exe. 166s executing compiled example examples/text_rotate.exe. 166s /tmp/autopkgtest.oJkuFg/wrapper.sh: checking for leaked background processes... 166s /tmp/autopkgtest.oJkuFg/wrapper.sh: waiting for tee/cat subprocesses... 166s /tmp/autopkgtest.oJkuFg/wrapper.sh: cleaning up... 166s /tmp/autopkgtest.oJkuFg/wrapper.sh: Exit status: 0 166s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest [01:17:14]: test examples: -----------------------] 167s autopkgtest: DBG: testbed executing test finished with exit status 0 167s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.oJkuFg/examples-stdout /tmp/autopkgtest-work.zgy9ft2y/out/examples-stdout 167s autopkgtest: DBG: got reply from testbed: ok 167s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.oJkuFg/examples-stderr /tmp/autopkgtest-work.zgy9ft2y/out/examples-stderr 167s autopkgtest: DBG: got reply from testbed: ok 167s autopkgtest [01:17:14]: test examples: - - - - - - - - - - results - - - - - - - - - - 167s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.oJkuFg/examples-artifacts/ /tmp/autopkgtest-work.zgy9ft2y/out/artifacts/ 167s examples PASS 169s autopkgtest: DBG: got reply from testbed: ok 169s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.oJkuFg/examples-artifacts', '/tmp/autopkgtest.oJkuFg/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 169s autopkgtest: DBG: testbed command exited with code 0 169s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 169s autopkgtest [01:17:16]: @@@@@@@@@@@@@@@@@@@@ summary 169s examples PASS 169s autopkgtest: DBG: testbed stop 169s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.oJkuFg 169s autopkgtest: DBG: sending command to testbed: close 186s autopkgtest: DBG: got reply from testbed: ok 186s autopkgtest: DBG: sending command to testbed: quit 186s nova [W] Using flock in prodstack6-s390x 186s Creating nova instance adt-plucky-s390x-ocaml-cairo2-20250216-011426-juju-7f2275-prod-proposed-migration-environment-15-2b124444-88a8-4375-ac7c-5537b79b2e75 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 186s nova [W] Timed out waiting for a65e5bd5-583b-43b4-b57c-4805801c159c to get deleted.