0s autopkgtest: DBG: testbed init 0s autopkgtest [01:10:56]: starting date and time: 2025-02-04 01:10:56+0000 0s autopkgtest [01:10:56]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [01:10:56]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.coe4ribb/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:r-cran-testthat --apt-upgrade r-cran-graphlayouts --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=r-cran-testthat/3.2.3-1 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-14.secgroup --name adt-plucky-s390x-r-cran-graphlayouts-20250204-011056-juju-7f2275-prod-proposed-migration-environment-15-facd2716-0e00-4f39-904b-2ef29f22c8d6 --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 276s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.DfWQj9 276s autopkgtest: DBG: sending command to testbed: print-execute-command 276s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.xh3a01yv/runcmd 276s autopkgtest: DBG: sending command to testbed: capabilities 276s autopkgtest: DBG: got reply from testbed: ok revert-full-system reboot isolation-machine suggested-normal-user=ubuntu revert root-on-testbed 276s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'reboot', 'isolation-machine', 'suggested-normal-user=ubuntu', 'revert', 'root-on-testbed', 'has_internet'] 276s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.DfWQj9'], kind short, sout raw, serr pipe, env [] 277s autopkgtest: DBG: testbed command exited with code 0 277s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.DfWQj9/wrapper.sh 277s autopkgtest: DBG: got reply from testbed: ok 277s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.DfWQj9/wrapper.sh'], kind short, sout raw, serr pipe, env [] 277s autopkgtest: DBG: testbed command exited with code 0 277s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 278s autopkgtest: DBG: testbed command exited with code 0 278s autopkgtest [01:15:34]: testbed dpkg architecture: s390x 278s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 278s autopkgtest: DBG: testbed command exited with code 0 278s autopkgtest [01:15:34]: testbed apt version: 2.9.18 278s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 278s autopkgtest: DBG: testbed command exited with code 0 278s autopkgtest: DBG: testbed has eatmydata 278s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 278s autopkgtest: DBG: testbed command exited with code 0 278s autopkgtest [01:15:34]: @@@@@@@@@@@@@@@@@@@@ test bed setup 278s 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 [] 279s autopkgtest: DBG: testbed command exited with code 0 279s autopkgtest [01:15:35]: testbed release detected to be: None 279s 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 [] 279s autopkgtest: DBG: testbed command exited with code 0 279s 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 [] 279s autopkgtest: DBG: testbed command exited with code 0 279s autopkgtest: DBG: adding APT source: Types: deb deb-src 279s URIs: http://ftpmaster.internal/ubuntu/ 279s Suites: plucky-proposed 279s Components: main restricted universe multiverse 279s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 279s 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 [] 279s autopkgtest: DBG: testbed command exited with code 0 279s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 279s Package: * 279s Pin: release plucky-proposed 279s Pin-Priority: 500 279s 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 [] 280s autopkgtest: DBG: testbed command exited with code 0 280s autopkgtest [01:15:36]: updating testbed package index (apt update) 280s 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'] 280s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 281s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 281s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 281s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 281s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [882 kB] 282s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [75.6 kB] 282s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.8 kB] 282s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [107 kB] 282s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [780 kB] 283s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3348 B] 283s Fetched 1973 kB in 3s (662 kB/s) 284s Reading package lists... 284s autopkgtest: DBG: testbed command exited with code 0 284s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 284s Package: * 284s Pin: release plucky-proposed 284s Pin-Priority: 100 284s 284s Package: src:r-cran-testthat:any 284s Pin: release plucky-proposed 284s Pin-Priority: 995 284s 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:r-cran-testthat:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 284s autopkgtest: DBG: testbed command exited with code 0 284s 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.DfWQj9/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 284s autopkgtest: DBG: testbed command exited with code 0 284s 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'] 285s + lsb_release --codename --short 285s + RELEASE=plucky 285s + cat 285s + [ plucky != trusty ] 285s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 285s Reading package lists... 285s Building dependency tree... 285s Reading state information... 285s Calculating upgrade... 285s The following packages were automatically installed and are no longer required: 285s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 285s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 285s linux-tools-6.11.0-8-generic 285s Use 'sudo apt autoremove' to remove them. 285s The following packages will be upgraded: 285s wireless-regdb 285s 1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 285s Need to get 7214 B of archives. 285s After this operation, 0 B of additional disk space will be used. 285s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x wireless-regdb all 2024.10.07-0ubuntu1 [7214 B] 285s Fetched 7214 B in 0s (50.7 kB/s) 285s (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 ... 80938 files and directories currently installed.) 285s Preparing to unpack .../wireless-regdb_2024.10.07-0ubuntu1_all.deb ... 285s Unpacking wireless-regdb (2024.10.07-0ubuntu1) over (2024.07.04-0ubuntu1) ... 285s Setting up wireless-regdb (2024.10.07-0ubuntu1) ... 285s Processing triggers for man-db (2.13.0-1) ... 286s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 286s + /usr/lib/apt/apt-helper analyze-pattern ?true 286s + uname+ sed s/\./\\./g 286s -r 286s + running_kernel_pattern=^linux-.*6\.12\.0-12-generic.* 286s + apt list ?obsolete 286s + tail -n+2 286s + cut -d/ -f1 286s + grep -v ^linux-.*6\.12\.0-12-generic.* 286s + true 286s + obsolete_pkgs= 286s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 286s Reading package lists... 286s Building dependency tree... 286s Reading state information... 286s The following packages will be REMOVED: 286s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 286s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 286s linux-tools-6.11.0-8-generic* 286s 0 upgraded, 0 newly installed, 5 to remove and 0 not upgraded. 286s After this operation, 143 MB disk space will be freed. 286s (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 ... 80938 files and directories currently installed.) 286s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 286s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 287s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 287s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 287s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 287s (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 ... 56531 files and directories currently installed.) 287s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 287s + grep -q trusty /etc/lsb-release 287s + [ ! -d /usr/share/doc/unattended-upgrades ] 288s + [ ! -d /usr/share/doc/lxd ] 288s + [ ! -d /usr/share/doc/lxd-client ] 288s + [ ! -d /usr/share/doc/snapd ] 288s + type iptables 288s + cat 288s + chmod 755 /etc/rc.local 288s + . /etc/rc.local 288s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 288s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 288s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 288s + uname -m 288s + [ s390x = ppc64le ] 288s + [ -d /run/systemd/system ] 288s + systemd-detect-virt --quiet --vm 288s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 288s + cat 288s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 288s + echo COMPRESS=lz4 288s autopkgtest: DBG: testbed command exited with code 0 288s autopkgtest [01:15:44]: upgrading testbed (apt dist-upgrade and autopurge) 288s 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'] 288s Reading package lists... 288s Building dependency tree... 288s Reading state information... 288s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 288s Starting 2 pkgProblemResolver with broken count: 0 288s Done 288s Entering ResolveByKeep 288s 288s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 288s autopkgtest: DBG: testbed command exited with code 0 288s 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'] 289s Reading package lists... 289s Building dependency tree... 289s Reading state information... 289s Starting pkgProblemResolver with broken count: 0 289s Starting 2 pkgProblemResolver with broken count: 0 289s Done 289s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 289s autopkgtest: DBG: testbed command exited with code 0 289s 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.DfWQj9/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 289s autopkgtest: DBG: testbed command exited with code 1 289s autopkgtest [01:15:45]: rebooting testbed after setup commands that affected boot 289s autopkgtest: DBG: sending command to testbed: reboot 305s autopkgtest: DBG: got reply from testbed: ok 305s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 305s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.DfWQj9'], kind short, sout raw, serr pipe, env [] 305s autopkgtest: DBG: testbed command exited with code 0 305s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.DfWQj9/autopkgtest-reboot 306s autopkgtest: DBG: got reply from testbed: ok 306s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.DfWQj9/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 306s autopkgtest: DBG: testbed command exited with code 0 306s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.DfWQj9/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 306s autopkgtest: DBG: testbed command exited with code 0 306s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.DfWQj9/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 307s autopkgtest: DBG: testbed command exited with code 0 307s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.DfWQj9'], kind short, sout raw, serr pipe, env [] 307s autopkgtest: DBG: testbed command exited with code 0 307s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.DfWQj9/autopkgtest-reboot-prepare 307s autopkgtest: DBG: got reply from testbed: ok 307s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.DfWQj9/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 307s autopkgtest: DBG: testbed command exited with code 0 307s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.DfWQj9/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 308s autopkgtest: DBG: testbed command exited with code 0 308s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 308s autopkgtest: DBG: testbed command exited with code 0 308s autopkgtest [01:16:04]: testbed running kernel: Linux 6.12.0-12-generic #12-Ubuntu SMP Wed Jan 22 15:18:24 UTC 2025 308s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 308s autopkgtest: DBG: testbed command exited with code 0 308s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.DfWQj9/testbed-packages"], kind short, sout raw, serr pipe, env [] 309s autopkgtest: DBG: testbed command exited with code 0 309s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.DfWQj9/testbed-packages /tmp/autopkgtest-work.coe4ribb/out/testbed-packages 309s autopkgtest: DBG: got reply from testbed: ok 309s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 309s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.DfWQj9'], kind short, sout raw, serr pipe, env [] 309s autopkgtest: DBG: testbed command exited with code 0 309s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.DfWQj9/autopkgtest-reboot 310s autopkgtest: DBG: got reply from testbed: ok 310s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.DfWQj9/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 310s autopkgtest: DBG: testbed command exited with code 0 310s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.DfWQj9/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 310s autopkgtest: DBG: testbed command exited with code 0 310s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.DfWQj9/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 311s autopkgtest: DBG: testbed command exited with code 0 311s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.DfWQj9'], kind short, sout raw, serr pipe, env [] 311s autopkgtest: DBG: testbed command exited with code 0 311s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.DfWQj9/autopkgtest-reboot-prepare 312s autopkgtest: DBG: got reply from testbed: ok 312s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.DfWQj9/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 312s autopkgtest: DBG: testbed command exited with code 0 312s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.DfWQj9/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 312s autopkgtest: DBG: testbed command exited with code 0 312s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 313s autopkgtest: DBG: testbed command exited with code 0 313s autopkgtest: DBG: Binaries: initialising 313s autopkgtest [01:16:09]: @@@@@@@@@@@@@@@@@@@@ apt-source r-cran-graphlayouts 313s autopkgtest: DBG: blame += r-cran-graphlayouts 313s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 313s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'r-cran-graphlayouts'], kind short, sout pipe, serr pipe, env [] 313s autopkgtest: DBG: testbed command exited with code 0 313s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^r-cran-graphlayouts$'], kind short, sout pipe, serr raw, env [] 313s autopkgtest: DBG: testbed command exited with code 0 313s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'r-cran-graphlayouts=1.2.1-1'], kind short, sout pipe, serr raw, env [] 314s autopkgtest: DBG: testbed command exited with code 0 314s autopkgtest: DBG: install_deps: deps_new=[] 314s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 314s autopkgtest: DBG: testbed command exited with code 0 314s 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.DfWQj9/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source r-cran-graphlayouts=1.2.1-1 2>&1) || RC=$?;if [ -n "$RC" ]; then if echo "$OUT" | grep -q "Unable to find a source package"; then exit 1; else exit $RC; fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x r-cran-graphlayouts_*.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=r-cran-testthat/3.2.3-1'] 314s + cd / 314s + mktemp -d /tmp/autopkgtest.DfWQj9/build.XXX 314s + builddir=/tmp/autopkgtest.DfWQj9/build.z89 314s + cd /tmp/autopkgtest.DfWQj9/build.z89 314s + apt-get source -d -q --only-source r-cran-graphlayouts=1.2.1-1 326s + OUT=Reading package lists... 326s NOTICE: 'r-cran-graphlayouts' packaging is maintained in the 'Git' version control system at: 326s https://salsa.debian.org/r-pkg-team/r-cran-graphlayouts.git 326s Please use: 326s git clone https://salsa.debian.org/r-pkg-team/r-cran-graphlayouts.git 326s to retrieve the latest (possibly unreleased) updates to the package. 326s Need to get 2055 kB of source archives. 326s Get:1 http://ftpmaster.internal/ubuntu plucky/universe r-cran-graphlayouts 1.2.1-1 (dsc) [2268 B] 326s Get:2 http://ftpmaster.internal/ubuntu plucky/universe r-cran-graphlayouts 1.2.1-1 (tar) [2050 kB] 326s Get:3 http://ftpmaster.internal/ubuntu plucky/universe r-cran-graphlayouts 1.2.1-1 (diff) [3296 B] 326s Fetched 2055 kB in 12s (172 kB/s) 326s Download complete and in download only mode 326s + [ -n ] 326s + grep ^Get: 326s + echo Reading package lists... 326s NOTICE: 'r-cran-graphlayouts' packaging is maintained in the 'Git' version control system at: 326s https://salsa.debian.org/r-pkg-team/r-cran-graphlayouts.git 326s Please use: 326s git clone https://salsa.debian.org/r-pkg-team/r-cran-graphlayouts.git 326s to retrieve the latest (possibly unreleased) updates to the package. 326s Need to get 2055 kB of source archives. 326s Get:1 http://ftpmaster.internal/ubuntu plucky/universe r-cran-graphlayouts 1.2.1-1 (dsc) [2268 B] 326s Get:2 http://ftpmaster.internal/ubuntu plucky/universe r-cran-graphlayouts 1.2.1-1 (tar) [2050 kB] 326s Get:3 http://ftpmaster.internal/ubuntu plucky/universe r-cran-graphlayouts 1.2.1-1 (diff) [3296 B] 326s Fetched 2055 kB in 12s (172 kB/s) 326s Download complete and in download only mode 326s Get:1 http://ftpmaster.internal/ubuntu plucky/universe r-cran-graphlayouts 1.2.1-1 (dsc) [2268 B] 326s Get:2 http://ftpmaster.internal/ubuntu plucky/universe r-cran-graphlayouts 1.2.1-1 (tar) [2050 kB] 326s Get:3 http://ftpmaster.internal/ubuntu plucky/universe r-cran-graphlayouts 1.2.1-1 (diff) [3296 B] 326s + dpkg-source -x r-cran-graphlayouts_1.2.1-1.dsc src 326s gpgv: Signature made Mon Jan 20 23:27:31 2025 UTC 326s gpgv: using RSA key 73471499CC60ED9EEE805946C5BD6C8F2295D502 326s gpgv: issuer "plessy@debian.org" 326s gpgv: Can't check signature: No public key 326s dpkg-source: warning: cannot verify inline signature for ./r-cran-graphlayouts_1.2.1-1.dsc: no acceptable signature found 327s + chmod -R a+rX . 327s + cd src/. 327s + pwd 327s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 327s autopkgtest: DBG: testbed command exited with code 0 327s autopkgtest [01:16:23]: testing package r-cran-graphlayouts version 1.2.1-1 327s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.DfWQj9/build.z89/src/debian/ /tmp/autopkgtest-work.coe4ribb/out/pkg/debian/ 327s autopkgtest: DBG: got reply from testbed: ok 327s autopkgtest: DBG: autodep8 generated control: ----- 327s Tests: run-unit-test 327s Depends: @, 327s r-cran-testthat, 327s r-cran-ggplot2, 327s r-cran-uwot, 327s r-cran-oaqc 327s Restrictions: allow-stderr 327s 327s 327s Test-Command: /usr/share/dh-r/pkg-r-autopkgtest 327s Depends: @, pkg-r-autopkgtest, 327s Restrictions: allow-stderr, 327s Features: test-name=pkg-r-autopkgtest 327s 327s ------- 327s autopkgtest: DBG: processing dependency @ 327s autopkgtest: DBG: synthesised dependency r-cran-graphlayouts 327s autopkgtest: DBG: processing dependency r-cran-testthat 327s autopkgtest: DBG: processing dependency r-cran-ggplot2 327s autopkgtest: DBG: processing dependency r-cran-uwot 327s autopkgtest: DBG: processing dependency r-cran-oaqc 327s autopkgtest: DBG: Test defined: name run-unit-test path debian/tests/run-unit-test command "None" restrictions ['allow-stderr'] features [] depends ['r-cran-graphlayouts', 'r-cran-testthat', 'r-cran-ggplot2', 'r-cran-uwot', 'r-cran-oaqc'] 327s autopkgtest: DBG: processing dependency @ 327s autopkgtest: DBG: synthesised dependency r-cran-graphlayouts 327s autopkgtest: DBG: processing dependency pkg-r-autopkgtest 327s autopkgtest: DBG: Test defined: name pkg-r-autopkgtest path None command "/usr/share/dh-r/pkg-r-autopkgtest" restrictions ['allow-stderr'] features ['test-name=pkg-r-autopkgtest'] depends ['r-cran-graphlayouts', 'pkg-r-autopkgtest'] 327s autopkgtest [01:16:23]: build not needed 327s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.DfWQj9/build.z89/src/ /tmp/autopkgtest-work.coe4ribb/out/tests-tree/ 329s autopkgtest: DBG: got reply from testbed: ok 330s autopkgtest: DBG: autodep8 generated control: ----- 330s Tests: run-unit-test 330s Depends: @, 330s r-cran-testthat, 330s r-cran-ggplot2, 330s r-cran-uwot, 330s r-cran-oaqc 330s Restrictions: allow-stderr 330s 330s 330s Test-Command: /usr/share/dh-r/pkg-r-autopkgtest 330s Depends: @, r-cran-testthat,r-cran-ggplot2,r-cran-uwot, pkg-r-autopkgtest, 330s Restrictions: allow-stderr, 330s Features: test-name=pkg-r-autopkgtest 330s 330s ------- 330s autopkgtest: DBG: processing dependency @ 330s autopkgtest: DBG: synthesised dependency r-cran-graphlayouts 330s autopkgtest: DBG: processing dependency r-cran-testthat 330s autopkgtest: DBG: processing dependency r-cran-ggplot2 330s autopkgtest: DBG: processing dependency r-cran-uwot 330s autopkgtest: DBG: processing dependency r-cran-oaqc 330s autopkgtest: DBG: Test defined: name run-unit-test path debian/tests/run-unit-test command "None" restrictions ['allow-stderr'] features [] depends ['r-cran-graphlayouts', 'r-cran-testthat', 'r-cran-ggplot2', 'r-cran-uwot', 'r-cran-oaqc'] 330s autopkgtest: DBG: processing dependency @ 330s autopkgtest: DBG: synthesised dependency r-cran-graphlayouts 330s autopkgtest: DBG: processing dependency r-cran-testthat 330s autopkgtest: DBG: processing dependency r-cran-ggplot2 330s autopkgtest: DBG: processing dependency r-cran-uwot 330s autopkgtest: DBG: processing dependency pkg-r-autopkgtest 330s autopkgtest: DBG: Test defined: name pkg-r-autopkgtest path None command "/usr/share/dh-r/pkg-r-autopkgtest" restrictions ['allow-stderr'] features ['test-name=pkg-r-autopkgtest'] depends ['r-cran-graphlayouts', 'r-cran-testthat', 'r-cran-ggplot2', 'r-cran-uwot', 'pkg-r-autopkgtest'] 330s autopkgtest [01:16:26]: test run-unit-test: preparing testbed 330s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['r-cran-graphlayouts', 'r-cran-testthat', 'r-cran-ggplot2', 'r-cran-uwot', 'r-cran-oaqc'] 330s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 330s autopkgtest: DBG: install_deps: deps_new=['r-cran-graphlayouts', 'r-cran-testthat', 'r-cran-ggplot2', 'r-cran-uwot', 'r-cran-oaqc'] 330s autopkgtest: DBG: install-deps: satisfying r-cran-graphlayouts, r-cran-testthat, r-cran-ggplot2, r-cran-uwot, r-cran-oaqc 330s autopkgtest: DBG: can use apt-get on testbed: True 330s 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', 'r-cran-graphlayouts, r-cran-testthat, r-cran-ggplot2, r-cran-uwot, r-cran-oaqc'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 331s Reading package lists... 331s Building dependency tree... 331s Reading state information... 331s Starting pkgProblemResolver with broken count: 0 331s Starting 2 pkgProblemResolver with broken count: 0 331s Done 331s The following NEW packages will be installed: 331s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono libamd3 331s libasan8 libblas3 libboost-dev libboost1.83-dev libcairo2 libcolamd3 331s libdatrie1 libdeflate0 libfontconfig1 libfreetype6 libgcc-14-dev 331s libgfortran5 libglpk40 libgomp1 libgraphite2-3 libharfbuzz0b libice6 libitm1 331s libjbig0 libjpeg-turbo8 libjpeg8 liblapack3 libltdl7 libpango-1.0-0 331s libpangocairo-1.0-0 libpangoft2-1.0-0 libpaper-utils libpaper2 libpixman-1-0 331s libsharpyuv0 libsm6 libstdc++-14-dev libsuitesparseconfig7 libtcl8.6 331s libthai-data libthai0 libtiff6 libtk8.6 libubsan1 libwebp7 libxcb-render0 331s libxcb-shm0 libxft2 libxrender1 libxss1 libxt6t64 littler r-base-core 331s r-cran-bh r-cran-brio r-cran-callr r-cran-cli r-cran-colorspace r-cran-cpp11 331s r-cran-crayon r-cran-desc r-cran-diffobj r-cran-digest r-cran-dqrng 331s r-cran-evaluate r-cran-fansi r-cran-farver r-cran-fnn r-cran-fs 331s r-cran-ggplot2 r-cran-glue r-cran-graphlayouts r-cran-gtable r-cran-igraph 331s r-cran-irlba r-cran-isoband r-cran-jsonlite r-cran-labeling r-cran-lattice 331s r-cran-lifecycle r-cran-littler r-cran-magrittr r-cran-mass r-cran-matrix 331s r-cran-mgcv r-cran-munsell r-cran-nlme r-cran-oaqc r-cran-pillar 331s r-cran-pkgbuild r-cran-pkgconfig r-cran-pkgkitten r-cran-pkgload 331s r-cran-praise r-cran-processx r-cran-ps r-cran-r6 r-cran-rcolorbrewer 331s r-cran-rcpp r-cran-rcppannoy r-cran-rcpparmadillo r-cran-rcppeigen 331s r-cran-rcppprogress r-cran-rlang r-cran-rprojroot r-cran-rspectra 331s r-cran-scales r-cran-sitmo r-cran-testthat r-cran-tibble r-cran-utf8 331s r-cran-uwot r-cran-vctrs r-cran-viridislite r-cran-waldo r-cran-withr unzip 331s x11-common xdg-utils zip 332s 0 upgraded, 120 newly installed, 0 to remove and 0 not upgraded. 332s Need to get 110 MB of archives. 332s After this operation, 393 MB of additional disk space will be used. 332s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 335s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 339s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 344s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-1.1ubuntu2 [37.4 kB] 345s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-1.1ubuntu2 [150 kB] 346s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-1.1ubuntu2 [191 kB] 347s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-13ubuntu1 [151 kB] 347s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libsuitesparseconfig7 s390x 1:7.8.3+dfsg-2 [13.1 kB] 348s Get:9 http://ftpmaster.internal/ubuntu plucky/universe s390x libamd3 s390x 1:7.8.3+dfsg-2 [35.1 kB] 348s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-13ubuntu1 [2964 kB] 365s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libblas3 s390x 3.12.0-4 [238 kB] 366s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-13ubuntu1 [30.9 kB] 366s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-13ubuntu1 [1184 kB] 373s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-13ubuntu1 [1037 kB] 379s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-13ubuntu1 [2612 kB] 397s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libboost1.83-dev s390x 1.83.0-4ubuntu2 [10.7 MB] 475s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libboost-dev s390x 1.83.0.2ubuntu1 [4470 B] 475s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-0 s390x 0.44.0-3 [201 kB] 476s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 476s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 476s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 476s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo2 s390x 1.18.2-2 [580 kB] 484s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libcolamd3 s390x 1:7.8.3+dfsg-2 [23.4 kB] 484s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libdatrie1 s390x 0.2.13-3build1 [20.6 kB] 485s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 485s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran5 s390x 14.2.0-13ubuntu1 [588 kB] 489s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libltdl7 s390x 2.5.4-2.1 [43.8 kB] 489s Get:28 http://ftpmaster.internal/ubuntu plucky/universe s390x libglpk40 s390x 5.0-1build2 [406 kB] 491s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 492s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 496s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 496s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 497s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 498s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 498s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack3 s390x 3.12.0-4 [2964 kB] 524s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libthai-data all 0.1.29-2build1 [158 kB] 525s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libthai0 s390x 0.1.29-2build1 [20.7 kB] 525s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libpango-1.0-0 s390x 1.56.1-1 [253 kB] 527s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libpangoft2-1.0-0 s390x 1.56.1-1 [50.3 kB] 527s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libpangocairo-1.0-0 s390x 1.56.1-1 [28.3 kB] 527s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libpaper2 s390x 2.2.5-0.3 [17.2 kB] 527s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libpaper-utils s390x 2.2.5-0.3 [15.3 kB] 527s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 527s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 527s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x libtcl8.6 s390x 8.6.16+dfsg-1 [1034 kB] 534s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 534s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 535s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 536s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libxft2 s390x 2.3.6-1build1 [49.6 kB] 536s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libxss1 s390x 1:1.2.3-1build3 [7396 B] 536s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libtk8.6 s390x 8.6.16-1 [830 kB] 541s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libxt6t64 s390x 1:1.2.1-1.2build1 [184 kB] 542s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x zip s390x 3.0-14ubuntu2 [187 kB] 542s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x unzip s390x 6.0-28ubuntu6 [186 kB] 543s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x xdg-utils all 1.2.1-0ubuntu1 [67.5 kB] 543s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x r-base-core s390x 4.4.2-1build1 [28.6 MB] 763s Get:57 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-littler s390x 0.3.20-2 [95.0 kB] 763s Get:58 http://ftpmaster.internal/ubuntu plucky/universe s390x littler all 0.3.20-2 [2554 B] 763s Get:59 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-bh all 1.84.0-1 [5962 B] 763s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-brio s390x 1.1.5-1 [38.6 kB] 763s Get:61 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-ps s390x 1.8.1-1 [395 kB] 765s Get:62 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-r6 all 2.5.1-1 [99.0 kB] 765s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-processx s390x 3.8.5-1 [354 kB] 767s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-callr all 3.7.6-1 [458 kB] 769s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-cli s390x 3.6.3-1 [1349 kB] 780s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-colorspace s390x 2.1-1+dfsg-1 [1567 kB] 789s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-cpp11 all 0.5.1-1 [233 kB] 790s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-crayon all 1.5.3-1 [165 kB] 790s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-desc all 1.4.3-1 [359 kB] 793s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-diffobj s390x 0.3.5-1 [1115 kB] 804s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-digest s390x 0.6.37-1 [205 kB] 806s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-pkgkitten all 0.2.4-1 [27.2 kB] 806s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rcpp s390x 1.0.14-1 [2003 kB] 822s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-sitmo s390x 2.0.2-1 [129 kB] 823s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-dqrng s390x 0.3.2+dfsg-1 [165 kB] 824s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-evaluate all 1.0.3-1 [114 kB] 826s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-fansi s390x 1.0.5-1 [615 kB] 832s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-farver s390x 2.1.2-1 [1353 kB] 840s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-fnn s390x 1.1.4.1-1 [132 kB] 841s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-fs s390x 1.6.5+dfsg-1 [245 kB] 843s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-glue s390x 1.8.0-1 [164 kB] 844s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rlang s390x 1.1.5-1 [1713 kB] 856s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-lifecycle all 1.0.4+dfsg-1 [110 kB] 857s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-gtable all 0.3.6+dfsg-1 [199 kB] 859s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-isoband s390x 0.2.7-1 [1481 kB] 870s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-mass s390x 7.3-64-1 [1113 kB] 877s Get:87 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-lattice s390x 0.22-6-1 [1340 kB] 885s Get:88 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-nlme s390x 3.1.167-1 [2323 kB] 904s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-matrix s390x 1.7-2-1 [4441 kB] 943s Get:90 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-mgcv s390x 1.9-1-1 [3348 kB] 971s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-labeling all 0.4.3-1 [62.1 kB] 972s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-munsell all 0.5.1-1 [213 kB] 975s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rcolorbrewer all 1.1-3-1build1 [55.4 kB] 975s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-viridislite all 0.4.2-2 [1088 kB] 984s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-scales all 1.3.0-1 [603 kB] 990s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-magrittr s390x 2.0.3-1 [154 kB] 991s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-utf8 s390x 1.2.4-1 [143 kB] 992s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-vctrs s390x 0.6.5-1 [1448 kB] 1001s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-pillar all 1.10.1+dfsg-1 [453 kB] 1004s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-pkgconfig all 2.0.3-2build1 [19.7 kB] 1004s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-tibble s390x 3.2.1+dfsg-3 [420 kB] 1007s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-withr all 3.0.2+dfsg-1 [214 kB] 1009s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-ggplot2 all 3.5.1+dfsg-1 [3940 kB] 1039s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-igraph s390x 2.1.4-1 [5311 kB] 1073s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rcpparmadillo s390x 14.2.2-1-1 [851 kB] 1080s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-graphlayouts s390x 1.2.1-1 [1879 kB] 1091s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-irlba s390x 2.3.5.1-4 [296 kB] 1093s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-jsonlite s390x 1.8.9+dfsg-1 [447 kB] 1094s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-oaqc s390x 2.0.0-1 [91.3 kB] 1095s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-pkgbuild all 1.4.6-1 [213 kB] 1096s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rprojroot all 2.0.4-2 [125 kB] 1097s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-pkgload all 1.4.0-1 [247 kB] 1098s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-praise all 1.0.0-4build1 [20.3 kB] 1098s Get:114 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rcppannoy s390x 0.0.22-1 [246 kB] 1100s Get:115 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rcppeigen s390x 0.3.4.0.2-1 [1429 kB] 1111s Get:116 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rcppprogress all 0.4.2-2build1 [22.0 kB] 1111s Get:117 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rspectra s390x 0.16-2-1 [473 kB] 1114s Get:118 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-waldo all 0.6.1-1 [150 kB] 1116s Get:119 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x r-cran-testthat s390x 3.2.3-1 [1641 kB] 1131s Get:120 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-uwot s390x 0.2.2-2 [954 kB] 1136s Preconfiguring packages ... 1136s Fetched 110 MB in 13min 25s (136 kB/s) 1136s Selecting previously unselected package libfreetype6:s390x. 1137s (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 ... 56531 files and directories currently installed.) 1137s Preparing to unpack .../000-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 1137s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 1137s Selecting previously unselected package fonts-dejavu-mono. 1137s Preparing to unpack .../001-fonts-dejavu-mono_2.37-8_all.deb ... 1137s Unpacking fonts-dejavu-mono (2.37-8) ... 1137s Selecting previously unselected package fonts-dejavu-core. 1137s Preparing to unpack .../002-fonts-dejavu-core_2.37-8_all.deb ... 1137s Unpacking fonts-dejavu-core (2.37-8) ... 1137s Selecting previously unselected package fontconfig-config. 1137s Preparing to unpack .../003-fontconfig-config_2.15.0-1.1ubuntu2_s390x.deb ... 1137s Unpacking fontconfig-config (2.15.0-1.1ubuntu2) ... 1137s Selecting previously unselected package libfontconfig1:s390x. 1137s Preparing to unpack .../004-libfontconfig1_2.15.0-1.1ubuntu2_s390x.deb ... 1137s Unpacking libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 1137s Selecting previously unselected package fontconfig. 1137s Preparing to unpack .../005-fontconfig_2.15.0-1.1ubuntu2_s390x.deb ... 1137s Unpacking fontconfig (2.15.0-1.1ubuntu2) ... 1137s Selecting previously unselected package libgomp1:s390x. 1137s Preparing to unpack .../006-libgomp1_14.2.0-13ubuntu1_s390x.deb ... 1137s Unpacking libgomp1:s390x (14.2.0-13ubuntu1) ... 1137s Selecting previously unselected package libsuitesparseconfig7:s390x. 1137s Preparing to unpack .../007-libsuitesparseconfig7_1%3a7.8.3+dfsg-2_s390x.deb ... 1137s Unpacking libsuitesparseconfig7:s390x (1:7.8.3+dfsg-2) ... 1137s Selecting previously unselected package libamd3:s390x. 1137s Preparing to unpack .../008-libamd3_1%3a7.8.3+dfsg-2_s390x.deb ... 1137s Unpacking libamd3:s390x (1:7.8.3+dfsg-2) ... 1137s Selecting previously unselected package libasan8:s390x. 1137s Preparing to unpack .../009-libasan8_14.2.0-13ubuntu1_s390x.deb ... 1137s Unpacking libasan8:s390x (14.2.0-13ubuntu1) ... 1137s Selecting previously unselected package libblas3:s390x. 1137s Preparing to unpack .../010-libblas3_3.12.0-4_s390x.deb ... 1137s Unpacking libblas3:s390x (3.12.0-4) ... 1137s Selecting previously unselected package libitm1:s390x. 1137s Preparing to unpack .../011-libitm1_14.2.0-13ubuntu1_s390x.deb ... 1137s Unpacking libitm1:s390x (14.2.0-13ubuntu1) ... 1137s Selecting previously unselected package libubsan1:s390x. 1137s Preparing to unpack .../012-libubsan1_14.2.0-13ubuntu1_s390x.deb ... 1137s Unpacking libubsan1:s390x (14.2.0-13ubuntu1) ... 1137s Selecting previously unselected package libgcc-14-dev:s390x. 1137s Preparing to unpack .../013-libgcc-14-dev_14.2.0-13ubuntu1_s390x.deb ... 1137s Unpacking libgcc-14-dev:s390x (14.2.0-13ubuntu1) ... 1137s Selecting previously unselected package libstdc++-14-dev:s390x. 1137s Preparing to unpack .../014-libstdc++-14-dev_14.2.0-13ubuntu1_s390x.deb ... 1137s Unpacking libstdc++-14-dev:s390x (14.2.0-13ubuntu1) ... 1137s Selecting previously unselected package libboost1.83-dev:s390x. 1137s Preparing to unpack .../015-libboost1.83-dev_1.83.0-4ubuntu2_s390x.deb ... 1137s Unpacking libboost1.83-dev:s390x (1.83.0-4ubuntu2) ... 1138s Selecting previously unselected package libboost-dev:s390x. 1138s Preparing to unpack .../016-libboost-dev_1.83.0.2ubuntu1_s390x.deb ... 1138s Unpacking libboost-dev:s390x (1.83.0.2ubuntu1) ... 1138s Selecting previously unselected package libpixman-1-0:s390x. 1138s Preparing to unpack .../017-libpixman-1-0_0.44.0-3_s390x.deb ... 1138s Unpacking libpixman-1-0:s390x (0.44.0-3) ... 1138s Selecting previously unselected package libxcb-render0:s390x. 1138s Preparing to unpack .../018-libxcb-render0_1.17.0-2_s390x.deb ... 1138s Unpacking libxcb-render0:s390x (1.17.0-2) ... 1138s Selecting previously unselected package libxcb-shm0:s390x. 1138s Preparing to unpack .../019-libxcb-shm0_1.17.0-2_s390x.deb ... 1138s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 1138s Selecting previously unselected package libxrender1:s390x. 1138s Preparing to unpack .../020-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 1138s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 1138s Selecting previously unselected package libcairo2:s390x. 1138s Preparing to unpack .../021-libcairo2_1.18.2-2_s390x.deb ... 1138s Unpacking libcairo2:s390x (1.18.2-2) ... 1138s Selecting previously unselected package libcolamd3:s390x. 1138s Preparing to unpack .../022-libcolamd3_1%3a7.8.3+dfsg-2_s390x.deb ... 1138s Unpacking libcolamd3:s390x (1:7.8.3+dfsg-2) ... 1138s Selecting previously unselected package libdatrie1:s390x. 1138s Preparing to unpack .../023-libdatrie1_0.2.13-3build1_s390x.deb ... 1138s Unpacking libdatrie1:s390x (0.2.13-3build1) ... 1138s Selecting previously unselected package libdeflate0:s390x. 1138s Preparing to unpack .../024-libdeflate0_1.23-1_s390x.deb ... 1138s Unpacking libdeflate0:s390x (1.23-1) ... 1138s Selecting previously unselected package libgfortran5:s390x. 1138s Preparing to unpack .../025-libgfortran5_14.2.0-13ubuntu1_s390x.deb ... 1138s Unpacking libgfortran5:s390x (14.2.0-13ubuntu1) ... 1138s Selecting previously unselected package libltdl7:s390x. 1138s Preparing to unpack .../026-libltdl7_2.5.4-2.1_s390x.deb ... 1138s Unpacking libltdl7:s390x (2.5.4-2.1) ... 1138s Selecting previously unselected package libglpk40:s390x. 1138s Preparing to unpack .../027-libglpk40_5.0-1build2_s390x.deb ... 1138s Unpacking libglpk40:s390x (5.0-1build2) ... 1138s Selecting previously unselected package libgraphite2-3:s390x. 1138s Preparing to unpack .../028-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 1138s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 1138s Selecting previously unselected package libharfbuzz0b:s390x. 1138s Preparing to unpack .../029-libharfbuzz0b_10.2.0-1_s390x.deb ... 1138s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 1138s Selecting previously unselected package x11-common. 1138s Preparing to unpack .../030-x11-common_1%3a7.7+23ubuntu3_all.deb ... 1138s Unpacking x11-common (1:7.7+23ubuntu3) ... 1138s Selecting previously unselected package libice6:s390x. 1138s Preparing to unpack .../031-libice6_2%3a1.1.1-1_s390x.deb ... 1138s Unpacking libice6:s390x (2:1.1.1-1) ... 1138s Selecting previously unselected package libjpeg-turbo8:s390x. 1138s Preparing to unpack .../032-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 1138s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 1138s Selecting previously unselected package libjpeg8:s390x. 1138s Preparing to unpack .../033-libjpeg8_8c-2ubuntu11_s390x.deb ... 1138s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 1138s Selecting previously unselected package liblapack3:s390x. 1138s Preparing to unpack .../034-liblapack3_3.12.0-4_s390x.deb ... 1138s Unpacking liblapack3:s390x (3.12.0-4) ... 1138s Selecting previously unselected package libthai-data. 1138s Preparing to unpack .../035-libthai-data_0.1.29-2build1_all.deb ... 1138s Unpacking libthai-data (0.1.29-2build1) ... 1138s Selecting previously unselected package libthai0:s390x. 1138s Preparing to unpack .../036-libthai0_0.1.29-2build1_s390x.deb ... 1138s Unpacking libthai0:s390x (0.1.29-2build1) ... 1138s Selecting previously unselected package libpango-1.0-0:s390x. 1138s Preparing to unpack .../037-libpango-1.0-0_1.56.1-1_s390x.deb ... 1138s Unpacking libpango-1.0-0:s390x (1.56.1-1) ... 1138s Selecting previously unselected package libpangoft2-1.0-0:s390x. 1138s Preparing to unpack .../038-libpangoft2-1.0-0_1.56.1-1_s390x.deb ... 1138s Unpacking libpangoft2-1.0-0:s390x (1.56.1-1) ... 1138s Selecting previously unselected package libpangocairo-1.0-0:s390x. 1138s Preparing to unpack .../039-libpangocairo-1.0-0_1.56.1-1_s390x.deb ... 1138s Unpacking libpangocairo-1.0-0:s390x (1.56.1-1) ... 1138s Selecting previously unselected package libpaper2:s390x. 1138s Preparing to unpack .../040-libpaper2_2.2.5-0.3_s390x.deb ... 1138s Unpacking libpaper2:s390x (2.2.5-0.3) ... 1138s Selecting previously unselected package libpaper-utils. 1138s Preparing to unpack .../041-libpaper-utils_2.2.5-0.3_s390x.deb ... 1138s Unpacking libpaper-utils (2.2.5-0.3) ... 1138s Selecting previously unselected package libsharpyuv0:s390x. 1138s Preparing to unpack .../042-libsharpyuv0_1.5.0-0.1_s390x.deb ... 1138s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 1138s Selecting previously unselected package libsm6:s390x. 1138s Preparing to unpack .../043-libsm6_2%3a1.2.4-1_s390x.deb ... 1138s Unpacking libsm6:s390x (2:1.2.4-1) ... 1138s Selecting previously unselected package libtcl8.6:s390x. 1138s Preparing to unpack .../044-libtcl8.6_8.6.16+dfsg-1_s390x.deb ... 1138s Unpacking libtcl8.6:s390x (8.6.16+dfsg-1) ... 1138s Selecting previously unselected package libjbig0:s390x. 1138s Preparing to unpack .../045-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 1138s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 1138s Selecting previously unselected package libwebp7:s390x. 1138s Preparing to unpack .../046-libwebp7_1.5.0-0.1_s390x.deb ... 1138s Unpacking libwebp7:s390x (1.5.0-0.1) ... 1138s Selecting previously unselected package libtiff6:s390x. 1138s Preparing to unpack .../047-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 1138s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 1138s Selecting previously unselected package libxft2:s390x. 1138s Preparing to unpack .../048-libxft2_2.3.6-1build1_s390x.deb ... 1138s Unpacking libxft2:s390x (2.3.6-1build1) ... 1138s Selecting previously unselected package libxss1:s390x. 1138s Preparing to unpack .../049-libxss1_1%3a1.2.3-1build3_s390x.deb ... 1138s Unpacking libxss1:s390x (1:1.2.3-1build3) ... 1138s Selecting previously unselected package libtk8.6:s390x. 1138s Preparing to unpack .../050-libtk8.6_8.6.16-1_s390x.deb ... 1138s Unpacking libtk8.6:s390x (8.6.16-1) ... 1138s Selecting previously unselected package libxt6t64:s390x. 1138s Preparing to unpack .../051-libxt6t64_1%3a1.2.1-1.2build1_s390x.deb ... 1138s Unpacking libxt6t64:s390x (1:1.2.1-1.2build1) ... 1138s Selecting previously unselected package zip. 1138s Preparing to unpack .../052-zip_3.0-14ubuntu2_s390x.deb ... 1138s Unpacking zip (3.0-14ubuntu2) ... 1139s Selecting previously unselected package unzip. 1139s Preparing to unpack .../053-unzip_6.0-28ubuntu6_s390x.deb ... 1139s Unpacking unzip (6.0-28ubuntu6) ... 1139s Selecting previously unselected package xdg-utils. 1139s Preparing to unpack .../054-xdg-utils_1.2.1-0ubuntu1_all.deb ... 1139s Unpacking xdg-utils (1.2.1-0ubuntu1) ... 1139s Selecting previously unselected package r-base-core. 1139s Preparing to unpack .../055-r-base-core_4.4.2-1build1_s390x.deb ... 1139s Unpacking r-base-core (4.4.2-1build1) ... 1139s Selecting previously unselected package r-cran-littler. 1139s Preparing to unpack .../056-r-cran-littler_0.3.20-2_s390x.deb ... 1139s Unpacking r-cran-littler (0.3.20-2) ... 1139s Selecting previously unselected package littler. 1139s Preparing to unpack .../057-littler_0.3.20-2_all.deb ... 1139s Unpacking littler (0.3.20-2) ... 1139s Selecting previously unselected package r-cran-bh. 1139s Preparing to unpack .../058-r-cran-bh_1.84.0-1_all.deb ... 1139s Unpacking r-cran-bh (1.84.0-1) ... 1139s Selecting previously unselected package r-cran-brio. 1139s Preparing to unpack .../059-r-cran-brio_1.1.5-1_s390x.deb ... 1139s Unpacking r-cran-brio (1.1.5-1) ... 1139s Selecting previously unselected package r-cran-ps. 1139s Preparing to unpack .../060-r-cran-ps_1.8.1-1_s390x.deb ... 1139s Unpacking r-cran-ps (1.8.1-1) ... 1139s Selecting previously unselected package r-cran-r6. 1139s Preparing to unpack .../061-r-cran-r6_2.5.1-1_all.deb ... 1139s Unpacking r-cran-r6 (2.5.1-1) ... 1139s Selecting previously unselected package r-cran-processx. 1139s Preparing to unpack .../062-r-cran-processx_3.8.5-1_s390x.deb ... 1139s Unpacking r-cran-processx (3.8.5-1) ... 1139s Selecting previously unselected package r-cran-callr. 1139s Preparing to unpack .../063-r-cran-callr_3.7.6-1_all.deb ... 1139s Unpacking r-cran-callr (3.7.6-1) ... 1139s Selecting previously unselected package r-cran-cli. 1139s Preparing to unpack .../064-r-cran-cli_3.6.3-1_s390x.deb ... 1139s Unpacking r-cran-cli (3.6.3-1) ... 1139s Selecting previously unselected package r-cran-colorspace. 1139s Preparing to unpack .../065-r-cran-colorspace_2.1-1+dfsg-1_s390x.deb ... 1139s Unpacking r-cran-colorspace (2.1-1+dfsg-1) ... 1139s Selecting previously unselected package r-cran-cpp11. 1139s Preparing to unpack .../066-r-cran-cpp11_0.5.1-1_all.deb ... 1139s Unpacking r-cran-cpp11 (0.5.1-1) ... 1139s Selecting previously unselected package r-cran-crayon. 1139s Preparing to unpack .../067-r-cran-crayon_1.5.3-1_all.deb ... 1139s Unpacking r-cran-crayon (1.5.3-1) ... 1139s Selecting previously unselected package r-cran-desc. 1139s Preparing to unpack .../068-r-cran-desc_1.4.3-1_all.deb ... 1139s Unpacking r-cran-desc (1.4.3-1) ... 1139s Selecting previously unselected package r-cran-diffobj. 1139s Preparing to unpack .../069-r-cran-diffobj_0.3.5-1_s390x.deb ... 1139s Unpacking r-cran-diffobj (0.3.5-1) ... 1139s Selecting previously unselected package r-cran-digest. 1139s Preparing to unpack .../070-r-cran-digest_0.6.37-1_s390x.deb ... 1139s Unpacking r-cran-digest (0.6.37-1) ... 1139s Selecting previously unselected package r-cran-pkgkitten. 1139s Preparing to unpack .../071-r-cran-pkgkitten_0.2.4-1_all.deb ... 1139s Unpacking r-cran-pkgkitten (0.2.4-1) ... 1139s Selecting previously unselected package r-cran-rcpp. 1139s Preparing to unpack .../072-r-cran-rcpp_1.0.14-1_s390x.deb ... 1139s Unpacking r-cran-rcpp (1.0.14-1) ... 1139s Selecting previously unselected package r-cran-sitmo. 1139s Preparing to unpack .../073-r-cran-sitmo_2.0.2-1_s390x.deb ... 1139s Unpacking r-cran-sitmo (2.0.2-1) ... 1139s Selecting previously unselected package r-cran-dqrng. 1139s Preparing to unpack .../074-r-cran-dqrng_0.3.2+dfsg-1_s390x.deb ... 1139s Unpacking r-cran-dqrng (0.3.2+dfsg-1) ... 1139s Selecting previously unselected package r-cran-evaluate. 1139s Preparing to unpack .../075-r-cran-evaluate_1.0.3-1_all.deb ... 1139s Unpacking r-cran-evaluate (1.0.3-1) ... 1139s Selecting previously unselected package r-cran-fansi. 1139s Preparing to unpack .../076-r-cran-fansi_1.0.5-1_s390x.deb ... 1139s Unpacking r-cran-fansi (1.0.5-1) ... 1139s Selecting previously unselected package r-cran-farver. 1139s Preparing to unpack .../077-r-cran-farver_2.1.2-1_s390x.deb ... 1139s Unpacking r-cran-farver (2.1.2-1) ... 1139s Selecting previously unselected package r-cran-fnn. 1139s Preparing to unpack .../078-r-cran-fnn_1.1.4.1-1_s390x.deb ... 1139s Unpacking r-cran-fnn (1.1.4.1-1) ... 1139s Selecting previously unselected package r-cran-fs. 1139s Preparing to unpack .../079-r-cran-fs_1.6.5+dfsg-1_s390x.deb ... 1139s Unpacking r-cran-fs (1.6.5+dfsg-1) ... 1139s Selecting previously unselected package r-cran-glue. 1139s Preparing to unpack .../080-r-cran-glue_1.8.0-1_s390x.deb ... 1139s Unpacking r-cran-glue (1.8.0-1) ... 1139s Selecting previously unselected package r-cran-rlang. 1139s Preparing to unpack .../081-r-cran-rlang_1.1.5-1_s390x.deb ... 1139s Unpacking r-cran-rlang (1.1.5-1) ... 1139s Selecting previously unselected package r-cran-lifecycle. 1139s Preparing to unpack .../082-r-cran-lifecycle_1.0.4+dfsg-1_all.deb ... 1139s Unpacking r-cran-lifecycle (1.0.4+dfsg-1) ... 1139s Selecting previously unselected package r-cran-gtable. 1139s Preparing to unpack .../083-r-cran-gtable_0.3.6+dfsg-1_all.deb ... 1139s Unpacking r-cran-gtable (0.3.6+dfsg-1) ... 1139s Selecting previously unselected package r-cran-isoband. 1139s Preparing to unpack .../084-r-cran-isoband_0.2.7-1_s390x.deb ... 1139s Unpacking r-cran-isoband (0.2.7-1) ... 1139s Selecting previously unselected package r-cran-mass. 1139s Preparing to unpack .../085-r-cran-mass_7.3-64-1_s390x.deb ... 1139s Unpacking r-cran-mass (7.3-64-1) ... 1139s Selecting previously unselected package r-cran-lattice. 1139s Preparing to unpack .../086-r-cran-lattice_0.22-6-1_s390x.deb ... 1139s Unpacking r-cran-lattice (0.22-6-1) ... 1139s Selecting previously unselected package r-cran-nlme. 1139s Preparing to unpack .../087-r-cran-nlme_3.1.167-1_s390x.deb ... 1139s Unpacking r-cran-nlme (3.1.167-1) ... 1139s Selecting previously unselected package r-cran-matrix. 1139s Preparing to unpack .../088-r-cran-matrix_1.7-2-1_s390x.deb ... 1139s Unpacking r-cran-matrix (1.7-2-1) ... 1139s Selecting previously unselected package r-cran-mgcv. 1139s Preparing to unpack .../089-r-cran-mgcv_1.9-1-1_s390x.deb ... 1139s Unpacking r-cran-mgcv (1.9-1-1) ... 1139s Selecting previously unselected package r-cran-labeling. 1139s Preparing to unpack .../090-r-cran-labeling_0.4.3-1_all.deb ... 1139s Unpacking r-cran-labeling (0.4.3-1) ... 1139s Selecting previously unselected package r-cran-munsell. 1139s Preparing to unpack .../091-r-cran-munsell_0.5.1-1_all.deb ... 1139s Unpacking r-cran-munsell (0.5.1-1) ... 1139s Selecting previously unselected package r-cran-rcolorbrewer. 1139s Preparing to unpack .../092-r-cran-rcolorbrewer_1.1-3-1build1_all.deb ... 1139s Unpacking r-cran-rcolorbrewer (1.1-3-1build1) ... 1139s Selecting previously unselected package r-cran-viridislite. 1139s Preparing to unpack .../093-r-cran-viridislite_0.4.2-2_all.deb ... 1139s Unpacking r-cran-viridislite (0.4.2-2) ... 1139s Selecting previously unselected package r-cran-scales. 1139s Preparing to unpack .../094-r-cran-scales_1.3.0-1_all.deb ... 1139s Unpacking r-cran-scales (1.3.0-1) ... 1139s Selecting previously unselected package r-cran-magrittr. 1140s Preparing to unpack .../095-r-cran-magrittr_2.0.3-1_s390x.deb ... 1140s Unpacking r-cran-magrittr (2.0.3-1) ... 1140s Selecting previously unselected package r-cran-utf8. 1140s Preparing to unpack .../096-r-cran-utf8_1.2.4-1_s390x.deb ... 1140s Unpacking r-cran-utf8 (1.2.4-1) ... 1140s Selecting previously unselected package r-cran-vctrs. 1140s Preparing to unpack .../097-r-cran-vctrs_0.6.5-1_s390x.deb ... 1140s Unpacking r-cran-vctrs (0.6.5-1) ... 1140s Selecting previously unselected package r-cran-pillar. 1140s Preparing to unpack .../098-r-cran-pillar_1.10.1+dfsg-1_all.deb ... 1140s Unpacking r-cran-pillar (1.10.1+dfsg-1) ... 1140s Selecting previously unselected package r-cran-pkgconfig. 1140s Preparing to unpack .../099-r-cran-pkgconfig_2.0.3-2build1_all.deb ... 1140s Unpacking r-cran-pkgconfig (2.0.3-2build1) ... 1140s Selecting previously unselected package r-cran-tibble. 1140s Preparing to unpack .../100-r-cran-tibble_3.2.1+dfsg-3_s390x.deb ... 1140s Unpacking r-cran-tibble (3.2.1+dfsg-3) ... 1140s Selecting previously unselected package r-cran-withr. 1140s Preparing to unpack .../101-r-cran-withr_3.0.2+dfsg-1_all.deb ... 1140s Unpacking r-cran-withr (3.0.2+dfsg-1) ... 1140s Selecting previously unselected package r-cran-ggplot2. 1140s Preparing to unpack .../102-r-cran-ggplot2_3.5.1+dfsg-1_all.deb ... 1140s Unpacking r-cran-ggplot2 (3.5.1+dfsg-1) ... 1140s Selecting previously unselected package r-cran-igraph. 1140s Preparing to unpack .../103-r-cran-igraph_2.1.4-1_s390x.deb ... 1140s Unpacking r-cran-igraph (2.1.4-1) ... 1140s Selecting previously unselected package r-cran-rcpparmadillo. 1140s Preparing to unpack .../104-r-cran-rcpparmadillo_14.2.2-1-1_s390x.deb ... 1140s Unpacking r-cran-rcpparmadillo (14.2.2-1-1) ... 1140s Selecting previously unselected package r-cran-graphlayouts. 1140s Preparing to unpack .../105-r-cran-graphlayouts_1.2.1-1_s390x.deb ... 1140s Unpacking r-cran-graphlayouts (1.2.1-1) ... 1140s Selecting previously unselected package r-cran-irlba. 1140s Preparing to unpack .../106-r-cran-irlba_2.3.5.1-4_s390x.deb ... 1140s Unpacking r-cran-irlba (2.3.5.1-4) ... 1140s Selecting previously unselected package r-cran-jsonlite. 1140s Preparing to unpack .../107-r-cran-jsonlite_1.8.9+dfsg-1_s390x.deb ... 1140s Unpacking r-cran-jsonlite (1.8.9+dfsg-1) ... 1140s Selecting previously unselected package r-cran-oaqc. 1140s Preparing to unpack .../108-r-cran-oaqc_2.0.0-1_s390x.deb ... 1140s Unpacking r-cran-oaqc (2.0.0-1) ... 1140s Selecting previously unselected package r-cran-pkgbuild. 1140s Preparing to unpack .../109-r-cran-pkgbuild_1.4.6-1_all.deb ... 1140s Unpacking r-cran-pkgbuild (1.4.6-1) ... 1140s Selecting previously unselected package r-cran-rprojroot. 1140s Preparing to unpack .../110-r-cran-rprojroot_2.0.4-2_all.deb ... 1140s Unpacking r-cran-rprojroot (2.0.4-2) ... 1140s Selecting previously unselected package r-cran-pkgload. 1140s Preparing to unpack .../111-r-cran-pkgload_1.4.0-1_all.deb ... 1140s Unpacking r-cran-pkgload (1.4.0-1) ... 1140s Selecting previously unselected package r-cran-praise. 1140s Preparing to unpack .../112-r-cran-praise_1.0.0-4build1_all.deb ... 1140s Unpacking r-cran-praise (1.0.0-4build1) ... 1140s Selecting previously unselected package r-cran-rcppannoy. 1140s Preparing to unpack .../113-r-cran-rcppannoy_0.0.22-1_s390x.deb ... 1140s Unpacking r-cran-rcppannoy (0.0.22-1) ... 1140s Selecting previously unselected package r-cran-rcppeigen. 1140s Preparing to unpack .../114-r-cran-rcppeigen_0.3.4.0.2-1_s390x.deb ... 1140s Unpacking r-cran-rcppeigen (0.3.4.0.2-1) ... 1140s Selecting previously unselected package r-cran-rcppprogress. 1140s Preparing to unpack .../115-r-cran-rcppprogress_0.4.2-2build1_all.deb ... 1140s Unpacking r-cran-rcppprogress (0.4.2-2build1) ... 1140s Selecting previously unselected package r-cran-rspectra. 1140s Preparing to unpack .../116-r-cran-rspectra_0.16-2-1_s390x.deb ... 1140s Unpacking r-cran-rspectra (0.16-2-1) ... 1140s Selecting previously unselected package r-cran-waldo. 1140s Preparing to unpack .../117-r-cran-waldo_0.6.1-1_all.deb ... 1140s Unpacking r-cran-waldo (0.6.1-1) ... 1140s Selecting previously unselected package r-cran-testthat. 1140s Preparing to unpack .../118-r-cran-testthat_3.2.3-1_s390x.deb ... 1140s Unpacking r-cran-testthat (3.2.3-1) ... 1140s Selecting previously unselected package r-cran-uwot. 1140s Preparing to unpack .../119-r-cran-uwot_0.2.2-2_s390x.deb ... 1140s Unpacking r-cran-uwot (0.2.2-2) ... 1140s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 1140s Setting up libpixman-1-0:s390x (0.44.0-3) ... 1140s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 1140s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 1140s Setting up libdatrie1:s390x (0.2.13-3build1) ... 1140s Setting up libxcb-render0:s390x (1.17.0-2) ... 1140s Setting up unzip (6.0-28ubuntu6) ... 1140s Setting up x11-common (1:7.7+23ubuntu3) ... 1140s Setting up libdeflate0:s390x (1.23-1) ... 1140s Setting up libxcb-shm0:s390x (1.17.0-2) ... 1140s Setting up libgomp1:s390x (14.2.0-13ubuntu1) ... 1140s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 1140s Setting up zip (3.0-14ubuntu2) ... 1140s Setting up libblas3:s390x (3.12.0-4) ... 1140s update-alternatives: using /usr/lib/s390x-linux-gnu/blas/libblas.so.3 to provide /usr/lib/s390x-linux-gnu/libblas.so.3 (libblas.so.3-s390x-linux-gnu) in auto mode 1140s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 1140s Setting up fonts-dejavu-mono (2.37-8) ... 1140s Setting up libtcl8.6:s390x (8.6.16+dfsg-1) ... 1140s Setting up fonts-dejavu-core (2.37-8) ... 1140s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 1140s Setting up libltdl7:s390x (2.5.4-2.1) ... 1140s Setting up libgfortran5:s390x (14.2.0-13ubuntu1) ... 1140s Setting up libwebp7:s390x (1.5.0-0.1) ... 1140s Setting up libubsan1:s390x (14.2.0-13ubuntu1) ... 1140s Setting up libasan8:s390x (14.2.0-13ubuntu1) ... 1140s Setting up libsuitesparseconfig7:s390x (1:7.8.3+dfsg-2) ... 1140s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 1140s Setting up libthai-data (0.1.29-2build1) ... 1140s Setting up libxss1:s390x (1:1.2.3-1build3) ... 1140s Setting up libpaper2:s390x (2.2.5-0.3) ... 1140s Setting up xdg-utils (1.2.1-0ubuntu1) ... 1140s update-alternatives: using /usr/bin/xdg-open to provide /usr/bin/open (open) in auto mode 1140s Setting up libitm1:s390x (14.2.0-13ubuntu1) ... 1140s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 1140s Setting up libice6:s390x (2:1.1.1-1) ... 1140s Setting up liblapack3:s390x (3.12.0-4) ... 1140s update-alternatives: using /usr/lib/s390x-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/s390x-linux-gnu/liblapack.so.3 (liblapack.so.3-s390x-linux-gnu) in auto mode 1140s Setting up libamd3:s390x (1:7.8.3+dfsg-2) ... 1140s Setting up libcolamd3:s390x (1:7.8.3+dfsg-2) ... 1140s Setting up fontconfig-config (2.15.0-1.1ubuntu2) ... 1141s Setting up libpaper-utils (2.2.5-0.3) ... 1141s Setting up libthai0:s390x (0.1.29-2build1) ... 1141s Setting up libglpk40:s390x (5.0-1build2) ... 1141s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 1141s Setting up libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 1141s Setting up libgcc-14-dev:s390x (14.2.0-13ubuntu1) ... 1141s Setting up libstdc++-14-dev:s390x (14.2.0-13ubuntu1) ... 1141s Setting up libsm6:s390x (2:1.2.4-1) ... 1141s Setting up fontconfig (2.15.0-1.1ubuntu2) ... 1143s Regenerating fonts cache... done. 1143s Setting up libxft2:s390x (2.3.6-1build1) ... 1143s Setting up libboost1.83-dev:s390x (1.83.0-4ubuntu2) ... 1143s Setting up libtk8.6:s390x (8.6.16-1) ... 1143s Setting up libpango-1.0-0:s390x (1.56.1-1) ... 1143s Setting up libcairo2:s390x (1.18.2-2) ... 1143s Setting up libxt6t64:s390x (1:1.2.1-1.2build1) ... 1143s Setting up libboost-dev:s390x (1.83.0.2ubuntu1) ... 1143s Setting up libpangoft2-1.0-0:s390x (1.56.1-1) ... 1143s Setting up libpangocairo-1.0-0:s390x (1.56.1-1) ... 1143s Setting up r-base-core (4.4.2-1build1) ... 1143s Creating config file /etc/R/Renviron with new version 1143s Setting up r-cran-crayon (1.5.3-1) ... 1143s Setting up r-cran-labeling (0.4.3-1) ... 1143s Setting up r-cran-rcppprogress (0.4.2-2build1) ... 1143s Setting up r-cran-lattice (0.22-6-1) ... 1143s Setting up r-cran-ps (1.8.1-1) ... 1143s Setting up r-cran-nlme (3.1.167-1) ... 1143s Setting up r-cran-farver (2.1.2-1) ... 1143s Setting up r-cran-viridislite (0.4.2-2) ... 1143s Setting up r-cran-r6 (2.5.1-1) ... 1143s Setting up r-cran-pkgkitten (0.2.4-1) ... 1143s Setting up r-cran-magrittr (2.0.3-1) ... 1143s Setting up r-cran-littler (0.3.20-2) ... 1143s Setting up r-cran-bh (1.84.0-1) ... 1143s Setting up r-cran-fs (1.6.5+dfsg-1) ... 1143s Setting up r-cran-rcpp (1.0.14-1) ... 1143s Setting up r-cran-brio (1.1.5-1) ... 1143s Setting up r-cran-diffobj (0.3.5-1) ... 1143s Setting up r-cran-rlang (1.1.5-1) ... 1143s Setting up r-cran-oaqc (2.0.0-1) ... 1143s Setting up littler (0.3.20-2) ... 1143s Setting up r-cran-withr (3.0.2+dfsg-1) ... 1143s Setting up r-cran-processx (3.8.5-1) ... 1143s Setting up r-cran-praise (1.0.0-4build1) ... 1143s Setting up r-cran-digest (0.6.37-1) ... 1143s Setting up r-cran-evaluate (1.0.3-1) ... 1143s Setting up r-cran-fansi (1.0.5-1) ... 1143s Setting up r-cran-mass (7.3-64-1) ... 1143s Setting up r-cran-glue (1.8.0-1) ... 1143s Setting up r-cran-cli (3.6.3-1) ... 1143s Setting up r-cran-lifecycle (1.0.4+dfsg-1) ... 1143s Setting up r-cran-rprojroot (2.0.4-2) ... 1143s Setting up r-cran-fnn (1.1.4.1-1) ... 1143s Setting up r-cran-jsonlite (1.8.9+dfsg-1) ... 1143s Setting up r-cran-pkgconfig (2.0.3-2build1) ... 1143s Setting up r-cran-utf8 (1.2.4-1) ... 1143s Setting up r-cran-colorspace (2.1-1+dfsg-1) ... 1143s Setting up r-cran-cpp11 (0.5.1-1) ... 1143s Setting up r-cran-sitmo (2.0.2-1) ... 1143s Setting up r-cran-rcolorbrewer (1.1-3-1build1) ... 1143s Setting up r-cran-isoband (0.2.7-1) ... 1143s Setting up r-cran-waldo (0.6.1-1) ... 1143s Setting up r-cran-gtable (0.3.6+dfsg-1) ... 1143s Setting up r-cran-matrix (1.7-2-1) ... 1143s Setting up r-cran-irlba (2.3.5.1-4) ... 1143s Setting up r-cran-mgcv (1.9-1-1) ... 1143s Setting up r-cran-rcpparmadillo (14.2.2-1-1) ... 1143s Setting up r-cran-dqrng (0.3.2+dfsg-1) ... 1143s Setting up r-cran-vctrs (0.6.5-1) ... 1143s Setting up r-cran-rcppeigen (0.3.4.0.2-1) ... 1143s Setting up r-cran-pillar (1.10.1+dfsg-1) ... 1143s Setting up r-cran-rcppannoy (0.0.22-1) ... 1143s Setting up r-cran-callr (3.7.6-1) ... 1143s Setting up r-cran-desc (1.4.3-1) ... 1143s Setting up r-cran-munsell (0.5.1-1) ... 1143s Setting up r-cran-tibble (3.2.1+dfsg-3) ... 1143s Setting up r-cran-igraph (2.1.4-1) ... 1143s Setting up r-cran-graphlayouts (1.2.1-1) ... 1143s Setting up r-cran-scales (1.3.0-1) ... 1143s Setting up r-cran-pkgbuild (1.4.6-1) ... 1143s Setting up r-cran-rspectra (0.16-2-1) ... 1143s Setting up r-cran-uwot (0.2.2-2) ... 1143s Setting up r-cran-pkgload (1.4.0-1) ... 1143s Setting up r-cran-ggplot2 (3.5.1+dfsg-1) ... 1143s Setting up r-cran-testthat (3.2.3-1) ... 1143s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1143s Processing triggers for man-db (2.13.0-1) ... 1143s Processing triggers for install-info (7.1.1-1) ... 1144s autopkgtest: DBG: testbed command exited with code 0 1144s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'r-cran-graphlayouts'], kind short, sout pipe, serr pipe, env [] 1144s autopkgtest: DBG: testbed command exited with code 0 1144s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.DfWQj9/run-unit-test-packages.all"], kind short, sout raw, serr pipe, env [] 1144s autopkgtest: DBG: testbed command exited with code 0 1144s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.DfWQj9/run-unit-test-packages.all /tmp/autopkgtest-work.coe4ribb/out/run-unit-test-packages.all 1145s autopkgtest: DBG: got reply from testbed: ok 1145s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.DfWQj9/build.z89/src'], kind short, sout raw, serr raw, env [] 1145s autopkgtest: DBG: testbed command exited with code 0 1145s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.DfWQj9/build.z89/src already exists 1145s autopkgtest [01:30:01]: test run-unit-test: [----------------------- 1145s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.DfWQj9/wrapper.sh --debug --artifacts=/tmp/autopkgtest.DfWQj9/run-unit-test-artifacts --chdir=/tmp/autopkgtest.DfWQj9/build.z89/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.DfWQj9/run-unit-test-stderr --stdout=/tmp/autopkgtest.DfWQj9/run-unit-test-stdout --tmp=/tmp/autopkgtest.DfWQj9/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=r-cran-testthat/3.2.3-1 --make-executable=/tmp/autopkgtest.DfWQj9/build.z89/src/debian/tests/run-unit-test -- /tmp/autopkgtest.DfWQj9/build.z89/src/debian/tests/run-unit-test'], kind test, sout raw, serr raw, env [] 1145s /tmp/autopkgtest.DfWQj9/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.DfWQj9/run-unit-test-artifacts 1145s /tmp/autopkgtest.DfWQj9/wrapper.sh: changing to directory: /tmp/autopkgtest.DfWQj9/build.z89/src 1145s /tmp/autopkgtest.DfWQj9/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1145s /tmp/autopkgtest.DfWQj9/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1145s /tmp/autopkgtest.DfWQj9/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1145s /tmp/autopkgtest.DfWQj9/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1145s /tmp/autopkgtest.DfWQj9/wrapper.sh: setting environment: LANG=C.UTF-8 1145s /tmp/autopkgtest.DfWQj9/wrapper.sh: unsetting environment: LANGUAGE 1145s /tmp/autopkgtest.DfWQj9/wrapper.sh: unsetting environment: LC_ADDRESS 1145s /tmp/autopkgtest.DfWQj9/wrapper.sh: unsetting environment: LC_ALL 1145s /tmp/autopkgtest.DfWQj9/wrapper.sh: unsetting environment: LC_COLLATE 1145s /tmp/autopkgtest.DfWQj9/wrapper.sh: unsetting environment: LC_CTYPE 1145s /tmp/autopkgtest.DfWQj9/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1145s /tmp/autopkgtest.DfWQj9/wrapper.sh: unsetting environment: LC_MEASUREMENT 1145s /tmp/autopkgtest.DfWQj9/wrapper.sh: unsetting environment: LC_MESSAGES 1145s /tmp/autopkgtest.DfWQj9/wrapper.sh: unsetting environment: LC_MONETARY 1145s /tmp/autopkgtest.DfWQj9/wrapper.sh: unsetting environment: LC_NAME 1145s /tmp/autopkgtest.DfWQj9/wrapper.sh: unsetting environment: LC_NUMERIC 1145s /tmp/autopkgtest.DfWQj9/wrapper.sh: unsetting environment: LC_PAPER 1145s /tmp/autopkgtest.DfWQj9/wrapper.sh: unsetting environment: LC_TELEPHONE 1145s /tmp/autopkgtest.DfWQj9/wrapper.sh: unsetting environment: LC_TIME 1145s /tmp/autopkgtest.DfWQj9/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1145s /tmp/autopkgtest.DfWQj9/wrapper.sh: pretending to be a login shell 1145s /tmp/autopkgtest.DfWQj9/wrapper.sh: will write standard error to /tmp/autopkgtest.DfWQj9/run-unit-test-stderr 1145s /tmp/autopkgtest.DfWQj9/wrapper.sh: will write stdout to /tmp/autopkgtest.DfWQj9/run-unit-test-stdout 1145s /tmp/autopkgtest.DfWQj9/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.DfWQj9/autopkgtest_tmp 1145s /tmp/autopkgtest.DfWQj9/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=r-cran-testthat/3.2.3-1 1145s /tmp/autopkgtest.DfWQj9/wrapper.sh: marking as executable: /tmp/autopkgtest.DfWQj9/build.z89/src/debian/tests/run-unit-test 1145s /tmp/autopkgtest.DfWQj9/wrapper.sh: command to run: /tmp/autopkgtest.DfWQj9/build.z89/src/debian/tests/run-unit-test 1145s /tmp/autopkgtest.DfWQj9/wrapper.sh: copying /tmp/tmp.4p8mrifQRY/out to stdout and file: /tmp/autopkgtest.DfWQj9/run-unit-test-stdout 1145s /tmp/autopkgtest.DfWQj9/wrapper.sh: copying /tmp/tmp.4p8mrifQRY/err to standard error and file: /tmp/autopkgtest.DfWQj9/run-unit-test-stdout 1145s /tmp/autopkgtest.DfWQj9/wrapper.sh: writing script pid 2968 to /tmp/autopkgtest_script_pid 1145s BEGIN TEST testthat.R 1145s 1145s R version 4.4.2 (2024-10-31) -- "Pile of Leaves" 1145s Copyright (C) 2024 The R Foundation for Statistical Computing 1145s Platform: s390x-ibm-linux-gnu 1145s 1145s R is free software and comes with ABSOLUTELY NO WARRANTY. 1145s You are welcome to redistribute it under certain conditions. 1145s Type 'license()' or 'licence()' for distribution details. 1145s 1145s R is a collaborative project with many contributors. 1145s Type 'contributors()' for more information and 1145s 'citation()' on how to cite R or R packages in publications. 1145s 1145s Type 'demo()' for some demos, 'help()' for on-line help, or 1145s 'help.start()' for an HTML browser interface to help. 1145s Type 'q()' to quit R. 1145s 1145s > library(testthat) 1145s > library(graphlayouts) 1145s > 1145s > test_check("graphlayouts") 1148s [ FAIL 0 | WARN 4 | SKIP 0 | PASS 140 ] 1148s 1148s [ FAIL 0 | WARN 4 | SKIP 0 | PASS 140 ] 1148s > 1148s /tmp/autopkgtest.DfWQj9/wrapper.sh: checking for leaked background processes... 1148s /tmp/autopkgtest.DfWQj9/wrapper.sh: waiting for tee/cat subprocesses... 1148s /tmp/autopkgtest.DfWQj9/wrapper.sh: cleaning up... 1148s /tmp/autopkgtest.DfWQj9/wrapper.sh: Exit status: 0 1148s autopkgtest: DBG: testbed command exited with code 0 1148s autopkgtest [01:30:04]: test run-unit-test: -----------------------] 1148s autopkgtest: DBG: testbed executing test finished with exit status 0 1148s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.DfWQj9/run-unit-test-stdout /tmp/autopkgtest-work.coe4ribb/out/run-unit-test-stdout 1148s autopkgtest: DBG: got reply from testbed: ok 1148s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.DfWQj9/run-unit-test-stderr /tmp/autopkgtest-work.coe4ribb/out/run-unit-test-stderr 1148s autopkgtest: DBG: got reply from testbed: ok 1149s run-unit-test PASS 1149s autopkgtest [01:30:05]: test run-unit-test: - - - - - - - - - - results - - - - - - - - - - 1149s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.DfWQj9/run-unit-test-artifacts/ /tmp/autopkgtest-work.coe4ribb/out/artifacts/ 1149s autopkgtest: DBG: got reply from testbed: ok 1149s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.DfWQj9/run-unit-test-artifacts', '/tmp/autopkgtest.DfWQj9/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1149s autopkgtest: DBG: testbed command exited with code 0 1149s autopkgtest [01:30:05]: test pkg-r-autopkgtest: preparing testbed 1149s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['r-cran-graphlayouts', 'r-cran-testthat', 'r-cran-ggplot2', 'r-cran-uwot', 'r-cran-oaqc'], deps_new=['r-cran-graphlayouts', 'r-cran-testthat', 'r-cran-ggplot2', 'r-cran-uwot', 'pkg-r-autopkgtest'] 1149s autopkgtest: DBG: testbed reset 1149s autopkgtest: DBG: sending command to testbed: revert 1220s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.DfWQj9 1220s autopkgtest: DBG: sending command to testbed: print-execute-command 1220s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.xh3a01yv/runcmd 1220s autopkgtest: DBG: sending command to testbed: capabilities 1220s autopkgtest: DBG: got reply from testbed: ok root-on-testbed revert-full-system reboot ok isolation-machine suggested-normal-user=ubuntu revert 1220s autopkgtest: DBG: testbed capabilities: ['root-on-testbed', 'revert-full-system', 'reboot', 'ok', 'isolation-machine', 'suggested-normal-user=ubuntu', 'revert', 'has_internet'] 1220s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.DfWQj9'], kind short, sout raw, serr pipe, env [] 1220s autopkgtest: DBG: testbed command exited with code 0 1220s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.DfWQj9/wrapper.sh 1221s autopkgtest: DBG: got reply from testbed: ok 1221s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.DfWQj9/wrapper.sh'], kind short, sout raw, serr pipe, env [] 1221s autopkgtest: DBG: testbed command exited with code 0 1221s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 1221s autopkgtest: DBG: testbed command exited with code 0 1221s autopkgtest [01:31:17]: testbed dpkg architecture: s390x 1221s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 1221s autopkgtest: DBG: testbed command exited with code 0 1221s autopkgtest [01:31:17]: testbed apt version: 2.9.18 1221s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 1221s autopkgtest: DBG: testbed command exited with code 0 1221s autopkgtest: DBG: testbed has eatmydata 1221s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 1222s autopkgtest: DBG: testbed command exited with code 0 1222s autopkgtest [01:31:18]: @@@@@@@@@@@@@@@@@@@@ test bed setup 1222s 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 [] 1222s autopkgtest: DBG: testbed command exited with code 0 1222s autopkgtest [01:31:18]: testbed release detected to be: plucky 1222s 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 [] 1222s autopkgtest: DBG: testbed command exited with code 0 1222s 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 [] 1222s autopkgtest: DBG: testbed command exited with code 0 1222s autopkgtest: DBG: adding APT source: Types: deb deb-src 1222s URIs: http://ftpmaster.internal/ubuntu/ 1222s Suites: plucky-proposed 1222s Components: main restricted universe multiverse 1222s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 1222s 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 [] 1223s autopkgtest: DBG: testbed command exited with code 0 1223s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 1223s Package: * 1223s Pin: release plucky-proposed 1223s Pin-Priority: 500 1223s 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 [] 1223s autopkgtest: DBG: testbed command exited with code 0 1223s autopkgtest [01:31:19]: updating testbed package index (apt update) 1223s 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'] 1224s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 1224s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 1224s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 1224s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 1224s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [882 kB] 1225s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [75.6 kB] 1225s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.8 kB] 1225s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [107 kB] 1225s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [780 kB] 1225s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3348 B] 1225s Fetched 1973 kB in 1s (1437 kB/s) 1225s Reading package lists... 1225s autopkgtest: DBG: testbed command exited with code 0 1225s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 1225s Package: * 1225s Pin: release plucky-proposed 1225s Pin-Priority: 100 1225s 1225s Package: src:r-cran-testthat:any 1225s Pin: release plucky-proposed 1225s Pin-Priority: 995 1225s 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:r-cran-testthat:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 1226s autopkgtest: DBG: testbed command exited with code 0 1226s 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.DfWQj9/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 1226s autopkgtest: DBG: testbed command exited with code 0 1226s 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'] 1226s + lsb_release --codename --short 1226s + RELEASE=plucky 1226s + cat 1226s + [ plucky != trusty ] 1226s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 1226s Reading package lists... 1226s Building dependency tree... 1226s Reading state information... 1226s Calculating upgrade... 1226s The following packages were automatically installed and are no longer required: 1226s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 1226s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 1226s linux-tools-6.11.0-8-generic 1226s Use 'sudo apt autoremove' to remove them. 1226s The following packages will be upgraded: 1226s wireless-regdb 1227s 1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1227s Need to get 7214 B of archives. 1227s After this operation, 0 B of additional disk space will be used. 1227s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x wireless-regdb all 2024.10.07-0ubuntu1 [7214 B] 1227s Fetched 7214 B in 0s (43.7 kB/s) 1227s (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 ... 80938 files and directories currently installed.) 1227s Preparing to unpack .../wireless-regdb_2024.10.07-0ubuntu1_all.deb ... 1227s Unpacking wireless-regdb (2024.10.07-0ubuntu1) over (2024.07.04-0ubuntu1) ... 1227s Setting up wireless-regdb (2024.10.07-0ubuntu1) ... 1227s Processing triggers for man-db (2.13.0-1) ... 1227s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 1227s + /usr/lib/apt/apt-helper analyze-pattern ?true 1227s + uname -r 1227s + sed s/\./\\./g 1227s + running_kernel_pattern=^linux-.*6\.12\.0-12-generic.* 1227s + apt list ?obsolete 1227s + tail -n+2 1227s + + grep -v ^linux-.*6\.12\.0-12-generic.* 1227s cut -d/ -f1 1227s + true 1227s + obsolete_pkgs= 1227s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 1227s Reading package lists... 1228s Building dependency tree... 1228s Reading state information... 1228s The following packages will be REMOVED: 1228s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 1228s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 1228s linux-tools-6.11.0-8-generic* 1228s 0 upgraded, 0 newly installed, 5 to remove and 0 not upgraded. 1228s After this operation, 143 MB disk space will be freed. 1228s (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 ... 80938 files and directories currently installed.) 1228s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 1228s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 1229s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1229s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 1229s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 1229s (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 ... 56531 files and directories currently installed.) 1229s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1229s + grep -q trusty /etc/lsb-release 1229s + [ ! -d /usr/share/doc/unattended-upgrades ] 1229s + [ ! -d /usr/share/doc/lxd ] 1229s + [ ! -d /usr/share/doc/lxd-client ] 1229s + [ ! -d /usr/share/doc/snapd ] 1229s + type iptables 1229s + cat 1229s + chmod 755 /etc/rc.local 1229s + . /etc/rc.local 1229s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 1229s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 1229s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 1229s + uname -m 1229s + [ s390x = ppc64le ] 1229s + [ -d /run/systemd/system ] 1229s + systemd-detect-virt --quiet --vm 1229s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 1229s + cat 1229s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 1229s + echo COMPRESS=lz4 1229s autopkgtest: DBG: testbed command exited with code 0 1229s autopkgtest [01:31:25]: upgrading testbed (apt dist-upgrade and autopurge) 1229s 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'] 1229s Reading package lists... 1229s Building dependency tree... 1229s Reading state information... 1230s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 1230s Starting 2 pkgProblemResolver with broken count: 0 1230s Done 1230s Entering ResolveByKeep 1230s 1230s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1230s autopkgtest: DBG: testbed command exited with code 0 1230s 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'] 1230s Reading package lists... 1230s Building dependency tree... 1230s Reading state information... 1230s Starting pkgProblemResolver with broken count: 0 1230s Starting 2 pkgProblemResolver with broken count: 0 1230s Done 1231s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1231s autopkgtest: DBG: testbed command exited with code 0 1231s 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.DfWQj9/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 1231s autopkgtest: DBG: testbed command exited with code 1 1231s autopkgtest [01:31:27]: rebooting testbed after setup commands that affected boot 1231s autopkgtest: DBG: sending command to testbed: reboot 1250s autopkgtest: DBG: got reply from testbed: ok 1250s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1250s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.DfWQj9'], kind short, sout raw, serr pipe, env [] 1251s autopkgtest: DBG: testbed command exited with code 0 1251s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.DfWQj9/autopkgtest-reboot 1251s autopkgtest: DBG: got reply from testbed: ok 1251s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.DfWQj9/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1251s autopkgtest: DBG: testbed command exited with code 0 1251s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.DfWQj9/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1252s autopkgtest: DBG: testbed command exited with code 0 1252s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.DfWQj9/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1252s autopkgtest: DBG: testbed command exited with code 0 1252s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.DfWQj9'], kind short, sout raw, serr pipe, env [] 1252s autopkgtest: DBG: testbed command exited with code 0 1252s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.DfWQj9/autopkgtest-reboot-prepare 1252s autopkgtest: DBG: got reply from testbed: ok 1252s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.DfWQj9/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1252s autopkgtest: DBG: testbed command exited with code 0 1252s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.DfWQj9/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1253s autopkgtest: DBG: testbed command exited with code 0 1253s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1253s autopkgtest: DBG: testbed command exited with code 0 1253s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.DfWQj9/testbed-packages"], kind short, sout raw, serr pipe, env [] 1253s autopkgtest: DBG: testbed command exited with code 0 1253s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.DfWQj9/testbed-packages /tmp/autopkgtest-work.coe4ribb/out/testbed-packages 1254s autopkgtest: DBG: got reply from testbed: ok 1254s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1254s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.DfWQj9'], kind short, sout raw, serr pipe, env [] 1254s autopkgtest: DBG: testbed command exited with code 0 1254s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.DfWQj9/autopkgtest-reboot 1254s autopkgtest: DBG: got reply from testbed: ok 1254s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.DfWQj9/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1254s autopkgtest: DBG: testbed command exited with code 0 1254s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.DfWQj9/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1255s autopkgtest: DBG: testbed command exited with code 0 1255s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.DfWQj9/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1255s autopkgtest: DBG: testbed command exited with code 0 1255s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.DfWQj9'], kind short, sout raw, serr pipe, env [] 1256s autopkgtest: DBG: testbed command exited with code 0 1256s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.DfWQj9/autopkgtest-reboot-prepare 1256s autopkgtest: DBG: got reply from testbed: ok 1256s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.DfWQj9/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1256s autopkgtest: DBG: testbed command exited with code 0 1256s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.DfWQj9/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1256s autopkgtest: DBG: testbed command exited with code 0 1256s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1257s autopkgtest: DBG: testbed command exited with code 0 1257s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1257s autopkgtest: DBG: install_deps: deps_new=['r-cran-graphlayouts', 'r-cran-testthat', 'r-cran-ggplot2', 'r-cran-uwot', 'pkg-r-autopkgtest'] 1257s autopkgtest: DBG: install-deps: satisfying r-cran-graphlayouts, r-cran-testthat, r-cran-ggplot2, r-cran-uwot, pkg-r-autopkgtest 1257s autopkgtest: DBG: can use apt-get on testbed: True 1257s 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', 'r-cran-graphlayouts, r-cran-testthat, r-cran-ggplot2, r-cran-uwot, pkg-r-autopkgtest'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1257s Reading package lists... 1257s Building dependency tree... 1257s Reading state information... 1257s Starting pkgProblemResolver with broken count: 0 1257s Starting 2 pkgProblemResolver with broken count: 0 1257s Done 1258s The following NEW packages will be installed: 1258s build-essential cpp cpp-14 cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu 1258s dctrl-tools fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono 1258s g++ g++-14 g++-14-s390x-linux-gnu g++-s390x-linux-gnu gcc gcc-14 1258s gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu gfortran gfortran-14 1258s gfortran-14-s390x-linux-gnu gfortran-s390x-linux-gnu icu-devtools libamd3 1258s libasan8 libblas-dev libblas3 libboost-dev libboost1.83-dev libbz2-dev 1258s libcairo2 libcc1-0 libcolamd3 libdatrie1 libdeflate-dev libdeflate0 1258s libfontconfig1 libfreetype6 libgcc-14-dev libgfortran-14-dev libgfortran5 1258s libglpk40 libgomp1 libgraphite2-3 libharfbuzz0b libice6 libicu-dev libisl23 1258s libitm1 libjbig0 libjpeg-dev libjpeg-turbo8 libjpeg-turbo8-dev libjpeg8 1258s libjpeg8-dev liblapack-dev liblapack3 libltdl7 liblzma-dev libmpc3 1258s libncurses-dev libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 1258s libpaper-utils libpaper2 libpcre2-16-0 libpcre2-32-0 libpcre2-dev 1258s libpcre2-posix3 libpixman-1-0 libpkgconf3 libpng-dev libreadline-dev 1258s libsharpyuv0 libsm6 libstdc++-14-dev libsuitesparseconfig7 libtcl8.6 1258s libthai-data libthai0 libtiff6 libtirpc-dev libtk8.6 libubsan1 libwebp7 1258s libxcb-render0 libxcb-shm0 libxft2 libxrender1 libxss1 libxt6t64 littler 1258s pkg-r-autopkgtest pkgconf pkgconf-bin r-base-core r-base-dev r-cran-bh 1258s r-cran-brio r-cran-callr r-cran-cli r-cran-colorspace r-cran-cpp11 1258s r-cran-crayon r-cran-desc r-cran-diffobj r-cran-digest r-cran-dqrng 1258s r-cran-evaluate r-cran-fansi r-cran-farver r-cran-fnn r-cran-fs 1258s r-cran-ggplot2 r-cran-glue r-cran-graphlayouts r-cran-gtable r-cran-igraph 1258s r-cran-irlba r-cran-isoband r-cran-jsonlite r-cran-labeling r-cran-lattice 1258s r-cran-lifecycle r-cran-littler r-cran-magrittr r-cran-mass r-cran-matrix 1258s r-cran-mgcv r-cran-munsell r-cran-nlme r-cran-pillar r-cran-pkgbuild 1258s r-cran-pkgconfig r-cran-pkgkitten r-cran-pkgload r-cran-praise 1258s r-cran-processx r-cran-ps r-cran-r6 r-cran-rcolorbrewer r-cran-rcpp 1258s r-cran-rcppannoy r-cran-rcpparmadillo r-cran-rcppeigen r-cran-rcppprogress 1258s r-cran-rlang r-cran-rprojroot r-cran-rspectra r-cran-scales r-cran-sitmo 1258s r-cran-testthat r-cran-tibble r-cran-utf8 r-cran-uwot r-cran-vctrs 1258s r-cran-viridislite r-cran-waldo r-cran-withr unzip x11-common xdg-utils zip 1258s zlib1g-dev 1258s 0 upgraded, 165 newly installed, 0 to remove and 0 not upgraded. 1258s Need to get 184 MB of archives. 1258s After this operation, 626 MB of additional disk space will be used. 1258s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 1258s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 1258s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-13ubuntu1 [9570 kB] 1259s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-13ubuntu1 [1026 B] 1259s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.1.0-2ubuntu1 [5452 B] 1259s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.1.0-2ubuntu1 [22.4 kB] 1259s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-13ubuntu1 [50.7 kB] 1259s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-13ubuntu1 [151 kB] 1259s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-13ubuntu1 [30.9 kB] 1259s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-13ubuntu1 [2964 kB] 1259s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-13ubuntu1 [1184 kB] 1259s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-13ubuntu1 [1037 kB] 1259s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-13ubuntu1 [18.7 MB] 1260s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-13ubuntu1 [523 kB] 1260s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.1.0-2ubuntu1 [1204 B] 1260s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.1.0-2ubuntu1 [4996 B] 1260s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-13ubuntu1 [2612 kB] 1260s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-13ubuntu1 [11.0 MB] 1260s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-13ubuntu1 [21.1 kB] 1260s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.1.0-2ubuntu1 [956 B] 1260s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.1.0-2ubuntu1 [1076 B] 1260s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 1260s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x dctrl-tools s390x 2.24-3build3 [106 kB] 1260s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 1260s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 1260s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 1260s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-1.1ubuntu2 [37.4 kB] 1260s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-1.1ubuntu2 [150 kB] 1260s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-1.1ubuntu2 [191 kB] 1260s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran5 s390x 14.2.0-13ubuntu1 [588 kB] 1260s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran-14-dev s390x 14.2.0-13ubuntu1 [654 kB] 1260s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x gfortran-14-s390x-linux-gnu s390x 14.2.0-13ubuntu1 [10.3 MB] 1260s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x gfortran-14 s390x 14.2.0-13ubuntu1 [13.2 kB] 1260s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x gfortran-s390x-linux-gnu s390x 4:14.1.0-2ubuntu1 [1016 B] 1260s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x gfortran s390x 4:14.1.0-2ubuntu1 [1160 B] 1260s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x icu-devtools s390x 76.1-1ubuntu2 [225 kB] 1260s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libsuitesparseconfig7 s390x 1:7.8.3+dfsg-2 [13.1 kB] 1260s Get:38 http://ftpmaster.internal/ubuntu plucky/universe s390x libamd3 s390x 1:7.8.3+dfsg-2 [35.1 kB] 1260s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libblas3 s390x 3.12.0-4 [238 kB] 1260s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libblas-dev s390x 3.12.0-4 [239 kB] 1260s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libboost1.83-dev s390x 1.83.0-4ubuntu2 [10.7 MB] 1261s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libboost-dev s390x 1.83.0.2ubuntu1 [4470 B] 1261s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libbz2-dev s390x 1.0.8-6 [39.1 kB] 1261s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-0 s390x 0.44.0-3 [201 kB] 1261s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 1261s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 1261s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 1261s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo2 s390x 1.18.2-2 [580 kB] 1261s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libcolamd3 s390x 1:7.8.3+dfsg-2 [23.4 kB] 1261s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libdatrie1 s390x 0.2.13-3build1 [20.6 kB] 1261s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 1261s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate-dev s390x 1.23-1 [52.2 kB] 1261s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libltdl7 s390x 2.5.4-2.1 [43.8 kB] 1261s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x libglpk40 s390x 5.0-1build2 [406 kB] 1261s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 1261s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 1261s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 1261s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 1261s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libicu-dev s390x 76.1-1ubuntu2 [12.2 MB] 1261s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 1261s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8-dev s390x 2.1.5-3ubuntu2 [281 kB] 1261s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 1261s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8-dev s390x 8c-2ubuntu11 [1484 B] 1261s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-dev s390x 8c-2ubuntu11 [1484 B] 1261s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack3 s390x 3.12.0-4 [2964 kB] 1261s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack-dev s390x 3.12.0-4 [5956 kB] 1261s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x libncurses-dev s390x 6.5-2 [404 kB] 1261s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x libthai-data all 0.1.29-2build1 [158 kB] 1261s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x libthai0 s390x 0.1.29-2build1 [20.7 kB] 1261s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x libpango-1.0-0 s390x 1.56.1-1 [253 kB] 1261s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x libpangoft2-1.0-0 s390x 1.56.1-1 [50.3 kB] 1261s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x libpangocairo-1.0-0 s390x 1.56.1-1 [28.3 kB] 1261s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x libpaper2 s390x 2.2.5-0.3 [17.2 kB] 1261s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x libpaper-utils s390x 2.2.5-0.3 [15.3 kB] 1261s Get:75 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 1261s Get:76 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-32-0 s390x 10.42-4ubuntu3 [221 kB] 1261s Get:77 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-posix3 s390x 10.42-4ubuntu3 [6820 B] 1261s Get:78 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-dev s390x 10.42-4ubuntu3 [815 kB] 1261s Get:79 http://ftpmaster.internal/ubuntu plucky/main s390x libpkgconf3 s390x 1.8.1-4 [31.2 kB] 1261s Get:80 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 1261s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x libpng-dev s390x 1.6.44-3 [279 kB] 1261s Get:82 http://ftpmaster.internal/ubuntu plucky/main s390x libreadline-dev s390x 8.2-6 [187 kB] 1261s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 1261s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 1261s Get:85 http://ftpmaster.internal/ubuntu plucky/main s390x libtcl8.6 s390x 8.6.16+dfsg-1 [1034 kB] 1262s Get:86 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 1262s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 1262s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 1262s Get:89 http://ftpmaster.internal/ubuntu plucky/main s390x libxft2 s390x 2.3.6-1build1 [49.6 kB] 1262s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x libxss1 s390x 1:1.2.3-1build3 [7396 B] 1262s Get:91 http://ftpmaster.internal/ubuntu plucky/main s390x libtk8.6 s390x 8.6.16-1 [830 kB] 1262s Get:92 http://ftpmaster.internal/ubuntu plucky/main s390x libxt6t64 s390x 1:1.2.1-1.2build1 [184 kB] 1262s Get:93 http://ftpmaster.internal/ubuntu plucky/main s390x zip s390x 3.0-14ubuntu2 [187 kB] 1262s Get:94 http://ftpmaster.internal/ubuntu plucky/main s390x unzip s390x 6.0-28ubuntu6 [186 kB] 1262s Get:95 http://ftpmaster.internal/ubuntu plucky/main s390x xdg-utils all 1.2.1-0ubuntu1 [67.5 kB] 1262s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x r-base-core s390x 4.4.2-1build1 [28.6 MB] 1262s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-littler s390x 0.3.20-2 [95.0 kB] 1262s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x littler all 0.3.20-2 [2554 B] 1262s Get:99 http://ftpmaster.internal/ubuntu plucky/main s390x liblzma-dev s390x 5.6.3-1 [183 kB] 1262s Get:100 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf-bin s390x 1.8.1-4 [21.5 kB] 1263s Get:101 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf s390x 1.8.1-4 [16.7 kB] 1263s Get:102 http://ftpmaster.internal/ubuntu plucky/main s390x libtirpc-dev s390x 1.3.4+ds-1.3 [196 kB] 1264s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x r-base-dev all 4.4.2-1build1 [4342 B] 1264s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x pkg-r-autopkgtest all 20231212ubuntu1 [6448 B] 1264s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-bh all 1.84.0-1 [5962 B] 1264s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-brio s390x 1.1.5-1 [38.6 kB] 1264s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-ps s390x 1.8.1-1 [395 kB] 1264s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-r6 all 2.5.1-1 [99.0 kB] 1265s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-processx s390x 3.8.5-1 [354 kB] 1265s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-callr all 3.7.6-1 [458 kB] 1266s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-cli s390x 3.6.3-1 [1349 kB] 1276s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-colorspace s390x 2.1-1+dfsg-1 [1567 kB] 1286s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-cpp11 all 0.5.1-1 [233 kB] 1288s Get:114 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-crayon all 1.5.3-1 [165 kB] 1290s Get:115 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-desc all 1.4.3-1 [359 kB] 1292s Get:116 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-diffobj s390x 0.3.5-1 [1115 kB] 1297s Get:117 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-digest s390x 0.6.37-1 [205 kB] 1298s Get:118 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-pkgkitten all 0.2.4-1 [27.2 kB] 1299s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rcpp s390x 1.0.14-1 [2003 kB] 1315s Get:120 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-sitmo s390x 2.0.2-1 [129 kB] 1316s Get:121 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-dqrng s390x 0.3.2+dfsg-1 [165 kB] 1318s Get:122 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-evaluate all 1.0.3-1 [114 kB] 1318s Get:123 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-fansi s390x 1.0.5-1 [615 kB] 1321s Get:124 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-farver s390x 2.1.2-1 [1353 kB] 1329s Get:125 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-fnn s390x 1.1.4.1-1 [132 kB] 1331s Get:126 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-fs s390x 1.6.5+dfsg-1 [245 kB] 1334s Get:127 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-glue s390x 1.8.0-1 [164 kB] 1336s Get:128 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rlang s390x 1.1.5-1 [1713 kB] 1346s Get:129 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-lifecycle all 1.0.4+dfsg-1 [110 kB] 1346s Get:130 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-gtable all 0.3.6+dfsg-1 [199 kB] 1347s Get:131 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-isoband s390x 0.2.7-1 [1481 kB] 1358s Get:132 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-mass s390x 7.3-64-1 [1113 kB] 1364s Get:133 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-lattice s390x 0.22-6-1 [1340 kB] 1374s Get:134 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-nlme s390x 3.1.167-1 [2323 kB] 1398s Get:135 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-matrix s390x 1.7-2-1 [4441 kB] 1402s Get:136 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-mgcv s390x 1.9-1-1 [3348 kB] 1402s Get:137 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-labeling all 0.4.3-1 [62.1 kB] 1403s Get:138 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-munsell all 0.5.1-1 [213 kB] 1403s Get:139 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rcolorbrewer all 1.1-3-1build1 [55.4 kB] 1403s Get:140 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-viridislite all 0.4.2-2 [1088 kB] 1403s Get:141 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-scales all 1.3.0-1 [603 kB] 1403s Get:142 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-magrittr s390x 2.0.3-1 [154 kB] 1403s Get:143 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-utf8 s390x 1.2.4-1 [143 kB] 1403s Get:144 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-vctrs s390x 0.6.5-1 [1448 kB] 1403s Get:145 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-pillar all 1.10.1+dfsg-1 [453 kB] 1403s Get:146 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-pkgconfig all 2.0.3-2build1 [19.7 kB] 1403s Get:147 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-tibble s390x 3.2.1+dfsg-3 [420 kB] 1404s Get:148 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-withr all 3.0.2+dfsg-1 [214 kB] 1404s Get:149 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-ggplot2 all 3.5.1+dfsg-1 [3940 kB] 1404s Get:150 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-igraph s390x 2.1.4-1 [5311 kB] 1405s Get:151 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rcpparmadillo s390x 14.2.2-1-1 [851 kB] 1405s Get:152 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-graphlayouts s390x 1.2.1-1 [1879 kB] 1405s Get:153 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-irlba s390x 2.3.5.1-4 [296 kB] 1405s Get:154 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-jsonlite s390x 1.8.9+dfsg-1 [447 kB] 1405s Get:155 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-pkgbuild all 1.4.6-1 [213 kB] 1405s Get:156 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rprojroot all 2.0.4-2 [125 kB] 1405s Get:157 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-pkgload all 1.4.0-1 [247 kB] 1405s Get:158 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-praise all 1.0.0-4build1 [20.3 kB] 1405s Get:159 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rcppannoy s390x 0.0.22-1 [246 kB] 1406s Get:160 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rcppeigen s390x 0.3.4.0.2-1 [1429 kB] 1406s Get:161 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rcppprogress all 0.4.2-2build1 [22.0 kB] 1406s Get:162 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rspectra s390x 0.16-2-1 [473 kB] 1406s Get:163 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-waldo all 0.6.1-1 [150 kB] 1406s Get:164 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x r-cran-testthat s390x 3.2.3-1 [1641 kB] 1406s Get:165 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-uwot s390x 0.2.2-2 [954 kB] 1407s Preconfiguring packages ... 1407s Fetched 184 MB in 2min 28s (1239 kB/s) 1407s Selecting previously unselected package libisl23:s390x. 1407s (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 ... 56531 files and directories currently installed.) 1407s Preparing to unpack .../000-libisl23_0.27-1_s390x.deb ... 1407s Unpacking libisl23:s390x (0.27-1) ... 1407s Selecting previously unselected package libmpc3:s390x. 1407s Preparing to unpack .../001-libmpc3_1.3.1-1build2_s390x.deb ... 1407s Unpacking libmpc3:s390x (1.3.1-1build2) ... 1407s Selecting previously unselected package cpp-14-s390x-linux-gnu. 1407s Preparing to unpack .../002-cpp-14-s390x-linux-gnu_14.2.0-13ubuntu1_s390x.deb ... 1407s Unpacking cpp-14-s390x-linux-gnu (14.2.0-13ubuntu1) ... 1407s Selecting previously unselected package cpp-14. 1407s Preparing to unpack .../003-cpp-14_14.2.0-13ubuntu1_s390x.deb ... 1407s Unpacking cpp-14 (14.2.0-13ubuntu1) ... 1407s Selecting previously unselected package cpp-s390x-linux-gnu. 1407s Preparing to unpack .../004-cpp-s390x-linux-gnu_4%3a14.1.0-2ubuntu1_s390x.deb ... 1407s Unpacking cpp-s390x-linux-gnu (4:14.1.0-2ubuntu1) ... 1407s Selecting previously unselected package cpp. 1407s Preparing to unpack .../005-cpp_4%3a14.1.0-2ubuntu1_s390x.deb ... 1407s Unpacking cpp (4:14.1.0-2ubuntu1) ... 1407s Selecting previously unselected package libcc1-0:s390x. 1407s Preparing to unpack .../006-libcc1-0_14.2.0-13ubuntu1_s390x.deb ... 1407s Unpacking libcc1-0:s390x (14.2.0-13ubuntu1) ... 1407s Selecting previously unselected package libgomp1:s390x. 1407s Preparing to unpack .../007-libgomp1_14.2.0-13ubuntu1_s390x.deb ... 1407s Unpacking libgomp1:s390x (14.2.0-13ubuntu1) ... 1407s Selecting previously unselected package libitm1:s390x. 1407s Preparing to unpack .../008-libitm1_14.2.0-13ubuntu1_s390x.deb ... 1407s Unpacking libitm1:s390x (14.2.0-13ubuntu1) ... 1407s Selecting previously unselected package libasan8:s390x. 1407s Preparing to unpack .../009-libasan8_14.2.0-13ubuntu1_s390x.deb ... 1407s Unpacking libasan8:s390x (14.2.0-13ubuntu1) ... 1407s Selecting previously unselected package libubsan1:s390x. 1407s Preparing to unpack .../010-libubsan1_14.2.0-13ubuntu1_s390x.deb ... 1407s Unpacking libubsan1:s390x (14.2.0-13ubuntu1) ... 1407s Selecting previously unselected package libgcc-14-dev:s390x. 1407s Preparing to unpack .../011-libgcc-14-dev_14.2.0-13ubuntu1_s390x.deb ... 1407s Unpacking libgcc-14-dev:s390x (14.2.0-13ubuntu1) ... 1407s Selecting previously unselected package gcc-14-s390x-linux-gnu. 1407s Preparing to unpack .../012-gcc-14-s390x-linux-gnu_14.2.0-13ubuntu1_s390x.deb ... 1407s Unpacking gcc-14-s390x-linux-gnu (14.2.0-13ubuntu1) ... 1407s Selecting previously unselected package gcc-14. 1407s Preparing to unpack .../013-gcc-14_14.2.0-13ubuntu1_s390x.deb ... 1407s Unpacking gcc-14 (14.2.0-13ubuntu1) ... 1407s Selecting previously unselected package gcc-s390x-linux-gnu. 1407s Preparing to unpack .../014-gcc-s390x-linux-gnu_4%3a14.1.0-2ubuntu1_s390x.deb ... 1407s Unpacking gcc-s390x-linux-gnu (4:14.1.0-2ubuntu1) ... 1407s Selecting previously unselected package gcc. 1407s Preparing to unpack .../015-gcc_4%3a14.1.0-2ubuntu1_s390x.deb ... 1407s Unpacking gcc (4:14.1.0-2ubuntu1) ... 1407s Selecting previously unselected package libstdc++-14-dev:s390x. 1407s Preparing to unpack .../016-libstdc++-14-dev_14.2.0-13ubuntu1_s390x.deb ... 1407s Unpacking libstdc++-14-dev:s390x (14.2.0-13ubuntu1) ... 1407s Selecting previously unselected package g++-14-s390x-linux-gnu. 1407s Preparing to unpack .../017-g++-14-s390x-linux-gnu_14.2.0-13ubuntu1_s390x.deb ... 1407s Unpacking g++-14-s390x-linux-gnu (14.2.0-13ubuntu1) ... 1408s Selecting previously unselected package g++-14. 1408s Preparing to unpack .../018-g++-14_14.2.0-13ubuntu1_s390x.deb ... 1408s Unpacking g++-14 (14.2.0-13ubuntu1) ... 1408s Selecting previously unselected package g++-s390x-linux-gnu. 1408s Preparing to unpack .../019-g++-s390x-linux-gnu_4%3a14.1.0-2ubuntu1_s390x.deb ... 1408s Unpacking g++-s390x-linux-gnu (4:14.1.0-2ubuntu1) ... 1408s Selecting previously unselected package g++. 1408s Preparing to unpack .../020-g++_4%3a14.1.0-2ubuntu1_s390x.deb ... 1408s Unpacking g++ (4:14.1.0-2ubuntu1) ... 1408s Selecting previously unselected package build-essential. 1408s Preparing to unpack .../021-build-essential_12.10ubuntu1_s390x.deb ... 1408s Unpacking build-essential (12.10ubuntu1) ... 1408s Selecting previously unselected package dctrl-tools. 1408s Preparing to unpack .../022-dctrl-tools_2.24-3build3_s390x.deb ... 1408s Unpacking dctrl-tools (2.24-3build3) ... 1408s Selecting previously unselected package libfreetype6:s390x. 1408s Preparing to unpack .../023-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 1408s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 1408s Selecting previously unselected package fonts-dejavu-mono. 1408s Preparing to unpack .../024-fonts-dejavu-mono_2.37-8_all.deb ... 1408s Unpacking fonts-dejavu-mono (2.37-8) ... 1408s Selecting previously unselected package fonts-dejavu-core. 1408s Preparing to unpack .../025-fonts-dejavu-core_2.37-8_all.deb ... 1408s Unpacking fonts-dejavu-core (2.37-8) ... 1408s Selecting previously unselected package fontconfig-config. 1408s Preparing to unpack .../026-fontconfig-config_2.15.0-1.1ubuntu2_s390x.deb ... 1408s Unpacking fontconfig-config (2.15.0-1.1ubuntu2) ... 1408s Selecting previously unselected package libfontconfig1:s390x. 1408s Preparing to unpack .../027-libfontconfig1_2.15.0-1.1ubuntu2_s390x.deb ... 1408s Unpacking libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 1408s Selecting previously unselected package fontconfig. 1408s Preparing to unpack .../028-fontconfig_2.15.0-1.1ubuntu2_s390x.deb ... 1408s Unpacking fontconfig (2.15.0-1.1ubuntu2) ... 1408s Selecting previously unselected package libgfortran5:s390x. 1408s Preparing to unpack .../029-libgfortran5_14.2.0-13ubuntu1_s390x.deb ... 1408s Unpacking libgfortran5:s390x (14.2.0-13ubuntu1) ... 1408s Selecting previously unselected package libgfortran-14-dev:s390x. 1408s Preparing to unpack .../030-libgfortran-14-dev_14.2.0-13ubuntu1_s390x.deb ... 1408s Unpacking libgfortran-14-dev:s390x (14.2.0-13ubuntu1) ... 1408s Selecting previously unselected package gfortran-14-s390x-linux-gnu. 1408s Preparing to unpack .../031-gfortran-14-s390x-linux-gnu_14.2.0-13ubuntu1_s390x.deb ... 1408s Unpacking gfortran-14-s390x-linux-gnu (14.2.0-13ubuntu1) ... 1408s Selecting previously unselected package gfortran-14. 1408s Preparing to unpack .../032-gfortran-14_14.2.0-13ubuntu1_s390x.deb ... 1408s Unpacking gfortran-14 (14.2.0-13ubuntu1) ... 1408s Selecting previously unselected package gfortran-s390x-linux-gnu. 1408s Preparing to unpack .../033-gfortran-s390x-linux-gnu_4%3a14.1.0-2ubuntu1_s390x.deb ... 1408s Unpacking gfortran-s390x-linux-gnu (4:14.1.0-2ubuntu1) ... 1408s Selecting previously unselected package gfortran. 1408s Preparing to unpack .../034-gfortran_4%3a14.1.0-2ubuntu1_s390x.deb ... 1408s Unpacking gfortran (4:14.1.0-2ubuntu1) ... 1408s Selecting previously unselected package icu-devtools. 1408s Preparing to unpack .../035-icu-devtools_76.1-1ubuntu2_s390x.deb ... 1408s Unpacking icu-devtools (76.1-1ubuntu2) ... 1408s Selecting previously unselected package libsuitesparseconfig7:s390x. 1408s Preparing to unpack .../036-libsuitesparseconfig7_1%3a7.8.3+dfsg-2_s390x.deb ... 1408s Unpacking libsuitesparseconfig7:s390x (1:7.8.3+dfsg-2) ... 1408s Selecting previously unselected package libamd3:s390x. 1408s Preparing to unpack .../037-libamd3_1%3a7.8.3+dfsg-2_s390x.deb ... 1408s Unpacking libamd3:s390x (1:7.8.3+dfsg-2) ... 1408s Selecting previously unselected package libblas3:s390x. 1408s Preparing to unpack .../038-libblas3_3.12.0-4_s390x.deb ... 1408s Unpacking libblas3:s390x (3.12.0-4) ... 1408s Selecting previously unselected package libblas-dev:s390x. 1408s Preparing to unpack .../039-libblas-dev_3.12.0-4_s390x.deb ... 1408s Unpacking libblas-dev:s390x (3.12.0-4) ... 1408s Selecting previously unselected package libboost1.83-dev:s390x. 1408s Preparing to unpack .../040-libboost1.83-dev_1.83.0-4ubuntu2_s390x.deb ... 1408s Unpacking libboost1.83-dev:s390x (1.83.0-4ubuntu2) ... 1409s Selecting previously unselected package libboost-dev:s390x. 1409s Preparing to unpack .../041-libboost-dev_1.83.0.2ubuntu1_s390x.deb ... 1409s Unpacking libboost-dev:s390x (1.83.0.2ubuntu1) ... 1409s Selecting previously unselected package libbz2-dev:s390x. 1409s Preparing to unpack .../042-libbz2-dev_1.0.8-6_s390x.deb ... 1409s Unpacking libbz2-dev:s390x (1.0.8-6) ... 1409s Selecting previously unselected package libpixman-1-0:s390x. 1409s Preparing to unpack .../043-libpixman-1-0_0.44.0-3_s390x.deb ... 1409s Unpacking libpixman-1-0:s390x (0.44.0-3) ... 1409s Selecting previously unselected package libxcb-render0:s390x. 1409s Preparing to unpack .../044-libxcb-render0_1.17.0-2_s390x.deb ... 1409s Unpacking libxcb-render0:s390x (1.17.0-2) ... 1409s Selecting previously unselected package libxcb-shm0:s390x. 1409s Preparing to unpack .../045-libxcb-shm0_1.17.0-2_s390x.deb ... 1409s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 1409s Selecting previously unselected package libxrender1:s390x. 1409s Preparing to unpack .../046-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 1409s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 1409s Selecting previously unselected package libcairo2:s390x. 1409s Preparing to unpack .../047-libcairo2_1.18.2-2_s390x.deb ... 1409s Unpacking libcairo2:s390x (1.18.2-2) ... 1409s Selecting previously unselected package libcolamd3:s390x. 1409s Preparing to unpack .../048-libcolamd3_1%3a7.8.3+dfsg-2_s390x.deb ... 1409s Unpacking libcolamd3:s390x (1:7.8.3+dfsg-2) ... 1409s Selecting previously unselected package libdatrie1:s390x. 1409s Preparing to unpack .../049-libdatrie1_0.2.13-3build1_s390x.deb ... 1409s Unpacking libdatrie1:s390x (0.2.13-3build1) ... 1409s Selecting previously unselected package libdeflate0:s390x. 1409s Preparing to unpack .../050-libdeflate0_1.23-1_s390x.deb ... 1409s Unpacking libdeflate0:s390x (1.23-1) ... 1409s Selecting previously unselected package libdeflate-dev:s390x. 1409s Preparing to unpack .../051-libdeflate-dev_1.23-1_s390x.deb ... 1409s Unpacking libdeflate-dev:s390x (1.23-1) ... 1409s Selecting previously unselected package libltdl7:s390x. 1409s Preparing to unpack .../052-libltdl7_2.5.4-2.1_s390x.deb ... 1409s Unpacking libltdl7:s390x (2.5.4-2.1) ... 1409s Selecting previously unselected package libglpk40:s390x. 1409s Preparing to unpack .../053-libglpk40_5.0-1build2_s390x.deb ... 1409s Unpacking libglpk40:s390x (5.0-1build2) ... 1409s Selecting previously unselected package libgraphite2-3:s390x. 1409s Preparing to unpack .../054-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 1409s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 1409s Selecting previously unselected package libharfbuzz0b:s390x. 1409s Preparing to unpack .../055-libharfbuzz0b_10.2.0-1_s390x.deb ... 1409s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 1409s Selecting previously unselected package x11-common. 1409s Preparing to unpack .../056-x11-common_1%3a7.7+23ubuntu3_all.deb ... 1409s Unpacking x11-common (1:7.7+23ubuntu3) ... 1409s Selecting previously unselected package libice6:s390x. 1409s Preparing to unpack .../057-libice6_2%3a1.1.1-1_s390x.deb ... 1409s Unpacking libice6:s390x (2:1.1.1-1) ... 1409s Selecting previously unselected package libicu-dev:s390x. 1409s Preparing to unpack .../058-libicu-dev_76.1-1ubuntu2_s390x.deb ... 1409s Unpacking libicu-dev:s390x (76.1-1ubuntu2) ... 1410s Selecting previously unselected package libjpeg-turbo8:s390x. 1410s Preparing to unpack .../059-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 1410s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 1410s Selecting previously unselected package libjpeg-turbo8-dev:s390x. 1410s Preparing to unpack .../060-libjpeg-turbo8-dev_2.1.5-3ubuntu2_s390x.deb ... 1410s Unpacking libjpeg-turbo8-dev:s390x (2.1.5-3ubuntu2) ... 1410s Selecting previously unselected package libjpeg8:s390x. 1410s Preparing to unpack .../061-libjpeg8_8c-2ubuntu11_s390x.deb ... 1410s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 1410s Selecting previously unselected package libjpeg8-dev:s390x. 1410s Preparing to unpack .../062-libjpeg8-dev_8c-2ubuntu11_s390x.deb ... 1410s Unpacking libjpeg8-dev:s390x (8c-2ubuntu11) ... 1410s Selecting previously unselected package libjpeg-dev:s390x. 1410s Preparing to unpack .../063-libjpeg-dev_8c-2ubuntu11_s390x.deb ... 1410s Unpacking libjpeg-dev:s390x (8c-2ubuntu11) ... 1410s Selecting previously unselected package liblapack3:s390x. 1410s Preparing to unpack .../064-liblapack3_3.12.0-4_s390x.deb ... 1410s Unpacking liblapack3:s390x (3.12.0-4) ... 1410s Selecting previously unselected package liblapack-dev:s390x. 1410s Preparing to unpack .../065-liblapack-dev_3.12.0-4_s390x.deb ... 1410s Unpacking liblapack-dev:s390x (3.12.0-4) ... 1410s Selecting previously unselected package libncurses-dev:s390x. 1410s Preparing to unpack .../066-libncurses-dev_6.5-2_s390x.deb ... 1410s Unpacking libncurses-dev:s390x (6.5-2) ... 1410s Selecting previously unselected package libthai-data. 1410s Preparing to unpack .../067-libthai-data_0.1.29-2build1_all.deb ... 1410s Unpacking libthai-data (0.1.29-2build1) ... 1410s Selecting previously unselected package libthai0:s390x. 1410s Preparing to unpack .../068-libthai0_0.1.29-2build1_s390x.deb ... 1410s Unpacking libthai0:s390x (0.1.29-2build1) ... 1410s Selecting previously unselected package libpango-1.0-0:s390x. 1410s Preparing to unpack .../069-libpango-1.0-0_1.56.1-1_s390x.deb ... 1410s Unpacking libpango-1.0-0:s390x (1.56.1-1) ... 1410s Selecting previously unselected package libpangoft2-1.0-0:s390x. 1410s Preparing to unpack .../070-libpangoft2-1.0-0_1.56.1-1_s390x.deb ... 1410s Unpacking libpangoft2-1.0-0:s390x (1.56.1-1) ... 1410s Selecting previously unselected package libpangocairo-1.0-0:s390x. 1410s Preparing to unpack .../071-libpangocairo-1.0-0_1.56.1-1_s390x.deb ... 1410s Unpacking libpangocairo-1.0-0:s390x (1.56.1-1) ... 1410s Selecting previously unselected package libpaper2:s390x. 1410s Preparing to unpack .../072-libpaper2_2.2.5-0.3_s390x.deb ... 1410s Unpacking libpaper2:s390x (2.2.5-0.3) ... 1410s Selecting previously unselected package libpaper-utils. 1410s Preparing to unpack .../073-libpaper-utils_2.2.5-0.3_s390x.deb ... 1410s Unpacking libpaper-utils (2.2.5-0.3) ... 1410s Selecting previously unselected package libpcre2-16-0:s390x. 1410s Preparing to unpack .../074-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 1410s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 1410s Selecting previously unselected package libpcre2-32-0:s390x. 1410s Preparing to unpack .../075-libpcre2-32-0_10.42-4ubuntu3_s390x.deb ... 1410s Unpacking libpcre2-32-0:s390x (10.42-4ubuntu3) ... 1410s Selecting previously unselected package libpcre2-posix3:s390x. 1410s Preparing to unpack .../076-libpcre2-posix3_10.42-4ubuntu3_s390x.deb ... 1410s Unpacking libpcre2-posix3:s390x (10.42-4ubuntu3) ... 1410s Selecting previously unselected package libpcre2-dev:s390x. 1410s Preparing to unpack .../077-libpcre2-dev_10.42-4ubuntu3_s390x.deb ... 1410s Unpacking libpcre2-dev:s390x (10.42-4ubuntu3) ... 1410s Selecting previously unselected package libpkgconf3:s390x. 1410s Preparing to unpack .../078-libpkgconf3_1.8.1-4_s390x.deb ... 1410s Unpacking libpkgconf3:s390x (1.8.1-4) ... 1410s Selecting previously unselected package zlib1g-dev:s390x. 1410s Preparing to unpack .../079-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 1410s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 1410s Selecting previously unselected package libpng-dev:s390x. 1410s Preparing to unpack .../080-libpng-dev_1.6.44-3_s390x.deb ... 1410s Unpacking libpng-dev:s390x (1.6.44-3) ... 1410s Selecting previously unselected package libreadline-dev:s390x. 1410s Preparing to unpack .../081-libreadline-dev_8.2-6_s390x.deb ... 1410s Unpacking libreadline-dev:s390x (8.2-6) ... 1410s Selecting previously unselected package libsharpyuv0:s390x. 1410s Preparing to unpack .../082-libsharpyuv0_1.5.0-0.1_s390x.deb ... 1410s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 1410s Selecting previously unselected package libsm6:s390x. 1410s Preparing to unpack .../083-libsm6_2%3a1.2.4-1_s390x.deb ... 1410s Unpacking libsm6:s390x (2:1.2.4-1) ... 1410s Selecting previously unselected package libtcl8.6:s390x. 1410s Preparing to unpack .../084-libtcl8.6_8.6.16+dfsg-1_s390x.deb ... 1410s Unpacking libtcl8.6:s390x (8.6.16+dfsg-1) ... 1410s Selecting previously unselected package libjbig0:s390x. 1410s Preparing to unpack .../085-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 1410s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 1410s Selecting previously unselected package libwebp7:s390x. 1410s Preparing to unpack .../086-libwebp7_1.5.0-0.1_s390x.deb ... 1410s Unpacking libwebp7:s390x (1.5.0-0.1) ... 1410s Selecting previously unselected package libtiff6:s390x. 1410s Preparing to unpack .../087-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 1410s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 1410s Selecting previously unselected package libxft2:s390x. 1410s Preparing to unpack .../088-libxft2_2.3.6-1build1_s390x.deb ... 1410s Unpacking libxft2:s390x (2.3.6-1build1) ... 1410s Selecting previously unselected package libxss1:s390x. 1410s Preparing to unpack .../089-libxss1_1%3a1.2.3-1build3_s390x.deb ... 1410s Unpacking libxss1:s390x (1:1.2.3-1build3) ... 1410s Selecting previously unselected package libtk8.6:s390x. 1410s Preparing to unpack .../090-libtk8.6_8.6.16-1_s390x.deb ... 1410s Unpacking libtk8.6:s390x (8.6.16-1) ... 1410s Selecting previously unselected package libxt6t64:s390x. 1410s Preparing to unpack .../091-libxt6t64_1%3a1.2.1-1.2build1_s390x.deb ... 1410s Unpacking libxt6t64:s390x (1:1.2.1-1.2build1) ... 1410s Selecting previously unselected package zip. 1410s Preparing to unpack .../092-zip_3.0-14ubuntu2_s390x.deb ... 1410s Unpacking zip (3.0-14ubuntu2) ... 1410s Selecting previously unselected package unzip. 1410s Preparing to unpack .../093-unzip_6.0-28ubuntu6_s390x.deb ... 1410s Unpacking unzip (6.0-28ubuntu6) ... 1410s Selecting previously unselected package xdg-utils. 1410s Preparing to unpack .../094-xdg-utils_1.2.1-0ubuntu1_all.deb ... 1410s Unpacking xdg-utils (1.2.1-0ubuntu1) ... 1410s Selecting previously unselected package r-base-core. 1410s Preparing to unpack .../095-r-base-core_4.4.2-1build1_s390x.deb ... 1410s Unpacking r-base-core (4.4.2-1build1) ... 1410s Selecting previously unselected package r-cran-littler. 1410s Preparing to unpack .../096-r-cran-littler_0.3.20-2_s390x.deb ... 1410s Unpacking r-cran-littler (0.3.20-2) ... 1410s Selecting previously unselected package littler. 1410s Preparing to unpack .../097-littler_0.3.20-2_all.deb ... 1410s Unpacking littler (0.3.20-2) ... 1410s Selecting previously unselected package liblzma-dev:s390x. 1410s Preparing to unpack .../098-liblzma-dev_5.6.3-1_s390x.deb ... 1410s Unpacking liblzma-dev:s390x (5.6.3-1) ... 1411s Selecting previously unselected package pkgconf-bin. 1411s Preparing to unpack .../099-pkgconf-bin_1.8.1-4_s390x.deb ... 1411s Unpacking pkgconf-bin (1.8.1-4) ... 1411s Selecting previously unselected package pkgconf:s390x. 1411s Preparing to unpack .../100-pkgconf_1.8.1-4_s390x.deb ... 1411s Unpacking pkgconf:s390x (1.8.1-4) ... 1411s Selecting previously unselected package libtirpc-dev:s390x. 1411s Preparing to unpack .../101-libtirpc-dev_1.3.4+ds-1.3_s390x.deb ... 1411s Unpacking libtirpc-dev:s390x (1.3.4+ds-1.3) ... 1411s Selecting previously unselected package r-base-dev. 1411s Preparing to unpack .../102-r-base-dev_4.4.2-1build1_all.deb ... 1411s Unpacking r-base-dev (4.4.2-1build1) ... 1411s Selecting previously unselected package pkg-r-autopkgtest. 1411s Preparing to unpack .../103-pkg-r-autopkgtest_20231212ubuntu1_all.deb ... 1411s Unpacking pkg-r-autopkgtest (20231212ubuntu1) ... 1411s Selecting previously unselected package r-cran-bh. 1411s Preparing to unpack .../104-r-cran-bh_1.84.0-1_all.deb ... 1411s Unpacking r-cran-bh (1.84.0-1) ... 1411s Selecting previously unselected package r-cran-brio. 1411s Preparing to unpack .../105-r-cran-brio_1.1.5-1_s390x.deb ... 1411s Unpacking r-cran-brio (1.1.5-1) ... 1411s Selecting previously unselected package r-cran-ps. 1411s Preparing to unpack .../106-r-cran-ps_1.8.1-1_s390x.deb ... 1411s Unpacking r-cran-ps (1.8.1-1) ... 1411s Selecting previously unselected package r-cran-r6. 1411s Preparing to unpack .../107-r-cran-r6_2.5.1-1_all.deb ... 1411s Unpacking r-cran-r6 (2.5.1-1) ... 1411s Selecting previously unselected package r-cran-processx. 1411s Preparing to unpack .../108-r-cran-processx_3.8.5-1_s390x.deb ... 1411s Unpacking r-cran-processx (3.8.5-1) ... 1411s Selecting previously unselected package r-cran-callr. 1411s Preparing to unpack .../109-r-cran-callr_3.7.6-1_all.deb ... 1411s Unpacking r-cran-callr (3.7.6-1) ... 1411s Selecting previously unselected package r-cran-cli. 1411s Preparing to unpack .../110-r-cran-cli_3.6.3-1_s390x.deb ... 1411s Unpacking r-cran-cli (3.6.3-1) ... 1411s Selecting previously unselected package r-cran-colorspace. 1411s Preparing to unpack .../111-r-cran-colorspace_2.1-1+dfsg-1_s390x.deb ... 1411s Unpacking r-cran-colorspace (2.1-1+dfsg-1) ... 1411s Selecting previously unselected package r-cran-cpp11. 1411s Preparing to unpack .../112-r-cran-cpp11_0.5.1-1_all.deb ... 1411s Unpacking r-cran-cpp11 (0.5.1-1) ... 1411s Selecting previously unselected package r-cran-crayon. 1411s Preparing to unpack .../113-r-cran-crayon_1.5.3-1_all.deb ... 1411s Unpacking r-cran-crayon (1.5.3-1) ... 1411s Selecting previously unselected package r-cran-desc. 1411s Preparing to unpack .../114-r-cran-desc_1.4.3-1_all.deb ... 1411s Unpacking r-cran-desc (1.4.3-1) ... 1411s Selecting previously unselected package r-cran-diffobj. 1411s Preparing to unpack .../115-r-cran-diffobj_0.3.5-1_s390x.deb ... 1411s Unpacking r-cran-diffobj (0.3.5-1) ... 1411s Selecting previously unselected package r-cran-digest. 1411s Preparing to unpack .../116-r-cran-digest_0.6.37-1_s390x.deb ... 1411s Unpacking r-cran-digest (0.6.37-1) ... 1411s Selecting previously unselected package r-cran-pkgkitten. 1411s Preparing to unpack .../117-r-cran-pkgkitten_0.2.4-1_all.deb ... 1411s Unpacking r-cran-pkgkitten (0.2.4-1) ... 1411s Selecting previously unselected package r-cran-rcpp. 1411s Preparing to unpack .../118-r-cran-rcpp_1.0.14-1_s390x.deb ... 1411s Unpacking r-cran-rcpp (1.0.14-1) ... 1411s Selecting previously unselected package r-cran-sitmo. 1411s Preparing to unpack .../119-r-cran-sitmo_2.0.2-1_s390x.deb ... 1411s Unpacking r-cran-sitmo (2.0.2-1) ... 1411s Selecting previously unselected package r-cran-dqrng. 1411s Preparing to unpack .../120-r-cran-dqrng_0.3.2+dfsg-1_s390x.deb ... 1411s Unpacking r-cran-dqrng (0.3.2+dfsg-1) ... 1411s Selecting previously unselected package r-cran-evaluate. 1411s Preparing to unpack .../121-r-cran-evaluate_1.0.3-1_all.deb ... 1411s Unpacking r-cran-evaluate (1.0.3-1) ... 1411s Selecting previously unselected package r-cran-fansi. 1411s Preparing to unpack .../122-r-cran-fansi_1.0.5-1_s390x.deb ... 1411s Unpacking r-cran-fansi (1.0.5-1) ... 1411s Selecting previously unselected package r-cran-farver. 1411s Preparing to unpack .../123-r-cran-farver_2.1.2-1_s390x.deb ... 1411s Unpacking r-cran-farver (2.1.2-1) ... 1411s Selecting previously unselected package r-cran-fnn. 1411s Preparing to unpack .../124-r-cran-fnn_1.1.4.1-1_s390x.deb ... 1411s Unpacking r-cran-fnn (1.1.4.1-1) ... 1411s Selecting previously unselected package r-cran-fs. 1411s Preparing to unpack .../125-r-cran-fs_1.6.5+dfsg-1_s390x.deb ... 1411s Unpacking r-cran-fs (1.6.5+dfsg-1) ... 1411s Selecting previously unselected package r-cran-glue. 1411s Preparing to unpack .../126-r-cran-glue_1.8.0-1_s390x.deb ... 1411s Unpacking r-cran-glue (1.8.0-1) ... 1411s Selecting previously unselected package r-cran-rlang. 1411s Preparing to unpack .../127-r-cran-rlang_1.1.5-1_s390x.deb ... 1411s Unpacking r-cran-rlang (1.1.5-1) ... 1411s Selecting previously unselected package r-cran-lifecycle. 1411s Preparing to unpack .../128-r-cran-lifecycle_1.0.4+dfsg-1_all.deb ... 1411s Unpacking r-cran-lifecycle (1.0.4+dfsg-1) ... 1411s Selecting previously unselected package r-cran-gtable. 1411s Preparing to unpack .../129-r-cran-gtable_0.3.6+dfsg-1_all.deb ... 1411s Unpacking r-cran-gtable (0.3.6+dfsg-1) ... 1411s Selecting previously unselected package r-cran-isoband. 1411s Preparing to unpack .../130-r-cran-isoband_0.2.7-1_s390x.deb ... 1411s Unpacking r-cran-isoband (0.2.7-1) ... 1411s Selecting previously unselected package r-cran-mass. 1411s Preparing to unpack .../131-r-cran-mass_7.3-64-1_s390x.deb ... 1411s Unpacking r-cran-mass (7.3-64-1) ... 1411s Selecting previously unselected package r-cran-lattice. 1411s Preparing to unpack .../132-r-cran-lattice_0.22-6-1_s390x.deb ... 1411s Unpacking r-cran-lattice (0.22-6-1) ... 1411s Selecting previously unselected package r-cran-nlme. 1411s Preparing to unpack .../133-r-cran-nlme_3.1.167-1_s390x.deb ... 1411s Unpacking r-cran-nlme (3.1.167-1) ... 1411s Selecting previously unselected package r-cran-matrix. 1411s Preparing to unpack .../134-r-cran-matrix_1.7-2-1_s390x.deb ... 1411s Unpacking r-cran-matrix (1.7-2-1) ... 1411s Selecting previously unselected package r-cran-mgcv. 1411s Preparing to unpack .../135-r-cran-mgcv_1.9-1-1_s390x.deb ... 1411s Unpacking r-cran-mgcv (1.9-1-1) ... 1411s Selecting previously unselected package r-cran-labeling. 1411s Preparing to unpack .../136-r-cran-labeling_0.4.3-1_all.deb ... 1411s Unpacking r-cran-labeling (0.4.3-1) ... 1411s Selecting previously unselected package r-cran-munsell. 1411s Preparing to unpack .../137-r-cran-munsell_0.5.1-1_all.deb ... 1411s Unpacking r-cran-munsell (0.5.1-1) ... 1411s Selecting previously unselected package r-cran-rcolorbrewer. 1411s Preparing to unpack .../138-r-cran-rcolorbrewer_1.1-3-1build1_all.deb ... 1411s Unpacking r-cran-rcolorbrewer (1.1-3-1build1) ... 1411s Selecting previously unselected package r-cran-viridislite. 1411s Preparing to unpack .../139-r-cran-viridislite_0.4.2-2_all.deb ... 1411s Unpacking r-cran-viridislite (0.4.2-2) ... 1411s Selecting previously unselected package r-cran-scales. 1411s Preparing to unpack .../140-r-cran-scales_1.3.0-1_all.deb ... 1411s Unpacking r-cran-scales (1.3.0-1) ... 1411s Selecting previously unselected package r-cran-magrittr. 1411s Preparing to unpack .../141-r-cran-magrittr_2.0.3-1_s390x.deb ... 1411s Unpacking r-cran-magrittr (2.0.3-1) ... 1411s Selecting previously unselected package r-cran-utf8. 1411s Preparing to unpack .../142-r-cran-utf8_1.2.4-1_s390x.deb ... 1411s Unpacking r-cran-utf8 (1.2.4-1) ... 1411s Selecting previously unselected package r-cran-vctrs. 1411s Preparing to unpack .../143-r-cran-vctrs_0.6.5-1_s390x.deb ... 1411s Unpacking r-cran-vctrs (0.6.5-1) ... 1411s Selecting previously unselected package r-cran-pillar. 1411s Preparing to unpack .../144-r-cran-pillar_1.10.1+dfsg-1_all.deb ... 1411s Unpacking r-cran-pillar (1.10.1+dfsg-1) ... 1411s Selecting previously unselected package r-cran-pkgconfig. 1411s Preparing to unpack .../145-r-cran-pkgconfig_2.0.3-2build1_all.deb ... 1411s Unpacking r-cran-pkgconfig (2.0.3-2build1) ... 1411s Selecting previously unselected package r-cran-tibble. 1411s Preparing to unpack .../146-r-cran-tibble_3.2.1+dfsg-3_s390x.deb ... 1411s Unpacking r-cran-tibble (3.2.1+dfsg-3) ... 1411s Selecting previously unselected package r-cran-withr. 1411s Preparing to unpack .../147-r-cran-withr_3.0.2+dfsg-1_all.deb ... 1411s Unpacking r-cran-withr (3.0.2+dfsg-1) ... 1411s Selecting previously unselected package r-cran-ggplot2. 1411s Preparing to unpack .../148-r-cran-ggplot2_3.5.1+dfsg-1_all.deb ... 1411s Unpacking r-cran-ggplot2 (3.5.1+dfsg-1) ... 1411s Selecting previously unselected package r-cran-igraph. 1411s Preparing to unpack .../149-r-cran-igraph_2.1.4-1_s390x.deb ... 1411s Unpacking r-cran-igraph (2.1.4-1) ... 1412s Selecting previously unselected package r-cran-rcpparmadillo. 1412s Preparing to unpack .../150-r-cran-rcpparmadillo_14.2.2-1-1_s390x.deb ... 1412s Unpacking r-cran-rcpparmadillo (14.2.2-1-1) ... 1412s Selecting previously unselected package r-cran-graphlayouts. 1412s Preparing to unpack .../151-r-cran-graphlayouts_1.2.1-1_s390x.deb ... 1412s Unpacking r-cran-graphlayouts (1.2.1-1) ... 1412s Selecting previously unselected package r-cran-irlba. 1412s Preparing to unpack .../152-r-cran-irlba_2.3.5.1-4_s390x.deb ... 1412s Unpacking r-cran-irlba (2.3.5.1-4) ... 1412s Selecting previously unselected package r-cran-jsonlite. 1412s Preparing to unpack .../153-r-cran-jsonlite_1.8.9+dfsg-1_s390x.deb ... 1412s Unpacking r-cran-jsonlite (1.8.9+dfsg-1) ... 1412s Selecting previously unselected package r-cran-pkgbuild. 1412s Preparing to unpack .../154-r-cran-pkgbuild_1.4.6-1_all.deb ... 1412s Unpacking r-cran-pkgbuild (1.4.6-1) ... 1412s Selecting previously unselected package r-cran-rprojroot. 1412s Preparing to unpack .../155-r-cran-rprojroot_2.0.4-2_all.deb ... 1412s Unpacking r-cran-rprojroot (2.0.4-2) ... 1412s Selecting previously unselected package r-cran-pkgload. 1412s Preparing to unpack .../156-r-cran-pkgload_1.4.0-1_all.deb ... 1412s Unpacking r-cran-pkgload (1.4.0-1) ... 1412s Selecting previously unselected package r-cran-praise. 1412s Preparing to unpack .../157-r-cran-praise_1.0.0-4build1_all.deb ... 1412s Unpacking r-cran-praise (1.0.0-4build1) ... 1412s Selecting previously unselected package r-cran-rcppannoy. 1412s Preparing to unpack .../158-r-cran-rcppannoy_0.0.22-1_s390x.deb ... 1412s Unpacking r-cran-rcppannoy (0.0.22-1) ... 1412s Selecting previously unselected package r-cran-rcppeigen. 1412s Preparing to unpack .../159-r-cran-rcppeigen_0.3.4.0.2-1_s390x.deb ... 1412s Unpacking r-cran-rcppeigen (0.3.4.0.2-1) ... 1412s Selecting previously unselected package r-cran-rcppprogress. 1412s Preparing to unpack .../160-r-cran-rcppprogress_0.4.2-2build1_all.deb ... 1412s Unpacking r-cran-rcppprogress (0.4.2-2build1) ... 1412s Selecting previously unselected package r-cran-rspectra. 1412s Preparing to unpack .../161-r-cran-rspectra_0.16-2-1_s390x.deb ... 1412s Unpacking r-cran-rspectra (0.16-2-1) ... 1412s Selecting previously unselected package r-cran-waldo. 1412s Preparing to unpack .../162-r-cran-waldo_0.6.1-1_all.deb ... 1412s Unpacking r-cran-waldo (0.6.1-1) ... 1412s Selecting previously unselected package r-cran-testthat. 1412s Preparing to unpack .../163-r-cran-testthat_3.2.3-1_s390x.deb ... 1412s Unpacking r-cran-testthat (3.2.3-1) ... 1412s Selecting previously unselected package r-cran-uwot. 1412s Preparing to unpack .../164-r-cran-uwot_0.2.2-2_s390x.deb ... 1412s Unpacking r-cran-uwot (0.2.2-2) ... 1412s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 1412s Setting up libpixman-1-0:s390x (0.44.0-3) ... 1412s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 1412s Setting up libncurses-dev:s390x (6.5-2) ... 1412s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 1412s Setting up libdatrie1:s390x (0.2.13-3build1) ... 1412s Setting up libxcb-render0:s390x (1.17.0-2) ... 1412s Setting up unzip (6.0-28ubuntu6) ... 1412s Setting up x11-common (1:7.7+23ubuntu3) ... 1412s Setting up libdeflate0:s390x (1.23-1) ... 1412s Setting up libxcb-shm0:s390x (1.17.0-2) ... 1412s Setting up libreadline-dev:s390x (8.2-6) ... 1412s Setting up libgomp1:s390x (14.2.0-13ubuntu1) ... 1412s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 1412s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 1412s Setting up zip (3.0-14ubuntu2) ... 1412s Setting up libpcre2-32-0:s390x (10.42-4ubuntu3) ... 1412s Setting up libblas3:s390x (3.12.0-4) ... 1412s update-alternatives: using /usr/lib/s390x-linux-gnu/blas/libblas.so.3 to provide /usr/lib/s390x-linux-gnu/libblas.so.3 (libblas.so.3-s390x-linux-gnu) in auto mode 1412s Setting up libtirpc-dev:s390x (1.3.4+ds-1.3) ... 1412s Setting up libpkgconf3:s390x (1.8.1-4) ... 1412s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 1412s Setting up fonts-dejavu-mono (2.37-8) ... 1412s Setting up libmpc3:s390x (1.3.1-1build2) ... 1412s Setting up libtcl8.6:s390x (8.6.16+dfsg-1) ... 1412s Setting up icu-devtools (76.1-1ubuntu2) ... 1412s Setting up fonts-dejavu-core (2.37-8) ... 1412s Setting up pkgconf-bin (1.8.1-4) ... 1412s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 1412s Setting up libltdl7:s390x (2.5.4-2.1) ... 1412s Setting up libgfortran5:s390x (14.2.0-13ubuntu1) ... 1412s Setting up libwebp7:s390x (1.5.0-0.1) ... 1412s Setting up liblzma-dev:s390x (5.6.3-1) ... 1412s Setting up libubsan1:s390x (14.2.0-13ubuntu1) ... 1412s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 1412s Setting up libpcre2-posix3:s390x (10.42-4ubuntu3) ... 1412s Setting up libasan8:s390x (14.2.0-13ubuntu1) ... 1412s Setting up libsuitesparseconfig7:s390x (1:7.8.3+dfsg-2) ... 1412s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 1412s Setting up libthai-data (0.1.29-2build1) ... 1412s Setting up libxss1:s390x (1:1.2.3-1build3) ... 1412s Setting up libpaper2:s390x (2.2.5-0.3) ... 1412s Setting up libisl23:s390x (0.27-1) ... 1412s Setting up libdeflate-dev:s390x (1.23-1) ... 1412s Setting up libicu-dev:s390x (76.1-1ubuntu2) ... 1412s Setting up xdg-utils (1.2.1-0ubuntu1) ... 1412s update-alternatives: using /usr/bin/xdg-open to provide /usr/bin/open (open) in auto mode 1412s Setting up libcc1-0:s390x (14.2.0-13ubuntu1) ... 1412s Setting up libblas-dev:s390x (3.12.0-4) ... 1412s update-alternatives: using /usr/lib/s390x-linux-gnu/blas/libblas.so to provide /usr/lib/s390x-linux-gnu/libblas.so (libblas.so-s390x-linux-gnu) in auto mode 1412s Setting up dctrl-tools (2.24-3build3) ... 1412s Setting up libitm1:s390x (14.2.0-13ubuntu1) ... 1412s Setting up libbz2-dev:s390x (1.0.8-6) ... 1412s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 1412s Setting up libice6:s390x (2:1.1.1-1) ... 1412s Setting up libjpeg-turbo8-dev:s390x (2.1.5-3ubuntu2) ... 1412s Setting up liblapack3:s390x (3.12.0-4) ... 1412s update-alternatives: using /usr/lib/s390x-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/s390x-linux-gnu/liblapack.so.3 (liblapack.so.3-s390x-linux-gnu) in auto mode 1412s Setting up libamd3:s390x (1:7.8.3+dfsg-2) ... 1412s Setting up libpcre2-dev:s390x (10.42-4ubuntu3) ... 1412s Setting up libcolamd3:s390x (1:7.8.3+dfsg-2) ... 1412s Setting up fontconfig-config (2.15.0-1.1ubuntu2) ... 1412s Setting up libpng-dev:s390x (1.6.44-3) ... 1412s Setting up libpaper-utils (2.2.5-0.3) ... 1412s Setting up pkgconf:s390x (1.8.1-4) ... 1412s Setting up libthai0:s390x (0.1.29-2build1) ... 1412s Setting up libglpk40:s390x (5.0-1build2) ... 1412s Setting up liblapack-dev:s390x (3.12.0-4) ... 1412s update-alternatives: using /usr/lib/s390x-linux-gnu/lapack/liblapack.so to provide /usr/lib/s390x-linux-gnu/liblapack.so (liblapack.so-s390x-linux-gnu) in auto mode 1412s Setting up cpp-14-s390x-linux-gnu (14.2.0-13ubuntu1) ... 1412s Setting up cpp-14 (14.2.0-13ubuntu1) ... 1412s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 1412s Setting up libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 1412s Setting up libgcc-14-dev:s390x (14.2.0-13ubuntu1) ... 1412s Setting up libjpeg8-dev:s390x (8c-2ubuntu11) ... 1412s Setting up libstdc++-14-dev:s390x (14.2.0-13ubuntu1) ... 1412s Setting up libsm6:s390x (2:1.2.4-1) ... 1412s Setting up libgfortran-14-dev:s390x (14.2.0-13ubuntu1) ... 1412s Setting up fontconfig (2.15.0-1.1ubuntu2) ... 1415s Regenerating fonts cache... done. 1415s Setting up libxft2:s390x (2.3.6-1build1) ... 1415s Setting up libboost1.83-dev:s390x (1.83.0-4ubuntu2) ... 1415s Setting up cpp-s390x-linux-gnu (4:14.1.0-2ubuntu1) ... 1415s Setting up libtk8.6:s390x (8.6.16-1) ... 1415s Setting up libpango-1.0-0:s390x (1.56.1-1) ... 1415s Setting up libjpeg-dev:s390x (8c-2ubuntu11) ... 1415s Setting up libcairo2:s390x (1.18.2-2) ... 1415s Setting up gcc-14-s390x-linux-gnu (14.2.0-13ubuntu1) ... 1415s Setting up gcc-s390x-linux-gnu (4:14.1.0-2ubuntu1) ... 1415s Setting up libxt6t64:s390x (1:1.2.1-1.2build1) ... 1415s Setting up g++-14-s390x-linux-gnu (14.2.0-13ubuntu1) ... 1415s Setting up cpp (4:14.1.0-2ubuntu1) ... 1415s Setting up libboost-dev:s390x (1.83.0.2ubuntu1) ... 1415s Setting up libpangoft2-1.0-0:s390x (1.56.1-1) ... 1415s Setting up libpangocairo-1.0-0:s390x (1.56.1-1) ... 1415s Setting up gfortran-14-s390x-linux-gnu (14.2.0-13ubuntu1) ... 1415s Setting up g++-s390x-linux-gnu (4:14.1.0-2ubuntu1) ... 1415s Setting up gcc-14 (14.2.0-13ubuntu1) ... 1415s Setting up r-base-core (4.4.2-1build1) ... 1415s Creating config file /etc/R/Renviron with new version 1415s Setting up r-cran-crayon (1.5.3-1) ... 1415s Setting up r-cran-labeling (0.4.3-1) ... 1415s Setting up r-cran-rcppprogress (0.4.2-2build1) ... 1415s Setting up r-cran-lattice (0.22-6-1) ... 1415s Setting up r-cran-ps (1.8.1-1) ... 1415s Setting up r-cran-nlme (3.1.167-1) ... 1415s Setting up r-cran-farver (2.1.2-1) ... 1415s Setting up r-cran-viridislite (0.4.2-2) ... 1415s Setting up g++-14 (14.2.0-13ubuntu1) ... 1415s Setting up r-cran-r6 (2.5.1-1) ... 1415s Setting up r-cran-pkgkitten (0.2.4-1) ... 1415s Setting up gfortran-14 (14.2.0-13ubuntu1) ... 1415s Setting up r-cran-magrittr (2.0.3-1) ... 1415s Setting up r-cran-littler (0.3.20-2) ... 1415s Setting up r-cran-bh (1.84.0-1) ... 1415s Setting up r-cran-fs (1.6.5+dfsg-1) ... 1415s Setting up r-cran-rcpp (1.0.14-1) ... 1415s Setting up r-cran-brio (1.1.5-1) ... 1415s Setting up r-cran-diffobj (0.3.5-1) ... 1415s Setting up r-cran-rlang (1.1.5-1) ... 1415s Setting up littler (0.3.20-2) ... 1415s Setting up gfortran-s390x-linux-gnu (4:14.1.0-2ubuntu1) ... 1415s Setting up r-cran-withr (3.0.2+dfsg-1) ... 1415s Setting up r-cran-processx (3.8.5-1) ... 1415s Setting up r-cran-praise (1.0.0-4build1) ... 1415s Setting up r-cran-digest (0.6.37-1) ... 1415s Setting up r-cran-evaluate (1.0.3-1) ... 1415s Setting up r-cran-fansi (1.0.5-1) ... 1415s Setting up r-cran-mass (7.3-64-1) ... 1415s Setting up r-cran-glue (1.8.0-1) ... 1415s Setting up r-cran-cli (3.6.3-1) ... 1415s Setting up r-cran-lifecycle (1.0.4+dfsg-1) ... 1415s Setting up r-cran-rprojroot (2.0.4-2) ... 1415s Setting up r-cran-fnn (1.1.4.1-1) ... 1415s Setting up gcc (4:14.1.0-2ubuntu1) ... 1415s Setting up r-cran-jsonlite (1.8.9+dfsg-1) ... 1415s Setting up r-cran-pkgconfig (2.0.3-2build1) ... 1415s Setting up r-cran-utf8 (1.2.4-1) ... 1415s Setting up r-cran-colorspace (2.1-1+dfsg-1) ... 1415s Setting up r-cran-cpp11 (0.5.1-1) ... 1415s Setting up r-cran-sitmo (2.0.2-1) ... 1415s Setting up r-cran-rcolorbrewer (1.1-3-1build1) ... 1415s Setting up r-cran-isoband (0.2.7-1) ... 1415s Setting up r-cran-waldo (0.6.1-1) ... 1415s Setting up r-cran-gtable (0.3.6+dfsg-1) ... 1415s Setting up r-cran-matrix (1.7-2-1) ... 1415s Setting up r-cran-irlba (2.3.5.1-4) ... 1415s Setting up r-cran-mgcv (1.9-1-1) ... 1415s Setting up g++ (4:14.1.0-2ubuntu1) ... 1415s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 1415s Setting up build-essential (12.10ubuntu1) ... 1415s Setting up r-cran-rcpparmadillo (14.2.2-1-1) ... 1415s Setting up r-cran-dqrng (0.3.2+dfsg-1) ... 1415s Setting up r-cran-vctrs (0.6.5-1) ... 1415s Setting up r-cran-rcppeigen (0.3.4.0.2-1) ... 1415s Setting up r-cran-pillar (1.10.1+dfsg-1) ... 1415s Setting up r-cran-rcppannoy (0.0.22-1) ... 1415s Setting up r-cran-callr (3.7.6-1) ... 1415s Setting up r-cran-desc (1.4.3-1) ... 1415s Setting up r-cran-munsell (0.5.1-1) ... 1415s Setting up r-cran-tibble (3.2.1+dfsg-3) ... 1415s Setting up r-cran-igraph (2.1.4-1) ... 1415s Setting up r-cran-graphlayouts (1.2.1-1) ... 1415s Setting up gfortran (4:14.1.0-2ubuntu1) ... 1415s update-alternatives: using /usr/bin/gfortran to provide /usr/bin/f95 (f95) in auto mode 1415s update-alternatives: warning: skip creation of /usr/share/man/man1/f95.1.gz because associated file /usr/share/man/man1/gfortran.1.gz (of link group f95) doesn't exist 1415s update-alternatives: using /usr/bin/gfortran to provide /usr/bin/f77 (f77) in auto mode 1415s update-alternatives: warning: skip creation of /usr/share/man/man1/f77.1.gz because associated file /usr/share/man/man1/gfortran.1.gz (of link group f77) doesn't exist 1415s Setting up r-cran-scales (1.3.0-1) ... 1415s Setting up r-cran-pkgbuild (1.4.6-1) ... 1415s Setting up r-cran-rspectra (0.16-2-1) ... 1415s Setting up r-cran-uwot (0.2.2-2) ... 1415s Setting up r-cran-pkgload (1.4.0-1) ... 1415s Setting up r-base-dev (4.4.2-1build1) ... 1415s Setting up r-cran-ggplot2 (3.5.1+dfsg-1) ... 1415s Setting up r-cran-testthat (3.2.3-1) ... 1415s Setting up pkg-r-autopkgtest (20231212ubuntu1) ... 1415s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1415s Processing triggers for man-db (2.13.0-1) ... 1416s Processing triggers for install-info (7.1.1-1) ... 1416s autopkgtest: DBG: testbed command exited with code 0 1416s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'r-cran-graphlayouts'], kind short, sout pipe, serr pipe, env [] 1417s autopkgtest: DBG: testbed command exited with code 0 1417s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.DfWQj9/pkg-r-autopkgtest-packages.all"], kind short, sout raw, serr pipe, env [] 1417s autopkgtest: DBG: testbed command exited with code 0 1417s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.DfWQj9/pkg-r-autopkgtest-packages.all /tmp/autopkgtest-work.coe4ribb/out/pkg-r-autopkgtest-packages.all 1417s autopkgtest: DBG: got reply from testbed: ok 1417s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.DfWQj9/build.z89/src'], kind short, sout raw, serr raw, env [] 1418s autopkgtest: DBG: testbed command exited with code 1 1418s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.DfWQj9/build.z89'], kind short, sout raw, serr pipe, env [] 1418s autopkgtest: DBG: testbed command exited with code 0 1418s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.coe4ribb/out/tests-tree/ /tmp/autopkgtest.DfWQj9/build.z89/src/ 1443s autopkgtest: DBG: got reply from testbed: ok 1443s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.DfWQj9/build.z89/src'], kind short, sout raw, serr pipe, env [] 1443s autopkgtest: DBG: testbed command exited with code 0 1443s autopkgtest [01:34:59]: test pkg-r-autopkgtest: /usr/share/dh-r/pkg-r-autopkgtest 1443s autopkgtest [01:34:59]: test pkg-r-autopkgtest: [----------------------- 1443s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.DfWQj9/wrapper.sh --debug --artifacts=/tmp/autopkgtest.DfWQj9/pkg-r-autopkgtest-artifacts --chdir=/tmp/autopkgtest.DfWQj9/build.z89/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.DfWQj9/pkg-r-autopkgtest-stderr --stdout=/tmp/autopkgtest.DfWQj9/pkg-r-autopkgtest-stdout --tmp=/tmp/autopkgtest.DfWQj9/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=r-cran-testthat/3.2.3-1 -- bash -ec /usr/share/dh-r/pkg-r-autopkgtest'], kind test, sout raw, serr raw, env [] 1443s /tmp/autopkgtest.DfWQj9/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.DfWQj9/pkg-r-autopkgtest-artifacts 1443s /tmp/autopkgtest.DfWQj9/wrapper.sh: changing to directory: /tmp/autopkgtest.DfWQj9/build.z89/src 1443s /tmp/autopkgtest.DfWQj9/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1443s /tmp/autopkgtest.DfWQj9/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1443s /tmp/autopkgtest.DfWQj9/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1443s /tmp/autopkgtest.DfWQj9/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1443s /tmp/autopkgtest.DfWQj9/wrapper.sh: setting environment: LANG=C.UTF-8 1443s /tmp/autopkgtest.DfWQj9/wrapper.sh: unsetting environment: LANGUAGE 1443s /tmp/autopkgtest.DfWQj9/wrapper.sh: unsetting environment: LC_ADDRESS 1443s /tmp/autopkgtest.DfWQj9/wrapper.sh: unsetting environment: LC_ALL 1443s /tmp/autopkgtest.DfWQj9/wrapper.sh: unsetting environment: LC_COLLATE 1443s /tmp/autopkgtest.DfWQj9/wrapper.sh: unsetting environment: LC_CTYPE 1443s /tmp/autopkgtest.DfWQj9/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1443s /tmp/autopkgtest.DfWQj9/wrapper.sh: unsetting environment: LC_MEASUREMENT 1443s /tmp/autopkgtest.DfWQj9/wrapper.sh: unsetting environment: LC_MESSAGES 1443s /tmp/autopkgtest.DfWQj9/wrapper.sh: unsetting environment: LC_MONETARY 1443s /tmp/autopkgtest.DfWQj9/wrapper.sh: unsetting environment: LC_NAME 1443s /tmp/autopkgtest.DfWQj9/wrapper.sh: unsetting environment: LC_NUMERIC 1443s /tmp/autopkgtest.DfWQj9/wrapper.sh: unsetting environment: LC_PAPER 1443s /tmp/autopkgtest.DfWQj9/wrapper.sh: unsetting environment: LC_TELEPHONE 1443s /tmp/autopkgtest.DfWQj9/wrapper.sh: unsetting environment: LC_TIME 1443s /tmp/autopkgtest.DfWQj9/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1443s /tmp/autopkgtest.DfWQj9/wrapper.sh: pretending to be a login shell 1443s /tmp/autopkgtest.DfWQj9/wrapper.sh: will write standard error to /tmp/autopkgtest.DfWQj9/pkg-r-autopkgtest-stderr 1443s /tmp/autopkgtest.DfWQj9/wrapper.sh: will write stdout to /tmp/autopkgtest.DfWQj9/pkg-r-autopkgtest-stdout 1443s /tmp/autopkgtest.DfWQj9/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.DfWQj9/autopkgtest_tmp 1443s /tmp/autopkgtest.DfWQj9/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=r-cran-testthat/3.2.3-1 1443s /tmp/autopkgtest.DfWQj9/wrapper.sh: command to run: bash -ec /usr/share/dh-r/pkg-r-autopkgtest 1443s /tmp/autopkgtest.DfWQj9/wrapper.sh: copying /tmp/tmp.CJ8xHpYcKg/out to stdout and file: /tmp/autopkgtest.DfWQj9/pkg-r-autopkgtest-stdout 1443s /tmp/autopkgtest.DfWQj9/wrapper.sh: copying /tmp/tmp.CJ8xHpYcKg/err to standard error and file: /tmp/autopkgtest.DfWQj9/pkg-r-autopkgtest-stdout 1443s /tmp/autopkgtest.DfWQj9/wrapper.sh: writing script pid 3281 to /tmp/autopkgtest_script_pid 1443s Test: Try to load the R library graphlayouts 1443s 1443s R version 4.4.2 (2024-10-31) -- "Pile of Leaves" 1443s Copyright (C) 2024 The R Foundation for Statistical Computing 1443s Platform: s390x-ibm-linux-gnu 1443s 1443s R is free software and comes with ABSOLUTELY NO WARRANTY. 1443s You are welcome to redistribute it under certain conditions. 1443s Type 'license()' or 'licence()' for distribution details. 1443s 1443s R is a collaborative project with many contributors. 1443s Type 'contributors()' for more information and 1443s 'citation()' on how to cite R or R packages in publications. 1443s 1443s Type 'demo()' for some demos, 'help()' for on-line help, or 1443s 'help.start()' for an HTML browser interface to help. 1443s Type 'q()' to quit R. 1443s 1443s > library('graphlayouts') 1444s > 1444s > 1444s Other tests are currently unsupported! 1444s They will be progressively added. 1444s /tmp/autopkgtest.DfWQj9/wrapper.sh: checking for leaked background processes... 1444s /tmp/autopkgtest.DfWQj9/wrapper.sh: waiting for tee/cat subprocesses... 1444s /tmp/autopkgtest.DfWQj9/wrapper.sh: cleaning up... 1444s /tmp/autopkgtest.DfWQj9/wrapper.sh: Exit status: 0 1444s autopkgtest: DBG: testbed command exited with code 0 1444s autopkgtest [01:35:00]: test pkg-r-autopkgtest: -----------------------] 1444s autopkgtest: DBG: testbed executing test finished with exit status 0 1444s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.DfWQj9/pkg-r-autopkgtest-stdout /tmp/autopkgtest-work.coe4ribb/out/pkg-r-autopkgtest-stdout 1444s autopkgtest: DBG: got reply from testbed: ok 1444s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.DfWQj9/pkg-r-autopkgtest-stderr /tmp/autopkgtest-work.coe4ribb/out/pkg-r-autopkgtest-stderr 1444s autopkgtest: DBG: got reply from testbed: ok 1444s pkg-r-autopkgtest PASS 1444s autopkgtest [01:35:00]: test pkg-r-autopkgtest: - - - - - - - - - - results - - - - - - - - - - 1444s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.DfWQj9/pkg-r-autopkgtest-artifacts/ /tmp/autopkgtest-work.coe4ribb/out/artifacts/ 1445s autopkgtest: DBG: got reply from testbed: ok 1445s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.DfWQj9/pkg-r-autopkgtest-artifacts', '/tmp/autopkgtest.DfWQj9/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1445s autopkgtest: DBG: testbed command exited with code 0 1445s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 1445s autopkgtest [01:35:01]: @@@@@@@@@@@@@@@@@@@@ summary 1445s run-unit-test PASS 1445s pkg-r-autopkgtest PASS 1445s autopkgtest: DBG: testbed stop 1445s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.DfWQj9 1445s autopkgtest: DBG: sending command to testbed: close 1451s autopkgtest: DBG: got reply from testbed: ok 1451s autopkgtest: DBG: sending command to testbed: quit 1451s nova [W] Using flock in prodstack6-s390x 1451s Creating nova instance adt-plucky-s390x-r-cran-graphlayouts-20250204-011056-juju-7f2275-prod-proposed-migration-environment-15-facd2716-0e00-4f39-904b-2ef29f22c8d6 from image adt/ubuntu-plucky-s390x-server-20250203.img (UUID 247705cf-ad10-4dc6-8dfa-317dcfe4f398)... 1451s nova [W] Timed out waiting for 31b81f39-6d18-40e5-ba40-8675d8e6e988 to get deleted. 1451s nova [W] Using flock in prodstack6-s390x 1451s Creating nova instance adt-plucky-s390x-r-cran-graphlayouts-20250204-011056-juju-7f2275-prod-proposed-migration-environment-15-facd2716-0e00-4f39-904b-2ef29f22c8d6 from image adt/ubuntu-plucky-s390x-server-20250203.img (UUID 247705cf-ad10-4dc6-8dfa-317dcfe4f398)... 1451s nova [W] Timed out waiting for e0fed904-9ac9-4883-842f-8b0f2e627b78 to get deleted.