0s autopkgtest: DBG: testbed init 0s autopkgtest [23:49:36]: starting date and time: 2025-02-15 23:49:36+0000 0s autopkgtest [23:49:36]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [23:49:36]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.2zm968cd/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:glibc,src:iproute2,src:php-twig,src:postgresql-17,src:postgresql-common,src:roundcube --apt-upgrade r-cran-seurat --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-8.secgroup --name adt-plucky-s390x-r-cran-seurat-20250215-234936-juju-7f2275-prod-proposed-migration-environment-15-844e7cd2-3b63-4cb5-b61e-c64b93799097 --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 114s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.NdkO4E 114s autopkgtest: DBG: sending command to testbed: print-execute-command 114s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.o4jsnuf0/runcmd 114s autopkgtest: DBG: sending command to testbed: capabilities 114s autopkgtest: DBG: got reply from testbed: ok reboot suggested-normal-user=ubuntu isolation-machine revert revert-full-system root-on-testbed 114s autopkgtest: DBG: testbed capabilities: ['reboot', 'suggested-normal-user=ubuntu', 'isolation-machine', 'revert', 'revert-full-system', 'root-on-testbed', 'has_internet'] 114s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.NdkO4E'], kind short, sout raw, serr pipe, env [] 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.NdkO4E/wrapper.sh 114s autopkgtest: DBG: got reply from testbed: ok 114s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.NdkO4E/wrapper.sh'], kind short, sout raw, serr pipe, env [] 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest [23:51:30]: testbed dpkg architecture: s390x 114s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest [23:51:31]: testbed apt version: 2.9.28 115s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest: DBG: testbed has eatmydata 115s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest [23:51:31]: @@@@@@@@@@@@@@@@@@@@ test bed setup 115s 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 [] 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest [23:51:31]: testbed release detected to be: None 115s 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 [] 115s autopkgtest: DBG: testbed command exited with code 0 115s 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 [] 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest: DBG: adding APT source: Types: deb deb-src 115s URIs: http://ftpmaster.internal/ubuntu/ 115s Suites: plucky-proposed 115s Components: main restricted universe multiverse 115s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 115s 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 [] 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 116s Package: * 116s Pin: release plucky-proposed 116s Pin-Priority: 500 116s 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 [] 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest [23:51:32]: updating testbed package index (apt update) 116s 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'] 116s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 116s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 116s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 117s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 117s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [828 kB] 117s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [74.3 kB] 117s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 117s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 117s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [163 kB] 117s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 117s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [876 kB] 117s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 117s Fetched 2073 kB in 1s (2161 kB/s) 119s Reading package lists... 119s autopkgtest: DBG: testbed command exited with code 0 119s Reading package lists... 119s Building dependency tree... 119s Reading state information... 119s Calculating upgrade... 119s The following packages were automatically installed and are no longer required: 119s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 119s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 119s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 119s linux-tools-6.11.0-8-generic 119s Use 'sudo apt autoremove' to remove them. 119s The following packages will be upgraded: 119s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 119s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 119s Need to get 1155 kB of archives. 119s After this operation, 16.4 kB of additional disk space will be used. 119s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 119s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 119s Package: * 119s Pin: release plucky-proposed 119s Pin-Priority: 100 119s 119s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 119s Pin: release plucky-proposed 119s Pin-Priority: 995 119s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 119s autopkgtest: DBG: testbed command exited with code 0 119s 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.NdkO4E/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 119s autopkgtest: DBG: testbed command exited with code 0 119s 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'] 119s + lsb_release --codename --short 119s + RELEASE=plucky 119s + cat 119s + [ plucky != trusty ] 119s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 119s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 119s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 119s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 119s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 119s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 119s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 119s Preconfiguring packages ... 119s Fetched 1155 kB in 1s (1884 kB/s) 119s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 119s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 120s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 120s Setting up dash (0.5.12-12ubuntu1) ... 120s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 120s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 120s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 120s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 120s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 120s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 120s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 120s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 120s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 120s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 120s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 120s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 120s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 120s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 120s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 120s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 120s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 120s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 120s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 120s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 120s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 120s Setting up libtasn1-6:s390x (4.20.0-2) ... 120s Processing triggers for libc-bin (2.40-4ubuntu1) ... 120s Processing triggers for man-db (2.13.0-1) ... 120s Processing triggers for debianutils (5.21) ... 120s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 120s + /usr/lib/apt/apt-helper analyze-pattern ?true 120s + uname -r 120s + sed s/\./\\./g 120s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 120s + apt list ?obsolete 120s + tail -n+2 120s + cut -d/ -f1 120s + grep -v ^linux-.*6\.12\.0-15-generic.* 121s + true 121s + obsolete_pkgs= 121s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 121s Reading package lists... 121s Building dependency tree... 121s Reading state information... 121s The following packages will be REMOVED: 121s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 121s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 121s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 121s linux-tools-6.11.0-8-generic* 121s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 121s After this operation, 167 MB disk space will be freed. 121s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 121s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 121s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 121s Removing libpython3.12t64:s390x (3.12.9-1) ... 121s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 121s Removing libnsl2:s390x (1.3.0-3build3) ... 121s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 121s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 121s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 122s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 122s Processing triggers for libc-bin (2.40-4ubuntu1) ... 122s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 122s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 122s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 122s + grep -q trusty /etc/lsb-release 122s + [ ! -d /usr/share/doc/unattended-upgrades ] 122s + [ ! -d /usr/share/doc/lxd ] 122s + [ ! -d /usr/share/doc/lxd-client ] 122s + [ ! -d /usr/share/doc/snapd ] 122s + type iptables 122s + cat 122s + chmod 755 /etc/rc.local 122s + . /etc/rc.local 122s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 122s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 122s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 122s + uname -m 122s + [ s390x = ppc64le ] 122s + [ -d /run/systemd/system ] 122s + systemd-detect-virt --quiet --vm 122s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 122s + cat 122s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 122s + echo COMPRESS=lz4 122s autopkgtest: DBG: testbed command exited with code 0 122s autopkgtest [23:51:38]: upgrading testbed (apt dist-upgrade and autopurge) 122s 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'] 123s Reading package lists... 123s Building dependency tree... 123s Reading state information... 123s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 123s Starting 2 pkgProblemResolver with broken count: 0 123s Done 123s Entering ResolveByKeep 123s 123s The following packages will be upgraded: 123s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 123s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 123s Need to get 10.7 MB of archives. 123s After this operation, 305 kB of additional disk space will be used. 123s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 123s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 124s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 124s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 124s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 124s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 124s Preconfiguring packages ... 124s Fetched 10.7 MB in 1s (12.4 MB/s) 124s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55867 files and directories currently installed.) 124s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 124s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 124s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 124s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 124s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 124s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 124s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 124s Checking for services that may need to be restarted... 124s Checking init scripts... 124s Checking for services that may need to be restarted... 124s Checking init scripts... 125s Stopping some services possibly affected by the upgrade (will be restarted later): 125s cron: stopping...done. 125s 125s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 125s Setting up libc6:s390x (2.41-1ubuntu1) ... 125s Checking for services that may need to be restarted... 125s Checking init scripts... 125s Restarting services possibly affected by the upgrade: 125s cron: restarting...done. 125s 125s Services restarted successfully. 125s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 125s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 125s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 125s Setting up libc-bin (2.41-1ubuntu1) ... 125s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 125s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 125s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 125s Setting up iproute2 (6.13.0-1ubuntu1) ... 125s Setting up locales (2.41-1ubuntu1) ... 125s Installing new version of config file /etc/locale.alias ... 125s Generating locales (this might take a while)... 126s en_US.UTF-8... done 126s Generation complete. 126s Setting up libc-dev-bin (2.41-1ubuntu1) ... 126s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 126s Processing triggers for man-db (2.13.0-1) ... 127s Processing triggers for systemd (257.2-3ubuntu1) ... 128s autopkgtest: DBG: testbed command exited with code 0 128s 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'] 128s Reading package lists... 128s Building dependency tree... 128s Reading state information... 128s Starting pkgProblemResolver with broken count: 0 128s Starting 2 pkgProblemResolver with broken count: 0 128s Done 128s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 128s autopkgtest: DBG: testbed command exited with code 0 128s 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.NdkO4E/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 128s autopkgtest: DBG: testbed command exited with code 1 128s autopkgtest [23:51:44]: rebooting testbed after setup commands that affected boot 128s autopkgtest: DBG: sending command to testbed: reboot 146s autopkgtest: DBG: got reply from testbed: ok 146s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 146s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.NdkO4E'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.NdkO4E/autopkgtest-reboot 146s autopkgtest: DBG: got reply from testbed: ok 146s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.NdkO4E/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.NdkO4E/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.NdkO4E/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.NdkO4E'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.NdkO4E/autopkgtest-reboot-prepare 147s autopkgtest: DBG: got reply from testbed: ok 147s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.NdkO4E/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.NdkO4E/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest [23:52:04]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 148s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.NdkO4E/testbed-packages"], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.NdkO4E/testbed-packages /tmp/autopkgtest-work.2zm968cd/out/testbed-packages 148s autopkgtest: DBG: got reply from testbed: ok 148s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 148s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.NdkO4E'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.NdkO4E/autopkgtest-reboot 149s autopkgtest: DBG: got reply from testbed: ok 149s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.NdkO4E/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.NdkO4E/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.NdkO4E/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.NdkO4E'], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.NdkO4E/autopkgtest-reboot-prepare 149s autopkgtest: DBG: got reply from testbed: ok 149s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.NdkO4E/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.NdkO4E/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: Binaries: initialising 150s autopkgtest [23:52:06]: @@@@@@@@@@@@@@@@@@@@ apt-source r-cran-seurat 150s autopkgtest: DBG: blame += r-cran-seurat 150s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 150s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'r-cran-seurat'], kind short, sout pipe, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^r-cran-seurat$'], kind short, sout pipe, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'r-cran-seurat=5.0.1-1'], kind short, sout pipe, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: install_deps: deps_new=[] 150s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s 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.NdkO4E/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source r-cran-seurat=5.0.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-seurat_*.dsc src >/dev/null; chmod -R a+rX .; cd [a-z0-9]*/.; pwd >&3; sed -n "1 {s/).*//; s/ (/\\n/; p}" debian/changelog >&3\''], kind build, sout pipe, serr raw, env ['ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1'] 151s + cd / 151s + mktemp -d /tmp/autopkgtest.NdkO4E/build.XXX 151s + builddir=/tmp/autopkgtest.NdkO4E/build.BNZ 151s + cd /tmp/autopkgtest.NdkO4E/build.BNZ 151s + apt-get source -d -q --only-source r-cran-seurat=5.0.1-1 152s + OUT=Reading package lists... 152s NOTICE: 'r-cran-seurat' packaging is maintained in the 'Git' version control system at: 152s https://salsa.debian.org/r-pkg-team/r-cran-seurat.git 152s Please use: 152s git clone https://salsa.debian.org/r-pkg-team/r-cran-seurat.git 152s to retrieve the latest (possibly unreleased) updates to the package. 152s Need to get 2234 kB of source archives. 152s Get:1 http://ftpmaster.internal/ubuntu plucky/universe r-cran-seurat 5.0.1-1 (dsc) [3385 B] 152s Get:2 http://ftpmaster.internal/ubuntu plucky/universe r-cran-seurat 5.0.1-1 (tar) [2226 kB] 152s Get:3 http://ftpmaster.internal/ubuntu plucky/universe r-cran-seurat 5.0.1-1 (diff) [4668 B] 152s Fetched 2234 kB in 1s (3114 kB/s) 152s Download complete and in download only mode 152s + [ -n ] 152s + echo Reading package lists... 152s NOTICE: 'r-cran-seurat' packaging is maintained in the 'Git' version control system at: 152s https://salsa.debian.org/r-pkg-team/r-cran-seurat.git 152s Please use: 152s git clone https://salsa.debian.org/r-pkg-team/r-cran-seurat.git 152s to retrieve the latest (possibly unreleased) updates to the package. 152s Need to get 2234 kB of source archives. 152s Get:1 http://ftpmaster.internal/ubuntu plucky/universe r-cran-seurat 5.0.1-1 (dsc) [3385 B] 152s Get:2 http://ftpmaster.internal/ubuntu plucky/universe r-cran-seurat 5.0.1-1 (tar) [2226 kB] 152s Get:3 http://ftpmaster.internal/ubuntu plucky/universe r-cran-seurat 5.0.1-1 (diff) [4668 B] 152s Fetched 2234 kB in 1s (3114 kB/s) 152s Download complete and in download only mode 152s + grep ^Get: 152s Get:1 http://ftpmaster.internal/ubuntu plucky/universe r-cran-seurat 5.0.1-1 (dsc) [3385 B] 152s Get:2 http://ftpmaster.internal/ubuntu plucky/universe r-cran-seurat 5.0.1-1 (tar) [2226 kB] 152s Get:3 http://ftpmaster.internal/ubuntu plucky/universe r-cran-seurat 5.0.1-1 (diff) [4668 B] 152s + dpkg-source -x r-cran-seurat_5.0.1-1.dsc src 152s gpgv: Signature made Fri Nov 24 16:12:03 2023 UTC 152s gpgv: using RSA key F1F007320A035541F0A663CA578A0494D1C646D1 152s gpgv: issuer "tille@debian.org" 152s gpgv: Can't check signature: No public key 152s dpkg-source: warning: cannot verify inline signature for ./r-cran-seurat_5.0.1-1.dsc: no acceptable signature found 152s + chmod -R a+rX . 152s + cd src/. 152s + pwd 152s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest [23:52:08]: testing package r-cran-seurat version 5.0.1-1 152s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.NdkO4E/build.BNZ/src/debian/ /tmp/autopkgtest-work.2zm968cd/out/pkg/debian/ 152s autopkgtest: DBG: got reply from testbed: ok 152s autopkgtest: DBG: autodep8 generated control: ----- 152s Tests: run-unit-test 152s Depends: @, 152s r-cran-ape, 152s r-cran-rsvd, 152s r-cran-testthat, 152s r-cran-hdf5r, 152s r-bioc-s4vectors, 152s r-bioc-summarizedexperiment, 152s r-bioc-singlecellexperiment, 152s r-bioc-deseq2, 152s r-bioc-biocgenerics, 152s r-bioc-genomicranges, 152s r-bioc-genomeinfodb, 152s r-bioc-iranges, 152s r-bioc-rtracklayer, 152s r-bioc-monocle, 152s r-bioc-biobase, 152s r-cran-vgam, 152s r-bioc-limma, 152s r-cran-metap, 152s r-cran-mixtools, 152s r-cran-ggrastr, 152s r-cran-data.table, 152s r-cran-r.utils, 152s r-bioc-delayedarray 152s Restrictions: allow-stderr 152s 152s 152s Test-Command: /usr/share/dh-r/pkg-r-autopkgtest 152s Depends: @, pkg-r-autopkgtest, 152s Restrictions: allow-stderr, 152s Features: test-name=pkg-r-autopkgtest 152s 152s ------- 152s autopkgtest: DBG: processing dependency @ 152s autopkgtest: DBG: synthesised dependency r-cran-seurat 152s autopkgtest: DBG: processing dependency r-cran-ape 152s autopkgtest: DBG: processing dependency r-cran-rsvd 152s autopkgtest: DBG: processing dependency r-cran-testthat 152s autopkgtest: DBG: processing dependency r-cran-hdf5r 152s autopkgtest: DBG: processing dependency r-bioc-s4vectors 152s autopkgtest: DBG: processing dependency r-bioc-summarizedexperiment 152s autopkgtest: DBG: processing dependency r-bioc-singlecellexperiment 152s autopkgtest: DBG: processing dependency r-bioc-deseq2 152s autopkgtest: DBG: processing dependency r-bioc-biocgenerics 152s autopkgtest: DBG: processing dependency r-bioc-genomicranges 152s autopkgtest: DBG: processing dependency r-bioc-genomeinfodb 152s autopkgtest: DBG: processing dependency r-bioc-iranges 152s autopkgtest: DBG: processing dependency r-bioc-rtracklayer 152s autopkgtest: DBG: processing dependency r-bioc-monocle 152s autopkgtest: DBG: processing dependency r-bioc-biobase 152s autopkgtest: DBG: processing dependency r-cran-vgam 152s autopkgtest: DBG: processing dependency r-bioc-limma 152s autopkgtest: DBG: processing dependency r-cran-metap 152s autopkgtest: DBG: processing dependency r-cran-mixtools 152s autopkgtest: DBG: processing dependency r-cran-ggrastr 152s autopkgtest: DBG: processing dependency r-cran-data.table 152s autopkgtest: DBG: processing dependency r-cran-r.utils 152s autopkgtest: DBG: processing dependency r-bioc-delayedarray 152s autopkgtest: DBG: Test defined: name run-unit-test path debian/tests/run-unit-test command "None" restrictions ['allow-stderr'] features [] depends ['r-cran-seurat', 'r-cran-ape', 'r-cran-rsvd', 'r-cran-testthat', 'r-cran-hdf5r', 'r-bioc-s4vectors', 'r-bioc-summarizedexperiment', 'r-bioc-singlecellexperiment', 'r-bioc-deseq2', 'r-bioc-biocgenerics', 'r-bioc-genomicranges', 'r-bioc-genomeinfodb', 'r-bioc-iranges', 'r-bioc-rtracklayer', 'r-bioc-monocle', 'r-bioc-biobase', 'r-cran-vgam', 'r-bioc-limma', 'r-cran-metap', 'r-cran-mixtools', 'r-cran-ggrastr', 'r-cran-data.table', 'r-cran-r.utils', 'r-bioc-delayedarray'] 152s autopkgtest: DBG: processing dependency @ 152s autopkgtest: DBG: synthesised dependency r-cran-seurat 152s autopkgtest: DBG: processing dependency pkg-r-autopkgtest 152s 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-seurat', 'pkg-r-autopkgtest'] 152s autopkgtest [23:52:08]: build not needed 152s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.NdkO4E/build.BNZ/src/ /tmp/autopkgtest-work.2zm968cd/out/tests-tree/ 156s autopkgtest: DBG: got reply from testbed: ok 160s autopkgtest: DBG: autodep8 generated control: ----- 160s Tests: run-unit-test 160s Depends: @, 160s r-cran-ape, 160s r-cran-rsvd, 160s r-cran-testthat, 160s r-cran-hdf5r, 160s r-bioc-s4vectors, 160s r-bioc-summarizedexperiment, 160s r-bioc-singlecellexperiment, 160s r-bioc-deseq2, 160s r-bioc-biocgenerics, 160s r-bioc-genomicranges, 160s r-bioc-genomeinfodb, 160s r-bioc-iranges, 160s r-bioc-rtracklayer, 160s r-bioc-monocle, 160s r-bioc-biobase, 160s r-cran-vgam, 160s r-bioc-limma, 160s r-cran-metap, 160s r-cran-mixtools, 160s r-cran-ggrastr, 160s r-cran-data.table, 160s r-cran-r.utils, 160s r-bioc-delayedarray 160s Restrictions: allow-stderr 160s 160s 160s Test-Command: /usr/share/dh-r/pkg-r-autopkgtest 160s Depends: @, r-cran-ape,r-cran-rsvd,r-cran-testthat,r-bioc-s4vectors,r-bioc-summarizedexperiment,r-bioc-deseq2,r-bioc-biocgenerics,r-bioc-genomicranges,r-bioc-genomeinfodb,r-bioc-iranges,r-bioc-rtracklayer,r-bioc-biobase,r-cran-vgam,r-bioc-limma,r-cran-metap,r-cran-mixtools,r-cran-data.table,r-cran-r.utils,r-bioc-delayedarray, pkg-r-autopkgtest, 160s Restrictions: allow-stderr, 160s Features: test-name=pkg-r-autopkgtest 160s 160s ------- 160s autopkgtest: DBG: processing dependency @ 160s autopkgtest: DBG: synthesised dependency r-cran-seurat 160s autopkgtest: DBG: processing dependency r-cran-ape 160s autopkgtest: DBG: processing dependency r-cran-rsvd 160s autopkgtest: DBG: processing dependency r-cran-testthat 160s autopkgtest: DBG: processing dependency r-cran-hdf5r 160s autopkgtest: DBG: processing dependency r-bioc-s4vectors 160s autopkgtest: DBG: processing dependency r-bioc-summarizedexperiment 160s autopkgtest: DBG: processing dependency r-bioc-singlecellexperiment 160s autopkgtest: DBG: processing dependency r-bioc-deseq2 160s autopkgtest: DBG: processing dependency r-bioc-biocgenerics 160s autopkgtest: DBG: processing dependency r-bioc-genomicranges 160s autopkgtest: DBG: processing dependency r-bioc-genomeinfodb 160s autopkgtest: DBG: processing dependency r-bioc-iranges 160s autopkgtest: DBG: processing dependency r-bioc-rtracklayer 160s autopkgtest: DBG: processing dependency r-bioc-monocle 160s autopkgtest: DBG: processing dependency r-bioc-biobase 160s autopkgtest: DBG: processing dependency r-cran-vgam 160s autopkgtest: DBG: processing dependency r-bioc-limma 160s autopkgtest: DBG: processing dependency r-cran-metap 160s autopkgtest: DBG: processing dependency r-cran-mixtools 160s autopkgtest: DBG: processing dependency r-cran-ggrastr 160s autopkgtest: DBG: processing dependency r-cran-data.table 160s autopkgtest: DBG: processing dependency r-cran-r.utils 160s autopkgtest: DBG: processing dependency r-bioc-delayedarray 160s autopkgtest: DBG: Test defined: name run-unit-test path debian/tests/run-unit-test command "None" restrictions ['allow-stderr'] features [] depends ['r-cran-seurat', 'r-cran-ape', 'r-cran-rsvd', 'r-cran-testthat', 'r-cran-hdf5r', 'r-bioc-s4vectors', 'r-bioc-summarizedexperiment', 'r-bioc-singlecellexperiment', 'r-bioc-deseq2', 'r-bioc-biocgenerics', 'r-bioc-genomicranges', 'r-bioc-genomeinfodb', 'r-bioc-iranges', 'r-bioc-rtracklayer', 'r-bioc-monocle', 'r-bioc-biobase', 'r-cran-vgam', 'r-bioc-limma', 'r-cran-metap', 'r-cran-mixtools', 'r-cran-ggrastr', 'r-cran-data.table', 'r-cran-r.utils', 'r-bioc-delayedarray'] 160s autopkgtest: DBG: processing dependency @ 160s autopkgtest: DBG: synthesised dependency r-cran-seurat 160s autopkgtest: DBG: processing dependency r-cran-ape 160s autopkgtest: DBG: processing dependency r-cran-rsvd 160s autopkgtest: DBG: processing dependency r-cran-testthat 160s autopkgtest: DBG: processing dependency r-bioc-s4vectors 160s autopkgtest: DBG: processing dependency r-bioc-summarizedexperiment 160s autopkgtest: DBG: processing dependency r-bioc-deseq2 160s autopkgtest: DBG: processing dependency r-bioc-biocgenerics 160s autopkgtest: DBG: processing dependency r-bioc-genomicranges 160s autopkgtest: DBG: processing dependency r-bioc-genomeinfodb 160s autopkgtest: DBG: processing dependency r-bioc-iranges 160s autopkgtest: DBG: processing dependency r-bioc-rtracklayer 160s autopkgtest: DBG: processing dependency r-bioc-biobase 160s autopkgtest: DBG: processing dependency r-cran-vgam 160s autopkgtest: DBG: processing dependency r-bioc-limma 160s autopkgtest: DBG: processing dependency r-cran-metap 160s autopkgtest: DBG: processing dependency r-cran-mixtools 160s autopkgtest: DBG: processing dependency r-cran-data.table 160s autopkgtest: DBG: processing dependency r-cran-r.utils 160s autopkgtest: DBG: processing dependency r-bioc-delayedarray 160s autopkgtest: DBG: processing dependency pkg-r-autopkgtest 160s 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-seurat', 'r-cran-ape', 'r-cran-rsvd', 'r-cran-testthat', 'r-bioc-s4vectors', 'r-bioc-summarizedexperiment', 'r-bioc-deseq2', 'r-bioc-biocgenerics', 'r-bioc-genomicranges', 'r-bioc-genomeinfodb', 'r-bioc-iranges', 'r-bioc-rtracklayer', 'r-bioc-biobase', 'r-cran-vgam', 'r-bioc-limma', 'r-cran-metap', 'r-cran-mixtools', 'r-cran-data.table', 'r-cran-r.utils', 'r-bioc-delayedarray', 'pkg-r-autopkgtest'] 160s autopkgtest [23:52:16]: test run-unit-test: preparing testbed 160s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['r-cran-seurat', 'r-cran-ape', 'r-cran-rsvd', 'r-cran-testthat', 'r-cran-hdf5r', 'r-bioc-s4vectors', 'r-bioc-summarizedexperiment', 'r-bioc-singlecellexperiment', 'r-bioc-deseq2', 'r-bioc-biocgenerics', 'r-bioc-genomicranges', 'r-bioc-genomeinfodb', 'r-bioc-iranges', 'r-bioc-rtracklayer', 'r-bioc-monocle', 'r-bioc-biobase', 'r-cran-vgam', 'r-bioc-limma', 'r-cran-metap', 'r-cran-mixtools', 'r-cran-ggrastr', 'r-cran-data.table', 'r-cran-r.utils', 'r-bioc-delayedarray'] 160s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 160s autopkgtest: DBG: install_deps: deps_new=['r-cran-seurat', 'r-cran-ape', 'r-cran-rsvd', 'r-cran-testthat', 'r-cran-hdf5r', 'r-bioc-s4vectors', 'r-bioc-summarizedexperiment', 'r-bioc-singlecellexperiment', 'r-bioc-deseq2', 'r-bioc-biocgenerics', 'r-bioc-genomicranges', 'r-bioc-genomeinfodb', 'r-bioc-iranges', 'r-bioc-rtracklayer', 'r-bioc-monocle', 'r-bioc-biobase', 'r-cran-vgam', 'r-bioc-limma', 'r-cran-metap', 'r-cran-mixtools', 'r-cran-ggrastr', 'r-cran-data.table', 'r-cran-r.utils', 'r-bioc-delayedarray'] 160s autopkgtest: DBG: install-deps: satisfying r-cran-seurat, r-cran-ape, r-cran-rsvd, r-cran-testthat, r-cran-hdf5r, r-bioc-s4vectors, r-bioc-summarizedexperiment, r-bioc-singlecellexperiment, r-bioc-deseq2, r-bioc-biocgenerics, r-bioc-genomicranges, r-bioc-genomeinfodb, r-bioc-iranges, r-bioc-rtracklayer, r-bioc-monocle, r-bioc-biobase, r-cran-vgam, r-bioc-limma, r-cran-metap, r-cran-mixtools, r-cran-ggrastr, r-cran-data.table, r-cran-r.utils, r-bioc-delayedarray 160s autopkgtest: DBG: can use apt-get on testbed: True 160s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'r-cran-seurat, r-cran-ape, r-cran-rsvd, r-cran-testthat, r-cran-hdf5r, r-bioc-s4vectors, r-bioc-summarizedexperiment, r-bioc-singlecellexperiment, r-bioc-deseq2, r-bioc-biocgenerics, r-bioc-genomicranges, r-bioc-genomeinfodb, r-bioc-iranges, r-bioc-rtracklayer, r-bioc-monocle, r-bioc-biobase, r-cran-vgam, r-bioc-limma, r-cran-metap, r-cran-mixtools, r-cran-ggrastr, r-cran-data.table, r-cran-r.utils, r-bioc-delayedarray'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 160s Reading package lists... 160s Building dependency tree... 160s Reading state information... 160s Starting pkgProblemResolver with broken count: 0 160s Starting 2 pkgProblemResolver with broken count: 0 160s Done 161s The following NEW packages will be installed: 161s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono 161s fonts-font-awesome fonts-glyphicons-halflings fonts-mathjax 161s javascript-common libaec0 libamd3 libasan8 libblas3 libboost-dev 161s libboost1.83-dev libcairo2 libcolamd3 libdatrie1 libdeflate0 161s libfftw3-double3 libfontconfig1 libfreetype6 libgcc-14-dev libgfortran5 161s libglpk40 libgomp1 libgraphite2-3 libharfbuzz0b libhdf5-310 libhdf5-hl-310 161s libice6 libitm1 libjbig0 libjpeg-turbo8 libjpeg8 libjs-bootstrap 161s libjs-bootstrap4 libjs-d3 libjs-es5-shim libjs-highlight.js libjs-jquery 161s libjs-jquery-datatables libjs-jquery-selectize.js libjs-jquery-ui libjs-json 161s libjs-mathjax libjs-microplugin.js libjs-modernizr libjs-popper.js 161s libjs-prettify libjs-sifter.js libjs-twitter-bootstrap-datepicker liblapack3 161s libltdl7 liblua5.4-0 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 161s libpaper-utils libpaper2 libpixman-1-0 libsharpyuv0 libsm6 libstdc++-14-dev 161s libsuitesparseconfig7 libsz2 libtcl8.6 libthai-data libthai0 libtiff6 161s libtk8.6 libubsan1 libwebp7 libxcb-render0 libxcb-shm0 libxft2 libxrender1 161s libxss1 libxt6t64 littler node-bootstrap-sass node-html5shiv 161s node-normalize.css pandoc pandoc-data r-base-core r-bioc-biobase 161s r-bioc-biocgenerics r-bioc-biocio r-bioc-biocparallel r-bioc-biocviews 161s r-bioc-biostrings r-bioc-delayedarray r-bioc-deseq2 r-bioc-genomeinfodb 161s r-bioc-genomeinfodbdata r-bioc-genomicalignments r-bioc-genomicranges 161s r-bioc-graph r-bioc-hsmmsinglecell r-bioc-iranges r-bioc-limma 161s r-bioc-matrixgenerics r-bioc-monocle r-bioc-multtest r-bioc-rbgl 161s r-bioc-rhtslib r-bioc-rsamtools r-bioc-rtracklayer r-bioc-s4arrays 161s r-bioc-s4vectors r-bioc-singlecellexperiment r-bioc-sparsearray 161s r-bioc-summarizedexperiment r-bioc-ucsc.utils r-bioc-xvector r-bioc-zlibbioc 161s r-cran-abind r-cran-ape r-cran-askpass r-cran-base64enc r-cran-beeswarm 161s r-cran-bh r-cran-biocmanager r-cran-bit r-cran-bit64 r-cran-bitops 161s r-cran-brio r-cran-bslib r-cran-cachem r-cran-cairo r-cran-callr 161s r-cran-caret r-cran-catools r-cran-class r-cran-cli r-cran-clock 161s r-cran-cluster r-cran-codetools r-cran-colorspace r-cran-colourpicker 161s r-cran-combinat r-cran-commonmark r-cran-conquer r-cran-cowplot r-cran-cpp11 161s r-cran-crayon r-cran-crosstalk r-cran-curl r-cran-data.table r-cran-ddrtree 161s r-cran-deldir r-cran-deoptimr r-cran-desc r-cran-diagram r-cran-diffobj 161s r-cran-digest r-cran-dotcall64 r-cran-dplyr r-cran-dqrng r-cran-e1071 161s r-cran-evaluate r-cran-fansi r-cran-farver r-cran-fastdummies r-cran-fastica 161s r-cran-fastmap r-cran-fitdistrplus r-cran-fnn r-cran-fontawesome 161s r-cran-foreach r-cran-formatr r-cran-fs r-cran-futile.logger 161s r-cran-futile.options r-cran-future r-cran-future.apply r-cran-gdata 161s r-cran-generics r-cran-ggbeeswarm r-cran-ggplot2 r-cran-ggrastr 161s r-cran-ggrepel r-cran-ggridges r-cran-globals r-cran-glue r-cran-goftest 161s r-cran-gower r-cran-gplots r-cran-gridextra r-cran-gtable r-cran-gtools 161s r-cran-hardhat r-cran-hdf5r r-cran-here r-cran-highr r-cran-htmltools 161s r-cran-htmlwidgets r-cran-httpuv r-cran-httr r-cran-ica r-cran-igraph 161s r-cran-ipred r-cran-irlba r-cran-isoband r-cran-iterators r-cran-jquerylib 161s r-cran-jsonlite r-cran-kernlab r-cran-kernsmooth r-cran-knitr 161s r-cran-labeling r-cran-lambda.r r-cran-later r-cran-lattice r-cran-lava 161s r-cran-lazyeval r-cran-leiden r-cran-leidenbase r-cran-lifecycle 161s r-cran-listenv r-cran-littler r-cran-lmtest r-cran-locfit r-cran-lubridate 161s r-cran-magrittr r-cran-mass r-cran-mathjaxr r-cran-matrix 161s r-cran-matrixmodels r-cran-matrixstats r-cran-memoise r-cran-metap 161s r-cran-mgcv r-cran-mime r-cran-miniui r-cran-mixtools r-cran-mnormt 161s r-cran-modelmetrics r-cran-multcomp r-cran-munsell r-cran-mutoss 161s r-cran-mvtnorm r-cran-nlme r-cran-nnet r-cran-numderiv r-cran-openssl 161s r-cran-parallelly r-cran-patchwork r-cran-pbapply r-cran-pheatmap 161s r-cran-pillar r-cran-pkgbuild r-cran-pkgconfig r-cran-pkgkitten 161s r-cran-pkgload r-cran-plotly r-cran-plotrix r-cran-plyr r-cran-png 161s r-cran-polyclip r-cran-praise r-cran-proc r-cran-processx r-cran-prodlim 161s r-cran-progressr r-cran-promises r-cran-proxy r-cran-ps r-cran-purrr 161s r-cran-qqconf r-cran-quantreg r-cran-r.methodss3 r-cran-r.oo r-cran-r.utils 161s r-cran-r6 r-cran-ragg r-cran-rann r-cran-rappdirs r-cran-rbibutils 161s r-cran-rcolorbrewer r-cran-rcpp r-cran-rcppannoy r-cran-rcpparmadillo 161s r-cran-rcppeigen r-cran-rcpphnsw r-cran-rcppprogress r-cran-rcpptoml 161s r-cran-rcurl r-cran-rdpack r-cran-recipes r-cran-reshape2 r-cran-restfulr 161s r-cran-reticulate r-cran-rjson r-cran-rlang r-cran-rmarkdown 161s r-cran-robustbase r-cran-rocr r-cran-rpart r-cran-rprojroot r-cran-rspectra 161s r-cran-rsvd r-cran-rtsne r-cran-runit r-cran-sandwich r-cran-sass 161s r-cran-scales r-cran-scattermore r-cran-sctransform r-cran-segmented 161s r-cran-seurat r-cran-seuratobject r-cran-shape r-cran-shiny r-cran-shinyjs 161s r-cran-sitmo r-cran-slam r-cran-sn r-cran-snow r-cran-sourcetools r-cran-sp 161s r-cran-spam r-cran-sparsem r-cran-spatstat.data r-cran-spatstat.explore 161s r-cran-spatstat.geom r-cran-spatstat.random r-cran-spatstat.sparse 161s r-cran-spatstat.utils r-cran-squarem r-cran-statmod r-cran-stringi 161s r-cran-stringr r-cran-survival r-cran-sys r-cran-systemfonts r-cran-tensor 161s r-cran-testthat r-cran-textshaping r-cran-tfisher r-cran-th.data 161s r-cran-tibble r-cran-tidyr r-cran-tidyselect r-cran-timechange 161s r-cran-timedate r-cran-tinytex r-cran-tzdb r-cran-utf8 r-cran-uwot 161s r-cran-vctrs r-cran-vgam r-cran-vipor r-cran-viridis r-cran-viridislite 161s r-cran-waldo r-cran-withr r-cran-xfun r-cran-xml r-cran-xtable r-cran-yaml 161s r-cran-zoo unzip x11-common xdg-utils zip zlib1g-dev 161s 0 upgraded, 367 newly installed, 0 to remove and 0 not upgraded. 161s Need to get 432 MB of archives. 161s After this operation, 1230 MB of additional disk space will be used. 161s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 161s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 162s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 162s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-1.1ubuntu2 [37.4 kB] 162s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-1.1ubuntu2 [150 kB] 162s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-1.1ubuntu2 [191 kB] 162s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-font-awesome all 5.0.10+really4.7.0~dfsg-4.1 [516 kB] 162s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x fonts-glyphicons-halflings all 1.009~3.4.1+dfsg-3 [118 kB] 162s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-mathjax all 2.7.9+dfsg-1 [2208 kB] 163s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x javascript-common all 11+nmu1 [5936 B] 163s Get:11 http://ftpmaster.internal/ubuntu plucky/universe s390x libaec0 s390x 1.1.3-1 [25.7 kB] 163s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 163s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libsuitesparseconfig7 s390x 1:7.8.3+dfsg-3 [13.2 kB] 163s Get:14 http://ftpmaster.internal/ubuntu plucky/universe s390x libamd3 s390x 1:7.8.3+dfsg-3 [35.1 kB] 163s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-17ubuntu1 [2964 kB] 163s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libblas3 s390x 3.12.1-2 [252 kB] 163s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-17ubuntu1 [30.9 kB] 163s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-17ubuntu1 [1184 kB] 163s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 163s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 164s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libboost1.83-dev s390x 1.83.0-4.1ubuntu1 [10.7 MB] 164s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libboost-dev s390x 1.83.0.2ubuntu1 [4470 B] 164s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-0 s390x 0.44.0-3 [201 kB] 164s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 164s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 164s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 164s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo2 s390x 1.18.2-2 [580 kB] 164s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libcolamd3 s390x 1:7.8.3+dfsg-3 [23.4 kB] 164s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libdatrie1 s390x 0.2.13-3build1 [20.6 kB] 164s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 164s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libfftw3-double3 s390x 3.3.10-2fakesync1build1 [511 kB] 164s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran5 s390x 14.2.0-17ubuntu1 [588 kB] 164s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libltdl7 s390x 2.5.4-3build1 [43.9 kB] 164s Get:34 http://ftpmaster.internal/ubuntu plucky/universe s390x libglpk40 s390x 5.0-1build2 [406 kB] 164s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 164s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 164s Get:37 http://ftpmaster.internal/ubuntu plucky/universe s390x libsz2 s390x 1.1.3-1 [5442 B] 164s Get:38 http://ftpmaster.internal/ubuntu plucky/universe s390x libhdf5-310 s390x 1.14.5+repack-3 [1477 kB] 165s Get:39 http://ftpmaster.internal/ubuntu plucky/universe s390x libhdf5-hl-310 s390x 1.14.5+repack-3 [61.0 kB] 165s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 165s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 165s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 165s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 165s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-bootstrap all 3.4.1+dfsg-3 [129 kB] 165s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-popper.js all 1.16.1+ds-6 [54.1 kB] 165s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-bootstrap4 all 4.6.1+dfsg1-4 [537 kB] 165s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-d3 all 3.5.17-4 [132 kB] 165s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-es5-shim all 4.6.7-2 [39.8 kB] 165s Get:49 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-highlight.js all 9.18.5+dfsg1-2 [385 kB] 165s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 165s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-datatables all 1.11.5+dfsg-2 [146 kB] 165s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-sifter.js all 0.6.0+dfsg-3 [12.6 kB] 165s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-microplugin.js all 0.0.3+dfsg-1.1 [3712 B] 165s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-selectize.js all 0.12.6+dfsg-1.1 [51.0 kB] 165s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-ui all 1.13.2+dfsg-1 [252 kB] 165s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-json all 0~20221030+~1.0.8-1 [20.6 kB] 165s Get:57 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-prettify all 2015.12.04+dfsg-1.1 [39.3 kB] 165s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack3 s390x 3.12.1-2 [2971 kB] 165s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x liblua5.4-0 s390x 5.4.7-1 [174 kB] 165s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libthai-data all 0.1.29-2build1 [158 kB] 165s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libthai0 s390x 0.1.29-2build1 [20.7 kB] 165s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libpango-1.0-0 s390x 1.56.1-1 [253 kB] 165s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libpangoft2-1.0-0 s390x 1.56.1-1 [50.3 kB] 165s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libpangocairo-1.0-0 s390x 1.56.1-1 [28.3 kB] 165s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x libpaper2 s390x 2.2.5-0.3 [17.2 kB] 165s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x libpaper-utils s390x 2.2.5-0.3 [15.3 kB] 165s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 165s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 165s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x libtcl8.6 s390x 8.6.16+dfsg-1 [1034 kB] 165s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 165s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 165s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 165s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x libxft2 s390x 2.3.6-1build1 [49.6 kB] 165s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x libxss1 s390x 1:1.2.3-1build3 [7396 B] 165s Get:75 http://ftpmaster.internal/ubuntu plucky/main s390x libtk8.6 s390x 8.6.16-1 [830 kB] 165s Get:76 http://ftpmaster.internal/ubuntu plucky/main s390x libxt6t64 s390x 1:1.2.1-1.2build1 [184 kB] 165s Get:77 http://ftpmaster.internal/ubuntu plucky/main s390x zip s390x 3.0-14ubuntu2 [187 kB] 165s Get:78 http://ftpmaster.internal/ubuntu plucky/main s390x unzip s390x 6.0-28ubuntu6 [186 kB] 165s Get:79 http://ftpmaster.internal/ubuntu plucky/main s390x xdg-utils all 1.2.1-2ubuntu1 [66.0 kB] 165s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x r-base-core s390x 4.4.2-1build1 [28.6 MB] 166s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-littler s390x 0.3.20-2 [95.0 kB] 166s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x littler all 0.3.20-2 [2554 B] 166s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x node-bootstrap-sass all 3.4.3-2 [187 kB] 166s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x node-html5shiv all 3.7.3+dfsg-5 [13.5 kB] 166s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x node-normalize.css all 8.0.1-5 [10.8 kB] 166s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x pandoc-data all 3.1.11.1-3build1 [78.8 kB] 166s Get:87 http://ftpmaster.internal/ubuntu plucky/universe s390x pandoc s390x 3.1.11.1+ds-2 [52.5 MB] 167s Get:88 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-biocgenerics all 0.52.0-2 [624 kB] 167s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-biobase s390x 2.66.0-2 [2339 kB] 167s Get:90 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-s4vectors s390x 0.44.0+dfsg-2 [2063 kB] 167s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-biocio all 1.16.0+dfsg-2 [209 kB] 167s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-formatr all 1.14-2 [152 kB] 167s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-lambda.r all 1.2.4-2build1 [119 kB] 167s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-futile.options all 1.0.1-3build1 [20.2 kB] 167s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-futile.logger all 1.4.3-4build1 [99.3 kB] 167s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-snow all 1:0.4.4-2 [97.6 kB] 167s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-codetools all 0.2-20-1 [90.5 kB] 167s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-bh all 1.84.0-1 [5962 B] 167s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-cpp11 all 0.5.1-1 [233 kB] 167s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-biocparallel s390x 1.40.0-2 [1347 kB] 167s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-graph s390x 1.84.1-1 [1298 kB] 168s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-rbgl s390x 1.82.0+dfsg-2 [616 kB] 168s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-xml s390x 3.99-0.18-1 [1744 kB] 168s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-bitops s390x 1.0-9-1 [30.1 kB] 168s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rcurl s390x 1.98-1.16+dfsg-1 [808 kB] 168s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-runit all 0.4.33-1 [377 kB] 168s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-biocmanager all 1.30.25+dfsg-1 [132 kB] 168s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-biocviews all 1.74.0-2 [670 kB] 168s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-iranges s390x 2.40.1-2 [2301 kB] 168s Get:110 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 168s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-zlibbioc all 1.52.0+dfsg-2 [10.2 kB] 168s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-xvector s390x 0.46.0-2 [624 kB] 168s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-curl s390x 6.1.0+dfsg-1 [195 kB] 168s Get:114 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-jsonlite s390x 1.8.9+dfsg-1 [447 kB] 168s Get:115 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-mime s390x 0.12-2 [35.8 kB] 168s Get:116 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-sys s390x 3.4.3-1 [45.2 kB] 168s Get:117 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-askpass s390x 1.2.1-1 [24.8 kB] 168s Get:118 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-openssl s390x 2.2.0+dfsg-1 [405 kB] 168s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-r6 all 2.5.1-1 [99.0 kB] 168s Get:120 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-httr all 1.4.7+dfsg-1 [459 kB] 168s Get:121 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-ucsc.utils all 1.2.0+ds-2 [77.2 kB] 169s Get:122 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-genomeinfodbdata all 1.2.13-2 [12.9 MB] 169s Get:123 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-genomeinfodb all 1.42.3+dfsg-1 [3887 kB] 169s Get:124 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-crayon all 1.5.3-1 [165 kB] 169s Get:125 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-biostrings s390x 2.74.1+dfsg-2 [13.3 MB] 170s Get:126 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-lattice s390x 0.22-6-1 [1340 kB] 170s Get:127 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-matrix s390x 1.7-2-1 [4441 kB] 170s Get:128 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-matrixstats s390x 1.5.0-1 [539 kB] 170s Get:129 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-matrixgenerics all 1.18.1-1 [450 kB] 170s Get:130 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-abind all 1.4-8-1 [66.9 kB] 170s Get:131 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-s4arrays s390x 1.6.0+dfsg-2 [700 kB] 170s Get:132 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-sparsearray s390x 1.6.1+dfsg-1 [1386 kB] 170s Get:133 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-delayedarray s390x 0.32.0+dfsg-2 [2068 kB] 170s Get:134 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-genomicranges s390x 1.58.0+dfsg-2 [2087 kB] 170s Get:135 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-summarizedexperiment all 1.36.0+dfsg-2 [1109 kB] 170s Get:136 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-locfit s390x 1.5-9.11-1 [538 kB] 171s Get:137 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-cli s390x 3.6.3-1 [1349 kB] 171s Get:138 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-glue s390x 1.8.0-1 [164 kB] 171s Get:139 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rlang s390x 1.1.5-1 [1713 kB] 171s Get:140 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-lifecycle all 1.0.4+dfsg-1 [110 kB] 171s Get:141 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-gtable all 0.3.6+dfsg-1 [199 kB] 171s Get:142 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-isoband s390x 0.2.7-1 [1481 kB] 171s Get:143 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-mass s390x 7.3-64-1 [1113 kB] 171s Get:144 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-nlme s390x 3.1.167-1 [2323 kB] 171s Get:145 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-mgcv s390x 1.9-1-1 [3348 kB] 171s Get:146 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-farver s390x 2.1.2-1 [1353 kB] 171s Get:147 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-labeling all 0.4.3-1 [62.1 kB] 171s Get:148 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-colorspace s390x 2.1-1+dfsg-1 [1567 kB] 171s Get:149 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-munsell all 0.5.1-1 [213 kB] 171s Get:150 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rcolorbrewer all 1.1-3-1build1 [55.4 kB] 171s Get:151 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-viridislite all 0.4.2-2 [1088 kB] 171s Get:152 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-scales all 1.3.0-1 [603 kB] 171s Get:153 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-fansi s390x 1.0.5-1 [615 kB] 171s Get:154 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-magrittr s390x 2.0.3-1 [154 kB] 171s Get:155 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-utf8 s390x 1.2.4-1 [143 kB] 171s Get:156 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-vctrs s390x 0.6.5-1 [1448 kB] 171s Get:157 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-pillar all 1.10.1+dfsg-1 [453 kB] 171s Get:158 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-pkgconfig all 2.0.3-2build1 [19.7 kB] 171s Get:159 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-tibble s390x 3.2.1+dfsg-3 [420 kB] 171s Get:160 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-withr all 3.0.2+dfsg-1 [214 kB] 171s Get:161 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-ggplot2 all 3.5.1+dfsg-1 [3940 kB] 172s Get:162 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-pkgkitten all 0.2.4-1 [27.2 kB] 172s Get:163 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rcpp s390x 1.0.14-1 [2003 kB] 172s Get:164 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rcpparmadillo s390x 14.2.3-1-1 [851 kB] 172s Get:165 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-deseq2 s390x 1.46.0+dfsg-2 [1246 kB] 172s Get:166 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-rhtslib s390x 3.2.0+dfsg-2 [1458 kB] 172s Get:167 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-rsamtools s390x 2.22.0+dfsg-2 [3729 kB] 172s Get:168 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-genomicalignments s390x 1.42.0-2 [2152 kB] 172s Get:169 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-hsmmsinglecell all 1.26.0-2 [16.7 MB] 173s Get:170 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-statmod s390x 1.5.0-1 [294 kB] 173s Get:171 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-limma s390x 3.62.2+dfsg-1 [1973 kB] 173s Get:172 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-vgam s390x 1.1-12-1 [7658 kB] 173s Get:173 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-irlba s390x 2.3.5.1-4 [296 kB] 173s Get:174 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rcppeigen s390x 0.3.4.0.2-1 [1429 kB] 173s Get:175 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-ddrtree s390x 0.1.5-2 [133 kB] 173s Get:176 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-igraph s390x 2.1.4-1 [5311 kB] 174s Get:177 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-plyr s390x 1.8.9-1 [835 kB] 174s Get:178 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-cluster s390x 2.1.8-1 [577 kB] 174s Get:179 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-combinat all 0.0-8-7build1 [43.1 kB] 174s Get:180 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-fastica s390x 1.2-7-1 [48.2 kB] 174s Get:181 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rtsne s390x 0.17-1 [118 kB] 174s Get:182 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-stringi s390x 1.8.4-1build1 [917 kB] 174s Get:183 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-stringr all 1.5.1-1 [290 kB] 174s Get:184 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-reshape2 s390x 1.4.4-2build1 [111 kB] 174s Get:185 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-leidenbase s390x 0.1.31-1 [2475 kB] 174s Get:186 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-generics all 0.1.3-1 [81.3 kB] 174s Get:187 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-tidyselect s390x 1.2.1+dfsg-1 [222 kB] 174s Get:188 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-dplyr s390x 1.1.4-4 [1537 kB] 174s Get:189 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-pheatmap all 1.0.12-2build1 [78.2 kB] 174s Get:190 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-proxy s390x 0.4-27-1 [182 kB] 174s Get:191 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-slam s390x 0.1-55-1 [190 kB] 174s Get:192 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-gridextra all 2.3-3build1 [1024 kB] 174s Get:193 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-viridis all 0.6.5-1 [2770 kB] 174s Get:194 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rann s390x 2.6.2-1 [48.8 kB] 174s Get:195 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-monocle s390x 2.34.0-2 [1517 kB] 174s Get:196 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-survival s390x 3.8-3-1 [8250 kB] 174s Get:197 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-multtest s390x 2.62.0-2 [848 kB] 175s Get:198 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rjson s390x 0.2.23-1 [104 kB] 175s Get:199 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-yaml s390x 2.3.10-1 [113 kB] 175s Get:200 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-restfulr s390x 0.0.15-1 [380 kB] 175s Get:201 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-rtracklayer s390x 1.66.0-2 [5235 kB] 175s Get:202 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-singlecellexperiment all 1.28.1+ds-2 [829 kB] 175s Get:203 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-digest s390x 0.6.37-1 [205 kB] 175s Get:204 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-ape s390x 5.8-1-1 [2921 kB] 176s Get:205 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-base64enc s390x 0.1-3-3 [28.0 kB] 176s Get:206 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-beeswarm s390x 0.4.0-1 [82.2 kB] 176s Get:207 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-bit s390x 4.5.0.1-1 [1126 kB] 176s Get:208 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-bit64 s390x 4.0.5-1 [469 kB] 176s Get:209 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-brio s390x 1.1.5-1 [38.6 kB] 176s Get:210 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-fastmap s390x 1.2.0-1 [72.4 kB] 176s Get:211 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-cachem s390x 1.1.0-1 [74.0 kB] 176s Get:212 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-htmltools s390x 0.5.8.1-1 [372 kB] 176s Get:213 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-jquerylib all 0.1.4+dfsg-4 [13.5 kB] 176s Get:214 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-memoise all 2.0.1-1 [53.9 kB] 176s Get:215 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-fs s390x 1.6.5+dfsg-1 [245 kB] 176s Get:216 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rappdirs s390x 0.3.3-1 [47.5 kB] 176s Get:217 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-sass s390x 0.4.9+dfsg-1 [1019 kB] 176s Get:218 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-bslib all 0.8.0+dfsg-1 [4294 kB] 176s Get:219 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-cairo s390x 1.6-2-1 [89.9 kB] 176s Get:220 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-ps s390x 1.8.1-1 [395 kB] 176s Get:221 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-processx s390x 3.8.5-1 [354 kB] 176s Get:222 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-callr all 3.7.6-1 [458 kB] 176s Get:223 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-class s390x 7.3-23-1 [92.0 kB] 176s Get:224 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-e1071 s390x 1.7-16-1 [572 kB] 176s Get:225 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-iterators all 1.0.14-1 [336 kB] 176s Get:226 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-foreach all 1.5.2-1 [124 kB] 176s Get:227 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-data.table s390x 1.16.4+dfsg-1 [2032 kB] 176s Get:228 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-modelmetrics s390x 1.2.2.2-1build1 [122 kB] 176s Get:229 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-proc s390x 1.18.5-1 [968 kB] 176s Get:230 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-tzdb s390x 0.4.0-2 [514 kB] 176s Get:231 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-clock s390x 0.7.1-1 [1842 kB] 176s Get:232 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-gower s390x 1.0.2-1 [209 kB] 176s Get:233 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-hardhat all 1.4.0+dfsg-1 [565 kB] 176s Get:234 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rpart s390x 4.1.24-1 [672 kB] 176s Get:235 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-nnet s390x 7.3-20-1 [116 kB] 176s Get:236 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-shape all 1.4.6.1-1 [749 kB] 176s Get:237 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-diagram all 1.6.5-2 [656 kB] 176s Get:238 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-kernsmooth s390x 2.23-26-1 [94.7 kB] 176s Get:239 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-globals all 0.16.3-1 [120 kB] 176s Get:240 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-listenv all 0.9.1+dfsg-1 [112 kB] 177s Get:241 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-parallelly s390x 1.42.0-1 [540 kB] 177s Get:242 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-future all 1.34.0+dfsg-1 [646 kB] 177s Get:243 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-future.apply all 1.11.3+dfsg-1 [175 kB] 177s Get:244 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-numderiv all 2016.8-1.1-3 [115 kB] 177s Get:245 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-progressr all 0.15.1-1 [353 kB] 177s Get:246 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-squarem all 2021.1-1 [179 kB] 177s Get:247 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-lava all 1.8.1+dfsg-1 [2191 kB] 177s Get:248 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-prodlim s390x 2024.06.25-1 [419 kB] 177s Get:249 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-ipred s390x 0.9-15-1 [386 kB] 177s Get:250 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-timechange s390x 0.3.0-1 [185 kB] 177s Get:251 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-lubridate s390x 1.9.4+dfsg-1 [1010 kB] 177s Get:252 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-purrr s390x 1.0.2-1 [501 kB] 177s Get:253 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-tidyr s390x 1.3.1-1 [1157 kB] 177s Get:254 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-timedate s390x 4041.110-1 [1209 kB] 177s Get:255 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-recipes all 1.1.0+dfsg-1 [2035 kB] 177s Get:256 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-caret s390x 7.0-1+dfsg-1 [3461 kB] 177s Get:257 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-catools s390x 1.18.2-1 [201 kB] 177s Get:258 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-evaluate all 1.0.3-1 [114 kB] 177s Get:259 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-xfun s390x 0.50+dfsg-1 [568 kB] 177s Get:260 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-highr all 0.11+dfsg-1 [38.5 kB] 177s Get:261 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-mathjax all 2.7.9+dfsg-1 [5665 kB] 177s Get:262 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-knitr all 1.49+dfsg-1 [859 kB] 177s Get:263 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-fontawesome all 0.5.3-1 [1331 kB] 178s Get:264 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-tinytex all 0.54-1 [147 kB] 178s Get:265 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-modernizr all 3.13.0-0.1 [101 kB] 178s Get:266 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-later s390x 1.4.1+dfsg-1 [148 kB] 178s Get:267 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-promises s390x 1.3.2+dfsg-1 [296 kB] 178s Get:268 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-httpuv s390x 1.6.15+dfsg-1 [507 kB] 178s Get:269 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-xtable all 1:1.8-4-2 [689 kB] 178s Get:270 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-sourcetools s390x 0.1.7-1-1 [47.1 kB] 178s Get:271 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-commonmark s390x 1.9.2-2 [142 kB] 178s Get:272 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-twitter-bootstrap-datepicker all 1.3.1+dfsg1-4.1 [28.5 kB] 178s Get:273 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-shiny all 1.10.0+dfsg-2 [3124 kB] 178s Get:274 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rmarkdown all 2.29+dfsg-1 [1501 kB] 178s Get:275 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-htmlwidgets all 1.6.4+dfsg-1 [123 kB] 178s Get:276 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-miniui all 0.1.1.1-3build1 [36.1 kB] 178s Get:277 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-shinyjs all 2.1.0-1 [967 kB] 178s Get:278 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-colourpicker all 1.3.0+dfsg-1 [1191 kB] 178s Get:279 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-conquer s390x 1.3.3-1 [459 kB] 178s Get:280 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-cowplot all 1.1.3+dfsg-1 [614 kB] 178s Get:281 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-lazyeval s390x 0.2.2-1build1 [143 kB] 178s Get:282 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-crosstalk all 1.2.1+dfsg-1 [177 kB] 178s Get:283 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-deldir s390x 2.0-4-1build1 [271 kB] 178s Get:284 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-deoptimr all 1.1-3-1-1 [76.6 kB] 178s Get:285 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-desc all 1.4.3-1 [359 kB] 178s Get:286 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-diffobj s390x 0.3.5-1 [1115 kB] 178s Get:287 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-dotcall64 s390x 1.2-1 [36.6 kB] 178s Get:288 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-sitmo s390x 2.0.2-1 [129 kB] 178s Get:289 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-dqrng s390x 0.3.2+dfsg-1 [165 kB] 178s Get:290 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-fastdummies all 1.7.5-1 [51.1 kB] 178s Get:291 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-fitdistrplus all 1.2-2-1 [2287 kB] 178s Get:292 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-fnn s390x 1.1.4.1-1 [132 kB] 179s Get:293 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-gtools s390x 3.9.5-1 [340 kB] 179s Get:294 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-gdata all 3.0.1-1 [491 kB] 179s Get:295 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-vipor all 0.4.7-1 [4624 kB] 179s Get:296 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-ggbeeswarm all 0.7.2-1 [1732 kB] 179s Get:297 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-png s390x 0.1-8-1build2 [41.5 kB] 179s Get:298 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-systemfonts s390x 1.2.1-1 [319 kB] 179s Get:299 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-textshaping s390x 0.3.7-2 [98.5 kB] 179s Get:300 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-ragg s390x 1.3.3-1 [528 kB] 179s Get:301 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-ggrastr all 1.0.2-1 [2566 kB] 179s Get:302 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-ggrepel s390x 0.9.6-1 [271 kB] 179s Get:303 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-ggridges all 0.5.6-1 [2195 kB] 179s Get:304 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-goftest s390x 1.2-3-1 [59.2 kB] 180s Get:305 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-gplots all 3.2.0-1 [484 kB] 180s Get:306 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-hdf5r s390x 1.3.12+dfsg-1 [1952 kB] 180s Get:307 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rprojroot all 2.0.4-2 [125 kB] 180s Get:308 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-here all 1.0.1-2 [50.3 kB] 180s Get:309 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-ica all 1.0-3-1 [85.4 kB] 180s Get:310 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-kernlab s390x 0.9-33-1 [1963 kB] 180s Get:311 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rcpptoml s390x 0.2.2+dfsg-1 [108 kB] 180s Get:312 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-reticulate s390x 1.39.0+dfsg-1 [1239 kB] 180s Get:313 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-leiden all 0.4.3.1+dfsg-1 [71.9 kB] 180s Get:314 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-zoo s390x 1.8-12-2 [984 kB] 180s Get:315 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-lmtest s390x 0.9.40-1 [396 kB] 180s Get:316 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-mathjaxr all 1.6-0-1 [605 kB] 180s Get:317 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-matrixmodels all 0.5-3-1 [361 kB] 180s Get:318 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rbibutils s390x 2.3-1 [1041 kB] 180s Get:319 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rdpack all 2.6.2-1 [757 kB] 180s Get:320 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-mnormt s390x 2.1.1-2 [169 kB] 180s Get:321 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-sparsem s390x 1.84-2-1 [826 kB] 180s Get:322 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-quantreg s390x 6.00-1 [1457 kB] 180s Get:323 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-sn all 2.1.1-2 [1815 kB] 181s Get:324 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-mvtnorm s390x 1.3-3-1 [924 kB] 181s Get:325 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-tfisher all 0.2.0-3 [79.8 kB] 181s Get:326 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-plotrix all 3.8-4-1 [1120 kB] 181s Get:327 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-th.data all 1.1-3-1 [8723 kB] 181s Get:328 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-sandwich all 3.1-1-1 [1483 kB] 181s Get:329 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-multcomp all 1.4-28-1 [700 kB] 181s Get:330 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-mutoss all 0.1-13-1 [1123 kB] 181s Get:331 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-robustbase s390x 0.99-4-1-1 [3059 kB] 181s Get:332 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-qqconf s390x 1.3.2+dfsg-1 [156 kB] 181s Get:333 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-metap all 1.11-2 [570 kB] 181s Get:334 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-plotly all 4.10.4+dfsg-2 [3666 kB] 181s Get:335 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-segmented all 2.1-3-1 [1366 kB] 181s Get:336 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-mixtools s390x 2.0.0-1 [1399 kB] 181s Get:337 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-patchwork all 1.3.0-1 [3220 kB] 181s Get:338 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-pbapply all 1.7-2-1 [102 kB] 181s Get:339 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-pkgbuild all 1.4.6-1 [213 kB] 181s Get:340 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-pkgload all 1.4.0-1 [247 kB] 181s Get:341 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-polyclip s390x 1.10-7-1 [120 kB] 181s Get:342 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-praise all 1.0.0-4build1 [20.3 kB] 181s Get:343 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-r.methodss3 all 1.8.2-1 [84.0 kB] 181s Get:344 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-r.oo all 1.27.0-1 [979 kB] 181s Get:345 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-r.utils all 2.12.3-1 [1386 kB] 181s Get:346 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rcppannoy s390x 0.0.22-1 [246 kB] 181s Get:347 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rcpphnsw s390x 0.6.0+ds-1 [187 kB] 181s Get:348 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rcppprogress all 0.4.2-2build1 [22.0 kB] 181s Get:349 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rocr all 1.0-11-3 [456 kB] 182s Get:350 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rspectra s390x 0.16-2-1 [473 kB] 182s Get:351 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rsvd all 1.0.5-1 [3589 kB] 182s Get:352 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-scattermore s390x 1.2-1 [330 kB] 182s Get:353 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-sctransform s390x 0.4.1-1 [509 kB] 182s Get:354 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-sp s390x 1:2.1-4+dfsg-1 [1472 kB] 182s Get:355 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-spam s390x 2.11-1-1 [2756 kB] 182s Get:356 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-seuratobject s390x 5.0.2-1 [1786 kB] 182s Get:357 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-spatstat.utils s390x 3.1-2-1 [382 kB] 182s Get:358 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-spatstat.data all 3.1-4-1 [4047 kB] 182s Get:359 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-spatstat.geom s390x 3.2-9-2 [3962 kB] 182s Get:360 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-spatstat.random s390x 3.2-3-1 [1175 kB] 182s Get:361 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-tensor all 1.5-4 [15.7 kB] 182s Get:362 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-spatstat.sparse s390x 3.1-0-1 [221 kB] 182s Get:363 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-spatstat.explore s390x 3.2-7-1 [3437 kB] 182s Get:364 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-uwot s390x 0.2.2-2 [954 kB] 182s Get:365 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-seurat s390x 5.0.1-1 [3551 kB] 182s Get:366 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-waldo all 0.6.1-2 [150 kB] 182s Get:367 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-testthat s390x 3.2.1.1-1 [1638 kB] 183s Preconfiguring packages ... 183s Fetched 432 MB in 21s (20.1 MB/s) 183s Selecting previously unselected package libfreetype6:s390x. 183s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 183s Preparing to unpack .../000-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 183s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 183s Selecting previously unselected package fonts-dejavu-mono. 183s Preparing to unpack .../001-fonts-dejavu-mono_2.37-8_all.deb ... 183s Unpacking fonts-dejavu-mono (2.37-8) ... 183s Selecting previously unselected package fonts-dejavu-core. 183s Preparing to unpack .../002-fonts-dejavu-core_2.37-8_all.deb ... 183s Unpacking fonts-dejavu-core (2.37-8) ... 183s Selecting previously unselected package fontconfig-config. 183s Preparing to unpack .../003-fontconfig-config_2.15.0-1.1ubuntu2_s390x.deb ... 183s Unpacking fontconfig-config (2.15.0-1.1ubuntu2) ... 183s Selecting previously unselected package libfontconfig1:s390x. 183s Preparing to unpack .../004-libfontconfig1_2.15.0-1.1ubuntu2_s390x.deb ... 183s Unpacking libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 183s Selecting previously unselected package fontconfig. 183s Preparing to unpack .../005-fontconfig_2.15.0-1.1ubuntu2_s390x.deb ... 183s Unpacking fontconfig (2.15.0-1.1ubuntu2) ... 183s Selecting previously unselected package fonts-font-awesome. 183s Preparing to unpack .../006-fonts-font-awesome_5.0.10+really4.7.0~dfsg-4.1_all.deb ... 183s Unpacking fonts-font-awesome (5.0.10+really4.7.0~dfsg-4.1) ... 183s Selecting previously unselected package fonts-glyphicons-halflings. 183s Preparing to unpack .../007-fonts-glyphicons-halflings_1.009~3.4.1+dfsg-3_all.deb ... 183s Unpacking fonts-glyphicons-halflings (1.009~3.4.1+dfsg-3) ... 183s Selecting previously unselected package fonts-mathjax. 183s Preparing to unpack .../008-fonts-mathjax_2.7.9+dfsg-1_all.deb ... 183s Unpacking fonts-mathjax (2.7.9+dfsg-1) ... 184s Selecting previously unselected package javascript-common. 184s Preparing to unpack .../009-javascript-common_11+nmu1_all.deb ... 184s Unpacking javascript-common (11+nmu1) ... 184s Selecting previously unselected package libaec0:s390x. 184s Preparing to unpack .../010-libaec0_1.1.3-1_s390x.deb ... 184s Unpacking libaec0:s390x (1.1.3-1) ... 184s Selecting previously unselected package libgomp1:s390x. 184s Preparing to unpack .../011-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 184s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 184s Selecting previously unselected package libsuitesparseconfig7:s390x. 184s Preparing to unpack .../012-libsuitesparseconfig7_1%3a7.8.3+dfsg-3_s390x.deb ... 184s Unpacking libsuitesparseconfig7:s390x (1:7.8.3+dfsg-3) ... 184s Selecting previously unselected package libamd3:s390x. 184s Preparing to unpack .../013-libamd3_1%3a7.8.3+dfsg-3_s390x.deb ... 184s Unpacking libamd3:s390x (1:7.8.3+dfsg-3) ... 184s Selecting previously unselected package libasan8:s390x. 184s Preparing to unpack .../014-libasan8_14.2.0-17ubuntu1_s390x.deb ... 184s Unpacking libasan8:s390x (14.2.0-17ubuntu1) ... 184s Selecting previously unselected package libblas3:s390x. 184s Preparing to unpack .../015-libblas3_3.12.1-2_s390x.deb ... 184s Unpacking libblas3:s390x (3.12.1-2) ... 184s Selecting previously unselected package libitm1:s390x. 184s Preparing to unpack .../016-libitm1_14.2.0-17ubuntu1_s390x.deb ... 184s Unpacking libitm1:s390x (14.2.0-17ubuntu1) ... 184s Selecting previously unselected package libubsan1:s390x. 184s Preparing to unpack .../017-libubsan1_14.2.0-17ubuntu1_s390x.deb ... 184s Unpacking libubsan1:s390x (14.2.0-17ubuntu1) ... 184s Selecting previously unselected package libgcc-14-dev:s390x. 184s Preparing to unpack .../018-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 184s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 184s Selecting previously unselected package libstdc++-14-dev:s390x. 184s Preparing to unpack .../019-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 184s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 184s Selecting previously unselected package libboost1.83-dev:s390x. 184s Preparing to unpack .../020-libboost1.83-dev_1.83.0-4.1ubuntu1_s390x.deb ... 184s Unpacking libboost1.83-dev:s390x (1.83.0-4.1ubuntu1) ... 185s Selecting previously unselected package libboost-dev:s390x. 185s Preparing to unpack .../021-libboost-dev_1.83.0.2ubuntu1_s390x.deb ... 185s Unpacking libboost-dev:s390x (1.83.0.2ubuntu1) ... 185s Selecting previously unselected package libpixman-1-0:s390x. 185s Preparing to unpack .../022-libpixman-1-0_0.44.0-3_s390x.deb ... 185s Unpacking libpixman-1-0:s390x (0.44.0-3) ... 185s Selecting previously unselected package libxcb-render0:s390x. 185s Preparing to unpack .../023-libxcb-render0_1.17.0-2_s390x.deb ... 185s Unpacking libxcb-render0:s390x (1.17.0-2) ... 185s Selecting previously unselected package libxcb-shm0:s390x. 185s Preparing to unpack .../024-libxcb-shm0_1.17.0-2_s390x.deb ... 185s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 185s Selecting previously unselected package libxrender1:s390x. 185s Preparing to unpack .../025-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 185s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 185s Selecting previously unselected package libcairo2:s390x. 185s Preparing to unpack .../026-libcairo2_1.18.2-2_s390x.deb ... 185s Unpacking libcairo2:s390x (1.18.2-2) ... 185s Selecting previously unselected package libcolamd3:s390x. 185s Preparing to unpack .../027-libcolamd3_1%3a7.8.3+dfsg-3_s390x.deb ... 185s Unpacking libcolamd3:s390x (1:7.8.3+dfsg-3) ... 185s Selecting previously unselected package libdatrie1:s390x. 185s Preparing to unpack .../028-libdatrie1_0.2.13-3build1_s390x.deb ... 185s Unpacking libdatrie1:s390x (0.2.13-3build1) ... 185s Selecting previously unselected package libdeflate0:s390x. 185s Preparing to unpack .../029-libdeflate0_1.23-1_s390x.deb ... 185s Unpacking libdeflate0:s390x (1.23-1) ... 185s Selecting previously unselected package libfftw3-double3:s390x. 185s Preparing to unpack .../030-libfftw3-double3_3.3.10-2fakesync1build1_s390x.deb ... 185s Unpacking libfftw3-double3:s390x (3.3.10-2fakesync1build1) ... 185s Selecting previously unselected package libgfortran5:s390x. 185s Preparing to unpack .../031-libgfortran5_14.2.0-17ubuntu1_s390x.deb ... 185s Unpacking libgfortran5:s390x (14.2.0-17ubuntu1) ... 185s Selecting previously unselected package libltdl7:s390x. 185s Preparing to unpack .../032-libltdl7_2.5.4-3build1_s390x.deb ... 185s Unpacking libltdl7:s390x (2.5.4-3build1) ... 185s Selecting previously unselected package libglpk40:s390x. 185s Preparing to unpack .../033-libglpk40_5.0-1build2_s390x.deb ... 185s Unpacking libglpk40:s390x (5.0-1build2) ... 185s Selecting previously unselected package libgraphite2-3:s390x. 185s Preparing to unpack .../034-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 185s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 185s Selecting previously unselected package libharfbuzz0b:s390x. 185s Preparing to unpack .../035-libharfbuzz0b_10.2.0-1_s390x.deb ... 185s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 185s Selecting previously unselected package libsz2:s390x. 185s Preparing to unpack .../036-libsz2_1.1.3-1_s390x.deb ... 185s Unpacking libsz2:s390x (1.1.3-1) ... 185s Selecting previously unselected package libhdf5-310:s390x. 185s Preparing to unpack .../037-libhdf5-310_1.14.5+repack-3_s390x.deb ... 185s Unpacking libhdf5-310:s390x (1.14.5+repack-3) ... 185s Selecting previously unselected package libhdf5-hl-310:s390x. 185s Preparing to unpack .../038-libhdf5-hl-310_1.14.5+repack-3_s390x.deb ... 185s Unpacking libhdf5-hl-310:s390x (1.14.5+repack-3) ... 185s Selecting previously unselected package x11-common. 185s Preparing to unpack .../039-x11-common_1%3a7.7+23ubuntu3_all.deb ... 185s Unpacking x11-common (1:7.7+23ubuntu3) ... 185s Selecting previously unselected package libice6:s390x. 185s Preparing to unpack .../040-libice6_2%3a1.1.1-1_s390x.deb ... 185s Unpacking libice6:s390x (2:1.1.1-1) ... 185s Selecting previously unselected package libjpeg-turbo8:s390x. 185s Preparing to unpack .../041-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 185s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 185s Selecting previously unselected package libjpeg8:s390x. 185s Preparing to unpack .../042-libjpeg8_8c-2ubuntu11_s390x.deb ... 185s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 185s Selecting previously unselected package libjs-bootstrap. 185s Preparing to unpack .../043-libjs-bootstrap_3.4.1+dfsg-3_all.deb ... 185s Unpacking libjs-bootstrap (3.4.1+dfsg-3) ... 185s Selecting previously unselected package libjs-popper.js. 185s Preparing to unpack .../044-libjs-popper.js_1.16.1+ds-6_all.deb ... 185s Unpacking libjs-popper.js (1.16.1+ds-6) ... 185s Selecting previously unselected package libjs-bootstrap4. 185s Preparing to unpack .../045-libjs-bootstrap4_4.6.1+dfsg1-4_all.deb ... 185s Unpacking libjs-bootstrap4 (4.6.1+dfsg1-4) ... 185s Selecting previously unselected package libjs-d3. 185s Preparing to unpack .../046-libjs-d3_3.5.17-4_all.deb ... 185s Unpacking libjs-d3 (3.5.17-4) ... 185s Selecting previously unselected package libjs-es5-shim. 185s Preparing to unpack .../047-libjs-es5-shim_4.6.7-2_all.deb ... 185s Unpacking libjs-es5-shim (4.6.7-2) ... 185s Selecting previously unselected package libjs-highlight.js. 185s Preparing to unpack .../048-libjs-highlight.js_9.18.5+dfsg1-2_all.deb ... 185s Unpacking libjs-highlight.js (9.18.5+dfsg1-2) ... 185s Selecting previously unselected package libjs-jquery. 185s Preparing to unpack .../049-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 185s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 185s Selecting previously unselected package libjs-jquery-datatables. 185s Preparing to unpack .../050-libjs-jquery-datatables_1.11.5+dfsg-2_all.deb ... 185s Unpacking libjs-jquery-datatables (1.11.5+dfsg-2) ... 185s Selecting previously unselected package libjs-sifter.js. 185s Preparing to unpack .../051-libjs-sifter.js_0.6.0+dfsg-3_all.deb ... 185s Unpacking libjs-sifter.js (0.6.0+dfsg-3) ... 185s Selecting previously unselected package libjs-microplugin.js. 185s Preparing to unpack .../052-libjs-microplugin.js_0.0.3+dfsg-1.1_all.deb ... 185s Unpacking libjs-microplugin.js (0.0.3+dfsg-1.1) ... 185s Selecting previously unselected package libjs-jquery-selectize.js. 185s Preparing to unpack .../053-libjs-jquery-selectize.js_0.12.6+dfsg-1.1_all.deb ... 185s Unpacking libjs-jquery-selectize.js (0.12.6+dfsg-1.1) ... 185s Selecting previously unselected package libjs-jquery-ui. 185s Preparing to unpack .../054-libjs-jquery-ui_1.13.2+dfsg-1_all.deb ... 185s Unpacking libjs-jquery-ui (1.13.2+dfsg-1) ... 185s Selecting previously unselected package libjs-json. 185s Preparing to unpack .../055-libjs-json_0~20221030+~1.0.8-1_all.deb ... 185s Unpacking libjs-json (0~20221030+~1.0.8-1) ... 185s Selecting previously unselected package libjs-prettify. 185s Preparing to unpack .../056-libjs-prettify_2015.12.04+dfsg-1.1_all.deb ... 185s Unpacking libjs-prettify (2015.12.04+dfsg-1.1) ... 185s Selecting previously unselected package liblapack3:s390x. 185s Preparing to unpack .../057-liblapack3_3.12.1-2_s390x.deb ... 185s Unpacking liblapack3:s390x (3.12.1-2) ... 186s Selecting previously unselected package liblua5.4-0:s390x. 186s Preparing to unpack .../058-liblua5.4-0_5.4.7-1_s390x.deb ... 186s Unpacking liblua5.4-0:s390x (5.4.7-1) ... 186s Selecting previously unselected package libthai-data. 186s Preparing to unpack .../059-libthai-data_0.1.29-2build1_all.deb ... 186s Unpacking libthai-data (0.1.29-2build1) ... 186s Selecting previously unselected package libthai0:s390x. 186s Preparing to unpack .../060-libthai0_0.1.29-2build1_s390x.deb ... 186s Unpacking libthai0:s390x (0.1.29-2build1) ... 186s Selecting previously unselected package libpango-1.0-0:s390x. 186s Preparing to unpack .../061-libpango-1.0-0_1.56.1-1_s390x.deb ... 186s Unpacking libpango-1.0-0:s390x (1.56.1-1) ... 186s Selecting previously unselected package libpangoft2-1.0-0:s390x. 186s Preparing to unpack .../062-libpangoft2-1.0-0_1.56.1-1_s390x.deb ... 186s Unpacking libpangoft2-1.0-0:s390x (1.56.1-1) ... 186s Selecting previously unselected package libpangocairo-1.0-0:s390x. 186s Preparing to unpack .../063-libpangocairo-1.0-0_1.56.1-1_s390x.deb ... 186s Unpacking libpangocairo-1.0-0:s390x (1.56.1-1) ... 186s Selecting previously unselected package libpaper2:s390x. 186s Preparing to unpack .../064-libpaper2_2.2.5-0.3_s390x.deb ... 186s Unpacking libpaper2:s390x (2.2.5-0.3) ... 186s Selecting previously unselected package libpaper-utils. 186s Preparing to unpack .../065-libpaper-utils_2.2.5-0.3_s390x.deb ... 186s Unpacking libpaper-utils (2.2.5-0.3) ... 186s Selecting previously unselected package libsharpyuv0:s390x. 186s Preparing to unpack .../066-libsharpyuv0_1.5.0-0.1_s390x.deb ... 186s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 186s Selecting previously unselected package libsm6:s390x. 186s Preparing to unpack .../067-libsm6_2%3a1.2.4-1_s390x.deb ... 186s Unpacking libsm6:s390x (2:1.2.4-1) ... 186s Selecting previously unselected package libtcl8.6:s390x. 186s Preparing to unpack .../068-libtcl8.6_8.6.16+dfsg-1_s390x.deb ... 186s Unpacking libtcl8.6:s390x (8.6.16+dfsg-1) ... 186s Selecting previously unselected package libjbig0:s390x. 186s Preparing to unpack .../069-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 186s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 186s Selecting previously unselected package libwebp7:s390x. 186s Preparing to unpack .../070-libwebp7_1.5.0-0.1_s390x.deb ... 186s Unpacking libwebp7:s390x (1.5.0-0.1) ... 186s Selecting previously unselected package libtiff6:s390x. 186s Preparing to unpack .../071-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 186s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 186s Selecting previously unselected package libxft2:s390x. 186s Preparing to unpack .../072-libxft2_2.3.6-1build1_s390x.deb ... 186s Unpacking libxft2:s390x (2.3.6-1build1) ... 186s Selecting previously unselected package libxss1:s390x. 186s Preparing to unpack .../073-libxss1_1%3a1.2.3-1build3_s390x.deb ... 186s Unpacking libxss1:s390x (1:1.2.3-1build3) ... 186s Selecting previously unselected package libtk8.6:s390x. 186s Preparing to unpack .../074-libtk8.6_8.6.16-1_s390x.deb ... 186s Unpacking libtk8.6:s390x (8.6.16-1) ... 186s Selecting previously unselected package libxt6t64:s390x. 186s Preparing to unpack .../075-libxt6t64_1%3a1.2.1-1.2build1_s390x.deb ... 186s Unpacking libxt6t64:s390x (1:1.2.1-1.2build1) ... 186s Selecting previously unselected package zip. 186s Preparing to unpack .../076-zip_3.0-14ubuntu2_s390x.deb ... 186s Unpacking zip (3.0-14ubuntu2) ... 186s Selecting previously unselected package unzip. 186s Preparing to unpack .../077-unzip_6.0-28ubuntu6_s390x.deb ... 186s Unpacking unzip (6.0-28ubuntu6) ... 186s Selecting previously unselected package xdg-utils. 186s Preparing to unpack .../078-xdg-utils_1.2.1-2ubuntu1_all.deb ... 186s Unpacking xdg-utils (1.2.1-2ubuntu1) ... 186s Selecting previously unselected package r-base-core. 186s Preparing to unpack .../079-r-base-core_4.4.2-1build1_s390x.deb ... 186s Unpacking r-base-core (4.4.2-1build1) ... 186s Selecting previously unselected package r-cran-littler. 186s Preparing to unpack .../080-r-cran-littler_0.3.20-2_s390x.deb ... 186s Unpacking r-cran-littler (0.3.20-2) ... 186s Selecting previously unselected package littler. 186s Preparing to unpack .../081-littler_0.3.20-2_all.deb ... 186s Unpacking littler (0.3.20-2) ... 186s Selecting previously unselected package node-bootstrap-sass. 186s Preparing to unpack .../082-node-bootstrap-sass_3.4.3-2_all.deb ... 186s Unpacking node-bootstrap-sass (3.4.3-2) ... 186s Selecting previously unselected package node-html5shiv. 186s Preparing to unpack .../083-node-html5shiv_3.7.3+dfsg-5_all.deb ... 186s Unpacking node-html5shiv (3.7.3+dfsg-5) ... 186s Selecting previously unselected package node-normalize.css. 186s Preparing to unpack .../084-node-normalize.css_8.0.1-5_all.deb ... 186s Unpacking node-normalize.css (8.0.1-5) ... 186s Selecting previously unselected package pandoc-data. 186s Preparing to unpack .../085-pandoc-data_3.1.11.1-3build1_all.deb ... 186s Unpacking pandoc-data (3.1.11.1-3build1) ... 186s Selecting previously unselected package pandoc. 186s Preparing to unpack .../086-pandoc_3.1.11.1+ds-2_s390x.deb ... 186s Unpacking pandoc (3.1.11.1+ds-2) ... 187s Selecting previously unselected package r-bioc-biocgenerics. 187s Preparing to unpack .../087-r-bioc-biocgenerics_0.52.0-2_all.deb ... 187s Unpacking r-bioc-biocgenerics (0.52.0-2) ... 187s Selecting previously unselected package r-bioc-biobase. 187s Preparing to unpack .../088-r-bioc-biobase_2.66.0-2_s390x.deb ... 187s Unpacking r-bioc-biobase (2.66.0-2) ... 187s Selecting previously unselected package r-bioc-s4vectors. 187s Preparing to unpack .../089-r-bioc-s4vectors_0.44.0+dfsg-2_s390x.deb ... 187s Unpacking r-bioc-s4vectors (0.44.0+dfsg-2) ... 187s Selecting previously unselected package r-bioc-biocio. 187s Preparing to unpack .../090-r-bioc-biocio_1.16.0+dfsg-2_all.deb ... 187s Unpacking r-bioc-biocio (1.16.0+dfsg-2) ... 187s Selecting previously unselected package r-cran-formatr. 187s Preparing to unpack .../091-r-cran-formatr_1.14-2_all.deb ... 187s Unpacking r-cran-formatr (1.14-2) ... 187s Selecting previously unselected package r-cran-lambda.r. 187s Preparing to unpack .../092-r-cran-lambda.r_1.2.4-2build1_all.deb ... 187s Unpacking r-cran-lambda.r (1.2.4-2build1) ... 187s Selecting previously unselected package r-cran-futile.options. 187s Preparing to unpack .../093-r-cran-futile.options_1.0.1-3build1_all.deb ... 187s Unpacking r-cran-futile.options (1.0.1-3build1) ... 187s Selecting previously unselected package r-cran-futile.logger. 187s Preparing to unpack .../094-r-cran-futile.logger_1.4.3-4build1_all.deb ... 187s Unpacking r-cran-futile.logger (1.4.3-4build1) ... 187s Selecting previously unselected package r-cran-snow. 187s Preparing to unpack .../095-r-cran-snow_1%3a0.4.4-2_all.deb ... 187s Unpacking r-cran-snow (1:0.4.4-2) ... 188s Selecting previously unselected package r-cran-codetools. 188s Preparing to unpack .../096-r-cran-codetools_0.2-20-1_all.deb ... 188s Unpacking r-cran-codetools (0.2-20-1) ... 188s Selecting previously unselected package r-cran-bh. 188s Preparing to unpack .../097-r-cran-bh_1.84.0-1_all.deb ... 188s Unpacking r-cran-bh (1.84.0-1) ... 188s Selecting previously unselected package r-cran-cpp11. 188s Preparing to unpack .../098-r-cran-cpp11_0.5.1-1_all.deb ... 188s Unpacking r-cran-cpp11 (0.5.1-1) ... 188s Selecting previously unselected package r-bioc-biocparallel. 188s Preparing to unpack .../099-r-bioc-biocparallel_1.40.0-2_s390x.deb ... 188s Unpacking r-bioc-biocparallel (1.40.0-2) ... 188s Selecting previously unselected package r-bioc-graph. 188s Preparing to unpack .../100-r-bioc-graph_1.84.1-1_s390x.deb ... 188s Unpacking r-bioc-graph (1.84.1-1) ... 188s Selecting previously unselected package r-bioc-rbgl. 188s Preparing to unpack .../101-r-bioc-rbgl_1.82.0+dfsg-2_s390x.deb ... 188s Unpacking r-bioc-rbgl (1.82.0+dfsg-2) ... 188s Selecting previously unselected package r-cran-xml. 188s Preparing to unpack .../102-r-cran-xml_3.99-0.18-1_s390x.deb ... 188s Unpacking r-cran-xml (3.99-0.18-1) ... 188s Selecting previously unselected package r-cran-bitops. 188s Preparing to unpack .../103-r-cran-bitops_1.0-9-1_s390x.deb ... 188s Unpacking r-cran-bitops (1.0-9-1) ... 188s Selecting previously unselected package r-cran-rcurl. 188s Preparing to unpack .../104-r-cran-rcurl_1.98-1.16+dfsg-1_s390x.deb ... 188s Unpacking r-cran-rcurl (1.98-1.16+dfsg-1) ... 188s Selecting previously unselected package r-cran-runit. 188s Preparing to unpack .../105-r-cran-runit_0.4.33-1_all.deb ... 188s Unpacking r-cran-runit (0.4.33-1) ... 188s Selecting previously unselected package r-cran-biocmanager. 188s Preparing to unpack .../106-r-cran-biocmanager_1.30.25+dfsg-1_all.deb ... 188s Unpacking r-cran-biocmanager (1.30.25+dfsg-1) ... 188s Selecting previously unselected package r-bioc-biocviews. 188s Preparing to unpack .../107-r-bioc-biocviews_1.74.0-2_all.deb ... 188s Unpacking r-bioc-biocviews (1.74.0-2) ... 188s Selecting previously unselected package r-bioc-iranges. 188s Preparing to unpack .../108-r-bioc-iranges_2.40.1-2_s390x.deb ... 188s Unpacking r-bioc-iranges (2.40.1-2) ... 188s Selecting previously unselected package zlib1g-dev:s390x. 188s Preparing to unpack .../109-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 188s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 188s Selecting previously unselected package r-bioc-zlibbioc. 188s Preparing to unpack .../110-r-bioc-zlibbioc_1.52.0+dfsg-2_all.deb ... 188s Unpacking r-bioc-zlibbioc (1.52.0+dfsg-2) ... 188s Selecting previously unselected package r-bioc-xvector. 188s Preparing to unpack .../111-r-bioc-xvector_0.46.0-2_s390x.deb ... 188s Unpacking r-bioc-xvector (0.46.0-2) ... 188s Selecting previously unselected package r-cran-curl. 188s Preparing to unpack .../112-r-cran-curl_6.1.0+dfsg-1_s390x.deb ... 188s Unpacking r-cran-curl (6.1.0+dfsg-1) ... 188s Selecting previously unselected package r-cran-jsonlite. 188s Preparing to unpack .../113-r-cran-jsonlite_1.8.9+dfsg-1_s390x.deb ... 188s Unpacking r-cran-jsonlite (1.8.9+dfsg-1) ... 188s Selecting previously unselected package r-cran-mime. 188s Preparing to unpack .../114-r-cran-mime_0.12-2_s390x.deb ... 188s Unpacking r-cran-mime (0.12-2) ... 188s Selecting previously unselected package r-cran-sys. 188s Preparing to unpack .../115-r-cran-sys_3.4.3-1_s390x.deb ... 188s Unpacking r-cran-sys (3.4.3-1) ... 188s Selecting previously unselected package r-cran-askpass. 188s Preparing to unpack .../116-r-cran-askpass_1.2.1-1_s390x.deb ... 188s Unpacking r-cran-askpass (1.2.1-1) ... 188s Selecting previously unselected package r-cran-openssl. 188s Preparing to unpack .../117-r-cran-openssl_2.2.0+dfsg-1_s390x.deb ... 188s Unpacking r-cran-openssl (2.2.0+dfsg-1) ... 188s Selecting previously unselected package r-cran-r6. 188s Preparing to unpack .../118-r-cran-r6_2.5.1-1_all.deb ... 188s Unpacking r-cran-r6 (2.5.1-1) ... 188s Selecting previously unselected package r-cran-httr. 188s Preparing to unpack .../119-r-cran-httr_1.4.7+dfsg-1_all.deb ... 188s Unpacking r-cran-httr (1.4.7+dfsg-1) ... 188s Selecting previously unselected package r-bioc-ucsc.utils. 188s Preparing to unpack .../120-r-bioc-ucsc.utils_1.2.0+ds-2_all.deb ... 188s Unpacking r-bioc-ucsc.utils (1.2.0+ds-2) ... 188s Selecting previously unselected package r-bioc-genomeinfodbdata. 188s Preparing to unpack .../121-r-bioc-genomeinfodbdata_1.2.13-2_all.deb ... 188s Unpacking r-bioc-genomeinfodbdata (1.2.13-2) ... 188s Selecting previously unselected package r-bioc-genomeinfodb. 188s Preparing to unpack .../122-r-bioc-genomeinfodb_1.42.3+dfsg-1_all.deb ... 188s Unpacking r-bioc-genomeinfodb (1.42.3+dfsg-1) ... 188s Selecting previously unselected package r-cran-crayon. 188s Preparing to unpack .../123-r-cran-crayon_1.5.3-1_all.deb ... 188s Unpacking r-cran-crayon (1.5.3-1) ... 188s Selecting previously unselected package r-bioc-biostrings. 188s Preparing to unpack .../124-r-bioc-biostrings_2.74.1+dfsg-2_s390x.deb ... 188s Unpacking r-bioc-biostrings (2.74.1+dfsg-2) ... 188s Selecting previously unselected package r-cran-lattice. 188s Preparing to unpack .../125-r-cran-lattice_0.22-6-1_s390x.deb ... 188s Unpacking r-cran-lattice (0.22-6-1) ... 188s Selecting previously unselected package r-cran-matrix. 188s Preparing to unpack .../126-r-cran-matrix_1.7-2-1_s390x.deb ... 188s Unpacking r-cran-matrix (1.7-2-1) ... 188s Selecting previously unselected package r-cran-matrixstats. 188s Preparing to unpack .../127-r-cran-matrixstats_1.5.0-1_s390x.deb ... 188s Unpacking r-cran-matrixstats (1.5.0-1) ... 188s Selecting previously unselected package r-bioc-matrixgenerics. 188s Preparing to unpack .../128-r-bioc-matrixgenerics_1.18.1-1_all.deb ... 188s Unpacking r-bioc-matrixgenerics (1.18.1-1) ... 188s Selecting previously unselected package r-cran-abind. 188s Preparing to unpack .../129-r-cran-abind_1.4-8-1_all.deb ... 188s Unpacking r-cran-abind (1.4-8-1) ... 188s Selecting previously unselected package r-bioc-s4arrays. 188s Preparing to unpack .../130-r-bioc-s4arrays_1.6.0+dfsg-2_s390x.deb ... 188s Unpacking r-bioc-s4arrays (1.6.0+dfsg-2) ... 188s Selecting previously unselected package r-bioc-sparsearray. 188s Preparing to unpack .../131-r-bioc-sparsearray_1.6.1+dfsg-1_s390x.deb ... 188s Unpacking r-bioc-sparsearray (1.6.1+dfsg-1) ... 188s Selecting previously unselected package r-bioc-delayedarray. 188s Preparing to unpack .../132-r-bioc-delayedarray_0.32.0+dfsg-2_s390x.deb ... 188s Unpacking r-bioc-delayedarray (0.32.0+dfsg-2) ... 188s Selecting previously unselected package r-bioc-genomicranges. 188s Preparing to unpack .../133-r-bioc-genomicranges_1.58.0+dfsg-2_s390x.deb ... 188s Unpacking r-bioc-genomicranges (1.58.0+dfsg-2) ... 188s Selecting previously unselected package r-bioc-summarizedexperiment. 188s Preparing to unpack .../134-r-bioc-summarizedexperiment_1.36.0+dfsg-2_all.deb ... 188s Unpacking r-bioc-summarizedexperiment (1.36.0+dfsg-2) ... 188s Selecting previously unselected package r-cran-locfit. 188s Preparing to unpack .../135-r-cran-locfit_1.5-9.11-1_s390x.deb ... 188s Unpacking r-cran-locfit (1.5-9.11-1) ... 188s Selecting previously unselected package r-cran-cli. 188s Preparing to unpack .../136-r-cran-cli_3.6.3-1_s390x.deb ... 188s Unpacking r-cran-cli (3.6.3-1) ... 188s Selecting previously unselected package r-cran-glue. 188s Preparing to unpack .../137-r-cran-glue_1.8.0-1_s390x.deb ... 188s Unpacking r-cran-glue (1.8.0-1) ... 188s Selecting previously unselected package r-cran-rlang. 188s Preparing to unpack .../138-r-cran-rlang_1.1.5-1_s390x.deb ... 188s Unpacking r-cran-rlang (1.1.5-1) ... 188s Selecting previously unselected package r-cran-lifecycle. 188s Preparing to unpack .../139-r-cran-lifecycle_1.0.4+dfsg-1_all.deb ... 188s Unpacking r-cran-lifecycle (1.0.4+dfsg-1) ... 188s Selecting previously unselected package r-cran-gtable. 188s Preparing to unpack .../140-r-cran-gtable_0.3.6+dfsg-1_all.deb ... 188s Unpacking r-cran-gtable (0.3.6+dfsg-1) ... 188s Selecting previously unselected package r-cran-isoband. 188s Preparing to unpack .../141-r-cran-isoband_0.2.7-1_s390x.deb ... 188s Unpacking r-cran-isoband (0.2.7-1) ... 188s Selecting previously unselected package r-cran-mass. 188s Preparing to unpack .../142-r-cran-mass_7.3-64-1_s390x.deb ... 188s Unpacking r-cran-mass (7.3-64-1) ... 188s Selecting previously unselected package r-cran-nlme. 188s Preparing to unpack .../143-r-cran-nlme_3.1.167-1_s390x.deb ... 188s Unpacking r-cran-nlme (3.1.167-1) ... 188s Selecting previously unselected package r-cran-mgcv. 188s Preparing to unpack .../144-r-cran-mgcv_1.9-1-1_s390x.deb ... 188s Unpacking r-cran-mgcv (1.9-1-1) ... 188s Selecting previously unselected package r-cran-farver. 188s Preparing to unpack .../145-r-cran-farver_2.1.2-1_s390x.deb ... 188s Unpacking r-cran-farver (2.1.2-1) ... 189s Selecting previously unselected package r-cran-labeling. 189s Preparing to unpack .../146-r-cran-labeling_0.4.3-1_all.deb ... 189s Unpacking r-cran-labeling (0.4.3-1) ... 189s Selecting previously unselected package r-cran-colorspace. 189s Preparing to unpack .../147-r-cran-colorspace_2.1-1+dfsg-1_s390x.deb ... 189s Unpacking r-cran-colorspace (2.1-1+dfsg-1) ... 189s Selecting previously unselected package r-cran-munsell. 189s Preparing to unpack .../148-r-cran-munsell_0.5.1-1_all.deb ... 189s Unpacking r-cran-munsell (0.5.1-1) ... 189s Selecting previously unselected package r-cran-rcolorbrewer. 189s Preparing to unpack .../149-r-cran-rcolorbrewer_1.1-3-1build1_all.deb ... 189s Unpacking r-cran-rcolorbrewer (1.1-3-1build1) ... 189s Selecting previously unselected package r-cran-viridislite. 189s Preparing to unpack .../150-r-cran-viridislite_0.4.2-2_all.deb ... 189s Unpacking r-cran-viridislite (0.4.2-2) ... 189s Selecting previously unselected package r-cran-scales. 189s Preparing to unpack .../151-r-cran-scales_1.3.0-1_all.deb ... 189s Unpacking r-cran-scales (1.3.0-1) ... 189s Selecting previously unselected package r-cran-fansi. 189s Preparing to unpack .../152-r-cran-fansi_1.0.5-1_s390x.deb ... 189s Unpacking r-cran-fansi (1.0.5-1) ... 189s Selecting previously unselected package r-cran-magrittr. 189s Preparing to unpack .../153-r-cran-magrittr_2.0.3-1_s390x.deb ... 189s Unpacking r-cran-magrittr (2.0.3-1) ... 189s Selecting previously unselected package r-cran-utf8. 189s Preparing to unpack .../154-r-cran-utf8_1.2.4-1_s390x.deb ... 189s Unpacking r-cran-utf8 (1.2.4-1) ... 189s Selecting previously unselected package r-cran-vctrs. 189s Preparing to unpack .../155-r-cran-vctrs_0.6.5-1_s390x.deb ... 189s Unpacking r-cran-vctrs (0.6.5-1) ... 189s Selecting previously unselected package r-cran-pillar. 189s Preparing to unpack .../156-r-cran-pillar_1.10.1+dfsg-1_all.deb ... 189s Unpacking r-cran-pillar (1.10.1+dfsg-1) ... 189s Selecting previously unselected package r-cran-pkgconfig. 189s Preparing to unpack .../157-r-cran-pkgconfig_2.0.3-2build1_all.deb ... 189s Unpacking r-cran-pkgconfig (2.0.3-2build1) ... 189s Selecting previously unselected package r-cran-tibble. 189s Preparing to unpack .../158-r-cran-tibble_3.2.1+dfsg-3_s390x.deb ... 189s Unpacking r-cran-tibble (3.2.1+dfsg-3) ... 189s Selecting previously unselected package r-cran-withr. 189s Preparing to unpack .../159-r-cran-withr_3.0.2+dfsg-1_all.deb ... 189s Unpacking r-cran-withr (3.0.2+dfsg-1) ... 189s Selecting previously unselected package r-cran-ggplot2. 189s Preparing to unpack .../160-r-cran-ggplot2_3.5.1+dfsg-1_all.deb ... 189s Unpacking r-cran-ggplot2 (3.5.1+dfsg-1) ... 189s Selecting previously unselected package r-cran-pkgkitten. 189s Preparing to unpack .../161-r-cran-pkgkitten_0.2.4-1_all.deb ... 189s Unpacking r-cran-pkgkitten (0.2.4-1) ... 189s Selecting previously unselected package r-cran-rcpp. 189s Preparing to unpack .../162-r-cran-rcpp_1.0.14-1_s390x.deb ... 189s Unpacking r-cran-rcpp (1.0.14-1) ... 189s Selecting previously unselected package r-cran-rcpparmadillo. 189s Preparing to unpack .../163-r-cran-rcpparmadillo_14.2.3-1-1_s390x.deb ... 189s Unpacking r-cran-rcpparmadillo (14.2.3-1-1) ... 189s Selecting previously unselected package r-bioc-deseq2. 189s Preparing to unpack .../164-r-bioc-deseq2_1.46.0+dfsg-2_s390x.deb ... 189s Unpacking r-bioc-deseq2 (1.46.0+dfsg-2) ... 189s Selecting previously unselected package r-bioc-rhtslib. 189s Preparing to unpack .../165-r-bioc-rhtslib_3.2.0+dfsg-2_s390x.deb ... 189s Unpacking r-bioc-rhtslib (3.2.0+dfsg-2) ... 189s Selecting previously unselected package r-bioc-rsamtools. 189s Preparing to unpack .../166-r-bioc-rsamtools_2.22.0+dfsg-2_s390x.deb ... 189s Unpacking r-bioc-rsamtools (2.22.0+dfsg-2) ... 189s Selecting previously unselected package r-bioc-genomicalignments. 189s Preparing to unpack .../167-r-bioc-genomicalignments_1.42.0-2_s390x.deb ... 189s Unpacking r-bioc-genomicalignments (1.42.0-2) ... 189s Selecting previously unselected package r-bioc-hsmmsinglecell. 189s Preparing to unpack .../168-r-bioc-hsmmsinglecell_1.26.0-2_all.deb ... 189s Unpacking r-bioc-hsmmsinglecell (1.26.0-2) ... 189s Selecting previously unselected package r-cran-statmod. 189s Preparing to unpack .../169-r-cran-statmod_1.5.0-1_s390x.deb ... 189s Unpacking r-cran-statmod (1.5.0-1) ... 189s Selecting previously unselected package r-bioc-limma. 189s Preparing to unpack .../170-r-bioc-limma_3.62.2+dfsg-1_s390x.deb ... 189s Unpacking r-bioc-limma (3.62.2+dfsg-1) ... 189s Selecting previously unselected package r-cran-vgam. 189s Preparing to unpack .../171-r-cran-vgam_1.1-12-1_s390x.deb ... 189s Unpacking r-cran-vgam (1.1-12-1) ... 189s Selecting previously unselected package r-cran-irlba. 189s Preparing to unpack .../172-r-cran-irlba_2.3.5.1-4_s390x.deb ... 189s Unpacking r-cran-irlba (2.3.5.1-4) ... 189s Selecting previously unselected package r-cran-rcppeigen. 189s Preparing to unpack .../173-r-cran-rcppeigen_0.3.4.0.2-1_s390x.deb ... 189s Unpacking r-cran-rcppeigen (0.3.4.0.2-1) ... 189s Selecting previously unselected package r-cran-ddrtree. 189s Preparing to unpack .../174-r-cran-ddrtree_0.1.5-2_s390x.deb ... 189s Unpacking r-cran-ddrtree (0.1.5-2) ... 189s Selecting previously unselected package r-cran-igraph. 189s Preparing to unpack .../175-r-cran-igraph_2.1.4-1_s390x.deb ... 189s Unpacking r-cran-igraph (2.1.4-1) ... 189s Selecting previously unselected package r-cran-plyr. 189s Preparing to unpack .../176-r-cran-plyr_1.8.9-1_s390x.deb ... 189s Unpacking r-cran-plyr (1.8.9-1) ... 189s Selecting previously unselected package r-cran-cluster. 189s Preparing to unpack .../177-r-cran-cluster_2.1.8-1_s390x.deb ... 189s Unpacking r-cran-cluster (2.1.8-1) ... 189s Selecting previously unselected package r-cran-combinat. 189s Preparing to unpack .../178-r-cran-combinat_0.0-8-7build1_all.deb ... 189s Unpacking r-cran-combinat (0.0-8-7build1) ... 189s Selecting previously unselected package r-cran-fastica. 189s Preparing to unpack .../179-r-cran-fastica_1.2-7-1_s390x.deb ... 189s Unpacking r-cran-fastica (1.2-7-1) ... 189s Selecting previously unselected package r-cran-rtsne. 189s Preparing to unpack .../180-r-cran-rtsne_0.17-1_s390x.deb ... 189s Unpacking r-cran-rtsne (0.17-1) ... 189s Selecting previously unselected package r-cran-stringi. 189s Preparing to unpack .../181-r-cran-stringi_1.8.4-1build1_s390x.deb ... 189s Unpacking r-cran-stringi (1.8.4-1build1) ... 189s Selecting previously unselected package r-cran-stringr. 189s Preparing to unpack .../182-r-cran-stringr_1.5.1-1_all.deb ... 189s Unpacking r-cran-stringr (1.5.1-1) ... 190s Selecting previously unselected package r-cran-reshape2. 190s Preparing to unpack .../183-r-cran-reshape2_1.4.4-2build1_s390x.deb ... 190s Unpacking r-cran-reshape2 (1.4.4-2build1) ... 190s Selecting previously unselected package r-cran-leidenbase. 190s Preparing to unpack .../184-r-cran-leidenbase_0.1.31-1_s390x.deb ... 190s Unpacking r-cran-leidenbase (0.1.31-1) ... 190s Selecting previously unselected package r-cran-generics. 190s Preparing to unpack .../185-r-cran-generics_0.1.3-1_all.deb ... 190s Unpacking r-cran-generics (0.1.3-1) ... 190s Selecting previously unselected package r-cran-tidyselect. 190s Preparing to unpack .../186-r-cran-tidyselect_1.2.1+dfsg-1_s390x.deb ... 190s Unpacking r-cran-tidyselect (1.2.1+dfsg-1) ... 190s Selecting previously unselected package r-cran-dplyr. 190s Preparing to unpack .../187-r-cran-dplyr_1.1.4-4_s390x.deb ... 190s Unpacking r-cran-dplyr (1.1.4-4) ... 190s Selecting previously unselected package r-cran-pheatmap. 190s Preparing to unpack .../188-r-cran-pheatmap_1.0.12-2build1_all.deb ... 190s Unpacking r-cran-pheatmap (1.0.12-2build1) ... 190s Selecting previously unselected package r-cran-proxy. 190s Preparing to unpack .../189-r-cran-proxy_0.4-27-1_s390x.deb ... 190s Unpacking r-cran-proxy (0.4-27-1) ... 190s Selecting previously unselected package r-cran-slam. 190s Preparing to unpack .../190-r-cran-slam_0.1-55-1_s390x.deb ... 190s Unpacking r-cran-slam (0.1-55-1) ... 190s Selecting previously unselected package r-cran-gridextra. 190s Preparing to unpack .../191-r-cran-gridextra_2.3-3build1_all.deb ... 190s Unpacking r-cran-gridextra (2.3-3build1) ... 190s Selecting previously unselected package r-cran-viridis. 190s Preparing to unpack .../192-r-cran-viridis_0.6.5-1_all.deb ... 190s Unpacking r-cran-viridis (0.6.5-1) ... 190s Selecting previously unselected package r-cran-rann. 190s Preparing to unpack .../193-r-cran-rann_2.6.2-1_s390x.deb ... 190s Unpacking r-cran-rann (2.6.2-1) ... 190s Selecting previously unselected package r-bioc-monocle. 190s Preparing to unpack .../194-r-bioc-monocle_2.34.0-2_s390x.deb ... 190s Unpacking r-bioc-monocle (2.34.0-2) ... 190s Selecting previously unselected package r-cran-survival. 190s Preparing to unpack .../195-r-cran-survival_3.8-3-1_s390x.deb ... 190s Unpacking r-cran-survival (3.8-3-1) ... 190s Selecting previously unselected package r-bioc-multtest. 190s Preparing to unpack .../196-r-bioc-multtest_2.62.0-2_s390x.deb ... 190s Unpacking r-bioc-multtest (2.62.0-2) ... 190s Selecting previously unselected package r-cran-rjson. 190s Preparing to unpack .../197-r-cran-rjson_0.2.23-1_s390x.deb ... 190s Unpacking r-cran-rjson (0.2.23-1) ... 190s Selecting previously unselected package r-cran-yaml. 190s Preparing to unpack .../198-r-cran-yaml_2.3.10-1_s390x.deb ... 190s Unpacking r-cran-yaml (2.3.10-1) ... 190s Selecting previously unselected package r-cran-restfulr. 190s Preparing to unpack .../199-r-cran-restfulr_0.0.15-1_s390x.deb ... 190s Unpacking r-cran-restfulr (0.0.15-1) ... 190s Selecting previously unselected package r-bioc-rtracklayer. 190s Preparing to unpack .../200-r-bioc-rtracklayer_1.66.0-2_s390x.deb ... 190s Unpacking r-bioc-rtracklayer (1.66.0-2) ... 190s Selecting previously unselected package r-bioc-singlecellexperiment. 190s Preparing to unpack .../201-r-bioc-singlecellexperiment_1.28.1+ds-2_all.deb ... 190s Unpacking r-bioc-singlecellexperiment (1.28.1+ds-2) ... 190s Selecting previously unselected package r-cran-digest. 190s Preparing to unpack .../202-r-cran-digest_0.6.37-1_s390x.deb ... 190s Unpacking r-cran-digest (0.6.37-1) ... 190s Selecting previously unselected package r-cran-ape. 190s Preparing to unpack .../203-r-cran-ape_5.8-1-1_s390x.deb ... 190s Unpacking r-cran-ape (5.8-1-1) ... 190s Selecting previously unselected package r-cran-base64enc. 190s Preparing to unpack .../204-r-cran-base64enc_0.1-3-3_s390x.deb ... 190s Unpacking r-cran-base64enc (0.1-3-3) ... 190s Selecting previously unselected package r-cran-beeswarm. 190s Preparing to unpack .../205-r-cran-beeswarm_0.4.0-1_s390x.deb ... 190s Unpacking r-cran-beeswarm (0.4.0-1) ... 190s Selecting previously unselected package r-cran-bit. 190s Preparing to unpack .../206-r-cran-bit_4.5.0.1-1_s390x.deb ... 190s Unpacking r-cran-bit (4.5.0.1-1) ... 190s Selecting previously unselected package r-cran-bit64. 190s Preparing to unpack .../207-r-cran-bit64_4.0.5-1_s390x.deb ... 190s Unpacking r-cran-bit64 (4.0.5-1) ... 190s Selecting previously unselected package r-cran-brio. 190s Preparing to unpack .../208-r-cran-brio_1.1.5-1_s390x.deb ... 190s Unpacking r-cran-brio (1.1.5-1) ... 190s Selecting previously unselected package r-cran-fastmap. 190s Preparing to unpack .../209-r-cran-fastmap_1.2.0-1_s390x.deb ... 190s Unpacking r-cran-fastmap (1.2.0-1) ... 190s Selecting previously unselected package r-cran-cachem. 190s Preparing to unpack .../210-r-cran-cachem_1.1.0-1_s390x.deb ... 190s Unpacking r-cran-cachem (1.1.0-1) ... 190s Selecting previously unselected package r-cran-htmltools. 190s Preparing to unpack .../211-r-cran-htmltools_0.5.8.1-1_s390x.deb ... 190s Unpacking r-cran-htmltools (0.5.8.1-1) ... 190s Selecting previously unselected package r-cran-jquerylib. 190s Preparing to unpack .../212-r-cran-jquerylib_0.1.4+dfsg-4_all.deb ... 190s Unpacking r-cran-jquerylib (0.1.4+dfsg-4) ... 190s Selecting previously unselected package r-cran-memoise. 190s Preparing to unpack .../213-r-cran-memoise_2.0.1-1_all.deb ... 190s Unpacking r-cran-memoise (2.0.1-1) ... 190s Selecting previously unselected package r-cran-fs. 190s Preparing to unpack .../214-r-cran-fs_1.6.5+dfsg-1_s390x.deb ... 190s Unpacking r-cran-fs (1.6.5+dfsg-1) ... 190s Selecting previously unselected package r-cran-rappdirs. 190s Preparing to unpack .../215-r-cran-rappdirs_0.3.3-1_s390x.deb ... 190s Unpacking r-cran-rappdirs (0.3.3-1) ... 190s Selecting previously unselected package r-cran-sass. 190s Preparing to unpack .../216-r-cran-sass_0.4.9+dfsg-1_s390x.deb ... 190s Unpacking r-cran-sass (0.4.9+dfsg-1) ... 190s Selecting previously unselected package r-cran-bslib. 190s Preparing to unpack .../217-r-cran-bslib_0.8.0+dfsg-1_all.deb ... 190s Unpacking r-cran-bslib (0.8.0+dfsg-1) ... 190s Selecting previously unselected package r-cran-cairo. 190s Preparing to unpack .../218-r-cran-cairo_1.6-2-1_s390x.deb ... 190s Unpacking r-cran-cairo (1.6-2-1) ... 190s Selecting previously unselected package r-cran-ps. 190s Preparing to unpack .../219-r-cran-ps_1.8.1-1_s390x.deb ... 190s Unpacking r-cran-ps (1.8.1-1) ... 190s Selecting previously unselected package r-cran-processx. 190s Preparing to unpack .../220-r-cran-processx_3.8.5-1_s390x.deb ... 190s Unpacking r-cran-processx (3.8.5-1) ... 190s Selecting previously unselected package r-cran-callr. 190s Preparing to unpack .../221-r-cran-callr_3.7.6-1_all.deb ... 190s Unpacking r-cran-callr (3.7.6-1) ... 190s Selecting previously unselected package r-cran-class. 190s Preparing to unpack .../222-r-cran-class_7.3-23-1_s390x.deb ... 190s Unpacking r-cran-class (7.3-23-1) ... 190s Selecting previously unselected package r-cran-e1071. 190s Preparing to unpack .../223-r-cran-e1071_1.7-16-1_s390x.deb ... 190s Unpacking r-cran-e1071 (1.7-16-1) ... 190s Selecting previously unselected package r-cran-iterators. 190s Preparing to unpack .../224-r-cran-iterators_1.0.14-1_all.deb ... 190s Unpacking r-cran-iterators (1.0.14-1) ... 190s Selecting previously unselected package r-cran-foreach. 190s Preparing to unpack .../225-r-cran-foreach_1.5.2-1_all.deb ... 190s Unpacking r-cran-foreach (1.5.2-1) ... 190s Selecting previously unselected package r-cran-data.table. 190s Preparing to unpack .../226-r-cran-data.table_1.16.4+dfsg-1_s390x.deb ... 190s Unpacking r-cran-data.table (1.16.4+dfsg-1) ... 190s Selecting previously unselected package r-cran-modelmetrics. 190s Preparing to unpack .../227-r-cran-modelmetrics_1.2.2.2-1build1_s390x.deb ... 190s Unpacking r-cran-modelmetrics (1.2.2.2-1build1) ... 190s Selecting previously unselected package r-cran-proc. 190s Preparing to unpack .../228-r-cran-proc_1.18.5-1_s390x.deb ... 190s Unpacking r-cran-proc (1.18.5-1) ... 190s Selecting previously unselected package r-cran-tzdb. 190s Preparing to unpack .../229-r-cran-tzdb_0.4.0-2_s390x.deb ... 190s Unpacking r-cran-tzdb (0.4.0-2) ... 190s Selecting previously unselected package r-cran-clock. 190s Preparing to unpack .../230-r-cran-clock_0.7.1-1_s390x.deb ... 190s Unpacking r-cran-clock (0.7.1-1) ... 191s Selecting previously unselected package r-cran-gower. 191s Preparing to unpack .../231-r-cran-gower_1.0.2-1_s390x.deb ... 191s Unpacking r-cran-gower (1.0.2-1) ... 191s Selecting previously unselected package r-cran-hardhat. 191s Preparing to unpack .../232-r-cran-hardhat_1.4.0+dfsg-1_all.deb ... 191s Unpacking r-cran-hardhat (1.4.0+dfsg-1) ... 191s Selecting previously unselected package r-cran-rpart. 191s Preparing to unpack .../233-r-cran-rpart_4.1.24-1_s390x.deb ... 191s Unpacking r-cran-rpart (4.1.24-1) ... 191s Selecting previously unselected package r-cran-nnet. 191s Preparing to unpack .../234-r-cran-nnet_7.3-20-1_s390x.deb ... 191s Unpacking r-cran-nnet (7.3-20-1) ... 191s Selecting previously unselected package r-cran-shape. 191s Preparing to unpack .../235-r-cran-shape_1.4.6.1-1_all.deb ... 191s Unpacking r-cran-shape (1.4.6.1-1) ... 191s Selecting previously unselected package r-cran-diagram. 191s Preparing to unpack .../236-r-cran-diagram_1.6.5-2_all.deb ... 191s Unpacking r-cran-diagram (1.6.5-2) ... 191s Selecting previously unselected package r-cran-kernsmooth. 191s Preparing to unpack .../237-r-cran-kernsmooth_2.23-26-1_s390x.deb ... 191s Unpacking r-cran-kernsmooth (2.23-26-1) ... 191s Selecting previously unselected package r-cran-globals. 191s Preparing to unpack .../238-r-cran-globals_0.16.3-1_all.deb ... 191s Unpacking r-cran-globals (0.16.3-1) ... 191s Selecting previously unselected package r-cran-listenv. 191s Preparing to unpack .../239-r-cran-listenv_0.9.1+dfsg-1_all.deb ... 191s Unpacking r-cran-listenv (0.9.1+dfsg-1) ... 191s Selecting previously unselected package r-cran-parallelly. 191s Preparing to unpack .../240-r-cran-parallelly_1.42.0-1_s390x.deb ... 191s Unpacking r-cran-parallelly (1.42.0-1) ... 191s Selecting previously unselected package r-cran-future. 191s Preparing to unpack .../241-r-cran-future_1.34.0+dfsg-1_all.deb ... 191s Unpacking r-cran-future (1.34.0+dfsg-1) ... 191s Selecting previously unselected package r-cran-future.apply. 191s Preparing to unpack .../242-r-cran-future.apply_1.11.3+dfsg-1_all.deb ... 191s Unpacking r-cran-future.apply (1.11.3+dfsg-1) ... 191s Selecting previously unselected package r-cran-numderiv. 191s Preparing to unpack .../243-r-cran-numderiv_2016.8-1.1-3_all.deb ... 191s Unpacking r-cran-numderiv (2016.8-1.1-3) ... 191s Selecting previously unselected package r-cran-progressr. 191s Preparing to unpack .../244-r-cran-progressr_0.15.1-1_all.deb ... 191s Unpacking r-cran-progressr (0.15.1-1) ... 191s Selecting previously unselected package r-cran-squarem. 191s Preparing to unpack .../245-r-cran-squarem_2021.1-1_all.deb ... 191s Unpacking r-cran-squarem (2021.1-1) ... 191s Selecting previously unselected package r-cran-lava. 191s Preparing to unpack .../246-r-cran-lava_1.8.1+dfsg-1_all.deb ... 191s Unpacking r-cran-lava (1.8.1+dfsg-1) ... 191s Selecting previously unselected package r-cran-prodlim. 191s Preparing to unpack .../247-r-cran-prodlim_2024.06.25-1_s390x.deb ... 191s Unpacking r-cran-prodlim (2024.06.25-1) ... 191s Selecting previously unselected package r-cran-ipred. 191s Preparing to unpack .../248-r-cran-ipred_0.9-15-1_s390x.deb ... 191s Unpacking r-cran-ipred (0.9-15-1) ... 191s Selecting previously unselected package r-cran-timechange. 191s Preparing to unpack .../249-r-cran-timechange_0.3.0-1_s390x.deb ... 191s Unpacking r-cran-timechange (0.3.0-1) ... 191s Selecting previously unselected package r-cran-lubridate. 191s Preparing to unpack .../250-r-cran-lubridate_1.9.4+dfsg-1_s390x.deb ... 191s Unpacking r-cran-lubridate (1.9.4+dfsg-1) ... 191s Selecting previously unselected package r-cran-purrr. 191s Preparing to unpack .../251-r-cran-purrr_1.0.2-1_s390x.deb ... 191s Unpacking r-cran-purrr (1.0.2-1) ... 191s Selecting previously unselected package r-cran-tidyr. 191s Preparing to unpack .../252-r-cran-tidyr_1.3.1-1_s390x.deb ... 191s Unpacking r-cran-tidyr (1.3.1-1) ... 191s Selecting previously unselected package r-cran-timedate. 191s Preparing to unpack .../253-r-cran-timedate_4041.110-1_s390x.deb ... 191s Unpacking r-cran-timedate (4041.110-1) ... 191s Selecting previously unselected package r-cran-recipes. 191s Preparing to unpack .../254-r-cran-recipes_1.1.0+dfsg-1_all.deb ... 191s Unpacking r-cran-recipes (1.1.0+dfsg-1) ... 191s Selecting previously unselected package r-cran-caret. 191s Preparing to unpack .../255-r-cran-caret_7.0-1+dfsg-1_s390x.deb ... 191s Unpacking r-cran-caret (7.0-1+dfsg-1) ... 191s Selecting previously unselected package r-cran-catools. 191s Preparing to unpack .../256-r-cran-catools_1.18.2-1_s390x.deb ... 191s Unpacking r-cran-catools (1.18.2-1) ... 191s Selecting previously unselected package r-cran-evaluate. 191s Preparing to unpack .../257-r-cran-evaluate_1.0.3-1_all.deb ... 191s Unpacking r-cran-evaluate (1.0.3-1) ... 191s Selecting previously unselected package r-cran-xfun. 191s Preparing to unpack .../258-r-cran-xfun_0.50+dfsg-1_s390x.deb ... 191s Unpacking r-cran-xfun (0.50+dfsg-1) ... 191s Selecting previously unselected package r-cran-highr. 191s Preparing to unpack .../259-r-cran-highr_0.11+dfsg-1_all.deb ... 191s Unpacking r-cran-highr (0.11+dfsg-1) ... 191s Selecting previously unselected package libjs-mathjax. 191s Preparing to unpack .../260-libjs-mathjax_2.7.9+dfsg-1_all.deb ... 191s Unpacking libjs-mathjax (2.7.9+dfsg-1) ... 191s Selecting previously unselected package r-cran-knitr. 191s Preparing to unpack .../261-r-cran-knitr_1.49+dfsg-1_all.deb ... 191s Unpacking r-cran-knitr (1.49+dfsg-1) ... 191s Selecting previously unselected package r-cran-fontawesome. 191s Preparing to unpack .../262-r-cran-fontawesome_0.5.3-1_all.deb ... 191s Unpacking r-cran-fontawesome (0.5.3-1) ... 192s Selecting previously unselected package r-cran-tinytex. 192s Preparing to unpack .../263-r-cran-tinytex_0.54-1_all.deb ... 192s Unpacking r-cran-tinytex (0.54-1) ... 192s Selecting previously unselected package libjs-modernizr. 192s Preparing to unpack .../264-libjs-modernizr_3.13.0-0.1_all.deb ... 192s Unpacking libjs-modernizr (3.13.0-0.1) ... 192s Selecting previously unselected package r-cran-later. 192s Preparing to unpack .../265-r-cran-later_1.4.1+dfsg-1_s390x.deb ... 192s Unpacking r-cran-later (1.4.1+dfsg-1) ... 192s Selecting previously unselected package r-cran-promises. 192s Preparing to unpack .../266-r-cran-promises_1.3.2+dfsg-1_s390x.deb ... 192s Unpacking r-cran-promises (1.3.2+dfsg-1) ... 192s Selecting previously unselected package r-cran-httpuv. 192s Preparing to unpack .../267-r-cran-httpuv_1.6.15+dfsg-1_s390x.deb ... 192s Unpacking r-cran-httpuv (1.6.15+dfsg-1) ... 192s Selecting previously unselected package r-cran-xtable. 192s Preparing to unpack .../268-r-cran-xtable_1%3a1.8-4-2_all.deb ... 192s Unpacking r-cran-xtable (1:1.8-4-2) ... 192s Selecting previously unselected package r-cran-sourcetools. 192s Preparing to unpack .../269-r-cran-sourcetools_0.1.7-1-1_s390x.deb ... 192s Unpacking r-cran-sourcetools (0.1.7-1-1) ... 192s Selecting previously unselected package r-cran-commonmark. 192s Preparing to unpack .../270-r-cran-commonmark_1.9.2-2_s390x.deb ... 192s Unpacking r-cran-commonmark (1.9.2-2) ... 192s Selecting previously unselected package libjs-twitter-bootstrap-datepicker. 192s Preparing to unpack .../271-libjs-twitter-bootstrap-datepicker_1.3.1+dfsg1-4.1_all.deb ... 192s Unpacking libjs-twitter-bootstrap-datepicker (1.3.1+dfsg1-4.1) ... 192s Selecting previously unselected package r-cran-shiny. 192s Preparing to unpack .../272-r-cran-shiny_1.10.0+dfsg-2_all.deb ... 192s Unpacking r-cran-shiny (1.10.0+dfsg-2) ... 192s Selecting previously unselected package r-cran-rmarkdown. 192s Preparing to unpack .../273-r-cran-rmarkdown_2.29+dfsg-1_all.deb ... 192s Unpacking r-cran-rmarkdown (2.29+dfsg-1) ... 192s Selecting previously unselected package r-cran-htmlwidgets. 192s Preparing to unpack .../274-r-cran-htmlwidgets_1.6.4+dfsg-1_all.deb ... 192s Unpacking r-cran-htmlwidgets (1.6.4+dfsg-1) ... 192s Selecting previously unselected package r-cran-miniui. 192s Preparing to unpack .../275-r-cran-miniui_0.1.1.1-3build1_all.deb ... 192s Unpacking r-cran-miniui (0.1.1.1-3build1) ... 192s Selecting previously unselected package r-cran-shinyjs. 192s Preparing to unpack .../276-r-cran-shinyjs_2.1.0-1_all.deb ... 192s Unpacking r-cran-shinyjs (2.1.0-1) ... 192s Selecting previously unselected package r-cran-colourpicker. 192s Preparing to unpack .../277-r-cran-colourpicker_1.3.0+dfsg-1_all.deb ... 192s Unpacking r-cran-colourpicker (1.3.0+dfsg-1) ... 192s Selecting previously unselected package r-cran-conquer. 192s Preparing to unpack .../278-r-cran-conquer_1.3.3-1_s390x.deb ... 192s Unpacking r-cran-conquer (1.3.3-1) ... 192s Selecting previously unselected package r-cran-cowplot. 192s Preparing to unpack .../279-r-cran-cowplot_1.1.3+dfsg-1_all.deb ... 192s Unpacking r-cran-cowplot (1.1.3+dfsg-1) ... 192s Selecting previously unselected package r-cran-lazyeval. 192s Preparing to unpack .../280-r-cran-lazyeval_0.2.2-1build1_s390x.deb ... 192s Unpacking r-cran-lazyeval (0.2.2-1build1) ... 192s Selecting previously unselected package r-cran-crosstalk. 192s Preparing to unpack .../281-r-cran-crosstalk_1.2.1+dfsg-1_all.deb ... 192s Unpacking r-cran-crosstalk (1.2.1+dfsg-1) ... 192s Selecting previously unselected package r-cran-deldir. 192s Preparing to unpack .../282-r-cran-deldir_2.0-4-1build1_s390x.deb ... 192s Unpacking r-cran-deldir (2.0-4-1build1) ... 192s Selecting previously unselected package r-cran-deoptimr. 192s Preparing to unpack .../283-r-cran-deoptimr_1.1-3-1-1_all.deb ... 192s Unpacking r-cran-deoptimr (1.1-3-1-1) ... 192s Selecting previously unselected package r-cran-desc. 192s Preparing to unpack .../284-r-cran-desc_1.4.3-1_all.deb ... 192s Unpacking r-cran-desc (1.4.3-1) ... 192s Selecting previously unselected package r-cran-diffobj. 192s Preparing to unpack .../285-r-cran-diffobj_0.3.5-1_s390x.deb ... 192s Unpacking r-cran-diffobj (0.3.5-1) ... 192s Selecting previously unselected package r-cran-dotcall64. 192s Preparing to unpack .../286-r-cran-dotcall64_1.2-1_s390x.deb ... 192s Unpacking r-cran-dotcall64 (1.2-1) ... 192s Selecting previously unselected package r-cran-sitmo. 192s Preparing to unpack .../287-r-cran-sitmo_2.0.2-1_s390x.deb ... 192s Unpacking r-cran-sitmo (2.0.2-1) ... 192s Selecting previously unselected package r-cran-dqrng. 192s Preparing to unpack .../288-r-cran-dqrng_0.3.2+dfsg-1_s390x.deb ... 192s Unpacking r-cran-dqrng (0.3.2+dfsg-1) ... 192s Selecting previously unselected package r-cran-fastdummies. 192s Preparing to unpack .../289-r-cran-fastdummies_1.7.5-1_all.deb ... 192s Unpacking r-cran-fastdummies (1.7.5-1) ... 192s Selecting previously unselected package r-cran-fitdistrplus. 192s Preparing to unpack .../290-r-cran-fitdistrplus_1.2-2-1_all.deb ... 192s Unpacking r-cran-fitdistrplus (1.2-2-1) ... 192s Selecting previously unselected package r-cran-fnn. 192s Preparing to unpack .../291-r-cran-fnn_1.1.4.1-1_s390x.deb ... 192s Unpacking r-cran-fnn (1.1.4.1-1) ... 192s Selecting previously unselected package r-cran-gtools. 192s Preparing to unpack .../292-r-cran-gtools_3.9.5-1_s390x.deb ... 192s Unpacking r-cran-gtools (3.9.5-1) ... 192s Selecting previously unselected package r-cran-gdata. 192s Preparing to unpack .../293-r-cran-gdata_3.0.1-1_all.deb ... 192s Unpacking r-cran-gdata (3.0.1-1) ... 192s Selecting previously unselected package r-cran-vipor. 192s Preparing to unpack .../294-r-cran-vipor_0.4.7-1_all.deb ... 192s Unpacking r-cran-vipor (0.4.7-1) ... 192s Selecting previously unselected package r-cran-ggbeeswarm. 192s Preparing to unpack .../295-r-cran-ggbeeswarm_0.7.2-1_all.deb ... 192s Unpacking r-cran-ggbeeswarm (0.7.2-1) ... 192s Selecting previously unselected package r-cran-png. 192s Preparing to unpack .../296-r-cran-png_0.1-8-1build2_s390x.deb ... 192s Unpacking r-cran-png (0.1-8-1build2) ... 192s Selecting previously unselected package r-cran-systemfonts. 192s Preparing to unpack .../297-r-cran-systemfonts_1.2.1-1_s390x.deb ... 192s Unpacking r-cran-systemfonts (1.2.1-1) ... 192s Selecting previously unselected package r-cran-textshaping. 192s Preparing to unpack .../298-r-cran-textshaping_0.3.7-2_s390x.deb ... 192s Unpacking r-cran-textshaping (0.3.7-2) ... 192s Selecting previously unselected package r-cran-ragg. 192s Preparing to unpack .../299-r-cran-ragg_1.3.3-1_s390x.deb ... 192s Unpacking r-cran-ragg (1.3.3-1) ... 192s Selecting previously unselected package r-cran-ggrastr. 192s Preparing to unpack .../300-r-cran-ggrastr_1.0.2-1_all.deb ... 192s Unpacking r-cran-ggrastr (1.0.2-1) ... 192s Selecting previously unselected package r-cran-ggrepel. 192s Preparing to unpack .../301-r-cran-ggrepel_0.9.6-1_s390x.deb ... 192s Unpacking r-cran-ggrepel (0.9.6-1) ... 192s Selecting previously unselected package r-cran-ggridges. 192s Preparing to unpack .../302-r-cran-ggridges_0.5.6-1_all.deb ... 192s Unpacking r-cran-ggridges (0.5.6-1) ... 192s Selecting previously unselected package r-cran-goftest. 192s Preparing to unpack .../303-r-cran-goftest_1.2-3-1_s390x.deb ... 192s Unpacking r-cran-goftest (1.2-3-1) ... 192s Selecting previously unselected package r-cran-gplots. 192s Preparing to unpack .../304-r-cran-gplots_3.2.0-1_all.deb ... 192s Unpacking r-cran-gplots (3.2.0-1) ... 192s Selecting previously unselected package r-cran-hdf5r. 192s Preparing to unpack .../305-r-cran-hdf5r_1.3.12+dfsg-1_s390x.deb ... 192s Unpacking r-cran-hdf5r (1.3.12+dfsg-1) ... 192s Selecting previously unselected package r-cran-rprojroot. 192s Preparing to unpack .../306-r-cran-rprojroot_2.0.4-2_all.deb ... 192s Unpacking r-cran-rprojroot (2.0.4-2) ... 192s Selecting previously unselected package r-cran-here. 192s Preparing to unpack .../307-r-cran-here_1.0.1-2_all.deb ... 192s Unpacking r-cran-here (1.0.1-2) ... 192s Selecting previously unselected package r-cran-ica. 192s Preparing to unpack .../308-r-cran-ica_1.0-3-1_all.deb ... 192s Unpacking r-cran-ica (1.0-3-1) ... 192s Selecting previously unselected package r-cran-kernlab. 192s Preparing to unpack .../309-r-cran-kernlab_0.9-33-1_s390x.deb ... 192s Unpacking r-cran-kernlab (0.9-33-1) ... 192s Selecting previously unselected package r-cran-rcpptoml. 192s Preparing to unpack .../310-r-cran-rcpptoml_0.2.2+dfsg-1_s390x.deb ... 192s Unpacking r-cran-rcpptoml (0.2.2+dfsg-1) ... 192s Selecting previously unselected package r-cran-reticulate. 192s Preparing to unpack .../311-r-cran-reticulate_1.39.0+dfsg-1_s390x.deb ... 192s Unpacking r-cran-reticulate (1.39.0+dfsg-1) ... 192s Selecting previously unselected package r-cran-leiden. 192s Preparing to unpack .../312-r-cran-leiden_0.4.3.1+dfsg-1_all.deb ... 192s Unpacking r-cran-leiden (0.4.3.1+dfsg-1) ... 192s Selecting previously unselected package r-cran-zoo. 192s Preparing to unpack .../313-r-cran-zoo_1.8-12-2_s390x.deb ... 192s Unpacking r-cran-zoo (1.8-12-2) ... 192s Selecting previously unselected package r-cran-lmtest. 192s Preparing to unpack .../314-r-cran-lmtest_0.9.40-1_s390x.deb ... 192s Unpacking r-cran-lmtest (0.9.40-1) ... 192s Selecting previously unselected package r-cran-mathjaxr. 192s Preparing to unpack .../315-r-cran-mathjaxr_1.6-0-1_all.deb ... 192s Unpacking r-cran-mathjaxr (1.6-0-1) ... 193s Selecting previously unselected package r-cran-matrixmodels. 193s Preparing to unpack .../316-r-cran-matrixmodels_0.5-3-1_all.deb ... 193s Unpacking r-cran-matrixmodels (0.5-3-1) ... 193s Selecting previously unselected package r-cran-rbibutils. 193s Preparing to unpack .../317-r-cran-rbibutils_2.3-1_s390x.deb ... 193s Unpacking r-cran-rbibutils (2.3-1) ... 193s Selecting previously unselected package r-cran-rdpack. 193s Preparing to unpack .../318-r-cran-rdpack_2.6.2-1_all.deb ... 193s Unpacking r-cran-rdpack (2.6.2-1) ... 193s Selecting previously unselected package r-cran-mnormt. 193s Preparing to unpack .../319-r-cran-mnormt_2.1.1-2_s390x.deb ... 193s Unpacking r-cran-mnormt (2.1.1-2) ... 193s Selecting previously unselected package r-cran-sparsem. 193s Preparing to unpack .../320-r-cran-sparsem_1.84-2-1_s390x.deb ... 193s Unpacking r-cran-sparsem (1.84-2-1) ... 193s Selecting previously unselected package r-cran-quantreg. 193s Preparing to unpack .../321-r-cran-quantreg_6.00-1_s390x.deb ... 193s Unpacking r-cran-quantreg (6.00-1) ... 193s Selecting previously unselected package r-cran-sn. 193s Preparing to unpack .../322-r-cran-sn_2.1.1-2_all.deb ... 193s Unpacking r-cran-sn (2.1.1-2) ... 193s Selecting previously unselected package r-cran-mvtnorm. 193s Preparing to unpack .../323-r-cran-mvtnorm_1.3-3-1_s390x.deb ... 193s Unpacking r-cran-mvtnorm (1.3-3-1) ... 193s Selecting previously unselected package r-cran-tfisher. 193s Preparing to unpack .../324-r-cran-tfisher_0.2.0-3_all.deb ... 193s Unpacking r-cran-tfisher (0.2.0-3) ... 193s Selecting previously unselected package r-cran-plotrix. 193s Preparing to unpack .../325-r-cran-plotrix_3.8-4-1_all.deb ... 193s Unpacking r-cran-plotrix (3.8-4-1) ... 193s Selecting previously unselected package r-cran-th.data. 193s Preparing to unpack .../326-r-cran-th.data_1.1-3-1_all.deb ... 193s Unpacking r-cran-th.data (1.1-3-1) ... 193s Selecting previously unselected package r-cran-sandwich. 193s Preparing to unpack .../327-r-cran-sandwich_3.1-1-1_all.deb ... 193s Unpacking r-cran-sandwich (3.1-1-1) ... 193s Selecting previously unselected package r-cran-multcomp. 193s Preparing to unpack .../328-r-cran-multcomp_1.4-28-1_all.deb ... 193s Unpacking r-cran-multcomp (1.4-28-1) ... 193s Selecting previously unselected package r-cran-mutoss. 193s Preparing to unpack .../329-r-cran-mutoss_0.1-13-1_all.deb ... 193s Unpacking r-cran-mutoss (0.1-13-1) ... 193s Selecting previously unselected package r-cran-robustbase. 193s Preparing to unpack .../330-r-cran-robustbase_0.99-4-1-1_s390x.deb ... 193s Unpacking r-cran-robustbase (0.99-4-1-1) ... 193s Selecting previously unselected package r-cran-qqconf. 193s Preparing to unpack .../331-r-cran-qqconf_1.3.2+dfsg-1_s390x.deb ... 193s Unpacking r-cran-qqconf (1.3.2+dfsg-1) ... 193s Selecting previously unselected package r-cran-metap. 193s Preparing to unpack .../332-r-cran-metap_1.11-2_all.deb ... 193s Unpacking r-cran-metap (1.11-2) ... 193s Selecting previously unselected package r-cran-plotly. 193s Preparing to unpack .../333-r-cran-plotly_4.10.4+dfsg-2_all.deb ... 193s Unpacking r-cran-plotly (4.10.4+dfsg-2) ... 193s Selecting previously unselected package r-cran-segmented. 193s Preparing to unpack .../334-r-cran-segmented_2.1-3-1_all.deb ... 193s Unpacking r-cran-segmented (2.1-3-1) ... 193s Selecting previously unselected package r-cran-mixtools. 193s Preparing to unpack .../335-r-cran-mixtools_2.0.0-1_s390x.deb ... 193s Unpacking r-cran-mixtools (2.0.0-1) ... 193s Selecting previously unselected package r-cran-patchwork. 193s Preparing to unpack .../336-r-cran-patchwork_1.3.0-1_all.deb ... 193s Unpacking r-cran-patchwork (1.3.0-1) ... 193s Selecting previously unselected package r-cran-pbapply. 193s Preparing to unpack .../337-r-cran-pbapply_1.7-2-1_all.deb ... 193s Unpacking r-cran-pbapply (1.7-2-1) ... 193s Selecting previously unselected package r-cran-pkgbuild. 193s Preparing to unpack .../338-r-cran-pkgbuild_1.4.6-1_all.deb ... 193s Unpacking r-cran-pkgbuild (1.4.6-1) ... 193s Selecting previously unselected package r-cran-pkgload. 193s Preparing to unpack .../339-r-cran-pkgload_1.4.0-1_all.deb ... 193s Unpacking r-cran-pkgload (1.4.0-1) ... 193s Selecting previously unselected package r-cran-polyclip. 193s Preparing to unpack .../340-r-cran-polyclip_1.10-7-1_s390x.deb ... 193s Unpacking r-cran-polyclip (1.10-7-1) ... 193s Selecting previously unselected package r-cran-praise. 193s Preparing to unpack .../341-r-cran-praise_1.0.0-4build1_all.deb ... 193s Unpacking r-cran-praise (1.0.0-4build1) ... 193s Selecting previously unselected package r-cran-r.methodss3. 193s Preparing to unpack .../342-r-cran-r.methodss3_1.8.2-1_all.deb ... 193s Unpacking r-cran-r.methodss3 (1.8.2-1) ... 193s Selecting previously unselected package r-cran-r.oo. 193s Preparing to unpack .../343-r-cran-r.oo_1.27.0-1_all.deb ... 193s Unpacking r-cran-r.oo (1.27.0-1) ... 193s Selecting previously unselected package r-cran-r.utils. 193s Preparing to unpack .../344-r-cran-r.utils_2.12.3-1_all.deb ... 193s Unpacking r-cran-r.utils (2.12.3-1) ... 193s Selecting previously unselected package r-cran-rcppannoy. 193s Preparing to unpack .../345-r-cran-rcppannoy_0.0.22-1_s390x.deb ... 193s Unpacking r-cran-rcppannoy (0.0.22-1) ... 193s Selecting previously unselected package r-cran-rcpphnsw. 193s Preparing to unpack .../346-r-cran-rcpphnsw_0.6.0+ds-1_s390x.deb ... 193s Unpacking r-cran-rcpphnsw (0.6.0+ds-1) ... 193s Selecting previously unselected package r-cran-rcppprogress. 193s Preparing to unpack .../347-r-cran-rcppprogress_0.4.2-2build1_all.deb ... 193s Unpacking r-cran-rcppprogress (0.4.2-2build1) ... 193s Selecting previously unselected package r-cran-rocr. 193s Preparing to unpack .../348-r-cran-rocr_1.0-11-3_all.deb ... 193s Unpacking r-cran-rocr (1.0-11-3) ... 193s Selecting previously unselected package r-cran-rspectra. 193s Preparing to unpack .../349-r-cran-rspectra_0.16-2-1_s390x.deb ... 193s Unpacking r-cran-rspectra (0.16-2-1) ... 193s Selecting previously unselected package r-cran-rsvd. 193s Preparing to unpack .../350-r-cran-rsvd_1.0.5-1_all.deb ... 193s Unpacking r-cran-rsvd (1.0.5-1) ... 193s Selecting previously unselected package r-cran-scattermore. 193s Preparing to unpack .../351-r-cran-scattermore_1.2-1_s390x.deb ... 193s Unpacking r-cran-scattermore (1.2-1) ... 193s Selecting previously unselected package r-cran-sctransform. 193s Preparing to unpack .../352-r-cran-sctransform_0.4.1-1_s390x.deb ... 193s Unpacking r-cran-sctransform (0.4.1-1) ... 193s Selecting previously unselected package r-cran-sp. 193s Preparing to unpack .../353-r-cran-sp_1%3a2.1-4+dfsg-1_s390x.deb ... 193s Unpacking r-cran-sp (1:2.1-4+dfsg-1) ... 193s Selecting previously unselected package r-cran-spam. 193s Preparing to unpack .../354-r-cran-spam_2.11-1-1_s390x.deb ... 193s Unpacking r-cran-spam (2.11-1-1) ... 193s Selecting previously unselected package r-cran-seuratobject. 193s Preparing to unpack .../355-r-cran-seuratobject_5.0.2-1_s390x.deb ... 193s Unpacking r-cran-seuratobject (5.0.2-1) ... 193s Selecting previously unselected package r-cran-spatstat.utils. 193s Preparing to unpack .../356-r-cran-spatstat.utils_3.1-2-1_s390x.deb ... 193s Unpacking r-cran-spatstat.utils (3.1-2-1) ... 193s Selecting previously unselected package r-cran-spatstat.data. 193s Preparing to unpack .../357-r-cran-spatstat.data_3.1-4-1_all.deb ... 193s Unpacking r-cran-spatstat.data (3.1-4-1) ... 193s Selecting previously unselected package r-cran-spatstat.geom. 193s Preparing to unpack .../358-r-cran-spatstat.geom_3.2-9-2_s390x.deb ... 193s Unpacking r-cran-spatstat.geom (3.2-9-2) ... 194s Selecting previously unselected package r-cran-spatstat.random. 194s Preparing to unpack .../359-r-cran-spatstat.random_3.2-3-1_s390x.deb ... 194s Unpacking r-cran-spatstat.random (3.2-3-1) ... 194s Selecting previously unselected package r-cran-tensor. 194s Preparing to unpack .../360-r-cran-tensor_1.5-4_all.deb ... 194s Unpacking r-cran-tensor (1.5-4) ... 194s Selecting previously unselected package r-cran-spatstat.sparse. 194s Preparing to unpack .../361-r-cran-spatstat.sparse_3.1-0-1_s390x.deb ... 194s Unpacking r-cran-spatstat.sparse (3.1-0-1) ... 194s Selecting previously unselected package r-cran-spatstat.explore. 194s Preparing to unpack .../362-r-cran-spatstat.explore_3.2-7-1_s390x.deb ... 194s Unpacking r-cran-spatstat.explore (3.2-7-1) ... 194s Selecting previously unselected package r-cran-uwot. 194s Preparing to unpack .../363-r-cran-uwot_0.2.2-2_s390x.deb ... 194s Unpacking r-cran-uwot (0.2.2-2) ... 194s Selecting previously unselected package r-cran-seurat. 194s Preparing to unpack .../364-r-cran-seurat_5.0.1-1_s390x.deb ... 194s Unpacking r-cran-seurat (5.0.1-1) ... 194s Selecting previously unselected package r-cran-waldo. 194s Preparing to unpack .../365-r-cran-waldo_0.6.1-2_all.deb ... 194s Unpacking r-cran-waldo (0.6.1-2) ... 194s Selecting previously unselected package r-cran-testthat. 194s Preparing to unpack .../366-r-cran-testthat_3.2.1.1-1_s390x.deb ... 194s Unpacking r-cran-testthat (3.2.1.1-1) ... 194s Setting up libjs-json (0~20221030+~1.0.8-1) ... 194s Setting up javascript-common (11+nmu1) ... 194s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 194s Setting up libpixman-1-0:s390x (0.44.0-3) ... 194s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 194s Setting up fonts-mathjax (2.7.9+dfsg-1) ... 194s Setting up libjs-mathjax (2.7.9+dfsg-1) ... 194s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 194s Setting up libdatrie1:s390x (0.2.13-3build1) ... 194s Setting up libjs-popper.js (1.16.1+ds-6) ... 194s Setting up libxcb-render0:s390x (1.17.0-2) ... 194s Setting up libjs-sifter.js (0.6.0+dfsg-3) ... 194s Setting up fonts-glyphicons-halflings (1.009~3.4.1+dfsg-3) ... 194s Setting up unzip (6.0-28ubuntu6) ... 194s Setting up x11-common (1:7.7+23ubuntu3) ... 194s Setting up node-html5shiv (3.7.3+dfsg-5) ... 194s Setting up libdeflate0:s390x (1.23-1) ... 194s Setting up libjs-microplugin.js (0.0.3+dfsg-1.1) ... 194s Setting up libxcb-shm0:s390x (1.17.0-2) ... 194s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 194s Setting up libjs-modernizr (3.13.0-0.1) ... 194s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 194s Setting up libaec0:s390x (1.1.3-1) ... 194s Setting up libjs-es5-shim (4.6.7-2) ... 194s Setting up zip (3.0-14ubuntu2) ... 194s Setting up libblas3:s390x (3.12.1-2) ... 194s 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 194s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 194s Setting up libjs-d3 (3.5.17-4) ... 194s Setting up fonts-dejavu-mono (2.37-8) ... 194s Setting up libtcl8.6:s390x (8.6.16+dfsg-1) ... 194s Setting up fonts-dejavu-core (2.37-8) ... 194s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 194s Setting up libltdl7:s390x (2.5.4-3build1) ... 194s Setting up libfftw3-double3:s390x (3.3.10-2fakesync1build1) ... 194s Setting up libgfortran5:s390x (14.2.0-17ubuntu1) ... 194s Setting up libwebp7:s390x (1.5.0-0.1) ... 194s Setting up libubsan1:s390x (14.2.0-17ubuntu1) ... 194s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 194s Setting up libjs-highlight.js (9.18.5+dfsg1-2) ... 194s Setting up libasan8:s390x (14.2.0-17ubuntu1) ... 194s Setting up libsuitesparseconfig7:s390x (1:7.8.3+dfsg-3) ... 194s Setting up liblua5.4-0:s390x (5.4.7-1) ... 194s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 194s Setting up libthai-data (0.1.29-2build1) ... 194s Setting up node-bootstrap-sass (3.4.3-2) ... 194s Setting up libjs-prettify (2015.12.04+dfsg-1.1) ... 194s Setting up libxss1:s390x (1:1.2.3-1build3) ... 194s Setting up libjs-bootstrap4 (4.6.1+dfsg1-4) ... 194s Setting up libpaper2:s390x (2.2.5-0.3) ... 194s Setting up pandoc-data (3.1.11.1-3build1) ... 194s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 194s Setting up node-normalize.css (8.0.1-5) ... 194s Setting up fonts-font-awesome (5.0.10+really4.7.0~dfsg-4.1) ... 194s Setting up xdg-utils (1.2.1-2ubuntu1) ... 194s update-alternatives: using /usr/bin/xdg-open to provide /usr/bin/open (open) in auto mode 194s Setting up libsz2:s390x (1.1.3-1) ... 194s Setting up libjs-bootstrap (3.4.1+dfsg-3) ... 194s Setting up libitm1:s390x (14.2.0-17ubuntu1) ... 194s Setting up libjs-jquery-selectize.js (0.12.6+dfsg-1.1) ... 194s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 194s Setting up libice6:s390x (2:1.1.1-1) ... 194s Setting up liblapack3:s390x (3.12.1-2) ... 194s 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 194s Setting up libamd3:s390x (1:7.8.3+dfsg-3) ... 194s Setting up libcolamd3:s390x (1:7.8.3+dfsg-3) ... 194s Setting up fontconfig-config (2.15.0-1.1ubuntu2) ... 194s Setting up libjs-twitter-bootstrap-datepicker (1.3.1+dfsg1-4.1) ... 194s Setting up libpaper-utils (2.2.5-0.3) ... 194s Setting up libjs-jquery-datatables (1.11.5+dfsg-2) ... 194s Setting up libthai0:s390x (0.1.29-2build1) ... 194s Setting up libjs-jquery-ui (1.13.2+dfsg-1) ... 194s Setting up pandoc (3.1.11.1+ds-2) ... 194s Setting up libglpk40:s390x (5.0-1build2) ... 194s Setting up libhdf5-310:s390x (1.14.5+repack-3) ... 194s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 194s Setting up libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 194s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 194s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 194s Setting up libsm6:s390x (2:1.2.4-1) ... 194s Setting up libhdf5-hl-310:s390x (1.14.5+repack-3) ... 194s Setting up fontconfig (2.15.0-1.1ubuntu2) ... 196s Regenerating fonts cache... done. 196s Setting up libxft2:s390x (2.3.6-1build1) ... 196s Setting up libboost1.83-dev:s390x (1.83.0-4.1ubuntu1) ... 196s Setting up libtk8.6:s390x (8.6.16-1) ... 196s Setting up libpango-1.0-0:s390x (1.56.1-1) ... 196s Setting up libcairo2:s390x (1.18.2-2) ... 196s Setting up libxt6t64:s390x (1:1.2.1-1.2build1) ... 196s Setting up libboost-dev:s390x (1.83.0.2ubuntu1) ... 196s Setting up libpangoft2-1.0-0:s390x (1.56.1-1) ... 196s Setting up libpangocairo-1.0-0:s390x (1.56.1-1) ... 196s Setting up r-base-core (4.4.2-1build1) ... 196s Creating config file /etc/R/Renviron with new version 196s Setting up r-cran-crayon (1.5.3-1) ... 196s Setting up r-cran-squarem (2021.1-1) ... 196s Setting up r-cran-labeling (0.4.3-1) ... 196s Setting up r-cran-rcppprogress (0.4.2-2build1) ... 196s Setting up r-cran-sourcetools (0.1.7-1-1) ... 196s Setting up r-cran-futile.options (1.0.1-3build1) ... 196s Setting up r-cran-lattice (0.22-6-1) ... 196s Setting up r-cran-ps (1.8.1-1) ... 196s Setting up r-cran-nlme (3.1.167-1) ... 196s Setting up r-cran-farver (2.1.2-1) ... 196s Setting up r-cran-formatr (1.14-2) ... 196s Setting up r-cran-pbapply (1.7-2-1) ... 196s Setting up r-cran-xml (3.99-0.18-1) ... 196s Setting up r-cran-spatstat.utils (3.1-2-1) ... 196s Setting up r-cran-viridislite (0.4.2-2) ... 196s Setting up r-cran-locfit (1.5-9.11-1) ... 196s Setting up r-cran-cluster (2.1.8-1) ... 196s Setting up r-cran-sparsem (1.84-2-1) ... 196s Setting up r-cran-statmod (1.5.0-1) ... 196s Setting up r-cran-nnet (7.3-20-1) ... 196s Setting up r-cran-tensor (1.5-4) ... 196s Setting up r-cran-lazyeval (0.2.2-1build1) ... 196s Setting up r-cran-commonmark (1.9.2-2) ... 196s Setting up r-cran-rjson (0.2.23-1) ... 196s Setting up r-cran-proxy (0.4-27-1) ... 196s Setting up r-cran-r6 (2.5.1-1) ... 196s Setting up r-cran-pkgkitten (0.2.4-1) ... 196s Setting up r-cran-numderiv (2016.8-1.1-3) ... 196s Setting up r-cran-magrittr (2.0.3-1) ... 196s Setting up r-cran-rappdirs (0.3.3-1) ... 196s Setting up r-bioc-genomeinfodbdata (1.2.13-2) ... 196s Setting up r-cran-littler (0.3.20-2) ... 196s Setting up r-cran-bh (1.84.0-1) ... 196s Setting up r-cran-fs (1.6.5+dfsg-1) ... 196s Setting up r-cran-rcpp (1.0.14-1) ... 196s Setting up r-cran-curl (6.1.0+dfsg-1) ... 196s Setting up r-cran-combinat (0.0-8-7build1) ... 196s Setting up r-cran-codetools (0.2-20-1) ... 196s Setting up r-cran-brio (1.1.5-1) ... 196s Setting up r-cran-diffobj (0.3.5-1) ... 196s Setting up r-bioc-biocgenerics (0.52.0-2) ... 196s Setting up r-cran-rlang (1.1.5-1) ... 196s Setting up r-cran-matrixstats (1.5.0-1) ... 196s Setting up r-cran-listenv (0.9.1+dfsg-1) ... 196s Setting up littler (0.3.20-2) ... 196s Setting up r-bioc-matrixgenerics (1.18.1-1) ... 196s Setting up r-cran-xfun (0.50+dfsg-1) ... 196s Setting up r-cran-vgam (1.1-12-1) ... 196s Setting up r-cran-rcpphnsw (0.6.0+ds-1) ... 196s Setting up r-cran-sys (3.4.3-1) ... 196s Setting up r-cran-deoptimr (1.1-3-1-1) ... 196s Setting up r-cran-withr (3.0.2+dfsg-1) ... 196s Setting up r-cran-mathjaxr (1.6-0-1) ... 196s Setting up r-cran-processx (3.8.5-1) ... 196s Setting up r-cran-slam (0.1-55-1) ... 196s Setting up r-cran-mime (0.12-2) ... 196s Setting up r-cran-praise (1.0.0-4build1) ... 196s Setting up r-cran-vipor (0.4.7-1) ... 196s Setting up r-cran-generics (0.1.3-1) ... 196s Setting up r-cran-base64enc (0.1-3-3) ... 196s Setting up r-cran-beeswarm (0.4.0-1) ... 196s Setting up r-cran-iterators (1.0.14-1) ... 196s Setting up r-cran-abind (1.4-8-1) ... 196s Setting up r-cran-digest (0.6.37-1) ... 196s Setting up r-cran-ape (5.8-1-1) ... 196s Setting up r-cran-yaml (2.3.10-1) ... 196s Setting up r-cran-ica (1.0-3-1) ... 196s Setting up r-cran-lambda.r (1.2.4-2build1) ... 196s Setting up r-cran-rann (2.6.2-1) ... 196s Setting up r-cran-gower (1.0.2-1) ... 196s Setting up r-cran-evaluate (1.0.3-1) ... 196s Setting up r-cran-timedate (4041.110-1) ... 196s Setting up r-cran-highr (0.11+dfsg-1) ... 196s Setting up r-cran-foreach (1.5.2-1) ... 196s Setting up r-cran-fansi (1.0.5-1) ... 196s Setting up r-cran-fastica (1.2-7-1) ... 196s Setting up r-cran-mass (7.3-64-1) ... 196s Setting up r-cran-cairo (1.6-2-1) ... 196s Setting up r-cran-snow (1:0.4.4-2) ... 196s Setting up r-cran-gtools (3.9.5-1) ... 196s Setting up r-cran-kernlab (0.9-33-1) ... 196s Setting up r-cran-data.table (1.16.4+dfsg-1) ... 196s Setting up r-cran-glue (1.8.0-1) ... 196s Setting up r-cran-bit (4.5.0.1-1) ... 196s Setting up r-cran-xtable (1:1.8-4-2) ... 196s Setting up r-cran-polyclip (1.10-7-1) ... 196s Setting up r-cran-cli (3.6.3-1) ... 196s Setting up r-cran-rbibutils (2.3-1) ... 196s Setting up r-cran-lifecycle (1.0.4+dfsg-1) ... 196s Setting up r-cran-dotcall64 (1.2-1) ... 196s Setting up r-cran-bitops (1.0-9-1) ... 196s Setting up r-cran-rprojroot (2.0.4-2) ... 196s Setting up r-cran-fnn (1.1.4.1-1) ... 196s Setting up r-cran-bit64 (4.0.5-1) ... 196s Setting up r-cran-biocmanager (1.30.25+dfsg-1) ... 196s Setting up r-cran-progressr (0.15.1-1) ... 196s Setting up r-bioc-zlibbioc (1.52.0+dfsg-2) ... 196s Setting up r-cran-deldir (2.0-4-1build1) ... 196s Setting up r-cran-goftest (1.2-3-1) ... 196s Setting up r-cran-shape (1.4.6.1-1) ... 196s Setting up r-cran-askpass (1.2.1-1) ... 196s Setting up r-cran-fastmap (1.2.0-1) ... 196s Setting up r-cran-png (0.1-8-1build2) ... 196s Setting up r-cran-r.methodss3 (1.8.2-1) ... 196s Setting up r-bioc-biobase (2.66.0-2) ... 196s Setting up r-cran-jsonlite (1.8.9+dfsg-1) ... 196s Setting up r-cran-mnormt (2.1.1-2) ... 196s Setting up r-cran-pkgconfig (2.0.3-2build1) ... 196s Setting up r-cran-sp (1:2.1-4+dfsg-1) ... 196s Setting up r-cran-utf8 (1.2.4-1) ... 196s Setting up r-cran-colorspace (2.1-1+dfsg-1) ... 196s Setting up r-cran-parallelly (1.42.0-1) ... 196s Setting up r-cran-stringi (1.8.4-1build1) ... 196s Setting up r-cran-plotrix (3.8-4-1) ... 196s Setting up r-cran-cpp11 (0.5.1-1) ... 196s Setting up r-cran-mvtnorm (1.3-3-1) ... 196s Setting up r-cran-sitmo (2.0.2-1) ... 196s Setting up r-cran-segmented (2.1-3-1) ... 196s Setting up r-cran-plyr (1.8.9-1) ... 196s Setting up r-cran-rcolorbrewer (1.1-3-1build1) ... 196s Setting up r-bioc-s4vectors (0.44.0+dfsg-2) ... 196s Setting up r-cran-isoband (0.2.7-1) ... 196s Setting up r-cran-runit (0.4.33-1) ... 196s Setting up r-cran-futile.logger (1.4.3-4build1) ... 196s Setting up r-cran-diagram (1.6.5-2) ... 196s Setting up r-cran-waldo (0.6.1-2) ... 196s Setting up r-bioc-limma (3.62.2+dfsg-1) ... 196s Setting up r-cran-gtable (0.3.6+dfsg-1) ... 196s Setting up r-cran-zoo (1.8-12-2) ... 196s Setting up r-cran-later (1.4.1+dfsg-1) ... 196s Setting up r-cran-matrix (1.7-2-1) ... 196s Setting up r-cran-spatstat.sparse (3.1-0-1) ... 196s Setting up r-cran-here (1.0.1-2) ... 196s Setting up r-cran-htmltools (0.5.8.1-1) ... 196s Setting up r-cran-tinytex (0.54-1) ... 196s Setting up r-cran-irlba (2.3.5.1-4) ... 196s Setting up r-cran-kernsmooth (2.23-26-1) ... 196s Setting up r-cran-knitr (1.49+dfsg-1) ... 196s Setting up r-cran-rcpptoml (0.2.2+dfsg-1) ... 196s Setting up r-cran-mgcv (1.9-1-1) ... 196s Setting up r-cran-robustbase (0.99-4-1-1) ... 196s Setting up r-cran-cachem (1.1.0-1) ... 196s Setting up r-cran-lmtest (0.9.40-1) ... 196s Setting up r-cran-sass (0.4.9+dfsg-1) ... 196s Setting up r-cran-catools (1.18.2-1) ... 196s Setting up r-cran-rtsne (0.17-1) ... 196s Setting up r-cran-rcpparmadillo (14.2.3-1-1) ... 196s Setting up r-cran-hdf5r (1.3.12+dfsg-1) ... 196s Setting up r-bioc-iranges (2.40.1-2) ... 196s Setting up r-cran-dqrng (0.3.2+dfsg-1) ... 196s Setting up r-cran-tzdb (0.4.0-2) ... 196s Setting up r-cran-reticulate (1.39.0+dfsg-1) ... 196s Setting up r-cran-globals (0.16.3-1) ... 196s Setting up r-cran-rcurl (1.98-1.16+dfsg-1) ... 196s Setting up r-cran-spam (2.11-1-1) ... 196s Setting up r-cran-restfulr (0.0.15-1) ... 196s Setting up r-cran-gdata (3.0.1-1) ... 196s Setting up r-cran-vctrs (0.6.5-1) ... 196s Setting up r-cran-rcppeigen (0.3.4.0.2-1) ... 196s Setting up r-bioc-graph (1.84.1-1) ... 196s Setting up r-cran-pillar (1.10.1+dfsg-1) ... 196s Setting up r-cran-rcppannoy (0.0.22-1) ... 196s Setting up r-bioc-rbgl (1.82.0+dfsg-2) ... 196s Setting up r-cran-openssl (2.2.0+dfsg-1) ... 196s Setting up r-bioc-biocviews (1.74.0-2) ... 196s Setting up r-bioc-hsmmsinglecell (1.26.0-2) ... 196s Setting up r-bioc-s4arrays (1.6.0+dfsg-2) ... 196s Setting up r-cran-stringr (1.5.1-1) ... 196s Setting up r-cran-class (7.3-23-1) ... 196s Setting up r-bioc-biocparallel (1.40.0-2) ... 196s Setting up r-cran-modelmetrics (1.2.2.2-1build1) ... 196s Setting up r-cran-callr (3.7.6-1) ... 196s Setting up r-cran-matrixmodels (0.5-3-1) ... 196s Setting up r-bioc-rhtslib (3.2.0+dfsg-2) ... 196s Setting up r-cran-desc (1.4.3-1) ... 196s Setting up r-cran-munsell (0.5.1-1) ... 196s Setting up r-cran-tibble (3.2.1+dfsg-3) ... 196s Setting up r-cran-clock (0.7.1-1) ... 196s Setting up r-cran-sandwich (3.1-1-1) ... 196s Setting up r-cran-proc (1.18.5-1) ... 196s Setting up r-cran-fontawesome (0.5.3-1) ... 196s Setting up r-cran-survival (3.8-3-1) ... 196s Setting up r-cran-igraph (2.1.4-1) ... 196s Setting up r-bioc-biocio (1.16.0+dfsg-2) ... 196s Setting up r-cran-r.oo (1.27.0-1) ... 196s Setting up r-cran-rdpack (2.6.2-1) ... 196s Setting up r-cran-future (1.34.0+dfsg-1) ... 196s Setting up r-cran-jquerylib (0.1.4+dfsg-4) ... 196s Setting up r-cran-tidyselect (1.2.1+dfsg-1) ... 196s Setting up r-cran-leidenbase (0.1.31-1) ... 196s Setting up r-cran-reshape2 (1.4.4-2build1) ... 196s Setting up r-cran-rsvd (1.0.5-1) ... 196s Setting up r-cran-future.apply (1.11.3+dfsg-1) ... 196s Setting up r-cran-systemfonts (1.2.1-1) ... 196s Setting up r-cran-timechange (0.3.0-1) ... 196s Setting up r-cran-th.data (1.1-3-1) ... 196s Setting up r-cran-httr (1.4.7+dfsg-1) ... 196s Setting up r-cran-gridextra (2.3-3build1) ... 196s Setting up r-cran-ddrtree (0.1.5-2) ... 196s Setting up r-cran-scales (1.3.0-1) ... 196s Setting up r-cran-memoise (2.0.1-1) ... 196s Setting up r-cran-lava (1.8.1+dfsg-1) ... 196s Setting up r-cran-promises (1.3.2+dfsg-1) ... 196s Setting up r-cran-purrr (1.0.2-1) ... 196s Setting up r-cran-e1071 (1.7-16-1) ... 196s Setting up r-cran-spatstat.data (3.1-4-1) ... 196s Setting up r-cran-fastdummies (1.7.5-1) ... 196s Setting up r-cran-multcomp (1.4-28-1) ... 196s Setting up r-cran-qqconf (1.3.2+dfsg-1) ... 196s Setting up r-cran-seuratobject (5.0.2-1) ... 196s Setting up r-cran-spatstat.geom (3.2-9-2) ... 196s Setting up r-bioc-xvector (0.46.0-2) ... 196s Setting up r-cran-pkgbuild (1.4.6-1) ... 196s Setting up r-cran-hardhat (1.4.0+dfsg-1) ... 196s Setting up r-cran-dplyr (1.1.4-4) ... 196s Setting up r-cran-rspectra (0.16-2-1) ... 196s Setting up r-cran-gplots (3.2.0-1) ... 196s Setting up r-cran-uwot (0.2.2-2) ... 196s Setting up r-cran-leiden (0.4.3.1+dfsg-1) ... 196s Setting up r-bioc-multtest (2.62.0-2) ... 196s Setting up r-cran-pheatmap (1.0.12-2build1) ... 196s Setting up r-cran-lubridate (1.9.4+dfsg-1) ... 196s Setting up r-cran-pkgload (1.4.0-1) ... 196s Setting up r-cran-r.utils (2.12.3-1) ... 196s Setting up r-cran-rocr (1.0-11-3) ... 196s Setting up r-cran-prodlim (2024.06.25-1) ... 196s Setting up r-cran-fitdistrplus (1.2-2-1) ... 196s Setting up r-bioc-ucsc.utils (1.2.0+ds-2) ... 196s Setting up r-bioc-sparsearray (1.6.1+dfsg-1) ... 196s Setting up r-cran-ggplot2 (3.5.1+dfsg-1) ... 196s Setting up r-cran-scattermore (1.2-1) ... 196s Setting up r-cran-httpuv (1.6.15+dfsg-1) ... 196s Setting up r-cran-rpart (4.1.24-1) ... 196s Setting up r-cran-spatstat.random (3.2-3-1) ... 196s Setting up r-cran-textshaping (0.3.7-2) ... 196s Setting up r-cran-ipred (0.9-15-1) ... 196s Setting up r-cran-viridis (0.6.5-1) ... 196s Setting up r-cran-testthat (3.2.1.1-1) ... 196s Setting up r-bioc-genomeinfodb (1.42.3+dfsg-1) ... 196s Setting up r-cran-bslib (0.8.0+dfsg-1) ... 196s Setting up r-cran-ragg (1.3.3-1) ... 196s Setting up r-cran-spatstat.explore (3.2-7-1) ... 196s Setting up r-cran-ggrepel (0.9.6-1) ... 196s Setting up r-cran-tidyr (1.3.1-1) ... 196s Setting up r-cran-recipes (1.1.0+dfsg-1) ... 196s Setting up r-cran-mutoss (0.1-13-1) ... 196s Setting up r-cran-ggridges (0.5.6-1) ... 196s Setting up r-cran-ggbeeswarm (0.7.2-1) ... 196s Setting up r-bioc-delayedarray (0.32.0+dfsg-2) ... 196s Setting up r-cran-cowplot (1.1.3+dfsg-1) ... 196s Setting up r-cran-sctransform (0.4.1-1) ... 196s Setting up r-cran-patchwork (1.3.0-1) ... 196s Setting up r-bioc-genomicranges (1.58.0+dfsg-2) ... 196s Setting up r-bioc-biostrings (2.74.1+dfsg-2) ... 196s Setting up r-cran-caret (7.0-1+dfsg-1) ... 196s Setting up r-cran-shiny (1.10.0+dfsg-2) ... 196s Setting up r-bioc-monocle (2.34.0-2) ... 196s Setting up r-cran-shinyjs (2.1.0-1) ... 196s Setting up r-cran-miniui (0.1.1.1-3build1) ... 196s Setting up r-cran-ggrastr (1.0.2-1) ... 196s Setting up r-cran-rmarkdown (2.29+dfsg-1) ... 196s Setting up r-cran-conquer (1.3.3-1) ... 196s Setting up r-bioc-rsamtools (2.22.0+dfsg-2) ... 196s Setting up r-cran-crosstalk (1.2.1+dfsg-1) ... 196s Setting up r-bioc-summarizedexperiment (1.36.0+dfsg-2) ... 196s Setting up r-cran-quantreg (6.00-1) ... 196s Setting up r-cran-sn (2.1.1-2) ... 196s Setting up r-bioc-deseq2 (1.46.0+dfsg-2) ... 196s Setting up r-cran-htmlwidgets (1.6.4+dfsg-1) ... 196s Setting up r-cran-colourpicker (1.3.0+dfsg-1) ... 196s Setting up r-cran-tfisher (0.2.0-3) ... 196s Setting up r-bioc-genomicalignments (1.42.0-2) ... 196s Setting up r-cran-metap (1.11-2) ... 196s Setting up r-bioc-rtracklayer (1.66.0-2) ... 196s Setting up r-bioc-singlecellexperiment (1.28.1+ds-2) ... 196s Setting up r-cran-plotly (4.10.4+dfsg-2) ... 196s Setting up r-cran-mixtools (2.0.0-1) ... 196s Setting up r-cran-seurat (5.0.1-1) ... 196s Processing triggers for man-db (2.13.0-1) ... 196s Processing triggers for install-info (7.1.1-1) ... 196s Processing triggers for libc-bin (2.41-1ubuntu1) ... 197s autopkgtest: DBG: testbed command exited with code 0 197s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'r-cran-seurat'], kind short, sout pipe, serr pipe, env [] 197s autopkgtest: DBG: testbed command exited with code 0 197s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.NdkO4E/run-unit-test-packages.all"], kind short, sout raw, serr pipe, env [] 197s autopkgtest: DBG: testbed command exited with code 0 197s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.NdkO4E/run-unit-test-packages.all /tmp/autopkgtest-work.2zm968cd/out/run-unit-test-packages.all 197s autopkgtest: DBG: got reply from testbed: ok 197s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.NdkO4E/build.BNZ/src'], kind short, sout raw, serr raw, env [] 197s autopkgtest: DBG: testbed command exited with code 0 197s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.NdkO4E/build.BNZ/src already exists 197s autopkgtest [23:52:53]: test run-unit-test: [----------------------- 197s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.NdkO4E/wrapper.sh --debug --artifacts=/tmp/autopkgtest.NdkO4E/run-unit-test-artifacts --chdir=/tmp/autopkgtest.NdkO4E/build.BNZ/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.NdkO4E/run-unit-test-stderr --stdout=/tmp/autopkgtest.NdkO4E/run-unit-test-stdout --tmp=/tmp/autopkgtest.NdkO4E/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' --make-executable=/tmp/autopkgtest.NdkO4E/build.BNZ/src/debian/tests/run-unit-test -- /tmp/autopkgtest.NdkO4E/build.BNZ/src/debian/tests/run-unit-test"], kind test, sout raw, serr raw, env [] 198s /tmp/autopkgtest.NdkO4E/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.NdkO4E/run-unit-test-artifacts 198s /tmp/autopkgtest.NdkO4E/wrapper.sh: changing to directory: /tmp/autopkgtest.NdkO4E/build.BNZ/src 198s /tmp/autopkgtest.NdkO4E/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 198s /tmp/autopkgtest.NdkO4E/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 198s /tmp/autopkgtest.NdkO4E/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 198s /tmp/autopkgtest.NdkO4E/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 198s /tmp/autopkgtest.NdkO4E/wrapper.sh: setting environment: LANG=C.UTF-8 198s /tmp/autopkgtest.NdkO4E/wrapper.sh: unsetting environment: LANGUAGE 198s /tmp/autopkgtest.NdkO4E/wrapper.sh: unsetting environment: LC_ADDRESS 198s /tmp/autopkgtest.NdkO4E/wrapper.sh: unsetting environment: LC_ALL 198s /tmp/autopkgtest.NdkO4E/wrapper.sh: unsetting environment: LC_COLLATE 198s /tmp/autopkgtest.NdkO4E/wrapper.sh: unsetting environment: LC_CTYPE 198s /tmp/autopkgtest.NdkO4E/wrapper.sh: unsetting environment: LC_IDENTIFICATION 198s /tmp/autopkgtest.NdkO4E/wrapper.sh: unsetting environment: LC_MEASUREMENT 198s /tmp/autopkgtest.NdkO4E/wrapper.sh: unsetting environment: LC_MESSAGES 198s /tmp/autopkgtest.NdkO4E/wrapper.sh: unsetting environment: LC_MONETARY 198s /tmp/autopkgtest.NdkO4E/wrapper.sh: unsetting environment: LC_NAME 198s /tmp/autopkgtest.NdkO4E/wrapper.sh: unsetting environment: LC_NUMERIC 198s /tmp/autopkgtest.NdkO4E/wrapper.sh: unsetting environment: LC_PAPER 198s /tmp/autopkgtest.NdkO4E/wrapper.sh: unsetting environment: LC_TELEPHONE 198s /tmp/autopkgtest.NdkO4E/wrapper.sh: unsetting environment: LC_TIME 198s /tmp/autopkgtest.NdkO4E/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 198s /tmp/autopkgtest.NdkO4E/wrapper.sh: pretending to be a login shell 198s /tmp/autopkgtest.NdkO4E/wrapper.sh: will write standard error to /tmp/autopkgtest.NdkO4E/run-unit-test-stderr 198s /tmp/autopkgtest.NdkO4E/wrapper.sh: will write stdout to /tmp/autopkgtest.NdkO4E/run-unit-test-stdout 198s /tmp/autopkgtest.NdkO4E/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.NdkO4E/autopkgtest_tmp 198s /tmp/autopkgtest.NdkO4E/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 198s /tmp/autopkgtest.NdkO4E/wrapper.sh: marking as executable: /tmp/autopkgtest.NdkO4E/build.BNZ/src/debian/tests/run-unit-test 198s /tmp/autopkgtest.NdkO4E/wrapper.sh: command to run: /tmp/autopkgtest.NdkO4E/build.BNZ/src/debian/tests/run-unit-test 198s /tmp/autopkgtest.NdkO4E/wrapper.sh: copying /tmp/tmp.gFmxIZBvyb/out to stdout and file: /tmp/autopkgtest.NdkO4E/run-unit-test-stdout 198s /tmp/autopkgtest.NdkO4E/wrapper.sh: copying /tmp/tmp.gFmxIZBvyb/err to standard error and file: /tmp/autopkgtest.NdkO4E/run-unit-test-stdout 198s /tmp/autopkgtest.NdkO4E/wrapper.sh: writing script pid 5315 to /tmp/autopkgtest_script_pid 198s dpkg-architecture: warning: cannot determine CC system type, falling back to default (native compilation) 198s BEGIN TEST testthat.R 198s 198s R version 4.4.2 (2024-10-31) -- "Pile of Leaves" 198s Copyright (C) 2024 The R Foundation for Statistical Computing 198s Platform: s390x-ibm-linux-gnu 198s 198s R is free software and comes with ABSOLUTELY NO WARRANTY. 198s You are welcome to redistribute it under certain conditions. 198s Type 'license()' or 'licence()' for distribution details. 198s 198s R is a collaborative project with many contributors. 198s Type 'contributors()' for more information and 198s 'citation()' on how to cite R or R packages in publications. 198s 198s Type 'demo()' for some demos, 'help()' for on-line help, or 198s 'help.start()' for an HTML browser interface to help. 198s Type 'q()' to quit R. 198s 198s > library(testthat) 198s > library(Seurat) 198s Loading required package: SeuratObject 198s Loading required package: sp 199s ‘SeuratObject’ was built under R 4.4.1 but the current version is 199s 4.4.2; it is recomended that you reinstall ‘SeuratObject’ as the ABI 199s for R may have changed 199s ‘SeuratObject’ was built with package ‘Matrix’ 1.7.0 but the current 199s version is 1.7.2; it is recomended that you reinstall ‘SeuratObject’ as 199s the ABI for ‘Matrix’ may have changed 199s 199s Attaching package: ‘SeuratObject’ 199s 199s The following objects are masked from ‘package:base’: 199s 199s intersect, t 199s 201s > # 201s > # # Run tests for 'v3' 201s > # message('Run tests for v3 assay') 201s > # options(Seurat.object.assay.version = 'v3') 201s > # test_check("Seurat") 201s > 201s > # Run tests for 'v5' 201s > message('Run tests for v5 assay') 201s > options(Seurat.object.assay.version = 'v5') 201s > test_check("Seurat") 201s Run tests for v5 assay 202s | | | 0% | |======================================================================| 100% 229s Performing log-normalization 229s 0% 10 20 30 40 50 60 70 80 90 100% 229s [----|----|----|----|----|----|----|----|----|----| 229s **************************************************| 229s Performing log-normalization 229s 0% 10 20 30 40 50 60 70 80 90 100% 229s [----|----|----|----|----|----|----|----|----|----| 229s **************************************************| 229s Calculating gene variances 229s 0% 10 20 30 40 50 60 70 80 90 100% 229s [----|----|----|----|----|----|----|----|----|----| 229s **************************************************| 229s Calculating feature variances of standardized and clipped values 229s 0% 10 20 30 40 50 60 70 80 90 100% 229s [----|----|----|----|----|----|----|----|----|----| 229s **************************************************| 229s Calculating gene variances 229s 0% 10 20 30 40 50 60 70 80 90 100% 229s [----|----|----|----|----|----|----|----|----|----| 229s **************************************************| 229s Calculating feature variances of standardized and clipped values 229s 0% 10 20 30 40 50 60 70 80 90 100% 229s [----|----|----|----|----|----|----|----|----|----| 229s **************************************************| 230s | | | 0% | |======================================================================| 100% 241s Performing log-normalization 241s 0% 10 20 30 40 50 60 70 80 90 100% 241s [----|----|----|----|----|----|----|----|----|----| 241s **************************************************| 241s Performing log-normalization 241s 0% 10 20 30 40 50 60 70 80 90 100% 241s [----|----|----|----|----|----|----|----|----|----| 241s **************************************************| 241s Performing log-normalization 241s 0% 10 20 30 40 50 60 70 80 90 100% 241s [----|----|----|----|----|----|----|----|----|----| 241s **************************************************| 250s Performing log-normalization 250s 0% 10 20 30 40 50 60 70 80 90 100% 250s [----|----|----|----|----|----|----|----|----|----| 250s **************************************************| 250s | | | 0% | |======================================================================| 100% 250s | | | 0% | |======================================================================| 100% 251s [ FAIL 0 | WARN 160 | SKIP 29 | PASS 542 ] 251s 251s ══ Skipped tests (29) ══════════════════════════════════════════════════════════ 251s • On CRAN (29): 'test_differential_expression.R:286:3', 251s 'test_differential_expression.R:328:3', 251s 'test_differential_expression.R:425:3', 'test_dimensional_reduction.R:55:3', 251s 'test_integratedata.R:111:3', 'test_integratedata.R:180:3', 251s 'test_integration.R:74:3', 'test_integration.R:105:3', 251s 'test_integration.R:136:3', 'test_integration.R:170:3', 251s 'test_integration.R:202:3', 'test_integration.R:234:3', 251s 'test_integration.R:264:3', 'test_integration.R:306:3', 251s 'test_integration.R:335:3', 'test_integration.R:365:3', 'test_objects.R:6:3', 251s 'test_preprocessing.R:140:3', 'test_preprocessing.R:158:3', 251s 'test_preprocessing.R:401:3', 'test_preprocessing.R:455:3', 251s 'test_preprocessing.R:477:3', 'test_read_mtx.R:4:3', 'test_read_mtx.R:18:3', 251s 'test_transferdata.R:65:3', 'test_transferdata.R:88:3', 251s 'test_transferdata.R:100:3', 'test_transferdata.R:112:3', 251s 'test_transferdata.R:128:3' 251s 251s [ FAIL 0 | WARN 160 | SKIP 29 | PASS 542 ] 251s > 251s > 251s > 251s /tmp/autopkgtest.NdkO4E/wrapper.sh: checking for leaked background processes... 251s /tmp/autopkgtest.NdkO4E/wrapper.sh: waiting for tee/cat subprocesses... 251s /tmp/autopkgtest.NdkO4E/wrapper.sh: cleaning up... 251s /tmp/autopkgtest.NdkO4E/wrapper.sh: Exit status: 0 251s autopkgtest: DBG: testbed command exited with code 0 252s autopkgtest [23:53:48]: test run-unit-test: -----------------------] 252s autopkgtest: DBG: testbed executing test finished with exit status 0 252s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.NdkO4E/run-unit-test-stdout /tmp/autopkgtest-work.2zm968cd/out/run-unit-test-stdout 252s autopkgtest: DBG: got reply from testbed: ok 252s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.NdkO4E/run-unit-test-stderr /tmp/autopkgtest-work.2zm968cd/out/run-unit-test-stderr 252s autopkgtest: DBG: got reply from testbed: ok 252s autopkgtest [23:53:48]: test run-unit-test: - - - - - - - - - - results - - - - - - - - - - 252s run-unit-test PASS 252s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.NdkO4E/run-unit-test-artifacts/ /tmp/autopkgtest-work.2zm968cd/out/artifacts/ 252s autopkgtest: DBG: got reply from testbed: ok 252s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.NdkO4E/run-unit-test-artifacts', '/tmp/autopkgtest.NdkO4E/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 252s autopkgtest: DBG: testbed command exited with code 0 252s autopkgtest [23:53:48]: test pkg-r-autopkgtest: preparing testbed 252s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['r-cran-seurat', 'r-cran-ape', 'r-cran-rsvd', 'r-cran-testthat', 'r-cran-hdf5r', 'r-bioc-s4vectors', 'r-bioc-summarizedexperiment', 'r-bioc-singlecellexperiment', 'r-bioc-deseq2', 'r-bioc-biocgenerics', 'r-bioc-genomicranges', 'r-bioc-genomeinfodb', 'r-bioc-iranges', 'r-bioc-rtracklayer', 'r-bioc-monocle', 'r-bioc-biobase', 'r-cran-vgam', 'r-bioc-limma', 'r-cran-metap', 'r-cran-mixtools', 'r-cran-ggrastr', 'r-cran-data.table', 'r-cran-r.utils', 'r-bioc-delayedarray'], deps_new=['r-cran-seurat', 'r-cran-ape', 'r-cran-rsvd', 'r-cran-testthat', 'r-bioc-s4vectors', 'r-bioc-summarizedexperiment', 'r-bioc-deseq2', 'r-bioc-biocgenerics', 'r-bioc-genomicranges', 'r-bioc-genomeinfodb', 'r-bioc-iranges', 'r-bioc-rtracklayer', 'r-bioc-biobase', 'r-cran-vgam', 'r-bioc-limma', 'r-cran-metap', 'r-cran-mixtools', 'r-cran-data.table', 'r-cran-r.utils', 'r-bioc-delayedarray', 'pkg-r-autopkgtest'] 252s autopkgtest: DBG: testbed reset 252s autopkgtest: DBG: sending command to testbed: revert 375s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.NdkO4E 375s autopkgtest: DBG: sending command to testbed: print-execute-command 375s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.o4jsnuf0/runcmd 375s autopkgtest: DBG: sending command to testbed: capabilities 375s autopkgtest: DBG: got reply from testbed: ok reboot suggested-normal-user=ubuntu ok isolation-machine root-on-testbed revert revert-full-system 375s autopkgtest: DBG: testbed capabilities: ['reboot', 'suggested-normal-user=ubuntu', 'ok', 'isolation-machine', 'root-on-testbed', 'revert', 'revert-full-system', 'has_internet'] 375s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.NdkO4E'], kind short, sout raw, serr pipe, env [] 376s autopkgtest: DBG: testbed command exited with code 0 376s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.NdkO4E/wrapper.sh 376s autopkgtest: DBG: got reply from testbed: ok 376s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.NdkO4E/wrapper.sh'], kind short, sout raw, serr pipe, env [] 376s autopkgtest: DBG: testbed command exited with code 0 376s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 376s autopkgtest: DBG: testbed command exited with code 0 376s autopkgtest [23:55:52]: testbed dpkg architecture: s390x 376s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 376s autopkgtest: DBG: testbed command exited with code 0 376s autopkgtest [23:55:52]: testbed apt version: 2.9.28 376s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 376s autopkgtest: DBG: testbed command exited with code 0 376s autopkgtest: DBG: testbed has eatmydata 376s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 377s autopkgtest: DBG: testbed command exited with code 0 377s autopkgtest [23:55:53]: @@@@@@@@@@@@@@@@@@@@ test bed setup 377s 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 [] 377s autopkgtest: DBG: testbed command exited with code 0 377s autopkgtest [23:55:53]: testbed release detected to be: plucky 377s 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 [] 377s autopkgtest: DBG: testbed command exited with code 0 377s 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 [] 377s autopkgtest: DBG: testbed command exited with code 0 377s autopkgtest: DBG: adding APT source: Types: deb deb-src 377s URIs: http://ftpmaster.internal/ubuntu/ 377s Suites: plucky-proposed 377s Components: main restricted universe multiverse 377s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 377s 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 [] 377s autopkgtest: DBG: testbed command exited with code 0 377s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 377s Package: * 377s Pin: release plucky-proposed 377s Pin-Priority: 500 377s 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 [] 377s autopkgtest: DBG: testbed command exited with code 0 377s autopkgtest [23:55:53]: updating testbed package index (apt update) 377s 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'] 378s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 378s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 378s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 378s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 378s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 378s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [74.3 kB] 378s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [828 kB] 378s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 378s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [163 kB] 378s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 378s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [876 kB] 378s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 379s Fetched 2073 kB in 1s (2151 kB/s) 379s Reading package lists... 379s autopkgtest: DBG: testbed command exited with code 0 379s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 379s Package: * 379s Pin: release plucky-proposed 379s Pin-Priority: 100 379s 379s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 379s Pin: release plucky-proposed 379s Pin-Priority: 995 379s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 380s autopkgtest: DBG: testbed command exited with code 0 380s 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.NdkO4E/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 380s autopkgtest: DBG: testbed command exited with code 0 380s 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'] 380s + lsb_release --codename --short 380s + RELEASE=plucky 380s + cat 380s + [ plucky != trusty ] 380s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 380s Reading package lists... 380s Building dependency tree... 380s Reading state information... 380s Calculating upgrade... 380s The following packages were automatically installed and are no longer required: 380s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 380s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 380s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 380s linux-tools-6.11.0-8-generic 380s Use 'sudo apt autoremove' to remove them. 380s The following packages will be upgraded: 380s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 380s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 380s Need to get 1155 kB of archives. 380s After this operation, 16.4 kB of additional disk space will be used. 380s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 381s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 381s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 381s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 381s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 381s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 381s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 381s Preconfiguring packages ... 381s Fetched 1155 kB in 1s (1913 kB/s) 381s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 381s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 381s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 381s Setting up dash (0.5.12-12ubuntu1) ... 381s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 381s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 381s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 381s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 381s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 381s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 382s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 382s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 382s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 382s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 382s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 382s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 382s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 382s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 382s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 382s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 382s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 382s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 382s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 382s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 382s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 382s Setting up libtasn1-6:s390x (4.20.0-2) ... 382s Processing triggers for libc-bin (2.40-4ubuntu1) ... 382s Processing triggers for man-db (2.13.0-1) ... 382s Processing triggers for debianutils (5.21) ... 382s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 382s + /usr/lib/apt/apt-helper analyze-pattern ?true 382s + uname -r 382s + sed s/\./\\./g 382s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 382s + apt list ?obsolete 382s + tail -n+2 382s + grep -v ^linux-.*6\.12\.0-15-generic.* 382s + cut -d/ -f1 382s + true 382s + obsolete_pkgs= 382s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 383s Reading package lists... 383s Building dependency tree... 383s Reading state information... 383s The following packages will be REMOVED: 383s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 383s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 383s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 383s linux-tools-6.11.0-8-generic* 383s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 383s After this operation, 167 MB disk space will be freed. 383s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 383s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 383s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 383s Removing libpython3.12t64:s390x (3.12.9-1) ... 383s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 383s Removing libnsl2:s390x (1.3.0-3build3) ... 383s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 383s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 383s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 384s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 384s Processing triggers for libc-bin (2.40-4ubuntu1) ... 384s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 384s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 384s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 384s + grep -q trusty /etc/lsb-release 384s + [ ! -d /usr/share/doc/unattended-upgrades ] 384s + [ ! -d /usr/share/doc/lxd ] 384s + [ ! -d /usr/share/doc/lxd-client ] 384s + [ ! -d /usr/share/doc/snapd ] 384s + type iptables 384s + cat 384s + chmod 755 /etc/rc.local 384s + . /etc/rc.local 384s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 384s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 384s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 384s + uname -m 384s + [ s390x = ppc64le ] 384s + [ -d /run/systemd/system ] 384s + systemd-detect-virt --quiet --vm 384s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 384s + cat 384s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 384s + echo COMPRESS=lz4 384s autopkgtest: DBG: testbed command exited with code 0 384s autopkgtest [23:56:00]: upgrading testbed (apt dist-upgrade and autopurge) 384s 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'] 385s Reading package lists... 385s Building dependency tree... 385s Reading state information... 385s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 385s Starting 2 pkgProblemResolver with broken count: 0 385s Done 385s Entering ResolveByKeep 385s 385s The following packages will be upgraded: 385s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 386s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 386s Need to get 10.7 MB of archives. 386s After this operation, 305 kB of additional disk space will be used. 386s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 386s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 386s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 386s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 386s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 386s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 387s Preconfiguring packages ... 387s Fetched 10.7 MB in 1s (10.7 MB/s) 387s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55867 files and directories currently installed.) 387s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 387s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 387s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 387s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 387s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 387s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 387s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 387s Checking for services that may need to be restarted... 387s Checking init scripts... 387s Checking for services that may need to be restarted... 387s Checking init scripts... 387s Stopping some services possibly affected by the upgrade (will be restarted later): 387s cron: stopping...done. 387s 387s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 387s Setting up libc6:s390x (2.41-1ubuntu1) ... 387s Checking for services that may need to be restarted... 387s Checking init scripts... 387s Restarting services possibly affected by the upgrade: 387s cron: restarting...done. 387s 387s Services restarted successfully. 387s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 387s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 387s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 387s Setting up libc-bin (2.41-1ubuntu1) ... 387s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 387s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 387s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 388s Setting up iproute2 (6.13.0-1ubuntu1) ... 388s Setting up locales (2.41-1ubuntu1) ... 388s Installing new version of config file /etc/locale.alias ... 388s Generating locales (this might take a while)... 389s en_US.UTF-8... done 389s Generation complete. 389s Setting up libc-dev-bin (2.41-1ubuntu1) ... 389s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 389s Processing triggers for man-db (2.13.0-1) ... 390s Processing triggers for systemd (257.2-3ubuntu1) ... 390s autopkgtest: DBG: testbed command exited with code 0 390s 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'] 391s Reading package lists... 391s Building dependency tree... 391s Reading state information... 391s Starting pkgProblemResolver with broken count: 0 391s Starting 2 pkgProblemResolver with broken count: 0 391s Done 391s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 391s autopkgtest: DBG: testbed command exited with code 0 391s 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.NdkO4E/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 391s autopkgtest: DBG: testbed command exited with code 1 391s autopkgtest [23:56:07]: rebooting testbed after setup commands that affected boot 391s autopkgtest: DBG: sending command to testbed: reboot 408s autopkgtest: DBG: got reply from testbed: ok 408s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 408s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.NdkO4E'], kind short, sout raw, serr pipe, env [] 408s autopkgtest: DBG: testbed command exited with code 0 408s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.NdkO4E/autopkgtest-reboot 409s autopkgtest: DBG: got reply from testbed: ok 409s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.NdkO4E/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 409s autopkgtest: DBG: testbed command exited with code 0 409s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.NdkO4E/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 409s autopkgtest: DBG: testbed command exited with code 0 409s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.NdkO4E/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 409s autopkgtest: DBG: testbed command exited with code 0 409s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.NdkO4E'], kind short, sout raw, serr pipe, env [] 409s autopkgtest: DBG: testbed command exited with code 0 409s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.NdkO4E/autopkgtest-reboot-prepare 410s autopkgtest: DBG: got reply from testbed: ok 410s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.NdkO4E/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 410s autopkgtest: DBG: testbed command exited with code 0 410s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.NdkO4E/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 410s autopkgtest: DBG: testbed command exited with code 0 410s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 410s autopkgtest: DBG: testbed command exited with code 0 410s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.NdkO4E/testbed-packages"], kind short, sout raw, serr pipe, env [] 410s autopkgtest: DBG: testbed command exited with code 0 410s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.NdkO4E/testbed-packages /tmp/autopkgtest-work.2zm968cd/out/testbed-packages 410s autopkgtest: DBG: got reply from testbed: ok 410s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 410s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.NdkO4E'], kind short, sout raw, serr pipe, env [] 411s autopkgtest: DBG: testbed command exited with code 0 411s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.NdkO4E/autopkgtest-reboot 411s autopkgtest: DBG: got reply from testbed: ok 411s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.NdkO4E/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 411s autopkgtest: DBG: testbed command exited with code 0 411s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.NdkO4E/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 411s autopkgtest: DBG: testbed command exited with code 0 411s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.NdkO4E/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 411s autopkgtest: DBG: testbed command exited with code 0 411s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.NdkO4E'], kind short, sout raw, serr pipe, env [] 411s autopkgtest: DBG: testbed command exited with code 0 411s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.NdkO4E/autopkgtest-reboot-prepare 412s autopkgtest: DBG: got reply from testbed: ok 412s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.NdkO4E/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 412s autopkgtest: DBG: testbed command exited with code 0 412s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.NdkO4E/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 412s autopkgtest: DBG: testbed command exited with code 0 412s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 412s autopkgtest: DBG: testbed command exited with code 0 412s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 412s autopkgtest: DBG: install_deps: deps_new=['r-cran-seurat', 'r-cran-ape', 'r-cran-rsvd', 'r-cran-testthat', 'r-bioc-s4vectors', 'r-bioc-summarizedexperiment', 'r-bioc-deseq2', 'r-bioc-biocgenerics', 'r-bioc-genomicranges', 'r-bioc-genomeinfodb', 'r-bioc-iranges', 'r-bioc-rtracklayer', 'r-bioc-biobase', 'r-cran-vgam', 'r-bioc-limma', 'r-cran-metap', 'r-cran-mixtools', 'r-cran-data.table', 'r-cran-r.utils', 'r-bioc-delayedarray', 'pkg-r-autopkgtest'] 412s autopkgtest: DBG: install-deps: satisfying r-cran-seurat, r-cran-ape, r-cran-rsvd, r-cran-testthat, r-bioc-s4vectors, r-bioc-summarizedexperiment, r-bioc-deseq2, r-bioc-biocgenerics, r-bioc-genomicranges, r-bioc-genomeinfodb, r-bioc-iranges, r-bioc-rtracklayer, r-bioc-biobase, r-cran-vgam, r-bioc-limma, r-cran-metap, r-cran-mixtools, r-cran-data.table, r-cran-r.utils, r-bioc-delayedarray, pkg-r-autopkgtest 412s autopkgtest: DBG: can use apt-get on testbed: True 412s 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-seurat, r-cran-ape, r-cran-rsvd, r-cran-testthat, r-bioc-s4vectors, r-bioc-summarizedexperiment, r-bioc-deseq2, r-bioc-biocgenerics, r-bioc-genomicranges, r-bioc-genomeinfodb, r-bioc-iranges, r-bioc-rtracklayer, r-bioc-biobase, r-cran-vgam, r-bioc-limma, r-cran-metap, r-cran-mixtools, r-cran-data.table, r-cran-r.utils, r-bioc-delayedarray, pkg-r-autopkgtest'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 412s Reading package lists... 413s Building dependency tree... 413s Reading state information... 413s Starting pkgProblemResolver with broken count: 0 413s Starting 2 pkgProblemResolver with broken count: 0 413s Done 413s The following NEW packages will be installed: 413s build-essential cpp cpp-14 cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu 413s dctrl-tools fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono 413s fonts-font-awesome fonts-glyphicons-halflings fonts-mathjax g++ g++-14 413s g++-14-s390x-linux-gnu g++-s390x-linux-gnu gcc gcc-14 gcc-14-s390x-linux-gnu 413s gcc-s390x-linux-gnu gfortran gfortran-14 gfortran-14-s390x-linux-gnu 413s gfortran-s390x-linux-gnu icu-devtools javascript-common libamd3 libasan8 413s libblas-dev libblas3 libboost-dev libboost1.83-dev libbz2-dev libcairo2 413s libcc1-0 libcolamd3 libdatrie1 libdeflate-dev libdeflate0 libfftw3-double3 413s libfontconfig1 libfreetype6 libgcc-14-dev libgfortran-14-dev libgfortran5 413s libglpk40 libgomp1 libgraphite2-3 libharfbuzz0b libice6 libicu-dev libisl23 413s libitm1 libjbig0 libjpeg-dev libjpeg-turbo8 libjpeg-turbo8-dev libjpeg8 413s libjpeg8-dev libjs-bootstrap libjs-bootstrap4 libjs-d3 libjs-es5-shim 413s libjs-highlight.js libjs-jquery libjs-jquery-datatables 413s libjs-jquery-selectize.js libjs-jquery-ui libjs-json libjs-mathjax 413s libjs-microplugin.js libjs-modernizr libjs-popper.js libjs-prettify 413s libjs-sifter.js libjs-twitter-bootstrap-datepicker liblapack-dev liblapack3 413s libltdl7 liblua5.4-0 liblzma-dev libmpc3 libncurses-dev libpango-1.0-0 413s libpangocairo-1.0-0 libpangoft2-1.0-0 libpaper-utils libpaper2 libpcre2-16-0 413s libpcre2-32-0 libpcre2-dev libpcre2-posix3 libpixman-1-0 libpkgconf3 413s libpng-dev libreadline-dev libsharpyuv0 libsm6 libstdc++-14-dev 413s libsuitesparseconfig7 libtcl8.6 libthai-data libthai0 libtiff6 libtirpc-dev 413s libtk8.6 libubsan1 libwebp7 libxcb-render0 libxcb-shm0 libxft2 libxrender1 413s libxss1 libxt6t64 littler node-bootstrap-sass node-html5shiv 413s node-normalize.css pandoc pandoc-data pkg-r-autopkgtest pkgconf pkgconf-bin 413s r-base-core r-base-dev r-bioc-biobase r-bioc-biocgenerics r-bioc-biocio 413s r-bioc-biocparallel r-bioc-biostrings r-bioc-delayedarray r-bioc-deseq2 413s r-bioc-genomeinfodb r-bioc-genomeinfodbdata r-bioc-genomicalignments 413s r-bioc-genomicranges r-bioc-iranges r-bioc-limma r-bioc-matrixgenerics 413s r-bioc-multtest r-bioc-rhtslib r-bioc-rsamtools r-bioc-rtracklayer 413s r-bioc-s4arrays r-bioc-s4vectors r-bioc-sparsearray 413s r-bioc-summarizedexperiment r-bioc-ucsc.utils r-bioc-xvector r-bioc-zlibbioc 413s r-cran-abind r-cran-ape r-cran-askpass r-cran-base64enc r-cran-bh 413s r-cran-bitops r-cran-brio r-cran-bslib r-cran-cachem r-cran-callr 413s r-cran-caret r-cran-catools r-cran-class r-cran-cli r-cran-clock 413s r-cran-cluster r-cran-codetools r-cran-colorspace r-cran-colourpicker 413s r-cran-commonmark r-cran-conquer r-cran-cowplot r-cran-cpp11 r-cran-crayon 413s r-cran-crosstalk r-cran-curl r-cran-data.table r-cran-deldir r-cran-deoptimr 413s r-cran-desc r-cran-diagram r-cran-diffobj r-cran-digest r-cran-dotcall64 413s r-cran-dplyr r-cran-dqrng r-cran-e1071 r-cran-evaluate r-cran-fansi 413s r-cran-farver r-cran-fastdummies r-cran-fastmap r-cran-fitdistrplus 413s r-cran-fnn r-cran-fontawesome r-cran-foreach r-cran-formatr r-cran-fs 413s r-cran-futile.logger r-cran-futile.options r-cran-future r-cran-future.apply 413s r-cran-gdata r-cran-generics r-cran-ggplot2 r-cran-ggrepel r-cran-ggridges 413s r-cran-globals r-cran-glue r-cran-goftest r-cran-gower r-cran-gplots 413s r-cran-gridextra r-cran-gtable r-cran-gtools r-cran-hardhat r-cran-here 413s r-cran-highr r-cran-htmltools r-cran-htmlwidgets r-cran-httpuv r-cran-httr 413s r-cran-ica r-cran-igraph r-cran-ipred r-cran-irlba r-cran-isoband 413s r-cran-iterators r-cran-jquerylib r-cran-jsonlite r-cran-kernlab 413s r-cran-kernsmooth r-cran-knitr r-cran-labeling r-cran-lambda.r r-cran-later 413s r-cran-lattice r-cran-lava r-cran-lazyeval r-cran-leiden r-cran-lifecycle 413s r-cran-listenv r-cran-littler r-cran-lmtest r-cran-locfit r-cran-lubridate 413s r-cran-magrittr r-cran-mass r-cran-mathjaxr r-cran-matrix 413s r-cran-matrixmodels r-cran-matrixstats r-cran-memoise r-cran-metap 413s r-cran-mgcv r-cran-mime r-cran-miniui r-cran-mixtools r-cran-mnormt 413s r-cran-modelmetrics r-cran-multcomp r-cran-munsell r-cran-mutoss 413s r-cran-mvtnorm r-cran-nlme r-cran-nnet r-cran-numderiv r-cran-openssl 413s r-cran-parallelly r-cran-patchwork r-cran-pbapply r-cran-pillar 413s r-cran-pkgbuild r-cran-pkgconfig r-cran-pkgkitten r-cran-pkgload 413s r-cran-plotly r-cran-plotrix r-cran-plyr r-cran-png r-cran-polyclip 413s r-cran-praise r-cran-proc r-cran-processx r-cran-prodlim r-cran-progressr 413s r-cran-promises r-cran-proxy r-cran-ps r-cran-purrr r-cran-qqconf 413s r-cran-quantreg r-cran-r.methodss3 r-cran-r.oo r-cran-r.utils r-cran-r6 413s r-cran-rann r-cran-rappdirs r-cran-rbibutils r-cran-rcolorbrewer r-cran-rcpp 413s r-cran-rcppannoy r-cran-rcpparmadillo r-cran-rcppeigen r-cran-rcpphnsw 413s r-cran-rcppprogress r-cran-rcpptoml r-cran-rcurl r-cran-rdpack 413s r-cran-recipes r-cran-reshape2 r-cran-restfulr r-cran-reticulate 413s r-cran-rjson r-cran-rlang r-cran-rmarkdown r-cran-robustbase r-cran-rocr 413s r-cran-rpart r-cran-rprojroot r-cran-rspectra r-cran-rsvd r-cran-rtsne 413s r-cran-sandwich r-cran-sass r-cran-scales r-cran-scattermore 413s r-cran-sctransform r-cran-segmented r-cran-seurat r-cran-seuratobject 413s r-cran-shape r-cran-shiny r-cran-shinyjs r-cran-sitmo r-cran-sn r-cran-snow 413s r-cran-sourcetools r-cran-sp r-cran-spam r-cran-sparsem r-cran-spatstat.data 413s r-cran-spatstat.explore r-cran-spatstat.geom r-cran-spatstat.random 413s r-cran-spatstat.sparse r-cran-spatstat.utils r-cran-squarem r-cran-statmod 413s r-cran-stringi r-cran-stringr r-cran-survival r-cran-sys r-cran-tensor 413s r-cran-testthat r-cran-tfisher r-cran-th.data r-cran-tibble r-cran-tidyr 413s r-cran-tidyselect r-cran-timechange r-cran-timedate r-cran-tinytex 413s r-cran-tzdb r-cran-utf8 r-cran-uwot r-cran-vctrs r-cran-vgam 413s r-cran-viridislite r-cran-waldo r-cran-withr r-cran-xfun r-cran-xml 413s r-cran-xtable r-cran-yaml r-cran-zoo unzip x11-common xdg-utils zip 413s zlib1g-dev 413s 0 upgraded, 382 newly installed, 0 to remove and 0 not upgraded. 413s Need to get 462 MB of archives. 413s After this operation, 1399 MB of additional disk space will be used. 413s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 414s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 414s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 414s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 414s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 414s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 414s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-17ubuntu1 [50.7 kB] 414s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 414s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-17ubuntu1 [30.9 kB] 414s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-17ubuntu1 [2964 kB] 414s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-17ubuntu1 [1184 kB] 414s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 414s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 415s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 415s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 415s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 415s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 415s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 415s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 415s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 415s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 415s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 415s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x dctrl-tools s390x 2.24-3build3 [106 kB] 415s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 415s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 415s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 415s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-1.1ubuntu2 [37.4 kB] 415s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-1.1ubuntu2 [150 kB] 415s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-1.1ubuntu2 [191 kB] 415s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-font-awesome all 5.0.10+really4.7.0~dfsg-4.1 [516 kB] 415s Get:31 http://ftpmaster.internal/ubuntu plucky/universe s390x fonts-glyphicons-halflings all 1.009~3.4.1+dfsg-3 [118 kB] 415s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-mathjax all 2.7.9+dfsg-1 [2208 kB] 415s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran5 s390x 14.2.0-17ubuntu1 [588 kB] 415s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran-14-dev s390x 14.2.0-17ubuntu1 [654 kB] 415s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x gfortran-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [10.3 MB] 415s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x gfortran-14 s390x 14.2.0-17ubuntu1 [13.6 kB] 415s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x gfortran-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1012 B] 415s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x gfortran s390x 4:14.2.0-1ubuntu1 [1160 B] 415s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x icu-devtools s390x 76.1-1ubuntu2 [225 kB] 415s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x javascript-common all 11+nmu1 [5936 B] 415s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libsuitesparseconfig7 s390x 1:7.8.3+dfsg-3 [13.2 kB] 415s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x libamd3 s390x 1:7.8.3+dfsg-3 [35.1 kB] 415s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libblas3 s390x 3.12.1-2 [252 kB] 415s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libblas-dev s390x 3.12.1-2 [254 kB] 416s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x libboost1.83-dev s390x 1.83.0-4.1ubuntu1 [10.7 MB] 416s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libboost-dev s390x 1.83.0.2ubuntu1 [4470 B] 416s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libbz2-dev s390x 1.0.8-6 [39.1 kB] 416s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-0 s390x 0.44.0-3 [201 kB] 416s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 416s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 416s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 416s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo2 s390x 1.18.2-2 [580 kB] 416s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libcolamd3 s390x 1:7.8.3+dfsg-3 [23.4 kB] 416s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libdatrie1 s390x 0.2.13-3build1 [20.6 kB] 416s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 416s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate-dev s390x 1.23-1 [52.2 kB] 416s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libfftw3-double3 s390x 3.3.10-2fakesync1build1 [511 kB] 416s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libltdl7 s390x 2.5.4-3build1 [43.9 kB] 416s Get:59 http://ftpmaster.internal/ubuntu plucky/universe s390x libglpk40 s390x 5.0-1build2 [406 kB] 416s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 416s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 416s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 416s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 416s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libicu-dev s390x 76.1-1ubuntu2 [12.2 MB] 416s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 416s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8-dev s390x 2.1.5-3ubuntu2 [281 kB] 416s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 416s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8-dev s390x 8c-2ubuntu11 [1484 B] 416s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-dev s390x 8c-2ubuntu11 [1484 B] 416s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-bootstrap all 3.4.1+dfsg-3 [129 kB] 416s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-popper.js all 1.16.1+ds-6 [54.1 kB] 416s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-bootstrap4 all 4.6.1+dfsg1-4 [537 kB] 416s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-d3 all 3.5.17-4 [132 kB] 416s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-es5-shim all 4.6.7-2 [39.8 kB] 416s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-highlight.js all 9.18.5+dfsg1-2 [385 kB] 416s Get:76 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 416s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-datatables all 1.11.5+dfsg-2 [146 kB] 416s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-sifter.js all 0.6.0+dfsg-3 [12.6 kB] 416s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-microplugin.js all 0.0.3+dfsg-1.1 [3712 B] 416s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-selectize.js all 0.12.6+dfsg-1.1 [51.0 kB] 416s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-ui all 1.13.2+dfsg-1 [252 kB] 416s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-json all 0~20221030+~1.0.8-1 [20.6 kB] 416s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-prettify all 2015.12.04+dfsg-1.1 [39.3 kB] 416s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack3 s390x 3.12.1-2 [2971 kB] 416s Get:85 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack-dev s390x 3.12.1-2 [5967 kB] 417s Get:86 http://ftpmaster.internal/ubuntu plucky/main s390x liblua5.4-0 s390x 5.4.7-1 [174 kB] 417s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x libncurses-dev s390x 6.5+20250125-2 [407 kB] 417s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x libthai-data all 0.1.29-2build1 [158 kB] 417s Get:89 http://ftpmaster.internal/ubuntu plucky/main s390x libthai0 s390x 0.1.29-2build1 [20.7 kB] 417s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x libpango-1.0-0 s390x 1.56.1-1 [253 kB] 417s Get:91 http://ftpmaster.internal/ubuntu plucky/main s390x libpangoft2-1.0-0 s390x 1.56.1-1 [50.3 kB] 417s Get:92 http://ftpmaster.internal/ubuntu plucky/main s390x libpangocairo-1.0-0 s390x 1.56.1-1 [28.3 kB] 417s Get:93 http://ftpmaster.internal/ubuntu plucky/main s390x libpaper2 s390x 2.2.5-0.3 [17.2 kB] 417s Get:94 http://ftpmaster.internal/ubuntu plucky/main s390x libpaper-utils s390x 2.2.5-0.3 [15.3 kB] 417s Get:95 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 417s Get:96 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-32-0 s390x 10.42-4ubuntu3 [221 kB] 417s Get:97 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-posix3 s390x 10.42-4ubuntu3 [6820 B] 417s Get:98 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-dev s390x 10.42-4ubuntu3 [815 kB] 417s Get:99 http://ftpmaster.internal/ubuntu plucky/main s390x libpkgconf3 s390x 1.8.1-4 [31.2 kB] 417s Get:100 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 417s Get:101 http://ftpmaster.internal/ubuntu plucky/main s390x libpng-dev s390x 1.6.46-4 [283 kB] 417s Get:102 http://ftpmaster.internal/ubuntu plucky/main s390x libreadline-dev s390x 8.2-6 [187 kB] 417s Get:103 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 417s Get:104 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 417s Get:105 http://ftpmaster.internal/ubuntu plucky/main s390x libtcl8.6 s390x 8.6.16+dfsg-1 [1034 kB] 417s Get:106 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 417s Get:107 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 417s Get:108 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 417s Get:109 http://ftpmaster.internal/ubuntu plucky/main s390x libxft2 s390x 2.3.6-1build1 [49.6 kB] 417s Get:110 http://ftpmaster.internal/ubuntu plucky/main s390x libxss1 s390x 1:1.2.3-1build3 [7396 B] 417s Get:111 http://ftpmaster.internal/ubuntu plucky/main s390x libtk8.6 s390x 8.6.16-1 [830 kB] 417s Get:112 http://ftpmaster.internal/ubuntu plucky/main s390x libxt6t64 s390x 1:1.2.1-1.2build1 [184 kB] 417s Get:113 http://ftpmaster.internal/ubuntu plucky/main s390x zip s390x 3.0-14ubuntu2 [187 kB] 417s Get:114 http://ftpmaster.internal/ubuntu plucky/main s390x unzip s390x 6.0-28ubuntu6 [186 kB] 417s Get:115 http://ftpmaster.internal/ubuntu plucky/main s390x xdg-utils all 1.2.1-2ubuntu1 [66.0 kB] 417s Get:116 http://ftpmaster.internal/ubuntu plucky/universe s390x r-base-core s390x 4.4.2-1build1 [28.6 MB] 418s Get:117 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-littler s390x 0.3.20-2 [95.0 kB] 418s Get:118 http://ftpmaster.internal/ubuntu plucky/universe s390x littler all 0.3.20-2 [2554 B] 418s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x node-bootstrap-sass all 3.4.3-2 [187 kB] 418s Get:120 http://ftpmaster.internal/ubuntu plucky/universe s390x node-html5shiv all 3.7.3+dfsg-5 [13.5 kB] 418s Get:121 http://ftpmaster.internal/ubuntu plucky/universe s390x node-normalize.css all 8.0.1-5 [10.8 kB] 418s Get:122 http://ftpmaster.internal/ubuntu plucky/universe s390x pandoc-data all 3.1.11.1-3build1 [78.8 kB] 418s Get:123 http://ftpmaster.internal/ubuntu plucky/universe s390x pandoc s390x 3.1.11.1+ds-2 [52.5 MB] 420s Get:124 http://ftpmaster.internal/ubuntu plucky/main s390x liblzma-dev s390x 5.6.3-1 [183 kB] 420s Get:125 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf-bin s390x 1.8.1-4 [21.5 kB] 420s Get:126 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf s390x 1.8.1-4 [16.7 kB] 420s Get:127 http://ftpmaster.internal/ubuntu plucky/main s390x libtirpc-dev s390x 1.3.4+ds-1.3 [196 kB] 420s Get:128 http://ftpmaster.internal/ubuntu plucky/universe s390x r-base-dev all 4.4.2-1build1 [4342 B] 420s Get:129 http://ftpmaster.internal/ubuntu plucky/universe s390x pkg-r-autopkgtest all 20231212ubuntu1 [6448 B] 420s Get:130 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-biocgenerics all 0.52.0-2 [624 kB] 420s Get:131 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-biobase s390x 2.66.0-2 [2339 kB] 420s Get:132 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-s4vectors s390x 0.44.0+dfsg-2 [2063 kB] 420s Get:133 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-biocio all 1.16.0+dfsg-2 [209 kB] 420s Get:134 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-formatr all 1.14-2 [152 kB] 420s Get:135 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-lambda.r all 1.2.4-2build1 [119 kB] 420s Get:136 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-futile.options all 1.0.1-3build1 [20.2 kB] 420s Get:137 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-futile.logger all 1.4.3-4build1 [99.3 kB] 420s Get:138 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-snow all 1:0.4.4-2 [97.6 kB] 420s Get:139 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-codetools all 0.2-20-1 [90.5 kB] 420s Get:140 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-bh all 1.84.0-1 [5962 B] 420s Get:141 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-cpp11 all 0.5.1-1 [233 kB] 420s Get:142 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-biocparallel s390x 1.40.0-2 [1347 kB] 420s Get:143 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-iranges s390x 2.40.1-2 [2301 kB] 420s Get:144 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-zlibbioc all 1.52.0+dfsg-2 [10.2 kB] 420s Get:145 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-xvector s390x 0.46.0-2 [624 kB] 420s Get:146 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-curl s390x 6.1.0+dfsg-1 [195 kB] 420s Get:147 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-jsonlite s390x 1.8.9+dfsg-1 [447 kB] 420s Get:148 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-mime s390x 0.12-2 [35.8 kB] 420s Get:149 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-sys s390x 3.4.3-1 [45.2 kB] 420s Get:150 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-askpass s390x 1.2.1-1 [24.8 kB] 420s Get:151 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-openssl s390x 2.2.0+dfsg-1 [405 kB] 420s Get:152 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-r6 all 2.5.1-1 [99.0 kB] 420s Get:153 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-httr all 1.4.7+dfsg-1 [459 kB] 420s Get:154 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-ucsc.utils all 1.2.0+ds-2 [77.2 kB] 420s Get:155 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-genomeinfodbdata all 1.2.13-2 [12.9 MB] 420s Get:156 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-genomeinfodb all 1.42.3+dfsg-1 [3887 kB] 420s Get:157 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-crayon all 1.5.3-1 [165 kB] 420s Get:158 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-biostrings s390x 2.74.1+dfsg-2 [13.3 MB] 421s Get:159 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-lattice s390x 0.22-6-1 [1340 kB] 421s Get:160 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-matrix s390x 1.7-2-1 [4441 kB] 421s Get:161 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-matrixstats s390x 1.5.0-1 [539 kB] 421s Get:162 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-matrixgenerics all 1.18.1-1 [450 kB] 421s Get:163 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-abind all 1.4-8-1 [66.9 kB] 421s Get:164 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-s4arrays s390x 1.6.0+dfsg-2 [700 kB] 421s Get:165 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-sparsearray s390x 1.6.1+dfsg-1 [1386 kB] 421s Get:166 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-delayedarray s390x 0.32.0+dfsg-2 [2068 kB] 421s Get:167 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-genomicranges s390x 1.58.0+dfsg-2 [2087 kB] 421s Get:168 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-summarizedexperiment all 1.36.0+dfsg-2 [1109 kB] 421s Get:169 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-locfit s390x 1.5-9.11-1 [538 kB] 421s Get:170 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-cli s390x 3.6.3-1 [1349 kB] 421s Get:171 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-glue s390x 1.8.0-1 [164 kB] 421s Get:172 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rlang s390x 1.1.5-1 [1713 kB] 421s Get:173 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-lifecycle all 1.0.4+dfsg-1 [110 kB] 421s Get:174 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-gtable all 0.3.6+dfsg-1 [199 kB] 421s Get:175 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-isoband s390x 0.2.7-1 [1481 kB] 421s Get:176 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-mass s390x 7.3-64-1 [1113 kB] 421s Get:177 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-nlme s390x 3.1.167-1 [2323 kB] 421s Get:178 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-mgcv s390x 1.9-1-1 [3348 kB] 421s Get:179 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-farver s390x 2.1.2-1 [1353 kB] 421s Get:180 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-labeling all 0.4.3-1 [62.1 kB] 421s Get:181 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-colorspace s390x 2.1-1+dfsg-1 [1567 kB] 421s Get:182 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-munsell all 0.5.1-1 [213 kB] 421s Get:183 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rcolorbrewer all 1.1-3-1build1 [55.4 kB] 421s Get:184 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-viridislite all 0.4.2-2 [1088 kB] 421s Get:185 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-scales all 1.3.0-1 [603 kB] 421s Get:186 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-fansi s390x 1.0.5-1 [615 kB] 421s Get:187 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-magrittr s390x 2.0.3-1 [154 kB] 421s Get:188 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-utf8 s390x 1.2.4-1 [143 kB] 421s Get:189 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-vctrs s390x 0.6.5-1 [1448 kB] 422s Get:190 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-pillar all 1.10.1+dfsg-1 [453 kB] 422s Get:191 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-pkgconfig all 2.0.3-2build1 [19.7 kB] 422s Get:192 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-tibble s390x 3.2.1+dfsg-3 [420 kB] 422s Get:193 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-withr all 3.0.2+dfsg-1 [214 kB] 422s Get:194 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-ggplot2 all 3.5.1+dfsg-1 [3940 kB] 422s Get:195 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-pkgkitten all 0.2.4-1 [27.2 kB] 422s Get:196 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rcpp s390x 1.0.14-1 [2003 kB] 422s Get:197 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rcpparmadillo s390x 14.2.3-1-1 [851 kB] 422s Get:198 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-deseq2 s390x 1.46.0+dfsg-2 [1246 kB] 422s Get:199 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-bitops s390x 1.0-9-1 [30.1 kB] 422s Get:200 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-rhtslib s390x 3.2.0+dfsg-2 [1458 kB] 422s Get:201 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-rsamtools s390x 2.22.0+dfsg-2 [3729 kB] 422s Get:202 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-genomicalignments s390x 1.42.0-2 [2152 kB] 422s Get:203 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-statmod s390x 1.5.0-1 [294 kB] 422s Get:204 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-limma s390x 3.62.2+dfsg-1 [1973 kB] 423s Get:205 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-survival s390x 3.8-3-1 [8250 kB] 423s Get:206 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-multtest s390x 2.62.0-2 [848 kB] 423s Get:207 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-xml s390x 3.99-0.18-1 [1744 kB] 423s Get:208 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rcurl s390x 1.98-1.16+dfsg-1 [808 kB] 423s Get:209 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rjson s390x 0.2.23-1 [104 kB] 423s Get:210 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-yaml s390x 2.3.10-1 [113 kB] 423s Get:211 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-restfulr s390x 0.0.15-1 [380 kB] 423s Get:212 http://ftpmaster.internal/ubuntu plucky/universe s390x r-bioc-rtracklayer s390x 1.66.0-2 [5235 kB] 423s Get:213 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-digest s390x 0.6.37-1 [205 kB] 423s Get:214 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-ape s390x 5.8-1-1 [2921 kB] 423s Get:215 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-base64enc s390x 0.1-3-3 [28.0 kB] 423s Get:216 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-brio s390x 1.1.5-1 [38.6 kB] 423s Get:217 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-fastmap s390x 1.2.0-1 [72.4 kB] 423s Get:218 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-cachem s390x 1.1.0-1 [74.0 kB] 423s Get:219 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-htmltools s390x 0.5.8.1-1 [372 kB] 423s Get:220 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-jquerylib all 0.1.4+dfsg-4 [13.5 kB] 423s Get:221 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-memoise all 2.0.1-1 [53.9 kB] 424s Get:222 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-fs s390x 1.6.5+dfsg-1 [245 kB] 424s Get:223 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rappdirs s390x 0.3.3-1 [47.5 kB] 424s Get:224 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-sass s390x 0.4.9+dfsg-1 [1019 kB] 424s Get:225 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-bslib all 0.8.0+dfsg-1 [4294 kB] 424s Get:226 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-ps s390x 1.8.1-1 [395 kB] 424s Get:227 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-processx s390x 3.8.5-1 [354 kB] 424s Get:228 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-callr all 3.7.6-1 [458 kB] 424s Get:229 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-class s390x 7.3-23-1 [92.0 kB] 424s Get:230 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-proxy s390x 0.4-27-1 [182 kB] 424s Get:231 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-e1071 s390x 1.7-16-1 [572 kB] 424s Get:232 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-iterators all 1.0.14-1 [336 kB] 424s Get:233 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-foreach all 1.5.2-1 [124 kB] 424s Get:234 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-data.table s390x 1.16.4+dfsg-1 [2032 kB] 424s Get:235 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-modelmetrics s390x 1.2.2.2-1build1 [122 kB] 424s Get:236 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-plyr s390x 1.8.9-1 [835 kB] 424s Get:237 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-proc s390x 1.18.5-1 [968 kB] 424s Get:238 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-generics all 0.1.3-1 [81.3 kB] 424s Get:239 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-tidyselect s390x 1.2.1+dfsg-1 [222 kB] 424s Get:240 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-dplyr s390x 1.1.4-4 [1537 kB] 424s Get:241 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-tzdb s390x 0.4.0-2 [514 kB] 424s Get:242 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-clock s390x 0.7.1-1 [1842 kB] 424s Get:243 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-gower s390x 1.0.2-1 [209 kB] 424s Get:244 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-hardhat all 1.4.0+dfsg-1 [565 kB] 424s Get:245 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rpart s390x 4.1.24-1 [672 kB] 424s Get:246 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-nnet s390x 7.3-20-1 [116 kB] 424s Get:247 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-shape all 1.4.6.1-1 [749 kB] 424s Get:248 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-diagram all 1.6.5-2 [656 kB] 424s Get:249 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-kernsmooth s390x 2.23-26-1 [94.7 kB] 424s Get:250 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-globals all 0.16.3-1 [120 kB] 424s Get:251 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-listenv all 0.9.1+dfsg-1 [112 kB] 424s Get:252 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-parallelly s390x 1.42.0-1 [540 kB] 424s Get:253 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-future all 1.34.0+dfsg-1 [646 kB] 424s Get:254 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-future.apply all 1.11.3+dfsg-1 [175 kB] 424s Get:255 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-numderiv all 2016.8-1.1-3 [115 kB] 424s Get:256 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-progressr all 0.15.1-1 [353 kB] 424s Get:257 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-squarem all 2021.1-1 [179 kB] 424s Get:258 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-lava all 1.8.1+dfsg-1 [2191 kB] 425s Get:259 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-prodlim s390x 2024.06.25-1 [419 kB] 425s Get:260 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-ipred s390x 0.9-15-1 [386 kB] 425s Get:261 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-timechange s390x 0.3.0-1 [185 kB] 425s Get:262 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-lubridate s390x 1.9.4+dfsg-1 [1010 kB] 425s Get:263 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-purrr s390x 1.0.2-1 [501 kB] 425s Get:264 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-stringi s390x 1.8.4-1build1 [917 kB] 425s Get:265 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-stringr all 1.5.1-1 [290 kB] 425s Get:266 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-tidyr s390x 1.3.1-1 [1157 kB] 425s Get:267 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-timedate s390x 4041.110-1 [1209 kB] 425s Get:268 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-recipes all 1.1.0+dfsg-1 [2035 kB] 425s Get:269 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-reshape2 s390x 1.4.4-2build1 [111 kB] 425s Get:270 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-caret s390x 7.0-1+dfsg-1 [3461 kB] 425s Get:271 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-catools s390x 1.18.2-1 [201 kB] 425s Get:272 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-cluster s390x 2.1.8-1 [577 kB] 425s Get:273 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-evaluate all 1.0.3-1 [114 kB] 425s Get:274 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-xfun s390x 0.50+dfsg-1 [568 kB] 425s Get:275 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-highr all 0.11+dfsg-1 [38.5 kB] 425s Get:276 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-mathjax all 2.7.9+dfsg-1 [5665 kB] 425s Get:277 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-knitr all 1.49+dfsg-1 [859 kB] 425s Get:278 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-fontawesome all 0.5.3-1 [1331 kB] 425s Get:279 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-tinytex all 0.54-1 [147 kB] 425s Get:280 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-modernizr all 3.13.0-0.1 [101 kB] 425s Get:281 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-later s390x 1.4.1+dfsg-1 [148 kB] 425s Get:282 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-promises s390x 1.3.2+dfsg-1 [296 kB] 426s Get:283 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-httpuv s390x 1.6.15+dfsg-1 [507 kB] 426s Get:284 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-xtable all 1:1.8-4-2 [689 kB] 426s Get:285 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-sourcetools s390x 0.1.7-1-1 [47.1 kB] 426s Get:286 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-commonmark s390x 1.9.2-2 [142 kB] 426s Get:287 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-twitter-bootstrap-datepicker all 1.3.1+dfsg1-4.1 [28.5 kB] 426s Get:288 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-shiny all 1.10.0+dfsg-2 [3124 kB] 426s Get:289 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rmarkdown all 2.29+dfsg-1 [1501 kB] 426s Get:290 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-htmlwidgets all 1.6.4+dfsg-1 [123 kB] 426s Get:291 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-miniui all 0.1.1.1-3build1 [36.1 kB] 426s Get:292 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-shinyjs all 2.1.0-1 [967 kB] 426s Get:293 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-colourpicker all 1.3.0+dfsg-1 [1191 kB] 426s Get:294 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-conquer s390x 1.3.3-1 [459 kB] 426s Get:295 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-cowplot all 1.1.3+dfsg-1 [614 kB] 426s Get:296 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-lazyeval s390x 0.2.2-1build1 [143 kB] 426s Get:297 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-crosstalk all 1.2.1+dfsg-1 [177 kB] 426s Get:298 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-deldir s390x 2.0-4-1build1 [271 kB] 426s Get:299 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-deoptimr all 1.1-3-1-1 [76.6 kB] 426s Get:300 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-desc all 1.4.3-1 [359 kB] 426s Get:301 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-diffobj s390x 0.3.5-1 [1115 kB] 426s Get:302 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-dotcall64 s390x 1.2-1 [36.6 kB] 426s Get:303 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-sitmo s390x 2.0.2-1 [129 kB] 426s Get:304 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-dqrng s390x 0.3.2+dfsg-1 [165 kB] 426s Get:305 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-fastdummies all 1.7.5-1 [51.1 kB] 426s Get:306 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-fitdistrplus all 1.2-2-1 [2287 kB] 427s Get:307 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-fnn s390x 1.1.4.1-1 [132 kB] 427s Get:308 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-gtools s390x 3.9.5-1 [340 kB] 427s Get:309 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-gdata all 3.0.1-1 [491 kB] 427s Get:310 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-ggrepel s390x 0.9.6-1 [271 kB] 427s Get:311 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-ggridges all 0.5.6-1 [2195 kB] 427s Get:312 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-goftest s390x 1.2-3-1 [59.2 kB] 427s Get:313 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-gplots all 3.2.0-1 [484 kB] 427s Get:314 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-gridextra all 2.3-3build1 [1024 kB] 427s Get:315 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rprojroot all 2.0.4-2 [125 kB] 427s Get:316 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-here all 1.0.1-2 [50.3 kB] 427s Get:317 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-ica all 1.0-3-1 [85.4 kB] 427s Get:318 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-igraph s390x 2.1.4-1 [5311 kB] 427s Get:319 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-irlba s390x 2.3.5.1-4 [296 kB] 427s Get:320 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-kernlab s390x 0.9-33-1 [1963 kB] 427s Get:321 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rcpptoml s390x 0.2.2+dfsg-1 [108 kB] 427s Get:322 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-png s390x 0.1-8-1build2 [41.5 kB] 427s Get:323 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-reticulate s390x 1.39.0+dfsg-1 [1239 kB] 427s Get:324 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-leiden all 0.4.3.1+dfsg-1 [71.9 kB] 427s Get:325 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-zoo s390x 1.8-12-2 [984 kB] 427s Get:326 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-lmtest s390x 0.9.40-1 [396 kB] 427s Get:327 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-mathjaxr all 1.6-0-1 [605 kB] 427s Get:328 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-matrixmodels all 0.5-3-1 [361 kB] 427s Get:329 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rbibutils s390x 2.3-1 [1041 kB] 427s Get:330 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rdpack all 2.6.2-1 [757 kB] 427s Get:331 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-mnormt s390x 2.1.1-2 [169 kB] 427s Get:332 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-sparsem s390x 1.84-2-1 [826 kB] 428s Get:333 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-quantreg s390x 6.00-1 [1457 kB] 428s Get:334 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-sn all 2.1.1-2 [1815 kB] 428s Get:335 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-mvtnorm s390x 1.3-3-1 [924 kB] 428s Get:336 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-tfisher all 0.2.0-3 [79.8 kB] 428s Get:337 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-plotrix all 3.8-4-1 [1120 kB] 428s Get:338 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-th.data all 1.1-3-1 [8723 kB] 428s Get:339 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-sandwich all 3.1-1-1 [1483 kB] 428s Get:340 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-multcomp all 1.4-28-1 [700 kB] 428s Get:341 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-mutoss all 0.1-13-1 [1123 kB] 428s Get:342 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-robustbase s390x 0.99-4-1-1 [3059 kB] 428s Get:343 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-qqconf s390x 1.3.2+dfsg-1 [156 kB] 428s Get:344 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-metap all 1.11-2 [570 kB] 428s Get:345 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-plotly all 4.10.4+dfsg-2 [3666 kB] 429s Get:346 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-segmented all 2.1-3-1 [1366 kB] 429s Get:347 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-mixtools s390x 2.0.0-1 [1399 kB] 429s Get:348 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-patchwork all 1.3.0-1 [3220 kB] 429s Get:349 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-pbapply all 1.7-2-1 [102 kB] 429s Get:350 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-pkgbuild all 1.4.6-1 [213 kB] 429s Get:351 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-pkgload all 1.4.0-1 [247 kB] 429s Get:352 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-polyclip s390x 1.10-7-1 [120 kB] 429s Get:353 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-praise all 1.0.0-4build1 [20.3 kB] 429s Get:354 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-r.methodss3 all 1.8.2-1 [84.0 kB] 429s Get:355 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-r.oo all 1.27.0-1 [979 kB] 429s Get:356 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-r.utils all 2.12.3-1 [1386 kB] 429s Get:357 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rann s390x 2.6.2-1 [48.8 kB] 429s Get:358 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rcppannoy s390x 0.0.22-1 [246 kB] 429s Get:359 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rcppeigen s390x 0.3.4.0.2-1 [1429 kB] 429s Get:360 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rcpphnsw s390x 0.6.0+ds-1 [187 kB] 429s Get:361 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rcppprogress all 0.4.2-2build1 [22.0 kB] 429s Get:362 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rocr all 1.0-11-3 [456 kB] 429s Get:363 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rspectra s390x 0.16-2-1 [473 kB] 429s Get:364 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rsvd all 1.0.5-1 [3589 kB] 429s Get:365 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rtsne s390x 0.17-1 [118 kB] 429s Get:366 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-scattermore s390x 1.2-1 [330 kB] 429s Get:367 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-sctransform s390x 0.4.1-1 [509 kB] 429s Get:368 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-sp s390x 1:2.1-4+dfsg-1 [1472 kB] 429s Get:369 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-spam s390x 2.11-1-1 [2756 kB] 429s Get:370 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-seuratobject s390x 5.0.2-1 [1786 kB] 430s Get:371 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-spatstat.utils s390x 3.1-2-1 [382 kB] 430s Get:372 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-spatstat.data all 3.1-4-1 [4047 kB] 430s Get:373 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-spatstat.geom s390x 3.2-9-2 [3962 kB] 430s Get:374 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-spatstat.random s390x 3.2-3-1 [1175 kB] 430s Get:375 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-tensor all 1.5-4 [15.7 kB] 430s Get:376 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-spatstat.sparse s390x 3.1-0-1 [221 kB] 430s Get:377 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-spatstat.explore s390x 3.2-7-1 [3437 kB] 430s Get:378 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-uwot s390x 0.2.2-2 [954 kB] 430s Get:379 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-seurat s390x 5.0.1-1 [3551 kB] 430s Get:380 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-waldo all 0.6.1-2 [150 kB] 430s Get:381 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-testthat s390x 3.2.1.1-1 [1638 kB] 430s Get:382 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-vgam s390x 1.1-12-1 [7658 kB] 432s Preconfiguring packages ... 432s Fetched 462 MB in 18s (26.3 MB/s) 432s Selecting previously unselected package libisl23:s390x. 432s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 432s Preparing to unpack .../000-libisl23_0.27-1_s390x.deb ... 432s Unpacking libisl23:s390x (0.27-1) ... 432s Selecting previously unselected package libmpc3:s390x. 432s Preparing to unpack .../001-libmpc3_1.3.1-1build2_s390x.deb ... 432s Unpacking libmpc3:s390x (1.3.1-1build2) ... 432s Selecting previously unselected package cpp-14-s390x-linux-gnu. 432s Preparing to unpack .../002-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 432s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 432s Selecting previously unselected package cpp-14. 432s Preparing to unpack .../003-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 432s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 432s Selecting previously unselected package cpp-s390x-linux-gnu. 432s Preparing to unpack .../004-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 432s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 432s Selecting previously unselected package cpp. 432s Preparing to unpack .../005-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 432s Unpacking cpp (4:14.2.0-1ubuntu1) ... 432s Selecting previously unselected package libcc1-0:s390x. 432s Preparing to unpack .../006-libcc1-0_14.2.0-17ubuntu1_s390x.deb ... 432s Unpacking libcc1-0:s390x (14.2.0-17ubuntu1) ... 432s Selecting previously unselected package libgomp1:s390x. 432s Preparing to unpack .../007-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 432s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 432s Selecting previously unselected package libitm1:s390x. 432s Preparing to unpack .../008-libitm1_14.2.0-17ubuntu1_s390x.deb ... 432s Unpacking libitm1:s390x (14.2.0-17ubuntu1) ... 432s Selecting previously unselected package libasan8:s390x. 432s Preparing to unpack .../009-libasan8_14.2.0-17ubuntu1_s390x.deb ... 432s Unpacking libasan8:s390x (14.2.0-17ubuntu1) ... 432s Selecting previously unselected package libubsan1:s390x. 432s Preparing to unpack .../010-libubsan1_14.2.0-17ubuntu1_s390x.deb ... 432s Unpacking libubsan1:s390x (14.2.0-17ubuntu1) ... 432s Selecting previously unselected package libgcc-14-dev:s390x. 432s Preparing to unpack .../011-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 432s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 432s Selecting previously unselected package gcc-14-s390x-linux-gnu. 432s Preparing to unpack .../012-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 432s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 433s Selecting previously unselected package gcc-14. 433s Preparing to unpack .../013-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 433s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 433s Selecting previously unselected package gcc-s390x-linux-gnu. 433s Preparing to unpack .../014-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 433s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 433s Selecting previously unselected package gcc. 433s Preparing to unpack .../015-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 433s Unpacking gcc (4:14.2.0-1ubuntu1) ... 433s Selecting previously unselected package libstdc++-14-dev:s390x. 433s Preparing to unpack .../016-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 433s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 433s Selecting previously unselected package g++-14-s390x-linux-gnu. 433s Preparing to unpack .../017-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 433s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 433s Selecting previously unselected package g++-14. 433s Preparing to unpack .../018-g++-14_14.2.0-17ubuntu1_s390x.deb ... 433s Unpacking g++-14 (14.2.0-17ubuntu1) ... 433s Selecting previously unselected package g++-s390x-linux-gnu. 433s Preparing to unpack .../019-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 433s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 433s Selecting previously unselected package g++. 433s Preparing to unpack .../020-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 433s Unpacking g++ (4:14.2.0-1ubuntu1) ... 433s Selecting previously unselected package build-essential. 433s Preparing to unpack .../021-build-essential_12.10ubuntu1_s390x.deb ... 433s Unpacking build-essential (12.10ubuntu1) ... 433s Selecting previously unselected package dctrl-tools. 433s Preparing to unpack .../022-dctrl-tools_2.24-3build3_s390x.deb ... 433s Unpacking dctrl-tools (2.24-3build3) ... 433s Selecting previously unselected package libfreetype6:s390x. 433s Preparing to unpack .../023-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 433s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 433s Selecting previously unselected package fonts-dejavu-mono. 433s Preparing to unpack .../024-fonts-dejavu-mono_2.37-8_all.deb ... 433s Unpacking fonts-dejavu-mono (2.37-8) ... 433s Selecting previously unselected package fonts-dejavu-core. 433s Preparing to unpack .../025-fonts-dejavu-core_2.37-8_all.deb ... 433s Unpacking fonts-dejavu-core (2.37-8) ... 433s Selecting previously unselected package fontconfig-config. 433s Preparing to unpack .../026-fontconfig-config_2.15.0-1.1ubuntu2_s390x.deb ... 433s Unpacking fontconfig-config (2.15.0-1.1ubuntu2) ... 433s Selecting previously unselected package libfontconfig1:s390x. 433s Preparing to unpack .../027-libfontconfig1_2.15.0-1.1ubuntu2_s390x.deb ... 433s Unpacking libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 433s Selecting previously unselected package fontconfig. 433s Preparing to unpack .../028-fontconfig_2.15.0-1.1ubuntu2_s390x.deb ... 433s Unpacking fontconfig (2.15.0-1.1ubuntu2) ... 433s Selecting previously unselected package fonts-font-awesome. 433s Preparing to unpack .../029-fonts-font-awesome_5.0.10+really4.7.0~dfsg-4.1_all.deb ... 433s Unpacking fonts-font-awesome (5.0.10+really4.7.0~dfsg-4.1) ... 433s Selecting previously unselected package fonts-glyphicons-halflings. 433s Preparing to unpack .../030-fonts-glyphicons-halflings_1.009~3.4.1+dfsg-3_all.deb ... 433s Unpacking fonts-glyphicons-halflings (1.009~3.4.1+dfsg-3) ... 433s Selecting previously unselected package fonts-mathjax. 433s Preparing to unpack .../031-fonts-mathjax_2.7.9+dfsg-1_all.deb ... 433s Unpacking fonts-mathjax (2.7.9+dfsg-1) ... 433s Selecting previously unselected package libgfortran5:s390x. 433s Preparing to unpack .../032-libgfortran5_14.2.0-17ubuntu1_s390x.deb ... 433s Unpacking libgfortran5:s390x (14.2.0-17ubuntu1) ... 434s Selecting previously unselected package libgfortran-14-dev:s390x. 434s Preparing to unpack .../033-libgfortran-14-dev_14.2.0-17ubuntu1_s390x.deb ... 434s Unpacking libgfortran-14-dev:s390x (14.2.0-17ubuntu1) ... 434s Selecting previously unselected package gfortran-14-s390x-linux-gnu. 434s Preparing to unpack .../034-gfortran-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 434s Unpacking gfortran-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 434s Selecting previously unselected package gfortran-14. 434s Preparing to unpack .../035-gfortran-14_14.2.0-17ubuntu1_s390x.deb ... 434s Unpacking gfortran-14 (14.2.0-17ubuntu1) ... 434s Selecting previously unselected package gfortran-s390x-linux-gnu. 434s Preparing to unpack .../036-gfortran-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 434s Unpacking gfortran-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 434s Selecting previously unselected package gfortran. 434s Preparing to unpack .../037-gfortran_4%3a14.2.0-1ubuntu1_s390x.deb ... 434s Unpacking gfortran (4:14.2.0-1ubuntu1) ... 434s Selecting previously unselected package icu-devtools. 434s Preparing to unpack .../038-icu-devtools_76.1-1ubuntu2_s390x.deb ... 434s Unpacking icu-devtools (76.1-1ubuntu2) ... 434s Selecting previously unselected package javascript-common. 434s Preparing to unpack .../039-javascript-common_11+nmu1_all.deb ... 434s Unpacking javascript-common (11+nmu1) ... 434s Selecting previously unselected package libsuitesparseconfig7:s390x. 434s Preparing to unpack .../040-libsuitesparseconfig7_1%3a7.8.3+dfsg-3_s390x.deb ... 434s Unpacking libsuitesparseconfig7:s390x (1:7.8.3+dfsg-3) ... 434s Selecting previously unselected package libamd3:s390x. 434s Preparing to unpack .../041-libamd3_1%3a7.8.3+dfsg-3_s390x.deb ... 434s Unpacking libamd3:s390x (1:7.8.3+dfsg-3) ... 434s Selecting previously unselected package libblas3:s390x. 434s Preparing to unpack .../042-libblas3_3.12.1-2_s390x.deb ... 434s Unpacking libblas3:s390x (3.12.1-2) ... 434s Selecting previously unselected package libblas-dev:s390x. 434s Preparing to unpack .../043-libblas-dev_3.12.1-2_s390x.deb ... 434s Unpacking libblas-dev:s390x (3.12.1-2) ... 434s Selecting previously unselected package libboost1.83-dev:s390x. 434s Preparing to unpack .../044-libboost1.83-dev_1.83.0-4.1ubuntu1_s390x.deb ... 434s Unpacking libboost1.83-dev:s390x (1.83.0-4.1ubuntu1) ... 435s Selecting previously unselected package libboost-dev:s390x. 435s Preparing to unpack .../045-libboost-dev_1.83.0.2ubuntu1_s390x.deb ... 435s Unpacking libboost-dev:s390x (1.83.0.2ubuntu1) ... 435s Selecting previously unselected package libbz2-dev:s390x. 435s Preparing to unpack .../046-libbz2-dev_1.0.8-6_s390x.deb ... 435s Unpacking libbz2-dev:s390x (1.0.8-6) ... 435s Selecting previously unselected package libpixman-1-0:s390x. 435s Preparing to unpack .../047-libpixman-1-0_0.44.0-3_s390x.deb ... 435s Unpacking libpixman-1-0:s390x (0.44.0-3) ... 435s Selecting previously unselected package libxcb-render0:s390x. 435s Preparing to unpack .../048-libxcb-render0_1.17.0-2_s390x.deb ... 435s Unpacking libxcb-render0:s390x (1.17.0-2) ... 435s Selecting previously unselected package libxcb-shm0:s390x. 435s Preparing to unpack .../049-libxcb-shm0_1.17.0-2_s390x.deb ... 435s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 435s Selecting previously unselected package libxrender1:s390x. 435s Preparing to unpack .../050-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 435s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 435s Selecting previously unselected package libcairo2:s390x. 435s Preparing to unpack .../051-libcairo2_1.18.2-2_s390x.deb ... 435s Unpacking libcairo2:s390x (1.18.2-2) ... 435s Selecting previously unselected package libcolamd3:s390x. 435s Preparing to unpack .../052-libcolamd3_1%3a7.8.3+dfsg-3_s390x.deb ... 435s Unpacking libcolamd3:s390x (1:7.8.3+dfsg-3) ... 435s Selecting previously unselected package libdatrie1:s390x. 435s Preparing to unpack .../053-libdatrie1_0.2.13-3build1_s390x.deb ... 435s Unpacking libdatrie1:s390x (0.2.13-3build1) ... 435s Selecting previously unselected package libdeflate0:s390x. 435s Preparing to unpack .../054-libdeflate0_1.23-1_s390x.deb ... 435s Unpacking libdeflate0:s390x (1.23-1) ... 435s Selecting previously unselected package libdeflate-dev:s390x. 435s Preparing to unpack .../055-libdeflate-dev_1.23-1_s390x.deb ... 435s Unpacking libdeflate-dev:s390x (1.23-1) ... 435s Selecting previously unselected package libfftw3-double3:s390x. 435s Preparing to unpack .../056-libfftw3-double3_3.3.10-2fakesync1build1_s390x.deb ... 435s Unpacking libfftw3-double3:s390x (3.3.10-2fakesync1build1) ... 435s Selecting previously unselected package libltdl7:s390x. 435s Preparing to unpack .../057-libltdl7_2.5.4-3build1_s390x.deb ... 435s Unpacking libltdl7:s390x (2.5.4-3build1) ... 435s Selecting previously unselected package libglpk40:s390x. 435s Preparing to unpack .../058-libglpk40_5.0-1build2_s390x.deb ... 435s Unpacking libglpk40:s390x (5.0-1build2) ... 435s Selecting previously unselected package libgraphite2-3:s390x. 435s Preparing to unpack .../059-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 435s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 435s Selecting previously unselected package libharfbuzz0b:s390x. 435s Preparing to unpack .../060-libharfbuzz0b_10.2.0-1_s390x.deb ... 435s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 435s Selecting previously unselected package x11-common. 435s Preparing to unpack .../061-x11-common_1%3a7.7+23ubuntu3_all.deb ... 435s Unpacking x11-common (1:7.7+23ubuntu3) ... 435s Selecting previously unselected package libice6:s390x. 435s Preparing to unpack .../062-libice6_2%3a1.1.1-1_s390x.deb ... 435s Unpacking libice6:s390x (2:1.1.1-1) ... 435s Selecting previously unselected package libicu-dev:s390x. 435s Preparing to unpack .../063-libicu-dev_76.1-1ubuntu2_s390x.deb ... 435s Unpacking libicu-dev:s390x (76.1-1ubuntu2) ... 436s Selecting previously unselected package libjpeg-turbo8:s390x. 436s Preparing to unpack .../064-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 436s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 436s Selecting previously unselected package libjpeg-turbo8-dev:s390x. 436s Preparing to unpack .../065-libjpeg-turbo8-dev_2.1.5-3ubuntu2_s390x.deb ... 436s Unpacking libjpeg-turbo8-dev:s390x (2.1.5-3ubuntu2) ... 436s Selecting previously unselected package libjpeg8:s390x. 436s Preparing to unpack .../066-libjpeg8_8c-2ubuntu11_s390x.deb ... 436s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 436s Selecting previously unselected package libjpeg8-dev:s390x. 436s Preparing to unpack .../067-libjpeg8-dev_8c-2ubuntu11_s390x.deb ... 436s Unpacking libjpeg8-dev:s390x (8c-2ubuntu11) ... 436s Selecting previously unselected package libjpeg-dev:s390x. 436s Preparing to unpack .../068-libjpeg-dev_8c-2ubuntu11_s390x.deb ... 436s Unpacking libjpeg-dev:s390x (8c-2ubuntu11) ... 436s Selecting previously unselected package libjs-bootstrap. 436s Preparing to unpack .../069-libjs-bootstrap_3.4.1+dfsg-3_all.deb ... 436s Unpacking libjs-bootstrap (3.4.1+dfsg-3) ... 436s Selecting previously unselected package libjs-popper.js. 436s Preparing to unpack .../070-libjs-popper.js_1.16.1+ds-6_all.deb ... 436s Unpacking libjs-popper.js (1.16.1+ds-6) ... 436s Selecting previously unselected package libjs-bootstrap4. 436s Preparing to unpack .../071-libjs-bootstrap4_4.6.1+dfsg1-4_all.deb ... 436s Unpacking libjs-bootstrap4 (4.6.1+dfsg1-4) ... 436s Selecting previously unselected package libjs-d3. 436s Preparing to unpack .../072-libjs-d3_3.5.17-4_all.deb ... 436s Unpacking libjs-d3 (3.5.17-4) ... 436s Selecting previously unselected package libjs-es5-shim. 436s Preparing to unpack .../073-libjs-es5-shim_4.6.7-2_all.deb ... 436s Unpacking libjs-es5-shim (4.6.7-2) ... 436s Selecting previously unselected package libjs-highlight.js. 436s Preparing to unpack .../074-libjs-highlight.js_9.18.5+dfsg1-2_all.deb ... 436s Unpacking libjs-highlight.js (9.18.5+dfsg1-2) ... 436s Selecting previously unselected package libjs-jquery. 436s Preparing to unpack .../075-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 436s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 436s Selecting previously unselected package libjs-jquery-datatables. 436s Preparing to unpack .../076-libjs-jquery-datatables_1.11.5+dfsg-2_all.deb ... 436s Unpacking libjs-jquery-datatables (1.11.5+dfsg-2) ... 436s Selecting previously unselected package libjs-sifter.js. 436s Preparing to unpack .../077-libjs-sifter.js_0.6.0+dfsg-3_all.deb ... 436s Unpacking libjs-sifter.js (0.6.0+dfsg-3) ... 436s Selecting previously unselected package libjs-microplugin.js. 436s Preparing to unpack .../078-libjs-microplugin.js_0.0.3+dfsg-1.1_all.deb ... 436s Unpacking libjs-microplugin.js (0.0.3+dfsg-1.1) ... 436s Selecting previously unselected package libjs-jquery-selectize.js. 436s Preparing to unpack .../079-libjs-jquery-selectize.js_0.12.6+dfsg-1.1_all.deb ... 436s Unpacking libjs-jquery-selectize.js (0.12.6+dfsg-1.1) ... 436s Selecting previously unselected package libjs-jquery-ui. 436s Preparing to unpack .../080-libjs-jquery-ui_1.13.2+dfsg-1_all.deb ... 436s Unpacking libjs-jquery-ui (1.13.2+dfsg-1) ... 436s Selecting previously unselected package libjs-json. 436s Preparing to unpack .../081-libjs-json_0~20221030+~1.0.8-1_all.deb ... 436s Unpacking libjs-json (0~20221030+~1.0.8-1) ... 436s Selecting previously unselected package libjs-prettify. 436s Preparing to unpack .../082-libjs-prettify_2015.12.04+dfsg-1.1_all.deb ... 436s Unpacking libjs-prettify (2015.12.04+dfsg-1.1) ... 436s Selecting previously unselected package liblapack3:s390x. 436s Preparing to unpack .../083-liblapack3_3.12.1-2_s390x.deb ... 436s Unpacking liblapack3:s390x (3.12.1-2) ... 436s Selecting previously unselected package liblapack-dev:s390x. 436s Preparing to unpack .../084-liblapack-dev_3.12.1-2_s390x.deb ... 436s Unpacking liblapack-dev:s390x (3.12.1-2) ... 436s Selecting previously unselected package liblua5.4-0:s390x. 436s Preparing to unpack .../085-liblua5.4-0_5.4.7-1_s390x.deb ... 436s Unpacking liblua5.4-0:s390x (5.4.7-1) ... 436s Selecting previously unselected package libncurses-dev:s390x. 436s Preparing to unpack .../086-libncurses-dev_6.5+20250125-2_s390x.deb ... 436s Unpacking libncurses-dev:s390x (6.5+20250125-2) ... 436s Selecting previously unselected package libthai-data. 436s Preparing to unpack .../087-libthai-data_0.1.29-2build1_all.deb ... 436s Unpacking libthai-data (0.1.29-2build1) ... 436s Selecting previously unselected package libthai0:s390x. 436s Preparing to unpack .../088-libthai0_0.1.29-2build1_s390x.deb ... 436s Unpacking libthai0:s390x (0.1.29-2build1) ... 436s Selecting previously unselected package libpango-1.0-0:s390x. 436s Preparing to unpack .../089-libpango-1.0-0_1.56.1-1_s390x.deb ... 436s Unpacking libpango-1.0-0:s390x (1.56.1-1) ... 436s Selecting previously unselected package libpangoft2-1.0-0:s390x. 436s Preparing to unpack .../090-libpangoft2-1.0-0_1.56.1-1_s390x.deb ... 436s Unpacking libpangoft2-1.0-0:s390x (1.56.1-1) ... 436s Selecting previously unselected package libpangocairo-1.0-0:s390x. 436s Preparing to unpack .../091-libpangocairo-1.0-0_1.56.1-1_s390x.deb ... 436s Unpacking libpangocairo-1.0-0:s390x (1.56.1-1) ... 436s Selecting previously unselected package libpaper2:s390x. 436s Preparing to unpack .../092-libpaper2_2.2.5-0.3_s390x.deb ... 436s Unpacking libpaper2:s390x (2.2.5-0.3) ... 436s Selecting previously unselected package libpaper-utils. 436s Preparing to unpack .../093-libpaper-utils_2.2.5-0.3_s390x.deb ... 436s Unpacking libpaper-utils (2.2.5-0.3) ... 436s Selecting previously unselected package libpcre2-16-0:s390x. 436s Preparing to unpack .../094-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 436s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 436s Selecting previously unselected package libpcre2-32-0:s390x. 437s Preparing to unpack .../095-libpcre2-32-0_10.42-4ubuntu3_s390x.deb ... 437s Unpacking libpcre2-32-0:s390x (10.42-4ubuntu3) ... 437s Selecting previously unselected package libpcre2-posix3:s390x. 437s Preparing to unpack .../096-libpcre2-posix3_10.42-4ubuntu3_s390x.deb ... 437s Unpacking libpcre2-posix3:s390x (10.42-4ubuntu3) ... 437s Selecting previously unselected package libpcre2-dev:s390x. 437s Preparing to unpack .../097-libpcre2-dev_10.42-4ubuntu3_s390x.deb ... 437s Unpacking libpcre2-dev:s390x (10.42-4ubuntu3) ... 437s Selecting previously unselected package libpkgconf3:s390x. 437s Preparing to unpack .../098-libpkgconf3_1.8.1-4_s390x.deb ... 437s Unpacking libpkgconf3:s390x (1.8.1-4) ... 437s Selecting previously unselected package zlib1g-dev:s390x. 437s Preparing to unpack .../099-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 437s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 437s Selecting previously unselected package libpng-dev:s390x. 437s Preparing to unpack .../100-libpng-dev_1.6.46-4_s390x.deb ... 437s Unpacking libpng-dev:s390x (1.6.46-4) ... 437s Selecting previously unselected package libreadline-dev:s390x. 437s Preparing to unpack .../101-libreadline-dev_8.2-6_s390x.deb ... 437s Unpacking libreadline-dev:s390x (8.2-6) ... 437s Selecting previously unselected package libsharpyuv0:s390x. 437s Preparing to unpack .../102-libsharpyuv0_1.5.0-0.1_s390x.deb ... 437s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 437s Selecting previously unselected package libsm6:s390x. 437s Preparing to unpack .../103-libsm6_2%3a1.2.4-1_s390x.deb ... 437s Unpacking libsm6:s390x (2:1.2.4-1) ... 437s Selecting previously unselected package libtcl8.6:s390x. 437s Preparing to unpack .../104-libtcl8.6_8.6.16+dfsg-1_s390x.deb ... 437s Unpacking libtcl8.6:s390x (8.6.16+dfsg-1) ... 437s Selecting previously unselected package libjbig0:s390x. 437s Preparing to unpack .../105-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 437s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 437s Selecting previously unselected package libwebp7:s390x. 437s Preparing to unpack .../106-libwebp7_1.5.0-0.1_s390x.deb ... 437s Unpacking libwebp7:s390x (1.5.0-0.1) ... 437s Selecting previously unselected package libtiff6:s390x. 437s Preparing to unpack .../107-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 437s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 437s Selecting previously unselected package libxft2:s390x. 437s Preparing to unpack .../108-libxft2_2.3.6-1build1_s390x.deb ... 437s Unpacking libxft2:s390x (2.3.6-1build1) ... 437s Selecting previously unselected package libxss1:s390x. 437s Preparing to unpack .../109-libxss1_1%3a1.2.3-1build3_s390x.deb ... 437s Unpacking libxss1:s390x (1:1.2.3-1build3) ... 437s Selecting previously unselected package libtk8.6:s390x. 437s Preparing to unpack .../110-libtk8.6_8.6.16-1_s390x.deb ... 437s Unpacking libtk8.6:s390x (8.6.16-1) ... 437s Selecting previously unselected package libxt6t64:s390x. 437s Preparing to unpack .../111-libxt6t64_1%3a1.2.1-1.2build1_s390x.deb ... 437s Unpacking libxt6t64:s390x (1:1.2.1-1.2build1) ... 437s Selecting previously unselected package zip. 437s Preparing to unpack .../112-zip_3.0-14ubuntu2_s390x.deb ... 437s Unpacking zip (3.0-14ubuntu2) ... 437s Selecting previously unselected package unzip. 437s Preparing to unpack .../113-unzip_6.0-28ubuntu6_s390x.deb ... 437s Unpacking unzip (6.0-28ubuntu6) ... 437s Selecting previously unselected package xdg-utils. 437s Preparing to unpack .../114-xdg-utils_1.2.1-2ubuntu1_all.deb ... 437s Unpacking xdg-utils (1.2.1-2ubuntu1) ... 437s Selecting previously unselected package r-base-core. 437s Preparing to unpack .../115-r-base-core_4.4.2-1build1_s390x.deb ... 437s Unpacking r-base-core (4.4.2-1build1) ... 437s Selecting previously unselected package r-cran-littler. 437s Preparing to unpack .../116-r-cran-littler_0.3.20-2_s390x.deb ... 437s Unpacking r-cran-littler (0.3.20-2) ... 437s Selecting previously unselected package littler. 437s Preparing to unpack .../117-littler_0.3.20-2_all.deb ... 437s Unpacking littler (0.3.20-2) ... 437s Selecting previously unselected package node-bootstrap-sass. 437s Preparing to unpack .../118-node-bootstrap-sass_3.4.3-2_all.deb ... 437s Unpacking node-bootstrap-sass (3.4.3-2) ... 437s Selecting previously unselected package node-html5shiv. 437s Preparing to unpack .../119-node-html5shiv_3.7.3+dfsg-5_all.deb ... 437s Unpacking node-html5shiv (3.7.3+dfsg-5) ... 437s Selecting previously unselected package node-normalize.css. 437s Preparing to unpack .../120-node-normalize.css_8.0.1-5_all.deb ... 437s Unpacking node-normalize.css (8.0.1-5) ... 437s Selecting previously unselected package pandoc-data. 437s Preparing to unpack .../121-pandoc-data_3.1.11.1-3build1_all.deb ... 437s Unpacking pandoc-data (3.1.11.1-3build1) ... 437s Selecting previously unselected package pandoc. 437s Preparing to unpack .../122-pandoc_3.1.11.1+ds-2_s390x.deb ... 437s Unpacking pandoc (3.1.11.1+ds-2) ... 439s Selecting previously unselected package liblzma-dev:s390x. 439s Preparing to unpack .../123-liblzma-dev_5.6.3-1_s390x.deb ... 439s Unpacking liblzma-dev:s390x (5.6.3-1) ... 439s Selecting previously unselected package pkgconf-bin. 439s Preparing to unpack .../124-pkgconf-bin_1.8.1-4_s390x.deb ... 439s Unpacking pkgconf-bin (1.8.1-4) ... 439s Selecting previously unselected package pkgconf:s390x. 439s Preparing to unpack .../125-pkgconf_1.8.1-4_s390x.deb ... 439s Unpacking pkgconf:s390x (1.8.1-4) ... 439s Selecting previously unselected package libtirpc-dev:s390x. 439s Preparing to unpack .../126-libtirpc-dev_1.3.4+ds-1.3_s390x.deb ... 439s Unpacking libtirpc-dev:s390x (1.3.4+ds-1.3) ... 439s Selecting previously unselected package r-base-dev. 439s Preparing to unpack .../127-r-base-dev_4.4.2-1build1_all.deb ... 439s Unpacking r-base-dev (4.4.2-1build1) ... 439s Selecting previously unselected package pkg-r-autopkgtest. 439s Preparing to unpack .../128-pkg-r-autopkgtest_20231212ubuntu1_all.deb ... 439s Unpacking pkg-r-autopkgtest (20231212ubuntu1) ... 439s Selecting previously unselected package r-bioc-biocgenerics. 439s Preparing to unpack .../129-r-bioc-biocgenerics_0.52.0-2_all.deb ... 439s Unpacking r-bioc-biocgenerics (0.52.0-2) ... 439s Selecting previously unselected package r-bioc-biobase. 439s Preparing to unpack .../130-r-bioc-biobase_2.66.0-2_s390x.deb ... 439s Unpacking r-bioc-biobase (2.66.0-2) ... 439s Selecting previously unselected package r-bioc-s4vectors. 439s Preparing to unpack .../131-r-bioc-s4vectors_0.44.0+dfsg-2_s390x.deb ... 439s Unpacking r-bioc-s4vectors (0.44.0+dfsg-2) ... 439s Selecting previously unselected package r-bioc-biocio. 439s Preparing to unpack .../132-r-bioc-biocio_1.16.0+dfsg-2_all.deb ... 439s Unpacking r-bioc-biocio (1.16.0+dfsg-2) ... 439s Selecting previously unselected package r-cran-formatr. 439s Preparing to unpack .../133-r-cran-formatr_1.14-2_all.deb ... 439s Unpacking r-cran-formatr (1.14-2) ... 439s Selecting previously unselected package r-cran-lambda.r. 439s Preparing to unpack .../134-r-cran-lambda.r_1.2.4-2build1_all.deb ... 439s Unpacking r-cran-lambda.r (1.2.4-2build1) ... 439s Selecting previously unselected package r-cran-futile.options. 439s Preparing to unpack .../135-r-cran-futile.options_1.0.1-3build1_all.deb ... 439s Unpacking r-cran-futile.options (1.0.1-3build1) ... 439s Selecting previously unselected package r-cran-futile.logger. 439s Preparing to unpack .../136-r-cran-futile.logger_1.4.3-4build1_all.deb ... 439s Unpacking r-cran-futile.logger (1.4.3-4build1) ... 439s Selecting previously unselected package r-cran-snow. 439s Preparing to unpack .../137-r-cran-snow_1%3a0.4.4-2_all.deb ... 439s Unpacking r-cran-snow (1:0.4.4-2) ... 439s Selecting previously unselected package r-cran-codetools. 439s Preparing to unpack .../138-r-cran-codetools_0.2-20-1_all.deb ... 439s Unpacking r-cran-codetools (0.2-20-1) ... 439s Selecting previously unselected package r-cran-bh. 439s Preparing to unpack .../139-r-cran-bh_1.84.0-1_all.deb ... 439s Unpacking r-cran-bh (1.84.0-1) ... 439s Selecting previously unselected package r-cran-cpp11. 439s Preparing to unpack .../140-r-cran-cpp11_0.5.1-1_all.deb ... 439s Unpacking r-cran-cpp11 (0.5.1-1) ... 439s Selecting previously unselected package r-bioc-biocparallel. 439s Preparing to unpack .../141-r-bioc-biocparallel_1.40.0-2_s390x.deb ... 439s Unpacking r-bioc-biocparallel (1.40.0-2) ... 439s Selecting previously unselected package r-bioc-iranges. 439s Preparing to unpack .../142-r-bioc-iranges_2.40.1-2_s390x.deb ... 439s Unpacking r-bioc-iranges (2.40.1-2) ... 439s Selecting previously unselected package r-bioc-zlibbioc. 439s Preparing to unpack .../143-r-bioc-zlibbioc_1.52.0+dfsg-2_all.deb ... 439s Unpacking r-bioc-zlibbioc (1.52.0+dfsg-2) ... 439s Selecting previously unselected package r-bioc-xvector. 439s Preparing to unpack .../144-r-bioc-xvector_0.46.0-2_s390x.deb ... 439s Unpacking r-bioc-xvector (0.46.0-2) ... 439s Selecting previously unselected package r-cran-curl. 439s Preparing to unpack .../145-r-cran-curl_6.1.0+dfsg-1_s390x.deb ... 439s Unpacking r-cran-curl (6.1.0+dfsg-1) ... 439s Selecting previously unselected package r-cran-jsonlite. 439s Preparing to unpack .../146-r-cran-jsonlite_1.8.9+dfsg-1_s390x.deb ... 439s Unpacking r-cran-jsonlite (1.8.9+dfsg-1) ... 439s Selecting previously unselected package r-cran-mime. 439s Preparing to unpack .../147-r-cran-mime_0.12-2_s390x.deb ... 439s Unpacking r-cran-mime (0.12-2) ... 439s Selecting previously unselected package r-cran-sys. 439s Preparing to unpack .../148-r-cran-sys_3.4.3-1_s390x.deb ... 439s Unpacking r-cran-sys (3.4.3-1) ... 439s Selecting previously unselected package r-cran-askpass. 439s Preparing to unpack .../149-r-cran-askpass_1.2.1-1_s390x.deb ... 439s Unpacking r-cran-askpass (1.2.1-1) ... 439s Selecting previously unselected package r-cran-openssl. 439s Preparing to unpack .../150-r-cran-openssl_2.2.0+dfsg-1_s390x.deb ... 439s Unpacking r-cran-openssl (2.2.0+dfsg-1) ... 439s Selecting previously unselected package r-cran-r6. 439s Preparing to unpack .../151-r-cran-r6_2.5.1-1_all.deb ... 439s Unpacking r-cran-r6 (2.5.1-1) ... 439s Selecting previously unselected package r-cran-httr. 439s Preparing to unpack .../152-r-cran-httr_1.4.7+dfsg-1_all.deb ... 439s Unpacking r-cran-httr (1.4.7+dfsg-1) ... 439s Selecting previously unselected package r-bioc-ucsc.utils. 439s Preparing to unpack .../153-r-bioc-ucsc.utils_1.2.0+ds-2_all.deb ... 439s Unpacking r-bioc-ucsc.utils (1.2.0+ds-2) ... 439s Selecting previously unselected package r-bioc-genomeinfodbdata. 439s Preparing to unpack .../154-r-bioc-genomeinfodbdata_1.2.13-2_all.deb ... 439s Unpacking r-bioc-genomeinfodbdata (1.2.13-2) ... 439s Selecting previously unselected package r-bioc-genomeinfodb. 439s Preparing to unpack .../155-r-bioc-genomeinfodb_1.42.3+dfsg-1_all.deb ... 439s Unpacking r-bioc-genomeinfodb (1.42.3+dfsg-1) ... 440s Selecting previously unselected package r-cran-crayon. 440s Preparing to unpack .../156-r-cran-crayon_1.5.3-1_all.deb ... 440s Unpacking r-cran-crayon (1.5.3-1) ... 440s Selecting previously unselected package r-bioc-biostrings. 440s Preparing to unpack .../157-r-bioc-biostrings_2.74.1+dfsg-2_s390x.deb ... 440s Unpacking r-bioc-biostrings (2.74.1+dfsg-2) ... 440s Selecting previously unselected package r-cran-lattice. 440s Preparing to unpack .../158-r-cran-lattice_0.22-6-1_s390x.deb ... 440s Unpacking r-cran-lattice (0.22-6-1) ... 440s Selecting previously unselected package r-cran-matrix. 440s Preparing to unpack .../159-r-cran-matrix_1.7-2-1_s390x.deb ... 440s Unpacking r-cran-matrix (1.7-2-1) ... 440s Selecting previously unselected package r-cran-matrixstats. 440s Preparing to unpack .../160-r-cran-matrixstats_1.5.0-1_s390x.deb ... 440s Unpacking r-cran-matrixstats (1.5.0-1) ... 440s Selecting previously unselected package r-bioc-matrixgenerics. 440s Preparing to unpack .../161-r-bioc-matrixgenerics_1.18.1-1_all.deb ... 440s Unpacking r-bioc-matrixgenerics (1.18.1-1) ... 440s Selecting previously unselected package r-cran-abind. 440s Preparing to unpack .../162-r-cran-abind_1.4-8-1_all.deb ... 440s Unpacking r-cran-abind (1.4-8-1) ... 440s Selecting previously unselected package r-bioc-s4arrays. 440s Preparing to unpack .../163-r-bioc-s4arrays_1.6.0+dfsg-2_s390x.deb ... 440s Unpacking r-bioc-s4arrays (1.6.0+dfsg-2) ... 440s Selecting previously unselected package r-bioc-sparsearray. 440s Preparing to unpack .../164-r-bioc-sparsearray_1.6.1+dfsg-1_s390x.deb ... 440s Unpacking r-bioc-sparsearray (1.6.1+dfsg-1) ... 440s Selecting previously unselected package r-bioc-delayedarray. 440s Preparing to unpack .../165-r-bioc-delayedarray_0.32.0+dfsg-2_s390x.deb ... 440s Unpacking r-bioc-delayedarray (0.32.0+dfsg-2) ... 440s Selecting previously unselected package r-bioc-genomicranges. 440s Preparing to unpack .../166-r-bioc-genomicranges_1.58.0+dfsg-2_s390x.deb ... 440s Unpacking r-bioc-genomicranges (1.58.0+dfsg-2) ... 440s Selecting previously unselected package r-bioc-summarizedexperiment. 440s Preparing to unpack .../167-r-bioc-summarizedexperiment_1.36.0+dfsg-2_all.deb ... 440s Unpacking r-bioc-summarizedexperiment (1.36.0+dfsg-2) ... 440s Selecting previously unselected package r-cran-locfit. 440s Preparing to unpack .../168-r-cran-locfit_1.5-9.11-1_s390x.deb ... 440s Unpacking r-cran-locfit (1.5-9.11-1) ... 440s Selecting previously unselected package r-cran-cli. 440s Preparing to unpack .../169-r-cran-cli_3.6.3-1_s390x.deb ... 440s Unpacking r-cran-cli (3.6.3-1) ... 440s Selecting previously unselected package r-cran-glue. 440s Preparing to unpack .../170-r-cran-glue_1.8.0-1_s390x.deb ... 440s Unpacking r-cran-glue (1.8.0-1) ... 440s Selecting previously unselected package r-cran-rlang. 440s Preparing to unpack .../171-r-cran-rlang_1.1.5-1_s390x.deb ... 440s Unpacking r-cran-rlang (1.1.5-1) ... 440s Selecting previously unselected package r-cran-lifecycle. 440s Preparing to unpack .../172-r-cran-lifecycle_1.0.4+dfsg-1_all.deb ... 440s Unpacking r-cran-lifecycle (1.0.4+dfsg-1) ... 440s Selecting previously unselected package r-cran-gtable. 440s Preparing to unpack .../173-r-cran-gtable_0.3.6+dfsg-1_all.deb ... 440s Unpacking r-cran-gtable (0.3.6+dfsg-1) ... 440s Selecting previously unselected package r-cran-isoband. 440s Preparing to unpack .../174-r-cran-isoband_0.2.7-1_s390x.deb ... 440s Unpacking r-cran-isoband (0.2.7-1) ... 440s Selecting previously unselected package r-cran-mass. 440s Preparing to unpack .../175-r-cran-mass_7.3-64-1_s390x.deb ... 440s Unpacking r-cran-mass (7.3-64-1) ... 440s Selecting previously unselected package r-cran-nlme. 440s Preparing to unpack .../176-r-cran-nlme_3.1.167-1_s390x.deb ... 440s Unpacking r-cran-nlme (3.1.167-1) ... 440s Selecting previously unselected package r-cran-mgcv. 440s Preparing to unpack .../177-r-cran-mgcv_1.9-1-1_s390x.deb ... 440s Unpacking r-cran-mgcv (1.9-1-1) ... 440s Selecting previously unselected package r-cran-farver. 440s Preparing to unpack .../178-r-cran-farver_2.1.2-1_s390x.deb ... 440s Unpacking r-cran-farver (2.1.2-1) ... 440s Selecting previously unselected package r-cran-labeling. 440s Preparing to unpack .../179-r-cran-labeling_0.4.3-1_all.deb ... 440s Unpacking r-cran-labeling (0.4.3-1) ... 440s Selecting previously unselected package r-cran-colorspace. 440s Preparing to unpack .../180-r-cran-colorspace_2.1-1+dfsg-1_s390x.deb ... 440s Unpacking r-cran-colorspace (2.1-1+dfsg-1) ... 440s Selecting previously unselected package r-cran-munsell. 440s Preparing to unpack .../181-r-cran-munsell_0.5.1-1_all.deb ... 440s Unpacking r-cran-munsell (0.5.1-1) ... 440s Selecting previously unselected package r-cran-rcolorbrewer. 440s Preparing to unpack .../182-r-cran-rcolorbrewer_1.1-3-1build1_all.deb ... 440s Unpacking r-cran-rcolorbrewer (1.1-3-1build1) ... 440s Selecting previously unselected package r-cran-viridislite. 440s Preparing to unpack .../183-r-cran-viridislite_0.4.2-2_all.deb ... 440s Unpacking r-cran-viridislite (0.4.2-2) ... 440s Selecting previously unselected package r-cran-scales. 440s Preparing to unpack .../184-r-cran-scales_1.3.0-1_all.deb ... 440s Unpacking r-cran-scales (1.3.0-1) ... 440s Selecting previously unselected package r-cran-fansi. 440s Preparing to unpack .../185-r-cran-fansi_1.0.5-1_s390x.deb ... 440s Unpacking r-cran-fansi (1.0.5-1) ... 440s Selecting previously unselected package r-cran-magrittr. 440s Preparing to unpack .../186-r-cran-magrittr_2.0.3-1_s390x.deb ... 440s Unpacking r-cran-magrittr (2.0.3-1) ... 440s Selecting previously unselected package r-cran-utf8. 440s Preparing to unpack .../187-r-cran-utf8_1.2.4-1_s390x.deb ... 440s Unpacking r-cran-utf8 (1.2.4-1) ... 440s Selecting previously unselected package r-cran-vctrs. 440s Preparing to unpack .../188-r-cran-vctrs_0.6.5-1_s390x.deb ... 440s Unpacking r-cran-vctrs (0.6.5-1) ... 440s Selecting previously unselected package r-cran-pillar. 440s Preparing to unpack .../189-r-cran-pillar_1.10.1+dfsg-1_all.deb ... 440s Unpacking r-cran-pillar (1.10.1+dfsg-1) ... 440s Selecting previously unselected package r-cran-pkgconfig. 440s Preparing to unpack .../190-r-cran-pkgconfig_2.0.3-2build1_all.deb ... 440s Unpacking r-cran-pkgconfig (2.0.3-2build1) ... 440s Selecting previously unselected package r-cran-tibble. 440s Preparing to unpack .../191-r-cran-tibble_3.2.1+dfsg-3_s390x.deb ... 440s Unpacking r-cran-tibble (3.2.1+dfsg-3) ... 440s Selecting previously unselected package r-cran-withr. 440s Preparing to unpack .../192-r-cran-withr_3.0.2+dfsg-1_all.deb ... 440s Unpacking r-cran-withr (3.0.2+dfsg-1) ... 440s Selecting previously unselected package r-cran-ggplot2. 440s Preparing to unpack .../193-r-cran-ggplot2_3.5.1+dfsg-1_all.deb ... 440s Unpacking r-cran-ggplot2 (3.5.1+dfsg-1) ... 440s Selecting previously unselected package r-cran-pkgkitten. 440s Preparing to unpack .../194-r-cran-pkgkitten_0.2.4-1_all.deb ... 440s Unpacking r-cran-pkgkitten (0.2.4-1) ... 440s Selecting previously unselected package r-cran-rcpp. 441s Preparing to unpack .../195-r-cran-rcpp_1.0.14-1_s390x.deb ... 441s Unpacking r-cran-rcpp (1.0.14-1) ... 441s Selecting previously unselected package r-cran-rcpparmadillo. 441s Preparing to unpack .../196-r-cran-rcpparmadillo_14.2.3-1-1_s390x.deb ... 441s Unpacking r-cran-rcpparmadillo (14.2.3-1-1) ... 441s Selecting previously unselected package r-bioc-deseq2. 441s Preparing to unpack .../197-r-bioc-deseq2_1.46.0+dfsg-2_s390x.deb ... 441s Unpacking r-bioc-deseq2 (1.46.0+dfsg-2) ... 441s Selecting previously unselected package r-cran-bitops. 441s Preparing to unpack .../198-r-cran-bitops_1.0-9-1_s390x.deb ... 441s Unpacking r-cran-bitops (1.0-9-1) ... 441s Selecting previously unselected package r-bioc-rhtslib. 441s Preparing to unpack .../199-r-bioc-rhtslib_3.2.0+dfsg-2_s390x.deb ... 441s Unpacking r-bioc-rhtslib (3.2.0+dfsg-2) ... 441s Selecting previously unselected package r-bioc-rsamtools. 441s Preparing to unpack .../200-r-bioc-rsamtools_2.22.0+dfsg-2_s390x.deb ... 441s Unpacking r-bioc-rsamtools (2.22.0+dfsg-2) ... 441s Selecting previously unselected package r-bioc-genomicalignments. 441s Preparing to unpack .../201-r-bioc-genomicalignments_1.42.0-2_s390x.deb ... 441s Unpacking r-bioc-genomicalignments (1.42.0-2) ... 441s Selecting previously unselected package r-cran-statmod. 441s Preparing to unpack .../202-r-cran-statmod_1.5.0-1_s390x.deb ... 441s Unpacking r-cran-statmod (1.5.0-1) ... 441s Selecting previously unselected package r-bioc-limma. 441s Preparing to unpack .../203-r-bioc-limma_3.62.2+dfsg-1_s390x.deb ... 441s Unpacking r-bioc-limma (3.62.2+dfsg-1) ... 441s Selecting previously unselected package r-cran-survival. 441s Preparing to unpack .../204-r-cran-survival_3.8-3-1_s390x.deb ... 441s Unpacking r-cran-survival (3.8-3-1) ... 441s Selecting previously unselected package r-bioc-multtest. 441s Preparing to unpack .../205-r-bioc-multtest_2.62.0-2_s390x.deb ... 441s Unpacking r-bioc-multtest (2.62.0-2) ... 441s Selecting previously unselected package r-cran-xml. 441s Preparing to unpack .../206-r-cran-xml_3.99-0.18-1_s390x.deb ... 441s Unpacking r-cran-xml (3.99-0.18-1) ... 441s Selecting previously unselected package r-cran-rcurl. 441s Preparing to unpack .../207-r-cran-rcurl_1.98-1.16+dfsg-1_s390x.deb ... 441s Unpacking r-cran-rcurl (1.98-1.16+dfsg-1) ... 441s Selecting previously unselected package r-cran-rjson. 441s Preparing to unpack .../208-r-cran-rjson_0.2.23-1_s390x.deb ... 441s Unpacking r-cran-rjson (0.2.23-1) ... 441s Selecting previously unselected package r-cran-yaml. 441s Preparing to unpack .../209-r-cran-yaml_2.3.10-1_s390x.deb ... 441s Unpacking r-cran-yaml (2.3.10-1) ... 441s Selecting previously unselected package r-cran-restfulr. 441s Preparing to unpack .../210-r-cran-restfulr_0.0.15-1_s390x.deb ... 441s Unpacking r-cran-restfulr (0.0.15-1) ... 441s Selecting previously unselected package r-bioc-rtracklayer. 441s Preparing to unpack .../211-r-bioc-rtracklayer_1.66.0-2_s390x.deb ... 441s Unpacking r-bioc-rtracklayer (1.66.0-2) ... 441s Selecting previously unselected package r-cran-digest. 441s Preparing to unpack .../212-r-cran-digest_0.6.37-1_s390x.deb ... 441s Unpacking r-cran-digest (0.6.37-1) ... 441s Selecting previously unselected package r-cran-ape. 441s Preparing to unpack .../213-r-cran-ape_5.8-1-1_s390x.deb ... 441s Unpacking r-cran-ape (5.8-1-1) ... 441s Selecting previously unselected package r-cran-base64enc. 441s Preparing to unpack .../214-r-cran-base64enc_0.1-3-3_s390x.deb ... 441s Unpacking r-cran-base64enc (0.1-3-3) ... 441s Selecting previously unselected package r-cran-brio. 441s Preparing to unpack .../215-r-cran-brio_1.1.5-1_s390x.deb ... 441s Unpacking r-cran-brio (1.1.5-1) ... 441s Selecting previously unselected package r-cran-fastmap. 441s Preparing to unpack .../216-r-cran-fastmap_1.2.0-1_s390x.deb ... 441s Unpacking r-cran-fastmap (1.2.0-1) ... 441s Selecting previously unselected package r-cran-cachem. 441s Preparing to unpack .../217-r-cran-cachem_1.1.0-1_s390x.deb ... 441s Unpacking r-cran-cachem (1.1.0-1) ... 441s Selecting previously unselected package r-cran-htmltools. 441s Preparing to unpack .../218-r-cran-htmltools_0.5.8.1-1_s390x.deb ... 441s Unpacking r-cran-htmltools (0.5.8.1-1) ... 441s Selecting previously unselected package r-cran-jquerylib. 441s Preparing to unpack .../219-r-cran-jquerylib_0.1.4+dfsg-4_all.deb ... 441s Unpacking r-cran-jquerylib (0.1.4+dfsg-4) ... 441s Selecting previously unselected package r-cran-memoise. 441s Preparing to unpack .../220-r-cran-memoise_2.0.1-1_all.deb ... 441s Unpacking r-cran-memoise (2.0.1-1) ... 441s Selecting previously unselected package r-cran-fs. 441s Preparing to unpack .../221-r-cran-fs_1.6.5+dfsg-1_s390x.deb ... 441s Unpacking r-cran-fs (1.6.5+dfsg-1) ... 441s Selecting previously unselected package r-cran-rappdirs. 441s Preparing to unpack .../222-r-cran-rappdirs_0.3.3-1_s390x.deb ... 441s Unpacking r-cran-rappdirs (0.3.3-1) ... 441s Selecting previously unselected package r-cran-sass. 441s Preparing to unpack .../223-r-cran-sass_0.4.9+dfsg-1_s390x.deb ... 441s Unpacking r-cran-sass (0.4.9+dfsg-1) ... 441s Selecting previously unselected package r-cran-bslib. 441s Preparing to unpack .../224-r-cran-bslib_0.8.0+dfsg-1_all.deb ... 441s Unpacking r-cran-bslib (0.8.0+dfsg-1) ... 441s Selecting previously unselected package r-cran-ps. 441s Preparing to unpack .../225-r-cran-ps_1.8.1-1_s390x.deb ... 441s Unpacking r-cran-ps (1.8.1-1) ... 441s Selecting previously unselected package r-cran-processx. 441s Preparing to unpack .../226-r-cran-processx_3.8.5-1_s390x.deb ... 441s Unpacking r-cran-processx (3.8.5-1) ... 441s Selecting previously unselected package r-cran-callr. 441s Preparing to unpack .../227-r-cran-callr_3.7.6-1_all.deb ... 441s Unpacking r-cran-callr (3.7.6-1) ... 441s Selecting previously unselected package r-cran-class. 441s Preparing to unpack .../228-r-cran-class_7.3-23-1_s390x.deb ... 441s Unpacking r-cran-class (7.3-23-1) ... 442s Selecting previously unselected package r-cran-proxy. 442s Preparing to unpack .../229-r-cran-proxy_0.4-27-1_s390x.deb ... 442s Unpacking r-cran-proxy (0.4-27-1) ... 442s Selecting previously unselected package r-cran-e1071. 442s Preparing to unpack .../230-r-cran-e1071_1.7-16-1_s390x.deb ... 442s Unpacking r-cran-e1071 (1.7-16-1) ... 442s Selecting previously unselected package r-cran-iterators. 442s Preparing to unpack .../231-r-cran-iterators_1.0.14-1_all.deb ... 442s Unpacking r-cran-iterators (1.0.14-1) ... 442s Selecting previously unselected package r-cran-foreach. 442s Preparing to unpack .../232-r-cran-foreach_1.5.2-1_all.deb ... 442s Unpacking r-cran-foreach (1.5.2-1) ... 442s Selecting previously unselected package r-cran-data.table. 442s Preparing to unpack .../233-r-cran-data.table_1.16.4+dfsg-1_s390x.deb ... 442s Unpacking r-cran-data.table (1.16.4+dfsg-1) ... 442s Selecting previously unselected package r-cran-modelmetrics. 442s Preparing to unpack .../234-r-cran-modelmetrics_1.2.2.2-1build1_s390x.deb ... 442s Unpacking r-cran-modelmetrics (1.2.2.2-1build1) ... 442s Selecting previously unselected package r-cran-plyr. 442s Preparing to unpack .../235-r-cran-plyr_1.8.9-1_s390x.deb ... 442s Unpacking r-cran-plyr (1.8.9-1) ... 442s Selecting previously unselected package r-cran-proc. 442s Preparing to unpack .../236-r-cran-proc_1.18.5-1_s390x.deb ... 442s Unpacking r-cran-proc (1.18.5-1) ... 442s Selecting previously unselected package r-cran-generics. 442s Preparing to unpack .../237-r-cran-generics_0.1.3-1_all.deb ... 442s Unpacking r-cran-generics (0.1.3-1) ... 442s Selecting previously unselected package r-cran-tidyselect. 442s Preparing to unpack .../238-r-cran-tidyselect_1.2.1+dfsg-1_s390x.deb ... 442s Unpacking r-cran-tidyselect (1.2.1+dfsg-1) ... 442s Selecting previously unselected package r-cran-dplyr. 442s Preparing to unpack .../239-r-cran-dplyr_1.1.4-4_s390x.deb ... 442s Unpacking r-cran-dplyr (1.1.4-4) ... 442s Selecting previously unselected package r-cran-tzdb. 442s Preparing to unpack .../240-r-cran-tzdb_0.4.0-2_s390x.deb ... 442s Unpacking r-cran-tzdb (0.4.0-2) ... 442s Selecting previously unselected package r-cran-clock. 442s Preparing to unpack .../241-r-cran-clock_0.7.1-1_s390x.deb ... 442s Unpacking r-cran-clock (0.7.1-1) ... 442s Selecting previously unselected package r-cran-gower. 442s Preparing to unpack .../242-r-cran-gower_1.0.2-1_s390x.deb ... 442s Unpacking r-cran-gower (1.0.2-1) ... 442s Selecting previously unselected package r-cran-hardhat. 442s Preparing to unpack .../243-r-cran-hardhat_1.4.0+dfsg-1_all.deb ... 442s Unpacking r-cran-hardhat (1.4.0+dfsg-1) ... 442s Selecting previously unselected package r-cran-rpart. 442s Preparing to unpack .../244-r-cran-rpart_4.1.24-1_s390x.deb ... 442s Unpacking r-cran-rpart (4.1.24-1) ... 442s Selecting previously unselected package r-cran-nnet. 442s Preparing to unpack .../245-r-cran-nnet_7.3-20-1_s390x.deb ... 442s Unpacking r-cran-nnet (7.3-20-1) ... 442s Selecting previously unselected package r-cran-shape. 442s Preparing to unpack .../246-r-cran-shape_1.4.6.1-1_all.deb ... 442s Unpacking r-cran-shape (1.4.6.1-1) ... 442s Selecting previously unselected package r-cran-diagram. 442s Preparing to unpack .../247-r-cran-diagram_1.6.5-2_all.deb ... 442s Unpacking r-cran-diagram (1.6.5-2) ... 442s Selecting previously unselected package r-cran-kernsmooth. 442s Preparing to unpack .../248-r-cran-kernsmooth_2.23-26-1_s390x.deb ... 442s Unpacking r-cran-kernsmooth (2.23-26-1) ... 442s Selecting previously unselected package r-cran-globals. 442s Preparing to unpack .../249-r-cran-globals_0.16.3-1_all.deb ... 442s Unpacking r-cran-globals (0.16.3-1) ... 442s Selecting previously unselected package r-cran-listenv. 442s Preparing to unpack .../250-r-cran-listenv_0.9.1+dfsg-1_all.deb ... 442s Unpacking r-cran-listenv (0.9.1+dfsg-1) ... 442s Selecting previously unselected package r-cran-parallelly. 442s Preparing to unpack .../251-r-cran-parallelly_1.42.0-1_s390x.deb ... 442s Unpacking r-cran-parallelly (1.42.0-1) ... 442s Selecting previously unselected package r-cran-future. 442s Preparing to unpack .../252-r-cran-future_1.34.0+dfsg-1_all.deb ... 442s Unpacking r-cran-future (1.34.0+dfsg-1) ... 442s Selecting previously unselected package r-cran-future.apply. 442s Preparing to unpack .../253-r-cran-future.apply_1.11.3+dfsg-1_all.deb ... 442s Unpacking r-cran-future.apply (1.11.3+dfsg-1) ... 442s Selecting previously unselected package r-cran-numderiv. 442s Preparing to unpack .../254-r-cran-numderiv_2016.8-1.1-3_all.deb ... 442s Unpacking r-cran-numderiv (2016.8-1.1-3) ... 442s Selecting previously unselected package r-cran-progressr. 442s Preparing to unpack .../255-r-cran-progressr_0.15.1-1_all.deb ... 442s Unpacking r-cran-progressr (0.15.1-1) ... 442s Selecting previously unselected package r-cran-squarem. 442s Preparing to unpack .../256-r-cran-squarem_2021.1-1_all.deb ... 442s Unpacking r-cran-squarem (2021.1-1) ... 442s Selecting previously unselected package r-cran-lava. 442s Preparing to unpack .../257-r-cran-lava_1.8.1+dfsg-1_all.deb ... 442s Unpacking r-cran-lava (1.8.1+dfsg-1) ... 442s Selecting previously unselected package r-cran-prodlim. 442s Preparing to unpack .../258-r-cran-prodlim_2024.06.25-1_s390x.deb ... 442s Unpacking r-cran-prodlim (2024.06.25-1) ... 442s Selecting previously unselected package r-cran-ipred. 442s Preparing to unpack .../259-r-cran-ipred_0.9-15-1_s390x.deb ... 442s Unpacking r-cran-ipred (0.9-15-1) ... 442s Selecting previously unselected package r-cran-timechange. 442s Preparing to unpack .../260-r-cran-timechange_0.3.0-1_s390x.deb ... 442s Unpacking r-cran-timechange (0.3.0-1) ... 442s Selecting previously unselected package r-cran-lubridate. 442s Preparing to unpack .../261-r-cran-lubridate_1.9.4+dfsg-1_s390x.deb ... 442s Unpacking r-cran-lubridate (1.9.4+dfsg-1) ... 442s Selecting previously unselected package r-cran-purrr. 442s Preparing to unpack .../262-r-cran-purrr_1.0.2-1_s390x.deb ... 442s Unpacking r-cran-purrr (1.0.2-1) ... 442s Selecting previously unselected package r-cran-stringi. 442s Preparing to unpack .../263-r-cran-stringi_1.8.4-1build1_s390x.deb ... 442s Unpacking r-cran-stringi (1.8.4-1build1) ... 442s Selecting previously unselected package r-cran-stringr. 442s Preparing to unpack .../264-r-cran-stringr_1.5.1-1_all.deb ... 442s Unpacking r-cran-stringr (1.5.1-1) ... 442s Selecting previously unselected package r-cran-tidyr. 442s Preparing to unpack .../265-r-cran-tidyr_1.3.1-1_s390x.deb ... 442s Unpacking r-cran-tidyr (1.3.1-1) ... 442s Selecting previously unselected package r-cran-timedate. 442s Preparing to unpack .../266-r-cran-timedate_4041.110-1_s390x.deb ... 442s Unpacking r-cran-timedate (4041.110-1) ... 442s Selecting previously unselected package r-cran-recipes. 442s Preparing to unpack .../267-r-cran-recipes_1.1.0+dfsg-1_all.deb ... 442s Unpacking r-cran-recipes (1.1.0+dfsg-1) ... 442s Selecting previously unselected package r-cran-reshape2. 442s Preparing to unpack .../268-r-cran-reshape2_1.4.4-2build1_s390x.deb ... 442s Unpacking r-cran-reshape2 (1.4.4-2build1) ... 442s Selecting previously unselected package r-cran-caret. 442s Preparing to unpack .../269-r-cran-caret_7.0-1+dfsg-1_s390x.deb ... 442s Unpacking r-cran-caret (7.0-1+dfsg-1) ... 442s Selecting previously unselected package r-cran-catools. 442s Preparing to unpack .../270-r-cran-catools_1.18.2-1_s390x.deb ... 442s Unpacking r-cran-catools (1.18.2-1) ... 442s Selecting previously unselected package r-cran-cluster. 442s Preparing to unpack .../271-r-cran-cluster_2.1.8-1_s390x.deb ... 442s Unpacking r-cran-cluster (2.1.8-1) ... 442s Selecting previously unselected package r-cran-evaluate. 442s Preparing to unpack .../272-r-cran-evaluate_1.0.3-1_all.deb ... 442s Unpacking r-cran-evaluate (1.0.3-1) ... 442s Selecting previously unselected package r-cran-xfun. 442s Preparing to unpack .../273-r-cran-xfun_0.50+dfsg-1_s390x.deb ... 442s Unpacking r-cran-xfun (0.50+dfsg-1) ... 443s Selecting previously unselected package r-cran-highr. 443s Preparing to unpack .../274-r-cran-highr_0.11+dfsg-1_all.deb ... 443s Unpacking r-cran-highr (0.11+dfsg-1) ... 443s Selecting previously unselected package libjs-mathjax. 443s Preparing to unpack .../275-libjs-mathjax_2.7.9+dfsg-1_all.deb ... 443s Unpacking libjs-mathjax (2.7.9+dfsg-1) ... 443s Selecting previously unselected package r-cran-knitr. 443s Preparing to unpack .../276-r-cran-knitr_1.49+dfsg-1_all.deb ... 443s Unpacking r-cran-knitr (1.49+dfsg-1) ... 443s Selecting previously unselected package r-cran-fontawesome. 443s Preparing to unpack .../277-r-cran-fontawesome_0.5.3-1_all.deb ... 443s Unpacking r-cran-fontawesome (0.5.3-1) ... 443s Selecting previously unselected package r-cran-tinytex. 443s Preparing to unpack .../278-r-cran-tinytex_0.54-1_all.deb ... 443s Unpacking r-cran-tinytex (0.54-1) ... 443s Selecting previously unselected package libjs-modernizr. 443s Preparing to unpack .../279-libjs-modernizr_3.13.0-0.1_all.deb ... 443s Unpacking libjs-modernizr (3.13.0-0.1) ... 443s Selecting previously unselected package r-cran-later. 443s Preparing to unpack .../280-r-cran-later_1.4.1+dfsg-1_s390x.deb ... 443s Unpacking r-cran-later (1.4.1+dfsg-1) ... 443s Selecting previously unselected package r-cran-promises. 443s Preparing to unpack .../281-r-cran-promises_1.3.2+dfsg-1_s390x.deb ... 443s Unpacking r-cran-promises (1.3.2+dfsg-1) ... 443s Selecting previously unselected package r-cran-httpuv. 443s Preparing to unpack .../282-r-cran-httpuv_1.6.15+dfsg-1_s390x.deb ... 443s Unpacking r-cran-httpuv (1.6.15+dfsg-1) ... 443s Selecting previously unselected package r-cran-xtable. 443s Preparing to unpack .../283-r-cran-xtable_1%3a1.8-4-2_all.deb ... 443s Unpacking r-cran-xtable (1:1.8-4-2) ... 443s Selecting previously unselected package r-cran-sourcetools. 443s Preparing to unpack .../284-r-cran-sourcetools_0.1.7-1-1_s390x.deb ... 443s Unpacking r-cran-sourcetools (0.1.7-1-1) ... 443s Selecting previously unselected package r-cran-commonmark. 443s Preparing to unpack .../285-r-cran-commonmark_1.9.2-2_s390x.deb ... 443s Unpacking r-cran-commonmark (1.9.2-2) ... 443s Selecting previously unselected package libjs-twitter-bootstrap-datepicker. 443s Preparing to unpack .../286-libjs-twitter-bootstrap-datepicker_1.3.1+dfsg1-4.1_all.deb ... 443s Unpacking libjs-twitter-bootstrap-datepicker (1.3.1+dfsg1-4.1) ... 443s Selecting previously unselected package r-cran-shiny. 443s Preparing to unpack .../287-r-cran-shiny_1.10.0+dfsg-2_all.deb ... 443s Unpacking r-cran-shiny (1.10.0+dfsg-2) ... 443s Selecting previously unselected package r-cran-rmarkdown. 444s Preparing to unpack .../288-r-cran-rmarkdown_2.29+dfsg-1_all.deb ... 444s Unpacking r-cran-rmarkdown (2.29+dfsg-1) ... 444s Selecting previously unselected package r-cran-htmlwidgets. 444s Preparing to unpack .../289-r-cran-htmlwidgets_1.6.4+dfsg-1_all.deb ... 444s Unpacking r-cran-htmlwidgets (1.6.4+dfsg-1) ... 444s Selecting previously unselected package r-cran-miniui. 444s Preparing to unpack .../290-r-cran-miniui_0.1.1.1-3build1_all.deb ... 444s Unpacking r-cran-miniui (0.1.1.1-3build1) ... 444s Selecting previously unselected package r-cran-shinyjs. 444s Preparing to unpack .../291-r-cran-shinyjs_2.1.0-1_all.deb ... 444s Unpacking r-cran-shinyjs (2.1.0-1) ... 444s Selecting previously unselected package r-cran-colourpicker. 444s Preparing to unpack .../292-r-cran-colourpicker_1.3.0+dfsg-1_all.deb ... 444s Unpacking r-cran-colourpicker (1.3.0+dfsg-1) ... 444s Selecting previously unselected package r-cran-conquer. 444s Preparing to unpack .../293-r-cran-conquer_1.3.3-1_s390x.deb ... 444s Unpacking r-cran-conquer (1.3.3-1) ... 444s Selecting previously unselected package r-cran-cowplot. 444s Preparing to unpack .../294-r-cran-cowplot_1.1.3+dfsg-1_all.deb ... 444s Unpacking r-cran-cowplot (1.1.3+dfsg-1) ... 444s Selecting previously unselected package r-cran-lazyeval. 444s Preparing to unpack .../295-r-cran-lazyeval_0.2.2-1build1_s390x.deb ... 444s Unpacking r-cran-lazyeval (0.2.2-1build1) ... 444s Selecting previously unselected package r-cran-crosstalk. 444s Preparing to unpack .../296-r-cran-crosstalk_1.2.1+dfsg-1_all.deb ... 444s Unpacking r-cran-crosstalk (1.2.1+dfsg-1) ... 444s Selecting previously unselected package r-cran-deldir. 444s Preparing to unpack .../297-r-cran-deldir_2.0-4-1build1_s390x.deb ... 444s Unpacking r-cran-deldir (2.0-4-1build1) ... 444s Selecting previously unselected package r-cran-deoptimr. 444s Preparing to unpack .../298-r-cran-deoptimr_1.1-3-1-1_all.deb ... 444s Unpacking r-cran-deoptimr (1.1-3-1-1) ... 444s Selecting previously unselected package r-cran-desc. 444s Preparing to unpack .../299-r-cran-desc_1.4.3-1_all.deb ... 444s Unpacking r-cran-desc (1.4.3-1) ... 444s Selecting previously unselected package r-cran-diffobj. 444s Preparing to unpack .../300-r-cran-diffobj_0.3.5-1_s390x.deb ... 444s Unpacking r-cran-diffobj (0.3.5-1) ... 444s Selecting previously unselected package r-cran-dotcall64. 444s Preparing to unpack .../301-r-cran-dotcall64_1.2-1_s390x.deb ... 444s Unpacking r-cran-dotcall64 (1.2-1) ... 444s Selecting previously unselected package r-cran-sitmo. 444s Preparing to unpack .../302-r-cran-sitmo_2.0.2-1_s390x.deb ... 444s Unpacking r-cran-sitmo (2.0.2-1) ... 444s Selecting previously unselected package r-cran-dqrng. 444s Preparing to unpack .../303-r-cran-dqrng_0.3.2+dfsg-1_s390x.deb ... 444s Unpacking r-cran-dqrng (0.3.2+dfsg-1) ... 444s Selecting previously unselected package r-cran-fastdummies. 444s Preparing to unpack .../304-r-cran-fastdummies_1.7.5-1_all.deb ... 444s Unpacking r-cran-fastdummies (1.7.5-1) ... 444s Selecting previously unselected package r-cran-fitdistrplus. 444s Preparing to unpack .../305-r-cran-fitdistrplus_1.2-2-1_all.deb ... 444s Unpacking r-cran-fitdistrplus (1.2-2-1) ... 444s Selecting previously unselected package r-cran-fnn. 444s Preparing to unpack .../306-r-cran-fnn_1.1.4.1-1_s390x.deb ... 444s Unpacking r-cran-fnn (1.1.4.1-1) ... 444s Selecting previously unselected package r-cran-gtools. 444s Preparing to unpack .../307-r-cran-gtools_3.9.5-1_s390x.deb ... 444s Unpacking r-cran-gtools (3.9.5-1) ... 444s Selecting previously unselected package r-cran-gdata. 444s Preparing to unpack .../308-r-cran-gdata_3.0.1-1_all.deb ... 444s Unpacking r-cran-gdata (3.0.1-1) ... 444s Selecting previously unselected package r-cran-ggrepel. 444s Preparing to unpack .../309-r-cran-ggrepel_0.9.6-1_s390x.deb ... 444s Unpacking r-cran-ggrepel (0.9.6-1) ... 444s Selecting previously unselected package r-cran-ggridges. 444s Preparing to unpack .../310-r-cran-ggridges_0.5.6-1_all.deb ... 444s Unpacking r-cran-ggridges (0.5.6-1) ... 444s Selecting previously unselected package r-cran-goftest. 444s Preparing to unpack .../311-r-cran-goftest_1.2-3-1_s390x.deb ... 444s Unpacking r-cran-goftest (1.2-3-1) ... 444s Selecting previously unselected package r-cran-gplots. 444s Preparing to unpack .../312-r-cran-gplots_3.2.0-1_all.deb ... 444s Unpacking r-cran-gplots (3.2.0-1) ... 444s Selecting previously unselected package r-cran-gridextra. 444s Preparing to unpack .../313-r-cran-gridextra_2.3-3build1_all.deb ... 444s Unpacking r-cran-gridextra (2.3-3build1) ... 444s Selecting previously unselected package r-cran-rprojroot. 444s Preparing to unpack .../314-r-cran-rprojroot_2.0.4-2_all.deb ... 444s Unpacking r-cran-rprojroot (2.0.4-2) ... 444s Selecting previously unselected package r-cran-here. 444s Preparing to unpack .../315-r-cran-here_1.0.1-2_all.deb ... 444s Unpacking r-cran-here (1.0.1-2) ... 444s Selecting previously unselected package r-cran-ica. 444s Preparing to unpack .../316-r-cran-ica_1.0-3-1_all.deb ... 444s Unpacking r-cran-ica (1.0-3-1) ... 444s Selecting previously unselected package r-cran-igraph. 444s Preparing to unpack .../317-r-cran-igraph_2.1.4-1_s390x.deb ... 444s Unpacking r-cran-igraph (2.1.4-1) ... 444s Selecting previously unselected package r-cran-irlba. 444s Preparing to unpack .../318-r-cran-irlba_2.3.5.1-4_s390x.deb ... 444s Unpacking r-cran-irlba (2.3.5.1-4) ... 444s Selecting previously unselected package r-cran-kernlab. 444s Preparing to unpack .../319-r-cran-kernlab_0.9-33-1_s390x.deb ... 444s Unpacking r-cran-kernlab (0.9-33-1) ... 444s Selecting previously unselected package r-cran-rcpptoml. 444s Preparing to unpack .../320-r-cran-rcpptoml_0.2.2+dfsg-1_s390x.deb ... 444s Unpacking r-cran-rcpptoml (0.2.2+dfsg-1) ... 444s Selecting previously unselected package r-cran-png. 444s Preparing to unpack .../321-r-cran-png_0.1-8-1build2_s390x.deb ... 444s Unpacking r-cran-png (0.1-8-1build2) ... 444s Selecting previously unselected package r-cran-reticulate. 444s Preparing to unpack .../322-r-cran-reticulate_1.39.0+dfsg-1_s390x.deb ... 444s Unpacking r-cran-reticulate (1.39.0+dfsg-1) ... 444s Selecting previously unselected package r-cran-leiden. 444s Preparing to unpack .../323-r-cran-leiden_0.4.3.1+dfsg-1_all.deb ... 444s Unpacking r-cran-leiden (0.4.3.1+dfsg-1) ... 445s Selecting previously unselected package r-cran-zoo. 445s Preparing to unpack .../324-r-cran-zoo_1.8-12-2_s390x.deb ... 445s Unpacking r-cran-zoo (1.8-12-2) ... 445s Selecting previously unselected package r-cran-lmtest. 445s Preparing to unpack .../325-r-cran-lmtest_0.9.40-1_s390x.deb ... 445s Unpacking r-cran-lmtest (0.9.40-1) ... 445s Selecting previously unselected package r-cran-mathjaxr. 445s Preparing to unpack .../326-r-cran-mathjaxr_1.6-0-1_all.deb ... 445s Unpacking r-cran-mathjaxr (1.6-0-1) ... 445s Selecting previously unselected package r-cran-matrixmodels. 445s Preparing to unpack .../327-r-cran-matrixmodels_0.5-3-1_all.deb ... 445s Unpacking r-cran-matrixmodels (0.5-3-1) ... 445s Selecting previously unselected package r-cran-rbibutils. 445s Preparing to unpack .../328-r-cran-rbibutils_2.3-1_s390x.deb ... 445s Unpacking r-cran-rbibutils (2.3-1) ... 445s Selecting previously unselected package r-cran-rdpack. 445s Preparing to unpack .../329-r-cran-rdpack_2.6.2-1_all.deb ... 445s Unpacking r-cran-rdpack (2.6.2-1) ... 445s Selecting previously unselected package r-cran-mnormt. 445s Preparing to unpack .../330-r-cran-mnormt_2.1.1-2_s390x.deb ... 445s Unpacking r-cran-mnormt (2.1.1-2) ... 445s Selecting previously unselected package r-cran-sparsem. 445s Preparing to unpack .../331-r-cran-sparsem_1.84-2-1_s390x.deb ... 445s Unpacking r-cran-sparsem (1.84-2-1) ... 445s Selecting previously unselected package r-cran-quantreg. 445s Preparing to unpack .../332-r-cran-quantreg_6.00-1_s390x.deb ... 445s Unpacking r-cran-quantreg (6.00-1) ... 445s Selecting previously unselected package r-cran-sn. 445s Preparing to unpack .../333-r-cran-sn_2.1.1-2_all.deb ... 445s Unpacking r-cran-sn (2.1.1-2) ... 445s Selecting previously unselected package r-cran-mvtnorm. 445s Preparing to unpack .../334-r-cran-mvtnorm_1.3-3-1_s390x.deb ... 445s Unpacking r-cran-mvtnorm (1.3-3-1) ... 445s Selecting previously unselected package r-cran-tfisher. 445s Preparing to unpack .../335-r-cran-tfisher_0.2.0-3_all.deb ... 445s Unpacking r-cran-tfisher (0.2.0-3) ... 445s Selecting previously unselected package r-cran-plotrix. 445s Preparing to unpack .../336-r-cran-plotrix_3.8-4-1_all.deb ... 445s Unpacking r-cran-plotrix (3.8-4-1) ... 445s Selecting previously unselected package r-cran-th.data. 445s Preparing to unpack .../337-r-cran-th.data_1.1-3-1_all.deb ... 445s Unpacking r-cran-th.data (1.1-3-1) ... 445s Selecting previously unselected package r-cran-sandwich. 445s Preparing to unpack .../338-r-cran-sandwich_3.1-1-1_all.deb ... 445s Unpacking r-cran-sandwich (3.1-1-1) ... 445s Selecting previously unselected package r-cran-multcomp. 445s Preparing to unpack .../339-r-cran-multcomp_1.4-28-1_all.deb ... 445s Unpacking r-cran-multcomp (1.4-28-1) ... 445s Selecting previously unselected package r-cran-mutoss. 445s Preparing to unpack .../340-r-cran-mutoss_0.1-13-1_all.deb ... 445s Unpacking r-cran-mutoss (0.1-13-1) ... 445s Selecting previously unselected package r-cran-robustbase. 445s Preparing to unpack .../341-r-cran-robustbase_0.99-4-1-1_s390x.deb ... 445s Unpacking r-cran-robustbase (0.99-4-1-1) ... 445s Selecting previously unselected package r-cran-qqconf. 445s Preparing to unpack .../342-r-cran-qqconf_1.3.2+dfsg-1_s390x.deb ... 445s Unpacking r-cran-qqconf (1.3.2+dfsg-1) ... 445s Selecting previously unselected package r-cran-metap. 445s Preparing to unpack .../343-r-cran-metap_1.11-2_all.deb ... 445s Unpacking r-cran-metap (1.11-2) ... 445s Selecting previously unselected package r-cran-plotly. 445s Preparing to unpack .../344-r-cran-plotly_4.10.4+dfsg-2_all.deb ... 445s Unpacking r-cran-plotly (4.10.4+dfsg-2) ... 445s Selecting previously unselected package r-cran-segmented. 445s Preparing to unpack .../345-r-cran-segmented_2.1-3-1_all.deb ... 445s Unpacking r-cran-segmented (2.1-3-1) ... 445s Selecting previously unselected package r-cran-mixtools. 445s Preparing to unpack .../346-r-cran-mixtools_2.0.0-1_s390x.deb ... 445s Unpacking r-cran-mixtools (2.0.0-1) ... 445s Selecting previously unselected package r-cran-patchwork. 445s Preparing to unpack .../347-r-cran-patchwork_1.3.0-1_all.deb ... 445s Unpacking r-cran-patchwork (1.3.0-1) ... 445s Selecting previously unselected package r-cran-pbapply. 445s Preparing to unpack .../348-r-cran-pbapply_1.7-2-1_all.deb ... 445s Unpacking r-cran-pbapply (1.7-2-1) ... 445s Selecting previously unselected package r-cran-pkgbuild. 445s Preparing to unpack .../349-r-cran-pkgbuild_1.4.6-1_all.deb ... 445s Unpacking r-cran-pkgbuild (1.4.6-1) ... 445s Selecting previously unselected package r-cran-pkgload. 445s Preparing to unpack .../350-r-cran-pkgload_1.4.0-1_all.deb ... 445s Unpacking r-cran-pkgload (1.4.0-1) ... 445s Selecting previously unselected package r-cran-polyclip. 445s Preparing to unpack .../351-r-cran-polyclip_1.10-7-1_s390x.deb ... 445s Unpacking r-cran-polyclip (1.10-7-1) ... 445s Selecting previously unselected package r-cran-praise. 445s Preparing to unpack .../352-r-cran-praise_1.0.0-4build1_all.deb ... 445s Unpacking r-cran-praise (1.0.0-4build1) ... 445s Selecting previously unselected package r-cran-r.methodss3. 445s Preparing to unpack .../353-r-cran-r.methodss3_1.8.2-1_all.deb ... 445s Unpacking r-cran-r.methodss3 (1.8.2-1) ... 445s Selecting previously unselected package r-cran-r.oo. 445s Preparing to unpack .../354-r-cran-r.oo_1.27.0-1_all.deb ... 445s Unpacking r-cran-r.oo (1.27.0-1) ... 445s Selecting previously unselected package r-cran-r.utils. 446s Preparing to unpack .../355-r-cran-r.utils_2.12.3-1_all.deb ... 446s Unpacking r-cran-r.utils (2.12.3-1) ... 446s Selecting previously unselected package r-cran-rann. 446s Preparing to unpack .../356-r-cran-rann_2.6.2-1_s390x.deb ... 446s Unpacking r-cran-rann (2.6.2-1) ... 446s Selecting previously unselected package r-cran-rcppannoy. 446s Preparing to unpack .../357-r-cran-rcppannoy_0.0.22-1_s390x.deb ... 446s Unpacking r-cran-rcppannoy (0.0.22-1) ... 446s Selecting previously unselected package r-cran-rcppeigen. 446s Preparing to unpack .../358-r-cran-rcppeigen_0.3.4.0.2-1_s390x.deb ... 446s Unpacking r-cran-rcppeigen (0.3.4.0.2-1) ... 446s Selecting previously unselected package r-cran-rcpphnsw. 446s Preparing to unpack .../359-r-cran-rcpphnsw_0.6.0+ds-1_s390x.deb ... 446s Unpacking r-cran-rcpphnsw (0.6.0+ds-1) ... 446s Selecting previously unselected package r-cran-rcppprogress. 446s Preparing to unpack .../360-r-cran-rcppprogress_0.4.2-2build1_all.deb ... 446s Unpacking r-cran-rcppprogress (0.4.2-2build1) ... 446s Selecting previously unselected package r-cran-rocr. 446s Preparing to unpack .../361-r-cran-rocr_1.0-11-3_all.deb ... 446s Unpacking r-cran-rocr (1.0-11-3) ... 446s Selecting previously unselected package r-cran-rspectra. 446s Preparing to unpack .../362-r-cran-rspectra_0.16-2-1_s390x.deb ... 446s Unpacking r-cran-rspectra (0.16-2-1) ... 446s Selecting previously unselected package r-cran-rsvd. 446s Preparing to unpack .../363-r-cran-rsvd_1.0.5-1_all.deb ... 446s Unpacking r-cran-rsvd (1.0.5-1) ... 446s Selecting previously unselected package r-cran-rtsne. 446s Preparing to unpack .../364-r-cran-rtsne_0.17-1_s390x.deb ... 446s Unpacking r-cran-rtsne (0.17-1) ... 446s Selecting previously unselected package r-cran-scattermore. 446s Preparing to unpack .../365-r-cran-scattermore_1.2-1_s390x.deb ... 446s Unpacking r-cran-scattermore (1.2-1) ... 446s Selecting previously unselected package r-cran-sctransform. 446s Preparing to unpack .../366-r-cran-sctransform_0.4.1-1_s390x.deb ... 446s Unpacking r-cran-sctransform (0.4.1-1) ... 446s Selecting previously unselected package r-cran-sp. 446s Preparing to unpack .../367-r-cran-sp_1%3a2.1-4+dfsg-1_s390x.deb ... 446s Unpacking r-cran-sp (1:2.1-4+dfsg-1) ... 446s Selecting previously unselected package r-cran-spam. 446s Preparing to unpack .../368-r-cran-spam_2.11-1-1_s390x.deb ... 446s Unpacking r-cran-spam (2.11-1-1) ... 446s Selecting previously unselected package r-cran-seuratobject. 446s Preparing to unpack .../369-r-cran-seuratobject_5.0.2-1_s390x.deb ... 446s Unpacking r-cran-seuratobject (5.0.2-1) ... 446s Selecting previously unselected package r-cran-spatstat.utils. 446s Preparing to unpack .../370-r-cran-spatstat.utils_3.1-2-1_s390x.deb ... 446s Unpacking r-cran-spatstat.utils (3.1-2-1) ... 446s Selecting previously unselected package r-cran-spatstat.data. 446s Preparing to unpack .../371-r-cran-spatstat.data_3.1-4-1_all.deb ... 446s Unpacking r-cran-spatstat.data (3.1-4-1) ... 446s Selecting previously unselected package r-cran-spatstat.geom. 446s Preparing to unpack .../372-r-cran-spatstat.geom_3.2-9-2_s390x.deb ... 446s Unpacking r-cran-spatstat.geom (3.2-9-2) ... 446s Selecting previously unselected package r-cran-spatstat.random. 446s Preparing to unpack .../373-r-cran-spatstat.random_3.2-3-1_s390x.deb ... 446s Unpacking r-cran-spatstat.random (3.2-3-1) ... 446s Selecting previously unselected package r-cran-tensor. 446s Preparing to unpack .../374-r-cran-tensor_1.5-4_all.deb ... 446s Unpacking r-cran-tensor (1.5-4) ... 446s Selecting previously unselected package r-cran-spatstat.sparse. 446s Preparing to unpack .../375-r-cran-spatstat.sparse_3.1-0-1_s390x.deb ... 446s Unpacking r-cran-spatstat.sparse (3.1-0-1) ... 446s Selecting previously unselected package r-cran-spatstat.explore. 446s Preparing to unpack .../376-r-cran-spatstat.explore_3.2-7-1_s390x.deb ... 446s Unpacking r-cran-spatstat.explore (3.2-7-1) ... 446s Selecting previously unselected package r-cran-uwot. 446s Preparing to unpack .../377-r-cran-uwot_0.2.2-2_s390x.deb ... 446s Unpacking r-cran-uwot (0.2.2-2) ... 446s Selecting previously unselected package r-cran-seurat. 446s Preparing to unpack .../378-r-cran-seurat_5.0.1-1_s390x.deb ... 446s Unpacking r-cran-seurat (5.0.1-1) ... 446s Selecting previously unselected package r-cran-waldo. 446s Preparing to unpack .../379-r-cran-waldo_0.6.1-2_all.deb ... 446s Unpacking r-cran-waldo (0.6.1-2) ... 446s Selecting previously unselected package r-cran-testthat. 446s Preparing to unpack .../380-r-cran-testthat_3.2.1.1-1_s390x.deb ... 446s Unpacking r-cran-testthat (3.2.1.1-1) ... 446s Selecting previously unselected package r-cran-vgam. 446s Preparing to unpack .../381-r-cran-vgam_1.1-12-1_s390x.deb ... 446s Unpacking r-cran-vgam (1.1-12-1) ... 446s Setting up libjs-json (0~20221030+~1.0.8-1) ... 446s Setting up javascript-common (11+nmu1) ... 446s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 446s Setting up libpixman-1-0:s390x (0.44.0-3) ... 446s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 446s Setting up libncurses-dev:s390x (6.5+20250125-2) ... 446s Setting up fonts-mathjax (2.7.9+dfsg-1) ... 446s Setting up libjs-mathjax (2.7.9+dfsg-1) ... 446s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 446s Setting up libdatrie1:s390x (0.2.13-3build1) ... 446s Setting up libjs-popper.js (1.16.1+ds-6) ... 446s Setting up libxcb-render0:s390x (1.17.0-2) ... 446s Setting up libjs-sifter.js (0.6.0+dfsg-3) ... 446s Setting up fonts-glyphicons-halflings (1.009~3.4.1+dfsg-3) ... 446s Setting up unzip (6.0-28ubuntu6) ... 446s Setting up x11-common (1:7.7+23ubuntu3) ... 447s Setting up node-html5shiv (3.7.3+dfsg-5) ... 447s Setting up libdeflate0:s390x (1.23-1) ... 447s Setting up libjs-microplugin.js (0.0.3+dfsg-1.1) ... 447s Setting up libxcb-shm0:s390x (1.17.0-2) ... 447s Setting up libreadline-dev:s390x (8.2-6) ... 447s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 447s Setting up libjs-modernizr (3.13.0-0.1) ... 447s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 447s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 447s Setting up libjs-es5-shim (4.6.7-2) ... 447s Setting up zip (3.0-14ubuntu2) ... 447s Setting up libpcre2-32-0:s390x (10.42-4ubuntu3) ... 447s Setting up libblas3:s390x (3.12.1-2) ... 447s 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 447s Setting up libtirpc-dev:s390x (1.3.4+ds-1.3) ... 447s Setting up libpkgconf3:s390x (1.8.1-4) ... 447s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 447s Setting up libjs-d3 (3.5.17-4) ... 447s Setting up fonts-dejavu-mono (2.37-8) ... 447s Setting up libmpc3:s390x (1.3.1-1build2) ... 447s Setting up libtcl8.6:s390x (8.6.16+dfsg-1) ... 447s Setting up icu-devtools (76.1-1ubuntu2) ... 447s Setting up fonts-dejavu-core (2.37-8) ... 447s Setting up pkgconf-bin (1.8.1-4) ... 447s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 447s Setting up libltdl7:s390x (2.5.4-3build1) ... 447s Setting up libfftw3-double3:s390x (3.3.10-2fakesync1build1) ... 447s Setting up libgfortran5:s390x (14.2.0-17ubuntu1) ... 447s Setting up libwebp7:s390x (1.5.0-0.1) ... 447s Setting up liblzma-dev:s390x (5.6.3-1) ... 447s Setting up libubsan1:s390x (14.2.0-17ubuntu1) ... 447s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 447s Setting up libpcre2-posix3:s390x (10.42-4ubuntu3) ... 447s Setting up libjs-highlight.js (9.18.5+dfsg1-2) ... 447s Setting up libasan8:s390x (14.2.0-17ubuntu1) ... 447s Setting up libsuitesparseconfig7:s390x (1:7.8.3+dfsg-3) ... 447s Setting up liblua5.4-0:s390x (5.4.7-1) ... 447s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 447s Setting up libthai-data (0.1.29-2build1) ... 447s Setting up node-bootstrap-sass (3.4.3-2) ... 447s Setting up libjs-prettify (2015.12.04+dfsg-1.1) ... 447s Setting up libxss1:s390x (1:1.2.3-1build3) ... 447s Setting up libjs-bootstrap4 (4.6.1+dfsg1-4) ... 447s Setting up libpaper2:s390x (2.2.5-0.3) ... 447s Setting up pandoc-data (3.1.11.1-3build1) ... 447s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 447s Setting up libisl23:s390x (0.27-1) ... 447s Setting up libdeflate-dev:s390x (1.23-1) ... 447s Setting up node-normalize.css (8.0.1-5) ... 447s Setting up libicu-dev:s390x (76.1-1ubuntu2) ... 447s Setting up fonts-font-awesome (5.0.10+really4.7.0~dfsg-4.1) ... 447s Setting up xdg-utils (1.2.1-2ubuntu1) ... 447s update-alternatives: using /usr/bin/xdg-open to provide /usr/bin/open (open) in auto mode 447s Setting up libcc1-0:s390x (14.2.0-17ubuntu1) ... 447s Setting up libblas-dev:s390x (3.12.1-2) ... 447s 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 447s Setting up dctrl-tools (2.24-3build3) ... 447s Setting up libjs-bootstrap (3.4.1+dfsg-3) ... 447s Setting up libitm1:s390x (14.2.0-17ubuntu1) ... 447s Setting up libbz2-dev:s390x (1.0.8-6) ... 447s Setting up libjs-jquery-selectize.js (0.12.6+dfsg-1.1) ... 447s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 447s Setting up libice6:s390x (2:1.1.1-1) ... 447s Setting up libjpeg-turbo8-dev:s390x (2.1.5-3ubuntu2) ... 447s Setting up liblapack3:s390x (3.12.1-2) ... 447s 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 447s Setting up libamd3:s390x (1:7.8.3+dfsg-3) ... 447s Setting up libpcre2-dev:s390x (10.42-4ubuntu3) ... 447s Setting up libcolamd3:s390x (1:7.8.3+dfsg-3) ... 447s Setting up fontconfig-config (2.15.0-1.1ubuntu2) ... 447s Setting up libjs-twitter-bootstrap-datepicker (1.3.1+dfsg1-4.1) ... 447s Setting up libpng-dev:s390x (1.6.46-4) ... 447s Setting up libpaper-utils (2.2.5-0.3) ... 447s Setting up libjs-jquery-datatables (1.11.5+dfsg-2) ... 447s Setting up pkgconf:s390x (1.8.1-4) ... 447s Setting up libthai0:s390x (0.1.29-2build1) ... 447s Setting up libjs-jquery-ui (1.13.2+dfsg-1) ... 447s Setting up pandoc (3.1.11.1+ds-2) ... 447s Setting up libglpk40:s390x (5.0-1build2) ... 447s Setting up liblapack-dev:s390x (3.12.1-2) ... 447s 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 447s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 447s Setting up cpp-14 (14.2.0-17ubuntu1) ... 447s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 447s Setting up libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 447s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 447s Setting up libjpeg8-dev:s390x (8c-2ubuntu11) ... 447s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 447s Setting up libsm6:s390x (2:1.2.4-1) ... 447s Setting up libgfortran-14-dev:s390x (14.2.0-17ubuntu1) ... 447s Setting up fontconfig (2.15.0-1.1ubuntu2) ... 449s Regenerating fonts cache... done. 449s Setting up libxft2:s390x (2.3.6-1build1) ... 449s Setting up libboost1.83-dev:s390x (1.83.0-4.1ubuntu1) ... 449s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 449s Setting up libtk8.6:s390x (8.6.16-1) ... 449s Setting up libpango-1.0-0:s390x (1.56.1-1) ... 449s Setting up libjpeg-dev:s390x (8c-2ubuntu11) ... 449s Setting up libcairo2:s390x (1.18.2-2) ... 449s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 449s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 449s Setting up libxt6t64:s390x (1:1.2.1-1.2build1) ... 449s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 449s Setting up cpp (4:14.2.0-1ubuntu1) ... 449s Setting up libboost-dev:s390x (1.83.0.2ubuntu1) ... 449s Setting up libpangoft2-1.0-0:s390x (1.56.1-1) ... 449s Setting up libpangocairo-1.0-0:s390x (1.56.1-1) ... 449s Setting up gfortran-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 449s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 449s Setting up gcc-14 (14.2.0-17ubuntu1) ... 449s Setting up r-base-core (4.4.2-1build1) ... 449s Creating config file /etc/R/Renviron with new version 449s Setting up r-cran-crayon (1.5.3-1) ... 449s Setting up r-cran-squarem (2021.1-1) ... 449s Setting up r-cran-labeling (0.4.3-1) ... 449s Setting up r-cran-rcppprogress (0.4.2-2build1) ... 449s Setting up r-cran-sourcetools (0.1.7-1-1) ... 449s Setting up r-cran-futile.options (1.0.1-3build1) ... 449s Setting up r-cran-lattice (0.22-6-1) ... 449s Setting up r-cran-ps (1.8.1-1) ... 449s Setting up r-cran-nlme (3.1.167-1) ... 449s Setting up r-cran-farver (2.1.2-1) ... 449s Setting up r-cran-formatr (1.14-2) ... 449s Setting up r-cran-pbapply (1.7-2-1) ... 449s Setting up r-cran-xml (3.99-0.18-1) ... 449s Setting up r-cran-spatstat.utils (3.1-2-1) ... 449s Setting up r-cran-viridislite (0.4.2-2) ... 449s Setting up r-cran-locfit (1.5-9.11-1) ... 449s Setting up r-cran-cluster (2.1.8-1) ... 449s Setting up r-cran-sparsem (1.84-2-1) ... 449s Setting up r-cran-statmod (1.5.0-1) ... 449s Setting up r-cran-nnet (7.3-20-1) ... 449s Setting up r-cran-tensor (1.5-4) ... 449s Setting up r-cran-lazyeval (0.2.2-1build1) ... 449s Setting up r-cran-commonmark (1.9.2-2) ... 449s Setting up g++-14 (14.2.0-17ubuntu1) ... 449s Setting up r-cran-rjson (0.2.23-1) ... 449s Setting up r-cran-proxy (0.4-27-1) ... 449s Setting up r-cran-r6 (2.5.1-1) ... 449s Setting up r-cran-pkgkitten (0.2.4-1) ... 449s Setting up gfortran-14 (14.2.0-17ubuntu1) ... 449s Setting up r-cran-numderiv (2016.8-1.1-3) ... 449s Setting up r-cran-magrittr (2.0.3-1) ... 449s Setting up r-cran-rappdirs (0.3.3-1) ... 449s Setting up r-bioc-genomeinfodbdata (1.2.13-2) ... 449s Setting up r-cran-littler (0.3.20-2) ... 449s Setting up r-cran-bh (1.84.0-1) ... 449s Setting up r-cran-fs (1.6.5+dfsg-1) ... 449s Setting up r-cran-rcpp (1.0.14-1) ... 449s Setting up r-cran-curl (6.1.0+dfsg-1) ... 449s Setting up r-cran-codetools (0.2-20-1) ... 449s Setting up r-cran-brio (1.1.5-1) ... 449s Setting up r-cran-diffobj (0.3.5-1) ... 449s Setting up r-bioc-biocgenerics (0.52.0-2) ... 449s Setting up r-cran-rlang (1.1.5-1) ... 449s Setting up r-cran-matrixstats (1.5.0-1) ... 449s Setting up r-cran-listenv (0.9.1+dfsg-1) ... 449s Setting up littler (0.3.20-2) ... 449s Setting up gfortran-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 449s Setting up r-bioc-matrixgenerics (1.18.1-1) ... 449s Setting up r-cran-xfun (0.50+dfsg-1) ... 449s Setting up r-cran-vgam (1.1-12-1) ... 449s Setting up r-cran-rcpphnsw (0.6.0+ds-1) ... 449s Setting up r-cran-sys (3.4.3-1) ... 449s Setting up r-cran-deoptimr (1.1-3-1-1) ... 449s Setting up r-cran-withr (3.0.2+dfsg-1) ... 449s Setting up r-cran-mathjaxr (1.6-0-1) ... 449s Setting up r-cran-processx (3.8.5-1) ... 449s Setting up r-cran-mime (0.12-2) ... 449s Setting up r-cran-praise (1.0.0-4build1) ... 449s Setting up r-cran-generics (0.1.3-1) ... 449s Setting up r-cran-base64enc (0.1-3-3) ... 449s Setting up r-cran-iterators (1.0.14-1) ... 449s Setting up r-cran-abind (1.4-8-1) ... 449s Setting up r-cran-digest (0.6.37-1) ... 449s Setting up r-cran-ape (5.8-1-1) ... 449s Setting up r-cran-yaml (2.3.10-1) ... 449s Setting up r-cran-ica (1.0-3-1) ... 449s Setting up r-cran-lambda.r (1.2.4-2build1) ... 449s Setting up r-cran-rann (2.6.2-1) ... 449s Setting up r-cran-gower (1.0.2-1) ... 449s Setting up r-cran-evaluate (1.0.3-1) ... 449s Setting up r-cran-timedate (4041.110-1) ... 449s Setting up r-cran-highr (0.11+dfsg-1) ... 449s Setting up r-cran-foreach (1.5.2-1) ... 449s Setting up r-cran-fansi (1.0.5-1) ... 449s Setting up r-cran-mass (7.3-64-1) ... 449s Setting up r-cran-snow (1:0.4.4-2) ... 449s Setting up r-cran-gtools (3.9.5-1) ... 449s Setting up r-cran-kernlab (0.9-33-1) ... 449s Setting up r-cran-data.table (1.16.4+dfsg-1) ... 449s Setting up r-cran-glue (1.8.0-1) ... 449s Setting up r-cran-xtable (1:1.8-4-2) ... 449s Setting up r-cran-polyclip (1.10-7-1) ... 449s Setting up r-cran-cli (3.6.3-1) ... 449s Setting up r-cran-rbibutils (2.3-1) ... 449s Setting up r-cran-lifecycle (1.0.4+dfsg-1) ... 449s Setting up r-cran-dotcall64 (1.2-1) ... 449s Setting up r-cran-bitops (1.0-9-1) ... 449s Setting up r-cran-rprojroot (2.0.4-2) ... 449s Setting up r-cran-fnn (1.1.4.1-1) ... 449s Setting up gcc (4:14.2.0-1ubuntu1) ... 449s Setting up r-cran-progressr (0.15.1-1) ... 449s Setting up r-bioc-zlibbioc (1.52.0+dfsg-2) ... 449s Setting up r-cran-deldir (2.0-4-1build1) ... 449s Setting up r-cran-goftest (1.2-3-1) ... 449s Setting up r-cran-shape (1.4.6.1-1) ... 449s Setting up r-cran-askpass (1.2.1-1) ... 449s Setting up r-cran-fastmap (1.2.0-1) ... 449s Setting up r-cran-png (0.1-8-1build2) ... 449s Setting up r-cran-r.methodss3 (1.8.2-1) ... 449s Setting up r-bioc-biobase (2.66.0-2) ... 449s Setting up r-cran-jsonlite (1.8.9+dfsg-1) ... 449s Setting up r-cran-mnormt (2.1.1-2) ... 449s Setting up r-cran-pkgconfig (2.0.3-2build1) ... 449s Setting up r-cran-sp (1:2.1-4+dfsg-1) ... 449s Setting up r-cran-utf8 (1.2.4-1) ... 449s Setting up r-cran-colorspace (2.1-1+dfsg-1) ... 449s Setting up r-cran-parallelly (1.42.0-1) ... 449s Setting up r-cran-stringi (1.8.4-1build1) ... 449s Setting up r-cran-plotrix (3.8-4-1) ... 449s Setting up r-cran-cpp11 (0.5.1-1) ... 449s Setting up r-cran-mvtnorm (1.3-3-1) ... 449s Setting up r-cran-sitmo (2.0.2-1) ... 449s Setting up r-cran-segmented (2.1-3-1) ... 449s Setting up r-cran-plyr (1.8.9-1) ... 449s Setting up r-cran-rcolorbrewer (1.1-3-1build1) ... 449s Setting up r-bioc-s4vectors (0.44.0+dfsg-2) ... 449s Setting up r-cran-isoband (0.2.7-1) ... 449s Setting up r-cran-futile.logger (1.4.3-4build1) ... 449s Setting up r-cran-diagram (1.6.5-2) ... 449s Setting up r-cran-waldo (0.6.1-2) ... 449s Setting up r-bioc-limma (3.62.2+dfsg-1) ... 449s Setting up r-cran-gtable (0.3.6+dfsg-1) ... 449s Setting up r-cran-zoo (1.8-12-2) ... 449s Setting up r-cran-later (1.4.1+dfsg-1) ... 449s Setting up r-cran-matrix (1.7-2-1) ... 449s Setting up r-cran-spatstat.sparse (3.1-0-1) ... 449s Setting up r-cran-here (1.0.1-2) ... 449s Setting up r-cran-htmltools (0.5.8.1-1) ... 449s Setting up r-cran-tinytex (0.54-1) ... 449s Setting up r-cran-irlba (2.3.5.1-4) ... 449s Setting up r-cran-kernsmooth (2.23-26-1) ... 449s Setting up r-cran-knitr (1.49+dfsg-1) ... 449s Setting up r-cran-rcpptoml (0.2.2+dfsg-1) ... 449s Setting up r-cran-mgcv (1.9-1-1) ... 449s Setting up g++ (4:14.2.0-1ubuntu1) ... 449s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 449s Setting up r-cran-robustbase (0.99-4-1-1) ... 449s Setting up r-cran-cachem (1.1.0-1) ... 449s Setting up r-cran-lmtest (0.9.40-1) ... 449s Setting up r-cran-sass (0.4.9+dfsg-1) ... 449s Setting up build-essential (12.10ubuntu1) ... 449s Setting up r-cran-catools (1.18.2-1) ... 449s Setting up r-cran-rtsne (0.17-1) ... 449s Setting up r-cran-rcpparmadillo (14.2.3-1-1) ... 449s Setting up r-bioc-iranges (2.40.1-2) ... 449s Setting up r-cran-dqrng (0.3.2+dfsg-1) ... 449s Setting up r-cran-tzdb (0.4.0-2) ... 449s Setting up r-cran-reticulate (1.39.0+dfsg-1) ... 449s Setting up r-cran-globals (0.16.3-1) ... 449s Setting up r-cran-rcurl (1.98-1.16+dfsg-1) ... 449s Setting up r-cran-spam (2.11-1-1) ... 449s Setting up r-cran-restfulr (0.0.15-1) ... 449s Setting up r-cran-gdata (3.0.1-1) ... 449s Setting up r-cran-vctrs (0.6.5-1) ... 449s Setting up r-cran-rcppeigen (0.3.4.0.2-1) ... 449s Setting up r-cran-pillar (1.10.1+dfsg-1) ... 449s Setting up r-cran-rcppannoy (0.0.22-1) ... 449s Setting up r-cran-openssl (2.2.0+dfsg-1) ... 449s Setting up r-bioc-s4arrays (1.6.0+dfsg-2) ... 449s Setting up r-cran-stringr (1.5.1-1) ... 449s Setting up r-cran-class (7.3-23-1) ... 449s Setting up r-bioc-biocparallel (1.40.0-2) ... 449s Setting up r-cran-modelmetrics (1.2.2.2-1build1) ... 449s Setting up r-cran-callr (3.7.6-1) ... 449s Setting up r-cran-matrixmodels (0.5-3-1) ... 449s Setting up r-bioc-rhtslib (3.2.0+dfsg-2) ... 449s Setting up r-cran-desc (1.4.3-1) ... 449s Setting up r-cran-munsell (0.5.1-1) ... 449s Setting up r-cran-tibble (3.2.1+dfsg-3) ... 449s Setting up r-cran-clock (0.7.1-1) ... 449s Setting up r-cran-sandwich (3.1-1-1) ... 449s Setting up r-cran-proc (1.18.5-1) ... 449s Setting up r-cran-fontawesome (0.5.3-1) ... 449s Setting up r-cran-survival (3.8-3-1) ... 449s Setting up r-cran-igraph (2.1.4-1) ... 449s Setting up r-bioc-biocio (1.16.0+dfsg-2) ... 449s Setting up r-cran-r.oo (1.27.0-1) ... 449s Setting up r-cran-rdpack (2.6.2-1) ... 449s Setting up r-cran-future (1.34.0+dfsg-1) ... 449s Setting up gfortran (4:14.2.0-1ubuntu1) ... 449s update-alternatives: using /usr/bin/gfortran to provide /usr/bin/f95 (f95) in auto mode 449s 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 449s update-alternatives: using /usr/bin/gfortran to provide /usr/bin/f77 (f77) in auto mode 449s 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 449s Setting up r-cran-jquerylib (0.1.4+dfsg-4) ... 449s Setting up r-cran-tidyselect (1.2.1+dfsg-1) ... 449s Setting up r-cran-reshape2 (1.4.4-2build1) ... 449s Setting up r-cran-rsvd (1.0.5-1) ... 449s Setting up r-cran-future.apply (1.11.3+dfsg-1) ... 449s Setting up r-cran-timechange (0.3.0-1) ... 449s Setting up r-cran-th.data (1.1-3-1) ... 449s Setting up r-cran-httr (1.4.7+dfsg-1) ... 449s Setting up r-cran-gridextra (2.3-3build1) ... 449s Setting up r-cran-scales (1.3.0-1) ... 449s Setting up r-cran-memoise (2.0.1-1) ... 449s Setting up r-cran-lava (1.8.1+dfsg-1) ... 449s Setting up r-cran-promises (1.3.2+dfsg-1) ... 449s Setting up r-cran-purrr (1.0.2-1) ... 449s Setting up r-cran-e1071 (1.7-16-1) ... 449s Setting up r-cran-spatstat.data (3.1-4-1) ... 449s Setting up r-cran-fastdummies (1.7.5-1) ... 449s Setting up r-cran-multcomp (1.4-28-1) ... 449s Setting up r-cran-qqconf (1.3.2+dfsg-1) ... 449s Setting up r-cran-seuratobject (5.0.2-1) ... 449s Setting up r-cran-spatstat.geom (3.2-9-2) ... 449s Setting up r-bioc-xvector (0.46.0-2) ... 449s Setting up r-cran-pkgbuild (1.4.6-1) ... 449s Setting up r-cran-hardhat (1.4.0+dfsg-1) ... 449s Setting up r-cran-dplyr (1.1.4-4) ... 449s Setting up r-cran-rspectra (0.16-2-1) ... 449s Setting up r-cran-gplots (3.2.0-1) ... 449s Setting up r-cran-uwot (0.2.2-2) ... 449s Setting up r-cran-leiden (0.4.3.1+dfsg-1) ... 449s Setting up r-bioc-multtest (2.62.0-2) ... 449s Setting up r-cran-lubridate (1.9.4+dfsg-1) ... 449s Setting up r-cran-pkgload (1.4.0-1) ... 449s Setting up r-cran-r.utils (2.12.3-1) ... 449s Setting up r-cran-rocr (1.0-11-3) ... 449s Setting up r-base-dev (4.4.2-1build1) ... 449s Setting up r-cran-prodlim (2024.06.25-1) ... 449s Setting up r-cran-fitdistrplus (1.2-2-1) ... 449s Setting up r-bioc-ucsc.utils (1.2.0+ds-2) ... 449s Setting up r-bioc-sparsearray (1.6.1+dfsg-1) ... 449s Setting up r-cran-ggplot2 (3.5.1+dfsg-1) ... 449s Setting up r-cran-scattermore (1.2-1) ... 449s Setting up r-cran-httpuv (1.6.15+dfsg-1) ... 449s Setting up r-cran-rpart (4.1.24-1) ... 449s Setting up r-cran-spatstat.random (3.2-3-1) ... 449s Setting up r-cran-ipred (0.9-15-1) ... 449s Setting up r-cran-testthat (3.2.1.1-1) ... 449s Setting up r-bioc-genomeinfodb (1.42.3+dfsg-1) ... 449s Setting up r-cran-bslib (0.8.0+dfsg-1) ... 449s Setting up r-cran-spatstat.explore (3.2-7-1) ... 449s Setting up r-cran-ggrepel (0.9.6-1) ... 449s Setting up r-cran-tidyr (1.3.1-1) ... 449s Setting up r-cran-recipes (1.1.0+dfsg-1) ... 449s Setting up pkg-r-autopkgtest (20231212ubuntu1) ... 449s Setting up r-cran-mutoss (0.1-13-1) ... 449s Setting up r-cran-ggridges (0.5.6-1) ... 449s Setting up r-bioc-delayedarray (0.32.0+dfsg-2) ... 449s Setting up r-cran-cowplot (1.1.3+dfsg-1) ... 449s Setting up r-cran-sctransform (0.4.1-1) ... 449s Setting up r-cran-patchwork (1.3.0-1) ... 449s Setting up r-bioc-genomicranges (1.58.0+dfsg-2) ... 449s Setting up r-bioc-biostrings (2.74.1+dfsg-2) ... 449s Setting up r-cran-caret (7.0-1+dfsg-1) ... 449s Setting up r-cran-shiny (1.10.0+dfsg-2) ... 449s Setting up r-cran-shinyjs (2.1.0-1) ... 449s Setting up r-cran-miniui (0.1.1.1-3build1) ... 449s Setting up r-cran-rmarkdown (2.29+dfsg-1) ... 449s Setting up r-cran-conquer (1.3.3-1) ... 449s Setting up r-bioc-rsamtools (2.22.0+dfsg-2) ... 449s Setting up r-cran-crosstalk (1.2.1+dfsg-1) ... 449s Setting up r-bioc-summarizedexperiment (1.36.0+dfsg-2) ... 449s Setting up r-cran-quantreg (6.00-1) ... 449s Setting up r-cran-sn (2.1.1-2) ... 449s Setting up r-bioc-deseq2 (1.46.0+dfsg-2) ... 449s Setting up r-cran-htmlwidgets (1.6.4+dfsg-1) ... 449s Setting up r-cran-colourpicker (1.3.0+dfsg-1) ... 449s Setting up r-cran-tfisher (0.2.0-3) ... 449s Setting up r-bioc-genomicalignments (1.42.0-2) ... 449s Setting up r-cran-metap (1.11-2) ... 449s Setting up r-bioc-rtracklayer (1.66.0-2) ... 449s Setting up r-cran-plotly (4.10.4+dfsg-2) ... 449s Setting up r-cran-mixtools (2.0.0-1) ... 449s Setting up r-cran-seurat (5.0.1-1) ... 449s Processing triggers for man-db (2.13.0-1) ... 449s Processing triggers for install-info (7.1.1-1) ... 450s Processing triggers for libc-bin (2.41-1ubuntu1) ... 450s autopkgtest: DBG: testbed command exited with code 0 450s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'r-cran-seurat'], kind short, sout pipe, serr pipe, env [] 450s autopkgtest: DBG: testbed command exited with code 0 450s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.NdkO4E/pkg-r-autopkgtest-packages.all"], kind short, sout raw, serr pipe, env [] 450s autopkgtest: DBG: testbed command exited with code 0 450s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.NdkO4E/pkg-r-autopkgtest-packages.all /tmp/autopkgtest-work.2zm968cd/out/pkg-r-autopkgtest-packages.all 450s autopkgtest: DBG: got reply from testbed: ok 450s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.NdkO4E/build.BNZ/src'], kind short, sout raw, serr raw, env [] 450s autopkgtest: DBG: testbed command exited with code 1 450s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.NdkO4E/build.BNZ'], kind short, sout raw, serr pipe, env [] 451s autopkgtest: DBG: testbed command exited with code 0 451s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.2zm968cd/out/tests-tree/ /tmp/autopkgtest.NdkO4E/build.BNZ/src/ 451s autopkgtest: DBG: got reply from testbed: ok 451s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.NdkO4E/build.BNZ/src'], kind short, sout raw, serr pipe, env [] 452s autopkgtest: DBG: testbed command exited with code 0 452s autopkgtest [23:57:08]: test pkg-r-autopkgtest: /usr/share/dh-r/pkg-r-autopkgtest 452s autopkgtest [23:57:08]: test pkg-r-autopkgtest: [----------------------- 452s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.NdkO4E/wrapper.sh --debug --artifacts=/tmp/autopkgtest.NdkO4E/pkg-r-autopkgtest-artifacts --chdir=/tmp/autopkgtest.NdkO4E/build.BNZ/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.NdkO4E/pkg-r-autopkgtest-stderr --stdout=/tmp/autopkgtest.NdkO4E/pkg-r-autopkgtest-stdout --tmp=/tmp/autopkgtest.NdkO4E/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- bash -ec /usr/share/dh-r/pkg-r-autopkgtest"], kind test, sout raw, serr raw, env [] 452s /tmp/autopkgtest.NdkO4E/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.NdkO4E/pkg-r-autopkgtest-artifacts 452s /tmp/autopkgtest.NdkO4E/wrapper.sh: changing to directory: /tmp/autopkgtest.NdkO4E/build.BNZ/src 452s /tmp/autopkgtest.NdkO4E/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 452s /tmp/autopkgtest.NdkO4E/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 452s /tmp/autopkgtest.NdkO4E/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 452s /tmp/autopkgtest.NdkO4E/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 452s /tmp/autopkgtest.NdkO4E/wrapper.sh: setting environment: LANG=C.UTF-8 452s /tmp/autopkgtest.NdkO4E/wrapper.sh: unsetting environment: LANGUAGE 452s /tmp/autopkgtest.NdkO4E/wrapper.sh: unsetting environment: LC_ADDRESS 452s /tmp/autopkgtest.NdkO4E/wrapper.sh: unsetting environment: LC_ALL 452s /tmp/autopkgtest.NdkO4E/wrapper.sh: unsetting environment: LC_COLLATE 452s /tmp/autopkgtest.NdkO4E/wrapper.sh: unsetting environment: LC_CTYPE 452s /tmp/autopkgtest.NdkO4E/wrapper.sh: unsetting environment: LC_IDENTIFICATION 452s /tmp/autopkgtest.NdkO4E/wrapper.sh: unsetting environment: LC_MEASUREMENT 452s /tmp/autopkgtest.NdkO4E/wrapper.sh: unsetting environment: LC_MESSAGES 452s /tmp/autopkgtest.NdkO4E/wrapper.sh: unsetting environment: LC_MONETARY 452s /tmp/autopkgtest.NdkO4E/wrapper.sh: unsetting environment: LC_NAME 452s /tmp/autopkgtest.NdkO4E/wrapper.sh: unsetting environment: LC_NUMERIC 452s /tmp/autopkgtest.NdkO4E/wrapper.sh: unsetting environment: LC_PAPER 452s /tmp/autopkgtest.NdkO4E/wrapper.sh: unsetting environment: LC_TELEPHONE 452s /tmp/autopkgtest.NdkO4E/wrapper.sh: unsetting environment: LC_TIME 452s /tmp/autopkgtest.NdkO4E/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 452s /tmp/autopkgtest.NdkO4E/wrapper.sh: pretending to be a login shell 452s /tmp/autopkgtest.NdkO4E/wrapper.sh: will write standard error to /tmp/autopkgtest.NdkO4E/pkg-r-autopkgtest-stderr 452s /tmp/autopkgtest.NdkO4E/wrapper.sh: will write stdout to /tmp/autopkgtest.NdkO4E/pkg-r-autopkgtest-stdout 452s /tmp/autopkgtest.NdkO4E/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.NdkO4E/autopkgtest_tmp 452s /tmp/autopkgtest.NdkO4E/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 452s /tmp/autopkgtest.NdkO4E/wrapper.sh: command to run: bash -ec /usr/share/dh-r/pkg-r-autopkgtest 452s /tmp/autopkgtest.NdkO4E/wrapper.sh: copying /tmp/tmp.N1wLXTRYCn/out to stdout and file: /tmp/autopkgtest.NdkO4E/pkg-r-autopkgtest-stdout 452s /tmp/autopkgtest.NdkO4E/wrapper.sh: copying /tmp/tmp.N1wLXTRYCn/err to standard error and file: /tmp/autopkgtest.NdkO4E/pkg-r-autopkgtest-stdout 452s /tmp/autopkgtest.NdkO4E/wrapper.sh: writing script pid 5391 to /tmp/autopkgtest_script_pid 452s Test: Try to load the R library Seurat 452s 452s R version 4.4.2 (2024-10-31) -- "Pile of Leaves" 452s Copyright (C) 2024 The R Foundation for Statistical Computing 452s Platform: s390x-ibm-linux-gnu 452s 452s R is free software and comes with ABSOLUTELY NO WARRANTY. 452s You are welcome to redistribute it under certain conditions. 452s Type 'license()' or 'licence()' for distribution details. 452s 452s R is a collaborative project with many contributors. 452s Type 'contributors()' for more information and 452s 'citation()' on how to cite R or R packages in publications. 452s 452s Type 'demo()' for some demos, 'help()' for on-line help, or 452s 'help.start()' for an HTML browser interface to help. 452s Type 'q()' to quit R. 452s 452s > library('Seurat') 452s Loading required package: SeuratObject 452s Loading required package: sp 454s ‘SeuratObject’ was built under R 4.4.1 but the current version is 454s 4.4.2; it is recomended that you reinstall ‘SeuratObject’ as the ABI 454s for R may have changed 454s ‘SeuratObject’ was built with package ‘Matrix’ 1.7.0 but the current 454s version is 1.7.2; it is recomended that you reinstall ‘SeuratObject’ as 454s the ABI for ‘Matrix’ may have changed 454s 454s Attaching package: ‘SeuratObject’ 454s 454s The following objects are masked from ‘package:base’: 454s 454s intersect, t 454s 456s > 456s > 456s Other tests are currently unsupported! 456s They will be progressively added. 456s /tmp/autopkgtest.NdkO4E/wrapper.sh: checking for leaked background processes... 456s /tmp/autopkgtest.NdkO4E/wrapper.sh: waiting for tee/cat subprocesses... 456s /tmp/autopkgtest.NdkO4E/wrapper.sh: cleaning up... 456s /tmp/autopkgtest.NdkO4E/wrapper.sh: Exit status: 0 456s autopkgtest: DBG: testbed command exited with code 0 457s autopkgtest [23:57:13]: test pkg-r-autopkgtest: -----------------------] 457s autopkgtest: DBG: testbed executing test finished with exit status 0 457s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.NdkO4E/pkg-r-autopkgtest-stdout /tmp/autopkgtest-work.2zm968cd/out/pkg-r-autopkgtest-stdout 457s autopkgtest: DBG: got reply from testbed: ok 457s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.NdkO4E/pkg-r-autopkgtest-stderr /tmp/autopkgtest-work.2zm968cd/out/pkg-r-autopkgtest-stderr 457s autopkgtest: DBG: got reply from testbed: ok 457s pkg-r-autopkgtest PASS 457s autopkgtest [23:57:13]: test pkg-r-autopkgtest: - - - - - - - - - - results - - - - - - - - - - 457s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.NdkO4E/pkg-r-autopkgtest-artifacts/ /tmp/autopkgtest-work.2zm968cd/out/artifacts/ 457s autopkgtest: DBG: got reply from testbed: ok 457s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.NdkO4E/pkg-r-autopkgtest-artifacts', '/tmp/autopkgtest.NdkO4E/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 457s autopkgtest: DBG: testbed command exited with code 0 457s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 457s autopkgtest [23:57:13]: @@@@@@@@@@@@@@@@@@@@ summary 457s run-unit-test PASS 457s pkg-r-autopkgtest PASS 457s autopkgtest: DBG: testbed stop 457s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.NdkO4E 457s autopkgtest: DBG: sending command to testbed: close 462s autopkgtest: DBG: got reply from testbed: ok 462s autopkgtest: DBG: sending command to testbed: quit 462s nova [W] Using flock in prodstack6-s390x 462s Creating nova instance adt-plucky-s390x-r-cran-seurat-20250215-234936-juju-7f2275-prod-proposed-migration-environment-15-844e7cd2-3b63-4cb5-b61e-c64b93799097 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 462s nova [W] Timed out waiting for c69f7b80-a6c9-4e56-a0a7-ec5c41594d0b to get deleted. 462s nova [W] Using flock in prodstack6-s390x 462s Creating nova instance adt-plucky-s390x-r-cran-seurat-20250215-234936-juju-7f2275-prod-proposed-migration-environment-15-844e7cd2-3b63-4cb5-b61e-c64b93799097 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 462s nova [W] Timed out waiting for eddafc70-7dab-4ba3-9fef-445ebc6956ef to get deleted.