0s autopkgtest: DBG: testbed init 0s autopkgtest [01:08:45]: starting date and time: 2025-02-16 01:08:45+0000 0s autopkgtest [01:08:45]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [01:08:45]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.s36dbjc5/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 node-opencv --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-2.secgroup --name adt-plucky-s390x-node-opencv-20250216-010844-juju-7f2275-prod-proposed-migration-environment-15-57408ebf-be22-4513-af80-d2ace0b083bd --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 96s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.cAVQ9K 96s autopkgtest: DBG: sending command to testbed: print-execute-command 96s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.m0890zbg/runcmd 96s autopkgtest: DBG: sending command to testbed: capabilities 96s autopkgtest: DBG: got reply from testbed: ok revert reboot revert-full-system suggested-normal-user=ubuntu isolation-machine root-on-testbed 96s autopkgtest: DBG: testbed capabilities: ['revert', 'reboot', 'revert-full-system', 'suggested-normal-user=ubuntu', 'isolation-machine', 'root-on-testbed', 'has_internet'] 96s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.cAVQ9K'], kind short, sout raw, serr pipe, env [] 96s autopkgtest: DBG: testbed command exited with code 0 96s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.cAVQ9K/wrapper.sh 96s autopkgtest: DBG: got reply from testbed: ok 96s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.cAVQ9K/wrapper.sh'], kind short, sout raw, serr pipe, env [] 96s autopkgtest: DBG: testbed command exited with code 0 96s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest [01:10:22]: testbed dpkg architecture: s390x 97s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest [01:10:22]: testbed apt version: 2.9.28 97s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest: DBG: testbed has eatmydata 97s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest [01:10:22]: @@@@@@@@@@@@@@@@@@@@ test bed setup 97s 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 [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest [01:10:22]: testbed release detected to be: None 97s 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 [] 97s autopkgtest: DBG: testbed command exited with code 0 97s 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 [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest: DBG: adding APT source: Types: deb deb-src 98s URIs: http://ftpmaster.internal/ubuntu/ 98s Suites: plucky-proposed 98s Components: main restricted universe multiverse 98s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 98s 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 [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 98s Package: * 98s Pin: release plucky-proposed 98s Pin-Priority: 500 98s 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 [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest [01:10:23]: updating testbed package index (apt update) 98s 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'] 98s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 99s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 99s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 99s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 99s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 99s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 99s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [823 kB] 99s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.1 kB] 99s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [164 kB] 99s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 99s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 99s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 99s Fetched 2062 kB in 1s (2085 kB/s) 100s Reading package lists... 100s autopkgtest: DBG: testbed command exited with code 0 100s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 100s Package: * 100s Pin: release plucky-proposed 100s Pin-Priority: 100 100s 100s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 100s Pin: release plucky-proposed 100s Pin-Priority: 995 100s 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 [] 100s autopkgtest: DBG: testbed command exited with code 0 100s 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.cAVQ9K/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 100s autopkgtest: DBG: testbed command exited with code 0 100s 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'] 100s + lsb_release --codename --short 100s + RELEASE=plucky 100s + cat 100s + [ plucky != trusty ] 100s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 100s Reading package lists... 100s Building dependency tree... 100s Reading state information... 101s Calculating upgrade... 101s The following packages were automatically installed and are no longer required: 101s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 101s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 101s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 101s linux-tools-6.11.0-8-generic 101s Use 'sudo apt autoremove' to remove them. 101s The following packages will be upgraded: 101s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 101s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 101s Need to get 1155 kB of archives. 101s After this operation, 16.4 kB of additional disk space will be used. 101s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 101s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 101s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 101s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 101s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 101s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 101s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 102s Preconfiguring packages ... 102s Fetched 1155 kB in 1s (1898 kB/s) 102s (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.) 102s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 102s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 102s Setting up dash (0.5.12-12ubuntu1) ... 102s (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.) 102s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 102s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 102s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 102s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 102s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 102s (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.) 102s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 102s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 102s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 102s (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.) 102s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 102s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 102s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 102s (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.) 102s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 102s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 102s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 102s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 102s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 102s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 102s Setting up libtasn1-6:s390x (4.20.0-2) ... 102s Processing triggers for libc-bin (2.40-4ubuntu1) ... 102s Processing triggers for man-db (2.13.0-1) ... 103s Processing triggers for debianutils (5.21) ... 103s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 103s + /usr/lib/apt/apt-helper analyze-pattern ?true 103s + uname -r 103s + sed s/\./\\./g 103s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 103s + apt list ?obsolete 103s + tail -n+2 103s + grep -v ^linux-.*6\.12\.0-15-generic.* 103s + cut -d/ -f1 103s + true 103s + obsolete_pkgs= 103s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 103s Reading package lists... 103s Building dependency tree... 103s Reading state information... 103s The following packages will be REMOVED: 103s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 103s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 103s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 103s linux-tools-6.11.0-8-generic* 103s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 103s After this operation, 167 MB disk space will be freed. 103s (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.) 103s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 103s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 103s Removing libpython3.12t64:s390x (3.12.9-1) ... 103s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 103s Removing libnsl2:s390x (1.3.0-3build3) ... 103s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 103s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 104s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 104s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 104s Processing triggers for libc-bin (2.40-4ubuntu1) ... 104s (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.) 104s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 104s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 105s + grep -q trusty /etc/lsb-release 105s + [ ! -d /usr/share/doc/unattended-upgrades ] 105s + [ ! -d /usr/share/doc/lxd ] 105s + [ ! -d /usr/share/doc/lxd-client ] 105s + [ ! -d /usr/share/doc/snapd ] 105s + type iptables 105s + cat 105s + chmod 755 /etc/rc.local 105s + . /etc/rc.local 105s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 105s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 105s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 105s + uname -m 105s + [ s390x = ppc64le ] 105s + [ -d /run/systemd/system ] 105s + systemd-detect-virt --quiet --vm 105s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 105s + cat 105s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 105s + echo COMPRESS=lz4 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest [01:10:30]: upgrading testbed (apt dist-upgrade and autopurge) 105s 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'] 105s Reading package lists... 105s Building dependency tree... 105s Reading state information... 105s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 105s Starting 2 pkgProblemResolver with broken count: 0 105s Done 105s Entering ResolveByKeep 106s 106s The following packages will be upgraded: 106s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 106s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 106s Need to get 10.7 MB of archives. 106s After this operation, 305 kB of additional disk space will be used. 106s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 106s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 106s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 106s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 107s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 107s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 107s Preconfiguring packages ... 107s Fetched 10.7 MB in 1s (11.8 MB/s) 107s (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.) 107s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 107s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 107s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 107s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 107s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 107s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 107s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 107s Checking for services that may need to be restarted... 107s Checking init scripts... 107s Checking for services that may need to be restarted... 107s Checking init scripts... 107s Stopping some services possibly affected by the upgrade (will be restarted later): 107s cron: stopping...done. 107s 107s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 107s Setting up libc6:s390x (2.41-1ubuntu1) ... 107s Checking for services that may need to be restarted... 107s Checking init scripts... 107s Restarting services possibly affected by the upgrade: 107s cron: restarting...done. 107s 107s Services restarted successfully. 108s (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.) 108s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 108s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 108s Setting up libc-bin (2.41-1ubuntu1) ... 108s (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.) 108s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 108s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 108s Setting up iproute2 (6.13.0-1ubuntu1) ... 108s Setting up locales (2.41-1ubuntu1) ... 108s Installing new version of config file /etc/locale.alias ... 108s Generating locales (this might take a while)... 109s en_US.UTF-8... done 109s Generation complete. 109s Setting up libc-dev-bin (2.41-1ubuntu1) ... 109s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 109s Processing triggers for man-db (2.13.0-1) ... 110s Processing triggers for systemd (257.2-3ubuntu1) ... 111s autopkgtest: DBG: testbed command exited with code 0 111s 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'] 111s Reading package lists... 111s Building dependency tree... 111s Reading state information... 111s Starting pkgProblemResolver with broken count: 0 111s Starting 2 pkgProblemResolver with broken count: 0 111s Done 111s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 111s autopkgtest: DBG: testbed command exited with code 0 111s 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.cAVQ9K/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 111s autopkgtest: DBG: testbed command exited with code 1 111s autopkgtest [01:10:36]: rebooting testbed after setup commands that affected boot 111s autopkgtest: DBG: sending command to testbed: reboot 128s autopkgtest: DBG: got reply from testbed: ok 128s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 128s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.cAVQ9K'], kind short, sout raw, serr pipe, env [] 128s autopkgtest: DBG: testbed command exited with code 0 128s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.cAVQ9K/autopkgtest-reboot 128s autopkgtest: DBG: got reply from testbed: ok 128s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.cAVQ9K/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 129s autopkgtest: DBG: testbed command exited with code 0 129s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.cAVQ9K/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 129s autopkgtest: DBG: testbed command exited with code 0 129s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.cAVQ9K/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 129s autopkgtest: DBG: testbed command exited with code 0 129s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.cAVQ9K'], kind short, sout raw, serr pipe, env [] 129s autopkgtest: DBG: testbed command exited with code 0 129s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.cAVQ9K/autopkgtest-reboot-prepare 129s autopkgtest: DBG: got reply from testbed: ok 129s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.cAVQ9K/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 130s autopkgtest: DBG: testbed command exited with code 0 130s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.cAVQ9K/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 130s autopkgtest: DBG: testbed command exited with code 0 130s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 130s autopkgtest: DBG: testbed command exited with code 0 130s autopkgtest [01:10:55]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 130s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 130s autopkgtest: DBG: testbed command exited with code 0 130s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.cAVQ9K/testbed-packages"], kind short, sout raw, serr pipe, env [] 130s autopkgtest: DBG: testbed command exited with code 0 130s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.cAVQ9K/testbed-packages /tmp/autopkgtest-work.s36dbjc5/out/testbed-packages 130s autopkgtest: DBG: got reply from testbed: ok 130s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 130s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.cAVQ9K'], kind short, sout raw, serr pipe, env [] 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.cAVQ9K/autopkgtest-reboot 131s autopkgtest: DBG: got reply from testbed: ok 131s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.cAVQ9K/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.cAVQ9K/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.cAVQ9K/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.cAVQ9K'], kind short, sout raw, serr pipe, env [] 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.cAVQ9K/autopkgtest-reboot-prepare 132s autopkgtest: DBG: got reply from testbed: ok 132s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.cAVQ9K/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.cAVQ9K/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: Binaries: initialising 132s autopkgtest [01:10:57]: @@@@@@@@@@@@@@@@@@@@ apt-source node-opencv 132s autopkgtest: DBG: blame += node-opencv 132s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 132s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'node-opencv'], kind short, sout pipe, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^node-opencv$'], kind short, sout pipe, serr raw, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'node-opencv=7.0.0+git20200316.f0a03a4b-1build7'], kind short, sout pipe, serr raw, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: install_deps: deps_new=[] 133s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s 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.cAVQ9K/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source node-opencv=7.0.0+git20200316.f0a03a4b-1build7 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 node-opencv_*.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'] 133s + cd / 133s + mktemp -d /tmp/autopkgtest.cAVQ9K/build.XXX 133s + builddir=/tmp/autopkgtest.cAVQ9K/build.E0J 133s + cd /tmp/autopkgtest.cAVQ9K/build.E0J 133s + apt-get source -d -q --only-source node-opencv=7.0.0+git20200316.f0a03a4b-1build7 134s + OUT=Reading package lists... 134s NOTICE: 'node-opencv' packaging is maintained in the 'Git' version control system at: 134s https://salsa.debian.org/js-team/node-opencv.git 134s Please use: 134s git clone https://salsa.debian.org/js-team/node-opencv.git 134s to retrieve the latest (possibly unreleased) updates to the package. 134s Need to get 5533 kB of source archives. 134s Get:1 http://ftpmaster.internal/ubuntu plucky/universe node-opencv 7.0.0+git20200316.f0a03a4b-1build7 (dsc) [2439 B] 134s Get:2 http://ftpmaster.internal/ubuntu plucky/universe node-opencv 7.0.0+git20200316.f0a03a4b-1build7 (tar) [5522 kB] 134s Get:3 http://ftpmaster.internal/ubuntu plucky/universe node-opencv 7.0.0+git20200316.f0a03a4b-1build7 (diff) [8364 B] 134s Fetched 5533 kB in 1s (7013 kB/s) 134s Download complete and in download only mode 134s + [ -n ] 134s + echo Reading package lists... 134s NOTICE: 'node-opencv' packaging is maintained in the 'Git' version control system at: 134s https://salsa.debian.org/js-team/node-opencv.git 134s Please use: 134s git clone https://salsa.debian.org/js-team/node-opencv.git 134s to retrieve the latest (possibly unreleased) updates to the package. 134s Need to get 5533 kB of source archives. 134s Get:1 http://ftpmaster.internal/ubuntu plucky/universe node-opencv 7.0.0+git20200316.f0a03a4b-1build7 (dsc) [2439 B] 134s Get:2 http://ftpmaster.internal/ubuntu plucky/universe node-opencv 7.0.0+git20200316.f0a03a4b-1build7 (tar) [5522 kB] 134s Get:3 http://ftpmaster.internal/ubuntu plucky/universe node-opencv 7.0.0+git20200316.f0a03a4b-1build7 (diff) [8364 B] 134s Fetched 5533 kB in 1s (7013 kB/s) 134s Download complete and in download only mode 134s + grep ^Get: 134s Get:1 http://ftpmaster.internal/ubuntu plucky/universe node-opencv 7.0.0+git20200316.f0a03a4b-1build7 (dsc) [2439 B] 134s Get:2 http://ftpmaster.internal/ubuntu plucky/universe node-opencv 7.0.0+git20200316.f0a03a4b-1build7 (tar) [5522 kB] 134s Get:3 http://ftpmaster.internal/ubuntu plucky/universe node-opencv 7.0.0+git20200316.f0a03a4b-1build7 (diff) [8364 B] 134s + dpkg-source -x node-opencv_7.0.0+git20200316.f0a03a4b-1build7.dsc src 134s gpgv: Signature made Sat May 25 05:13:56 2024 UTC 134s gpgv: using RSA key 92978A6E195E4921825F7FF0F34F09744E9F5DD9 134s gpgv: Can't check signature: No public key 134s dpkg-source: warning: cannot verify inline signature for ./node-opencv_7.0.0+git20200316.f0a03a4b-1build7.dsc: no acceptable signature found 135s + chmod -R a+rX . 135s + cd src/. 135s + pwd 135s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest [01:11:00]: testing package node-opencv version 7.0.0+git20200316.f0a03a4b-1build7 135s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.cAVQ9K/build.E0J/src/debian/ /tmp/autopkgtest-work.s36dbjc5/out/pkg/debian/ 135s autopkgtest: DBG: got reply from testbed: ok 135s autopkgtest: DBG: processing dependency node-opencv 135s autopkgtest: DBG: marked alternatives ['node-opencv'] as a synthesised dependency 135s autopkgtest: DBG: Test defined: name require path debian/tests/require command "None" restrictions [] features [] depends ['node-opencv'] 135s autopkgtest: DBG: processing dependency @ 135s autopkgtest: DBG: synthesised dependency node-opencv 135s autopkgtest: DBG: Test defined: name smoketest path debian/tests/smoketest command "None" restrictions ['allow-stderr'] features [] depends ['node-opencv'] 135s autopkgtest: DBG: processing dependency node-glob 135s autopkgtest: DBG: processing dependency node-axios 135s autopkgtest: DBG: processing dependency node-tape 135s autopkgtest: DBG: processing dependency @ 135s autopkgtest: DBG: synthesised dependency node-opencv 135s autopkgtest: DBG: Test defined: name unittest path debian/tests/unittest command "None" restrictions ['allow-stderr'] features [] depends ['node-glob', 'node-axios', 'node-tape', 'node-opencv'] 135s autopkgtest [01:11:00]: build not needed 135s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.cAVQ9K/build.E0J/src/ /tmp/autopkgtest-work.s36dbjc5/out/tests-tree/ 136s autopkgtest: DBG: got reply from testbed: ok 136s autopkgtest: DBG: processing dependency node-opencv 136s autopkgtest: DBG: marked alternatives ['node-opencv'] as a synthesised dependency 136s autopkgtest: DBG: Test defined: name require path debian/tests/require command "None" restrictions [] features [] depends ['node-opencv'] 136s autopkgtest: DBG: processing dependency @ 136s autopkgtest: DBG: synthesised dependency node-opencv 136s autopkgtest: DBG: Test defined: name smoketest path debian/tests/smoketest command "None" restrictions ['allow-stderr'] features [] depends ['node-opencv'] 136s autopkgtest: DBG: processing dependency node-glob 136s autopkgtest: DBG: processing dependency node-axios 136s autopkgtest: DBG: processing dependency node-tape 136s autopkgtest: DBG: processing dependency @ 136s autopkgtest: DBG: synthesised dependency node-opencv 136s autopkgtest: DBG: Test defined: name unittest path debian/tests/unittest command "None" restrictions ['allow-stderr'] features [] depends ['node-glob', 'node-axios', 'node-tape', 'node-opencv'] 136s autopkgtest [01:11:01]: test require: preparing testbed 136s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['node-opencv'] 136s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 136s autopkgtest: DBG: install_deps: deps_new=['node-opencv'] 136s autopkgtest: DBG: install-deps: satisfying node-opencv 136s autopkgtest: DBG: can use apt-get on testbed: True 136s 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', 'node-opencv'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 137s Reading package lists... 137s Building dependency tree... 137s Reading state information... 137s Starting pkgProblemResolver with broken count: 0 137s Starting 2 pkgProblemResolver with broken count: 0 137s Done 137s The following NEW packages will be installed: 137s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono gdal-data 137s gdal-plugins handlebars libaec0 libaom3 libarmadillo14 libarpack2t64 137s libavcodec61 libavformat61 libavif16 libavutil59 libblas3 libblosc1 137s libbluray2 libcairo-gobject2 libcairo2 libcares2 libcfitsio10t64 libcharls2 137s libchromaprint1 libcjson1 libcodec2-1.2 libdatrie1 libdav1d7 libdc1394-25 137s libde265-0 libdeflate0 libdouble-conversion3 libdrm-radeon1 libdvdnav4 137s libdvdread8t64 libegl-mesa0 libegl1 libexif12 libfontconfig1 libfreetype6 137s libfreexl1 libfyba0t64 libgbm1 libgd3 libgdal36 libgdcm3.0t64 137s libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-common libgeos-c1t64 libgeos3.13.0 137s libgeotiff5 libgfortran5 libgif7 libgl1 libgl1-mesa-dri libglapi-mesa 137s libglvnd0 libglx-mesa0 libglx0 libgme0 libgomp1 libgpgmepp6t64 137s libgphoto2-6t64 libgphoto2-port12t64 libgraphite2-3 libgsm1 137s libgstreamer-plugins-base1.0-0 libgstreamer1.0-0 libharfbuzz0b libhdf4-0-alt 137s libhdf5-310 libhdf5-hl-310 libheif-plugin-aomdec libheif-plugin-libde265 137s libheif1 libhwloc15 libice6 libimagequant0 libimath-3-1-29t64 libinput-bin 137s libinput10 libjbig0 libjpeg-turbo8 libjpeg8 libjs-async libjs-inherits 137s libjs-is-typedarray libjs-prettify libjs-regenerate libjs-source-map 137s libjs-sprintf-js libjs-typedarray-to-buffer libjs-util libjxl0.11 137s libkmlbase1t64 libkmldom1t64 libkmlengine1t64 liblapack3 liblcms2-2 137s libleptonica6 libltdl7 libmbedcrypto16 libmd4c0 libminizip1t64 libmp3lame0 137s libmpg123-0t64 libmtdev1t64 libmysqlclient24 libnetcdf19t64 libnode115 137s libnorm1t64 libodbc2 libodbcinst2 libogdi4.1 libogg0 libopencv-calib3d406t64 137s libopencv-contrib406t64 libopencv-core406t64 libopencv-dnn406t64 137s libopencv-features2d406t64 libopencv-flann406t64 libopencv-highgui406t64 137s libopencv-imgcodecs406t64 libopencv-imgproc406t64 libopencv-ml406t64 137s libopencv-objdetect406t64 libopencv-stitching406t64 libopencv-video406t64 137s libopencv-videoio406t64 libopenexr-3-1-30 libopengl0 libopenjp2-7 137s libopenmpt0t64 libopus0 liborc-0.4-0t64 libpango-1.0-0 libpangocairo-1.0-0 137s libpangoft2-1.0-0 libpcre2-16-0 libpgm-5.3-0t64 libpixman-1-0 libpoppler145 137s libpq5 libproj25 libprotobuf32t64 libqhull-r8.0 libqt5core5t64 137s libqt5dbus5t64 libqt5gui5t64 libqt5network5t64 libqt5opengl5t64 137s libqt5test5t64 libqt5widgets5t64 librabbitmq4 libraqm0 librav1e0.7 137s libraw1394-11 librist4 librsvg2-2 librttopo1 libsharpyuv0 libshine3 libsm6 137s libsnappy1v5 libsocket++1 libsodium23 libsoxr0 libspatialite8t64 libspeex1 137s libsrt1.5-gnutls libssh-4 libsvtav1enc2 libswresample5 libswscale8 libsz2 137s libtbb12 libtbbbind-2-5 libtbbmalloc2 libtesseract5 libthai-data libthai0 137s libtheoradec1 libtheoraenc1 libtiff6 libtwolame0 libudfread0 liburiparser1 137s libva-drm2 libva-x11-2 libva2 libvdpau1 libvorbis0a libvorbisenc2 137s libvorbisfile3 libvpx9 libvulkan1 libwacom-common libwacom9 137s libwayland-client0 libwayland-server0 libwebp7 libwebpmux3 libx11-xcb1 137s libx264-164 libx265-215 libxcb-dri3-0 libxcb-glx0 libxcb-icccm4 137s libxcb-image0 libxcb-keysyms1 libxcb-present0 libxcb-randr0 137s libxcb-render-util0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 137s libxcb-util1 libxcb-xfixes0 libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 137s libxerces-c3.2t64 libxfixes3 libxkbcommon-x11-0 libxpm4 libxrender1 137s libxshmfence1 libxvidcore4 libxxf86vm1 libyuv0 libzmq5 libzvbi-common 137s libzvbi0t64 mesa-libgallium mysql-common node-abbrev node-acorn 137s node-agent-base node-ampproject-remapping node-ansi-regex node-ansi-styles 137s node-anymatch node-aproba node-archy node-are-we-there-yet node-argparse 137s node-arrify node-assert node-async 137s node-babel-helper-define-polyfill-provider 137s node-babel-plugin-add-module-exports node-babel-plugin-polyfill-corejs2 137s node-babel-plugin-polyfill-corejs3 node-babel-plugin-polyfill-regenerator 137s node-babel7 node-babel7-runtime node-balanced-match node-brace-expansion 137s node-braces node-browserslist node-buffers node-camelcase node-caniuse-lite 137s node-chalk node-chownr node-cjs-module-lexer node-cliui node-clone 137s node-clone-deep node-color-convert node-color-name node-commander 137s node-commondir node-console-control-strings node-convert-source-map 137s node-core-js node-core-js-compat node-core-js-pure node-core-util-is 137s node-data-uri-to-buffer node-debbundle-es-to-primitive node-debug 137s node-decamelize node-deep-equal node-deep-is node-defaults 137s node-define-properties node-define-property node-defined node-del 137s node-delegates node-electron-to-chromium node-encoding node-error-ex 137s node-es-abstract node-es6-error node-escape-string-regexp node-escodegen 137s node-esprima node-estraverse node-esutils node-fancy-log 137s node-fast-levenshtein node-fetch node-fill-range node-find-cache-dir 137s node-find-up node-for-in node-for-own node-foreground-child 137s node-fs-readdir-recursive node-fs.realpath node-function-bind node-gauge 137s node-get-caller-file node-glob node-glob-parent node-globals node-globby 137s node-graceful-fs node-has-flag node-has-unicode node-hosted-git-info 137s node-https-proxy-agent node-iconv-lite node-ignore node-imurmurhash 137s node-indent-string node-inflight node-inherits node-is-arrayish 137s node-is-buffer node-is-descriptor node-is-extendable node-is-extglob 137s node-is-glob node-is-number node-is-path-cwd node-is-path-inside 137s node-is-plain-obj node-is-plain-object node-is-stream node-is-typedarray 137s node-is-windows node-isarray node-isexe node-isobject node-istanbul 137s node-js-tokens node-js-yaml node-jsesc node-json-parse-better-errors 137s node-json5 node-jsonparse node-kind-of node-levn node-locate-path 137s node-lodash node-lodash-packages node-lru-cache node-make-dir 137s node-micromatch node-minimatch node-minimist node-minipass node-mkdirp 137s node-ms node-n3 node-nan node-neo-async node-nopt 137s node-normalize-package-data node-normalize-path node-npm-run-path 137s node-npmlog node-object-assign node-object-inspect node-once node-opencv 137s node-optimist node-optionator node-p-limit node-p-locate node-p-map 137s node-parse-json node-path-dirname node-path-exists node-path-is-inside 137s node-path-type node-picocolors node-pify node-pkg-dir node-pre-gyp 137s node-prelude-ls node-process-nextick-args node-quick-lru node-read-pkg 137s node-readable-stream node-regenerate node-regenerate-unicode-properties 137s node-regenerator-runtime node-regenerator-transform node-regexpu-core 137s node-regjsgen node-regjsparser node-repeat-string node-require-directory 137s node-resolve node-resolve-from node-resumer node-rimraf node-safe-buffer 137s node-semver node-set-blocking node-shebang-command node-shebang-regex 137s node-signal-exit node-slash node-slice-ansi node-source-map 137s node-source-map-support node-spdx-correct node-spdx-exceptions 137s node-spdx-expression-parse node-spdx-license-ids node-sprintf-js 137s node-string-decoder node-string-width node-strip-ansi node-strip-bom 137s node-supports-color node-tape node-tar node-through node-time-stamp 137s node-to-fast-properties node-to-regex-range node-type-check 137s node-typedarray-to-buffer node-undici 137s node-unicode-canonical-property-names-ecmascript 137s node-unicode-match-property-ecmascript 137s node-unicode-match-property-value-ecmascript 137s node-unicode-property-aliases-ecmascript node-util node-util-deprecate 137s node-uuid node-v8flags node-validate-npm-package-license node-wcwidth.js 137s node-which node-wide-align node-wordwrap node-wrap-ansi node-wrappy 137s node-write-file-atomic node-xtend node-y18n node-yallist node-yargs 137s node-yargs-parser nodejs ocl-icd-libopencl1 proj-data unixodbc-common 137s x11-common 137s 0 upgraded, 467 newly installed, 0 to remove and 0 not upgraded. 137s Need to get 147 MB of archives. 137s After this operation, 525 MB of additional disk space will be used. 137s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 138s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 138s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 138s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-1.1ubuntu2 [37.4 kB] 138s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-1.1ubuntu2 [150 kB] 138s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-1.1ubuntu2 [191 kB] 138s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x gdal-data all 3.10.1+dfsg-1build2 [269 kB] 138s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x gdal-plugins s390x 3.10.1+dfsg-1build2 [25.6 kB] 138s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libcares2 s390x 1.34.4-2.1 [101 kB] 138s Get:10 http://ftpmaster.internal/ubuntu plucky/universe s390x node-xtend all 4.0.2-3 [3902 B] 138s Get:11 http://ftpmaster.internal/ubuntu plucky/universe s390x node-acorn all 8.8.1+ds+~cs25.17.7-2 [115 kB] 138s Get:12 http://ftpmaster.internal/ubuntu plucky/universe s390x node-cjs-module-lexer all 1.2.3+dfsg-1 [32.1 kB] 138s Get:13 http://ftpmaster.internal/ubuntu plucky/universe s390x node-balanced-match all 2.0.0-1 [4910 B] 138s Get:14 http://ftpmaster.internal/ubuntu plucky/universe s390x node-brace-expansion all 2.0.1+~1.1.0-1 [8072 B] 138s Get:15 http://ftpmaster.internal/ubuntu plucky/universe s390x node-minimatch all 9.0.3-5 [78.2 kB] 138s Get:16 http://ftpmaster.internal/ubuntu plucky/universe s390x node-undici all 7.3.0+dfsg1+~cs24.12.11-1 [341 kB] 138s Get:17 http://ftpmaster.internal/ubuntu plucky/universe s390x libnode115 s390x 20.18.1+dfsg-1ubuntu1 [14.2 MB] 139s Get:18 http://ftpmaster.internal/ubuntu plucky/universe s390x nodejs s390x 20.18.1+dfsg-1ubuntu1 [335 kB] 139s Get:19 http://ftpmaster.internal/ubuntu plucky/universe s390x node-neo-async all 2.6.2+~cs3.0.0-3 [42.9 kB] 139s Get:20 http://ftpmaster.internal/ubuntu plucky/universe s390x node-arrify all 2.0.1-3 [3688 B] 139s Get:21 http://ftpmaster.internal/ubuntu plucky/universe s390x node-is-plain-obj all 3.0.0-2 [3994 B] 139s Get:22 http://ftpmaster.internal/ubuntu plucky/universe s390x node-is-buffer all 2.0.5-2 [4128 B] 139s Get:23 http://ftpmaster.internal/ubuntu plucky/universe s390x node-kind-of all 6.0.3+dfsg-2 [8628 B] 139s Get:24 http://ftpmaster.internal/ubuntu plucky/universe s390x node-minimist all 1.2.8+~cs5.3.5-1 [10.2 kB] 139s Get:25 http://ftpmaster.internal/ubuntu plucky/universe s390x node-wordwrap all 1.0.0-4 [4644 B] 139s Get:26 http://ftpmaster.internal/ubuntu plucky/universe s390x node-optimist all 0.6.1+~0.0.30-2 [13.8 kB] 139s Get:27 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-source-map all 0.7.0++dfsg2+really.0.6.1-15 [27.1 kB] 139s Get:28 http://ftpmaster.internal/ubuntu plucky/universe s390x node-source-map all 0.7.0++dfsg2+really.0.6.1-15 [42.8 kB] 139s Get:29 http://ftpmaster.internal/ubuntu plucky/universe s390x handlebars all 3:4.7.7+~4.1.0-1 [211 kB] 139s Get:30 http://ftpmaster.internal/ubuntu plucky/universe s390x libaec0 s390x 1.1.3-1 [25.7 kB] 139s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libaom3 s390x 3.12.0-1 [1492 kB] 139s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libblas3 s390x 3.12.1-2 [252 kB] 139s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran5 s390x 14.2.0-17ubuntu1 [588 kB] 139s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack3 s390x 3.12.1-2 [2971 kB] 139s Get:35 http://ftpmaster.internal/ubuntu plucky/universe s390x libarpack2t64 s390x 3.9.1-4 [110 kB] 139s Get:36 http://ftpmaster.internal/ubuntu plucky/universe s390x libarmadillo14 s390x 1:14.2.1+dfsg-1 [110 kB] 139s Get:37 http://ftpmaster.internal/ubuntu plucky/universe s390x libva2 s390x 2.22.0-2 [74.8 kB] 139s Get:38 http://ftpmaster.internal/ubuntu plucky/universe s390x libva-drm2 s390x 2.22.0-2 [7030 B] 139s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 139s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 139s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libxfixes3 s390x 1:6.0.0-2build1 [11.3 kB] 139s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x libva-x11-2 s390x 2.22.0-2 [12.5 kB] 139s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libvdpau1 s390x 1.5-3 [28.2 kB] 139s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x ocl-icd-libopencl1 s390x 2.3.2-1build1 [41.1 kB] 139s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x libavutil59 s390x 7:7.1-3ubuntu3 [452 kB] 139s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-0 s390x 0.44.0-3 [201 kB] 139s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 139s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 139s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 139s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo2 s390x 1.18.2-2 [580 kB] 139s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x libcodec2-1.2 s390x 1.2.0-3 [9027 kB] 139s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x libdav1d7 s390x 1.5.1-1 [312 kB] 139s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x libgsm1 s390x 1.0.22-1build1 [32.7 kB] 139s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x liblcms2-2 s390x 2.16-2 [175 kB] 139s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x libjxl0.11 s390x 0.11.1-1 [1008 kB] 140s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libmp3lame0 s390x 3.100-6build1 [160 kB] 140s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libopenjp2-7 s390x 2.5.0-2ubuntu3 [208 kB] 140s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libopus0 s390x 1.5.2-2 [2928 kB] 140s Get:59 http://ftpmaster.internal/ubuntu plucky/universe s390x librav1e0.7 s390x 0.7.1-9 [845 kB] 140s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo-gobject2 s390x 1.18.2-2 [127 kB] 140s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libgdk-pixbuf2.0-common all 2.42.12+dfsg-2 [8004 B] 140s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 140s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 140s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 140s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 140s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 140s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 140s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 140s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x libgdk-pixbuf-2.0-0 s390x 2.42.12+dfsg-2 [154 kB] 140s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 140s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 140s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x libthai-data all 0.1.29-2build1 [158 kB] 140s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x libdatrie1 s390x 0.2.13-3build1 [20.6 kB] 140s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x libthai0 s390x 0.1.29-2build1 [20.7 kB] 140s Get:75 http://ftpmaster.internal/ubuntu plucky/main s390x libpango-1.0-0 s390x 1.56.1-1 [253 kB] 140s Get:76 http://ftpmaster.internal/ubuntu plucky/main s390x libpangoft2-1.0-0 s390x 1.56.1-1 [50.3 kB] 140s Get:77 http://ftpmaster.internal/ubuntu plucky/main s390x libpangocairo-1.0-0 s390x 1.56.1-1 [28.3 kB] 140s Get:78 http://ftpmaster.internal/ubuntu plucky/main s390x librsvg2-2 s390x 2.59.90+dfsg-2 [1986 kB] 140s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x libshine3 s390x 3.1.1-2build1 [45.7 kB] 140s Get:80 http://ftpmaster.internal/ubuntu plucky/main s390x libsnappy1v5 s390x 1.2.1-1 [33.0 kB] 140s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x libspeex1 s390x 1.2.1-3 [70.7 kB] 140s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x libsvtav1enc2 s390x 2.3.0+dfsg-1 [2294 kB] 140s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 140s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x libsoxr0 s390x 0.1.3-4build3 [69.5 kB] 140s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x libswresample5 s390x 7:7.1-3ubuntu3 [63.2 kB] 140s Get:86 http://ftpmaster.internal/ubuntu plucky/main s390x libtheoradec1 s390x 1.2.0~alpha1+dfsg-5 [68.5 kB] 140s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x libogg0 s390x 1.3.5-3build1 [24.4 kB] 140s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x libtheoraenc1 s390x 1.2.0~alpha1+dfsg-5 [142 kB] 140s Get:89 http://ftpmaster.internal/ubuntu plucky/main s390x libtwolame0 s390x 0.4.0-2build3 [56.4 kB] 140s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbis0a s390x 1.3.7-2 [112 kB] 140s Get:91 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbisenc2 s390x 1.3.7-2 [80.6 kB] 140s Get:92 http://ftpmaster.internal/ubuntu plucky/main s390x libvpx9 s390x 1.15.0-1ubuntu1 [1604 kB] 140s Get:93 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpmux3 s390x 1.5.0-0.1 [25.8 kB] 140s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x libx264-164 s390x 2:0.164.3108+git31e19f9-2build1 [592 kB] 140s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x libx265-215 s390x 4.1-2 [904 kB] 140s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x libxvidcore4 s390x 2:1.3.7-1build1 [214 kB] 140s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x libzvbi-common all 0.2.43-2ubuntu1 [42.7 kB] 140s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x libzvbi0t64 s390x 0.2.43-2ubuntu1 [275 kB] 140s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x libavcodec61 s390x 7:7.1-3ubuntu3 [8121 kB] 140s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x libudfread0 s390x 1.1.2-1build1 [18.5 kB] 140s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x libbluray2 s390x 1:1.3.4-1build1 [173 kB] 141s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x libchromaprint1 s390x 1.5.1-7 [34.2 kB] 141s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x libdvdread8t64 s390x 6.1.3-2 [54.6 kB] 141s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x libdvdnav4 s390x 6.1.1-3build1 [40.3 kB] 141s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x libgme0 s390x 0.6.3-7build1 [150 kB] 141s Get:106 http://ftpmaster.internal/ubuntu plucky/main s390x libmpg123-0t64 s390x 1.32.10-1 [179 kB] 141s Get:107 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbisfile3 s390x 1.3.7-2 [18.2 kB] 141s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x libopenmpt0t64 s390x 0.7.13-1 [732 kB] 141s Get:109 http://ftpmaster.internal/ubuntu plucky/main s390x librabbitmq4 s390x 0.15.0-1 [37.9 kB] 141s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x libcjson1 s390x 1.7.18-3 [22.9 kB] 141s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x libmbedcrypto16 s390x 3.6.2-3ubuntu1 [261 kB] 141s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x librist4 s390x 0.2.11+dfsg-1 [77.5 kB] 141s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x libsrt1.5-gnutls s390x 1.5.4-1 [345 kB] 141s Get:114 http://ftpmaster.internal/ubuntu plucky/main s390x libssh-4 s390x 0.11.1-1 [203 kB] 141s Get:115 http://ftpmaster.internal/ubuntu plucky/universe s390x libnorm1t64 s390x 1.5.9+dfsg-3.1build1 [158 kB] 141s Get:116 http://ftpmaster.internal/ubuntu plucky/universe s390x libpgm-5.3-0t64 s390x 5.3.128~dfsg-2.1build1 [169 kB] 141s Get:117 http://ftpmaster.internal/ubuntu plucky/main s390x libsodium23 s390x 1.0.18-1build3 [138 kB] 141s Get:118 http://ftpmaster.internal/ubuntu plucky/universe s390x libzmq5 s390x 4.3.5-1build2 [258 kB] 141s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x libavformat61 s390x 7:7.1-3ubuntu3 [1315 kB] 141s Get:120 http://ftpmaster.internal/ubuntu plucky/main s390x libyuv0 s390x 0.0.1904.20250204-1 [127 kB] 141s Get:121 http://ftpmaster.internal/ubuntu plucky/universe s390x libavif16 s390x 1.1.1-1ubuntu1 [103 kB] 141s Get:122 http://ftpmaster.internal/ubuntu plucky/universe s390x libblosc1 s390x 1.21.5+ds-1build1 [27.7 kB] 141s Get:123 http://ftpmaster.internal/ubuntu plucky/universe s390x libcfitsio10t64 s390x 4.5.0-5 [607 kB] 141s Get:124 http://ftpmaster.internal/ubuntu plucky/universe s390x libcharls2 s390x 2.4.2-2build2 [101 kB] 141s Get:125 http://ftpmaster.internal/ubuntu plucky/main s390x libraw1394-11 s390x 2.1.2-2build3 [28.3 kB] 141s Get:126 http://ftpmaster.internal/ubuntu plucky/universe s390x libdc1394-25 s390x 2.2.6-4build1 [101 kB] 141s Get:127 http://ftpmaster.internal/ubuntu plucky/main s390x libde265-0 s390x 1.0.15-1build4 [175 kB] 141s Get:128 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.0-1build1 [43.9 kB] 141s Get:129 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 141s Get:130 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 141s Get:131 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 141s Get:132 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 141s Get:133 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 141s Get:134 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 141s Get:135 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 141s Get:136 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 141s Get:137 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 142s Get:138 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 142s Get:139 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-1 [27.8 kB] 142s Get:140 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 142s Get:141 http://ftpmaster.internal/ubuntu plucky/main s390x libexif12 s390x 0.6.25-1 [87.2 kB] 142s Get:142 http://ftpmaster.internal/ubuntu plucky/universe s390x libfyba0t64 s390x 4.1.1-11build1 [125 kB] 142s Get:143 http://ftpmaster.internal/ubuntu plucky/main s390x libheif-plugin-aomdec s390x 1.19.5-1build1 [11.6 kB] 142s Get:144 http://ftpmaster.internal/ubuntu plucky/main s390x libheif-plugin-libde265 s390x 1.19.5-1build1 [9066 B] 142s Get:145 http://ftpmaster.internal/ubuntu plucky/main s390x libheif1 s390x 1.19.5-1build1 [410 kB] 142s Get:146 http://ftpmaster.internal/ubuntu plucky/main s390x libimagequant0 s390x 2.18.0-1build1 [43.3 kB] 142s Get:147 http://ftpmaster.internal/ubuntu plucky/main s390x libraqm0 s390x 0.10.2-1 [15.8 kB] 142s Get:148 http://ftpmaster.internal/ubuntu plucky/main s390x libxpm4 s390x 1:3.5.17-1build2 [41.2 kB] 142s Get:149 http://ftpmaster.internal/ubuntu plucky/main s390x libgd3 s390x 2.3.3-12ubuntu3 [141 kB] 142s Get:150 http://ftpmaster.internal/ubuntu plucky/universe s390x libminizip1t64 s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [24.6 kB] 142s Get:151 http://ftpmaster.internal/ubuntu plucky/universe s390x libfreexl1 s390x 2.0.0-1build2 [46.5 kB] 142s Get:152 http://ftpmaster.internal/ubuntu plucky/universe s390x libgeos3.13.0 s390x 3.13.0-1 [966 kB] 142s Get:153 http://ftpmaster.internal/ubuntu plucky/universe s390x libgeos-c1t64 s390x 3.13.0-1 [93.3 kB] 142s Get:154 http://ftpmaster.internal/ubuntu plucky/universe s390x proj-data all 9.5.1-1 [7924 kB] 142s Get:155 http://ftpmaster.internal/ubuntu plucky/universe s390x libproj25 s390x 9.5.1-1 [1452 kB] 142s Get:156 http://ftpmaster.internal/ubuntu plucky/universe s390x libgeotiff5 s390x 1.7.3-1 [66.4 kB] 142s Get:157 http://ftpmaster.internal/ubuntu plucky/main s390x libgif7 s390x 5.2.2-1ubuntu1 [38.0 kB] 142s Get:158 http://ftpmaster.internal/ubuntu plucky/universe s390x libsz2 s390x 1.1.3-1 [5442 B] 142s Get:159 http://ftpmaster.internal/ubuntu plucky/universe s390x libhdf4-0-alt s390x 4.3.0-1 [300 kB] 142s Get:160 http://ftpmaster.internal/ubuntu plucky/universe s390x libhdf5-310 s390x 1.14.5+repack-3 [1477 kB] 142s Get:161 http://ftpmaster.internal/ubuntu plucky/universe s390x liburiparser1 s390x 0.9.8+dfsg-2 [42.4 kB] 142s Get:162 http://ftpmaster.internal/ubuntu plucky/universe s390x libkmlbase1t64 s390x 1.3.0-12build1 [50.5 kB] 142s Get:163 http://ftpmaster.internal/ubuntu plucky/universe s390x libkmldom1t64 s390x 1.3.0-12build1 [151 kB] 142s Get:164 http://ftpmaster.internal/ubuntu plucky/universe s390x libkmlengine1t64 s390x 1.3.0-12build1 [68.9 kB] 142s Get:165 http://ftpmaster.internal/ubuntu plucky/main s390x mysql-common all 5.8+1.1.1 [6800 B] 142s Get:166 http://ftpmaster.internal/ubuntu plucky/main s390x libmysqlclient24 s390x 8.4.4-0ubuntu1 [1295 kB] 142s Get:167 http://ftpmaster.internal/ubuntu plucky/universe s390x libhdf5-hl-310 s390x 1.14.5+repack-3 [61.0 kB] 142s Get:168 http://ftpmaster.internal/ubuntu plucky/universe s390x libnetcdf19t64 s390x 1:4.9.2-6ubuntu2 [497 kB] 142s Get:169 http://ftpmaster.internal/ubuntu plucky/main s390x libltdl7 s390x 2.5.4-3build1 [43.9 kB] 142s Get:170 http://ftpmaster.internal/ubuntu plucky/main s390x libodbc2 s390x 2.3.12-2ubuntu1 [163 kB] 142s Get:171 http://ftpmaster.internal/ubuntu plucky/main s390x unixodbc-common all 2.3.12-2ubuntu1 [9044 B] 142s Get:172 http://ftpmaster.internal/ubuntu plucky/main s390x libodbcinst2 s390x 2.3.12-2ubuntu1 [32.2 kB] 142s Get:173 http://ftpmaster.internal/ubuntu plucky/universe s390x libogdi4.1 s390x 4.1.1+ds-5 [219 kB] 142s Get:174 http://ftpmaster.internal/ubuntu plucky/main s390x libgpgmepp6t64 s390x 1.24.1-4ubuntu1 [125 kB] 142s Get:175 http://ftpmaster.internal/ubuntu plucky/main s390x libpoppler145 s390x 25.01.0-4 [1233 kB] 143s Get:176 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libpq5 s390x 17.3-2 [147 kB] 143s Get:177 http://ftpmaster.internal/ubuntu plucky/universe s390x libqhull-r8.0 s390x 2020.2-6build1 [199 kB] 143s Get:178 http://ftpmaster.internal/ubuntu plucky/universe s390x librttopo1 s390x 1.1.0-3build2 [200 kB] 143s Get:179 http://ftpmaster.internal/ubuntu plucky/universe s390x libspatialite8t64 s390x 5.1.0-3build1 [2050 kB] 143s Get:180 http://ftpmaster.internal/ubuntu plucky/universe s390x libxerces-c3.2t64 s390x 3.2.4+debian-1.3build1 [938 kB] 143s Get:181 http://ftpmaster.internal/ubuntu plucky/universe s390x libgdal36 s390x 3.10.1+dfsg-1build2 [9637 kB] 143s Get:182 http://ftpmaster.internal/ubuntu plucky/universe s390x libsocket++1 s390x 1.12.13+git20131030.5d039ba-1build1 [79.5 kB] 143s Get:183 http://ftpmaster.internal/ubuntu plucky/universe s390x libgdcm3.0t64 s390x 3.0.24-5ubuntu1 [2239 kB] 143s Get:184 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 143s Get:185 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 143s Get:186 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 143s Get:187 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 143s Get:188 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 143s Get:189 http://ftpmaster.internal/ubuntu plucky/main s390x libgphoto2-port12t64 s390x 2.5.31-4 [58.7 kB] 143s Get:190 http://ftpmaster.internal/ubuntu plucky/main s390x libgphoto2-6t64 s390x 2.5.31-4 [779 kB] 143s Get:191 http://ftpmaster.internal/ubuntu plucky/main s390x libgstreamer1.0-0 s390x 1.25.50-1 [1240 kB] 143s Get:192 http://ftpmaster.internal/ubuntu plucky/main s390x liborc-0.4-0t64 s390x 1:0.4.40-1 [212 kB] 143s Get:193 http://ftpmaster.internal/ubuntu plucky/main s390x libgstreamer-plugins-base1.0-0 s390x 1.25.50-1 [919 kB] 143s Get:194 http://ftpmaster.internal/ubuntu plucky/universe s390x libhwloc15 s390x 2.11.2-1build1 [176 kB] 143s Get:195 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 143s Get:196 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 143s Get:197 http://ftpmaster.internal/ubuntu plucky/universe s390x libimath-3-1-29t64 s390x 3.1.12-1ubuntu1 [73.0 kB] 143s Get:198 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 143s Get:199 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 143s Get:200 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 143s Get:201 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 143s Get:202 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 144s Get:203 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-async all 0.8.0-6 [24.1 kB] 144s Get:204 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-is-typedarray all 1.0.0-4 [3804 B] 144s Get:205 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-prettify all 2015.12.04+dfsg-1.1 [39.3 kB] 144s Get:206 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-regenerate all 1.4.2-3 [14.7 kB] 144s Get:207 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-sprintf-js all 1.1.2+ds1+~1.1.2-1 [12.8 kB] 144s Get:208 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-typedarray-to-buffer all 4.0.0-2 [4658 B] 144s Get:209 http://ftpmaster.internal/ubuntu plucky/universe s390x node-lodash-packages all 4.17.21+dfsg+~cs8.31.198.20210220-9 [176 kB] 144s Get:210 http://ftpmaster.internal/ubuntu plucky/universe s390x node-function-bind all 1.1.2+~cs2.1.14-1 [20.3 kB] 144s Get:211 http://ftpmaster.internal/ubuntu plucky/universe s390x node-object-inspect all 1.12.2+~cs1.8.1-1 [11.4 kB] 144s Get:212 http://ftpmaster.internal/ubuntu plucky/universe s390x node-es-abstract all 1.20.4+~cs26.27.47-2 [139 kB] 144s Get:213 http://ftpmaster.internal/ubuntu plucky/universe s390x node-resolve all 1.22.8+~cs5.34.15-2 [23.3 kB] 144s Get:214 http://ftpmaster.internal/ubuntu plucky/universe s390x node-define-properties all 1.2.1+~cs2.2.3-1 [7472 B] 144s Get:215 http://ftpmaster.internal/ubuntu plucky/universe s390x node-debbundle-es-to-primitive all 1.2.1+~cs9.7.25-2 [14.1 kB] 144s Get:216 http://ftpmaster.internal/ubuntu plucky/universe s390x node-isobject all 4.0.0-2 [5374 B] 144s Get:217 http://ftpmaster.internal/ubuntu plucky/universe s390x node-is-descriptor all 3.0.0-2 [5606 B] 144s Get:218 http://ftpmaster.internal/ubuntu plucky/universe s390x node-define-property all 2.0.2+really+2.0.2-3 [5846 B] 144s Get:219 http://ftpmaster.internal/ubuntu plucky/universe s390x node-defined all 1.0.1+~1.0.0-1 [5276 B] 144s Get:220 http://ftpmaster.internal/ubuntu plucky/universe s390x node-fs.realpath all 1.0.0-3 [6176 B] 144s Get:221 http://ftpmaster.internal/ubuntu plucky/universe s390x node-wrappy all 1.0.2-3 [3732 B] 144s Get:222 http://ftpmaster.internal/ubuntu plucky/universe s390x node-once all 1.4.1-1 [4664 B] 144s Get:223 http://ftpmaster.internal/ubuntu plucky/universe s390x node-inflight all 1.0.6-2 [3940 B] 144s Get:224 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-inherits all 2.0.4-6 [3412 B] 144s Get:225 http://ftpmaster.internal/ubuntu plucky/universe s390x node-inherits all 2.0.4-6 [3004 B] 144s Get:226 http://ftpmaster.internal/ubuntu plucky/universe s390x node-glob all 8.1.0+~cs8.5.15-1 [137 kB] 144s Get:227 http://ftpmaster.internal/ubuntu plucky/universe s390x node-abbrev all 1.1.1+~1.1.2-1 [5784 B] 144s Get:228 http://ftpmaster.internal/ubuntu plucky/universe s390x node-archy all 1.0.0-6 [4588 B] 144s Get:229 http://ftpmaster.internal/ubuntu plucky/universe s390x node-async all 0.8.0-6 [2614 B] 144s Get:230 http://ftpmaster.internal/ubuntu plucky/universe s390x node-convert-source-map all 1.9.0+~1.5.2-1 [8332 B] 144s Get:231 http://ftpmaster.internal/ubuntu plucky/universe s390x node-decamelize all 4.0.0-2 [4016 B] 144s Get:232 http://ftpmaster.internal/ubuntu plucky/universe s390x node-es6-error all 4.1.1-5 [5802 B] 144s Get:233 http://ftpmaster.internal/ubuntu plucky/universe s390x node-esprima all 4.0.1+ds+~4.0.3-2 [69.3 kB] 144s Get:234 http://ftpmaster.internal/ubuntu plucky/universe s390x node-estraverse all 5.3.0+ds+~5.1.1-1 [11.9 kB] 144s Get:235 http://ftpmaster.internal/ubuntu plucky/universe s390x node-esutils all 2.0.3+~2.0.0-1 [13.0 kB] 144s Get:236 http://ftpmaster.internal/ubuntu plucky/universe s390x node-deep-is all 0.1.4-1 [5158 B] 144s Get:237 http://ftpmaster.internal/ubuntu plucky/universe s390x node-fast-levenshtein all 2.0.6+ds-3 [6084 B] 144s Get:238 http://ftpmaster.internal/ubuntu plucky/universe s390x node-prelude-ls all 1.2.1+dfsg-3 [9812 B] 144s Get:239 http://ftpmaster.internal/ubuntu plucky/universe s390x node-type-check all 0.4.0+dfsg-3 [9318 B] 144s Get:240 http://ftpmaster.internal/ubuntu plucky/universe s390x node-levn all 0.4.1+dfsg-2 [10.3 kB] 144s Get:241 http://ftpmaster.internal/ubuntu plucky/universe s390x node-optionator all 0.9.1+dfsg+~cs1.2.3-1 [17.1 kB] 144s Get:242 http://ftpmaster.internal/ubuntu plucky/universe s390x node-escodegen all 2.1.0+dfsg+~0.0.8-1 [23.5 kB] 144s Get:243 http://ftpmaster.internal/ubuntu plucky/universe s390x node-commondir all 1.0.1+~1.0.0-1 [4400 B] 144s Get:244 http://ftpmaster.internal/ubuntu plucky/universe s390x node-is-extglob all 2.1.1-5 [4624 B] 144s Get:245 http://ftpmaster.internal/ubuntu plucky/universe s390x node-is-glob all 4.0.3-2 [6706 B] 144s Get:246 http://ftpmaster.internal/ubuntu plucky/universe s390x node-path-dirname all 1.0.2-2 [4326 B] 144s Get:247 http://ftpmaster.internal/ubuntu plucky/universe s390x node-glob-parent all 6.0.2+~5.1.1-2 [7050 B] 144s Get:248 http://ftpmaster.internal/ubuntu plucky/universe s390x node-ignore all 5.2.1-1 [24.2 kB] 144s Get:249 http://ftpmaster.internal/ubuntu plucky/universe s390x node-is-number all 7.0.0-4 [5894 B] 145s Get:250 http://ftpmaster.internal/ubuntu plucky/universe s390x node-repeat-string all 1.6.1+repack-1 [5660 B] 145s Get:251 http://ftpmaster.internal/ubuntu plucky/universe s390x node-to-regex-range all 5.0.1-4 [10.7 kB] 145s Get:252 http://ftpmaster.internal/ubuntu plucky/universe s390x node-fill-range all 7.1.1+~7.0.3-1 [8928 B] 145s Get:253 http://ftpmaster.internal/ubuntu plucky/universe s390x node-braces all 3.0.3+~3.0.4-1 [19.1 kB] 145s Get:254 http://ftpmaster.internal/ubuntu plucky/universe s390x node-normalize-path all 3.0.0+~3.0.0-1 [6718 B] 145s Get:255 http://ftpmaster.internal/ubuntu plucky/universe s390x node-anymatch all 3.1.3+~cs4.6.1-2 [31.3 kB] 145s Get:256 http://ftpmaster.internal/ubuntu plucky/universe s390x node-micromatch all 4.0.7+~4.0.9-1 [23.8 kB] 145s Get:257 http://ftpmaster.internal/ubuntu plucky/universe s390x node-pify all 5.0.0+~cs5.0.1-1 [7148 B] 145s Get:258 http://ftpmaster.internal/ubuntu plucky/universe s390x node-path-type all 4.0.0-3 [3934 B] 145s Get:259 http://ftpmaster.internal/ubuntu plucky/universe s390x node-core-util-is all 1.0.3-1 [4066 B] 145s Get:260 http://ftpmaster.internal/ubuntu plucky/universe s390x node-safe-buffer all 5.2.1+~cs2.1.2-3 [15.8 kB] 145s Get:261 http://ftpmaster.internal/ubuntu plucky/universe s390x node-string-decoder all 1.3.0-6 [7044 B] 145s Get:262 http://ftpmaster.internal/ubuntu plucky/universe s390x node-process-nextick-args all 2.0.1-3 [3804 B] 145s Get:263 http://ftpmaster.internal/ubuntu plucky/universe s390x node-util-deprecate all 1.0.2-3 [4202 B] 145s Get:264 http://ftpmaster.internal/ubuntu plucky/universe s390x node-isarray all 2.0.5-4 [4024 B] 145s Get:265 http://ftpmaster.internal/ubuntu plucky/universe s390x node-readable-stream all 3.6.0+~cs3.0.0-4build1 [32.4 kB] 145s Get:266 http://ftpmaster.internal/ubuntu plucky/universe s390x node-n3 all 1.16.3+~1.2.3+~1.10.4-1 [37.7 kB] 145s Get:267 http://ftpmaster.internal/ubuntu plucky/universe s390x node-slash all 4.0.0-3 [4326 B] 145s Get:268 http://ftpmaster.internal/ubuntu plucky/universe s390x node-globby all 13.1.3+~cs16.25.40-3 [41.5 kB] 145s Get:269 http://ftpmaster.internal/ubuntu plucky/universe s390x node-graceful-fs all 4.2.10-1 [14.0 kB] 145s Get:270 http://ftpmaster.internal/ubuntu plucky/universe s390x node-is-path-cwd all 2.2.0-2 [3650 B] 145s Get:271 http://ftpmaster.internal/ubuntu plucky/universe s390x node-path-is-inside all 1.0.2+~1.0.0-1 [5098 B] 145s Get:272 http://ftpmaster.internal/ubuntu plucky/universe s390x node-is-path-inside all 3.0.3-2 [3982 B] 145s Get:273 http://ftpmaster.internal/ubuntu plucky/universe s390x node-escape-string-regexp all 4.0.0-2 [4328 B] 145s Get:274 http://ftpmaster.internal/ubuntu plucky/universe s390x node-indent-string all 4.0.0-2 [4122 B] 145s Get:275 http://ftpmaster.internal/ubuntu plucky/universe s390x node-p-map all 4.0.0+~3.1.0+~3.0.1-2 [8048 B] 145s Get:276 http://ftpmaster.internal/ubuntu plucky/universe s390x node-rimraf all 3.0.2-2 [10.4 kB] 145s Get:277 http://ftpmaster.internal/ubuntu plucky/universe s390x node-del all 7.1.0-1 [8044 B] 145s Get:278 http://ftpmaster.internal/ubuntu plucky/universe s390x node-lru-cache all 10.0.1-3 [61.9 kB] 145s Get:279 http://ftpmaster.internal/ubuntu plucky/universe s390x node-semver all 7.6.1+~7.5.8-2 [45.2 kB] 145s Get:280 http://ftpmaster.internal/ubuntu plucky/universe s390x node-make-dir all 3.1.0-3 [6096 B] 145s Get:281 http://ftpmaster.internal/ubuntu plucky/universe s390x node-p-limit all 4.0.0+~cs4.0.0-5 [7722 B] 145s Get:282 http://ftpmaster.internal/ubuntu plucky/universe s390x node-p-locate all 6.0.0-12 [5340 B] 145s Get:283 http://ftpmaster.internal/ubuntu plucky/universe s390x node-locate-path all 7.1.1-2 [5448 B] 145s Get:284 http://ftpmaster.internal/ubuntu plucky/universe s390x node-path-exists all 5.0.0-8 [4602 B] 145s Get:285 http://ftpmaster.internal/ubuntu plucky/universe s390x node-find-up all 6.3.0-7 [9340 B] 145s Get:286 http://ftpmaster.internal/ubuntu plucky/universe s390x node-pkg-dir all 5.0.0-2 [4270 B] 145s Get:287 http://ftpmaster.internal/ubuntu plucky/universe s390x node-find-cache-dir all 3.3.2+~3.2.1-1 [6210 B] 145s Get:288 http://ftpmaster.internal/ubuntu plucky/universe s390x node-signal-exit all 4.1.0-7 [14.3 kB] 145s Get:289 http://ftpmaster.internal/ubuntu plucky/universe s390x node-foreground-child all 3.1.1-2 [12.4 kB] 145s Get:290 http://ftpmaster.internal/ubuntu plucky/universe s390x node-is-stream all 3.0.0-4 [5106 B] 145s Get:291 http://ftpmaster.internal/ubuntu plucky/universe s390x node-is-windows all 1.0.2+~cs1.0.0-1 [5980 B] 145s Get:292 http://ftpmaster.internal/ubuntu plucky/universe s390x node-ampproject-remapping all 2.2.0+~cs5.15.37-1 [62.4 kB] 145s Get:293 http://ftpmaster.internal/ubuntu plucky/universe s390x node-sprintf-js all 1.1.2+ds1+~1.1.2-1 [3916 B] 145s Get:294 http://ftpmaster.internal/ubuntu plucky/universe s390x node-argparse all 2.0.1-2 [33.2 kB] 145s Get:295 http://ftpmaster.internal/ubuntu plucky/universe s390x node-js-yaml all 4.1.0+dfsg+~4.0.5-7 [61.9 kB] 145s Get:296 http://ftpmaster.internal/ubuntu plucky/universe s390x node-mkdirp all 2.1.6+~cs5.2.1-2 [23.1 kB] 145s Get:297 http://ftpmaster.internal/ubuntu plucky/universe s390x node-nopt all 5.0.0-4 [10.9 kB] 145s Get:298 http://ftpmaster.internal/ubuntu plucky/universe s390x node-npm-run-path all 5.1.0+~4.0.0-8 [6402 B] 145s Get:299 http://ftpmaster.internal/ubuntu plucky/universe s390x node-resolve-from all 5.0.0+~3.1.0+~3.3.0+~2.0.0-1 [7332 B] 145s Get:300 http://ftpmaster.internal/ubuntu plucky/universe s390x node-shebang-regex all 3.0.0-2 [3504 B] 145s Get:301 http://ftpmaster.internal/ubuntu plucky/universe s390x node-shebang-command all 2.0.0-1 [3456 B] 145s Get:302 http://ftpmaster.internal/ubuntu plucky/universe s390x node-strip-bom all 4.0.0-2 [4158 B] 145s Get:303 http://ftpmaster.internal/ubuntu plucky/universe s390x node-has-flag all 5.0.1-1 [4444 B] 145s Get:304 http://ftpmaster.internal/ubuntu plucky/universe s390x node-supports-color all 8.1.1+~8.1.1-1 [7048 B] 145s Get:305 http://ftpmaster.internal/ubuntu plucky/universe s390x node-object-assign all 4.1.1-7 [4686 B] 145s Get:306 http://ftpmaster.internal/ubuntu plucky/universe s390x node-util all 0.12.5+~1.0.10-1 [3760 B] 145s Get:307 http://ftpmaster.internal/ubuntu plucky/universe s390x node-assert all 2.0.0+~cs3.9.8-2 [26.2 kB] 146s Get:308 http://ftpmaster.internal/ubuntu plucky/universe s390x node-babel-plugin-add-module-exports all 1.0.4+dfsg1~cs5.8.0-4 [8860 B] 146s Get:309 http://ftpmaster.internal/ubuntu plucky/universe s390x node-regenerator-runtime all 0.15.2+~0.10.8-1 [10.9 kB] 146s Get:310 http://ftpmaster.internal/ubuntu plucky/universe s390x node-babel7-runtime all 7.20.15+ds1+~cs214.269.168-8 [43.2 kB] 146s Get:311 http://ftpmaster.internal/ubuntu plucky/universe s390x node-ms all 2.1.3+~cs0.7.31-3 [5738 B] 146s Get:312 http://ftpmaster.internal/ubuntu plucky/universe s390x node-debug all 4.3.4+~cs4.1.7-1 [17.7 kB] 146s Get:313 http://ftpmaster.internal/ubuntu plucky/universe s390x node-babel-helper-define-polyfill-provider all 0.3.3~0~20220913+ds1-1 [28.4 kB] 146s Get:314 http://ftpmaster.internal/ubuntu plucky/universe s390x node-babel-plugin-polyfill-corejs2 all 0.3.3~0~20220913+ds1-1 [17.2 kB] 146s Get:315 http://ftpmaster.internal/ubuntu plucky/universe s390x node-caniuse-lite all 1.0.30001692+dfsg+~1.0.5-1 [247 kB] 146s Get:316 http://ftpmaster.internal/ubuntu plucky/universe s390x node-electron-to-chromium all 1.5.80-1 [21.6 kB] 146s Get:317 http://ftpmaster.internal/ubuntu plucky/universe s390x node-picocolors all 1.0.0-4 [6176 B] 146s Get:318 http://ftpmaster.internal/ubuntu plucky/universe s390x node-browserslist all 4.24.4+~cs6.3.21-1 [75.8 kB] 146s Get:319 http://ftpmaster.internal/ubuntu plucky/universe s390x node-core-js-compat all 3.33.2-1build2 [39.1 kB] 146s Get:320 http://ftpmaster.internal/ubuntu plucky/universe s390x node-babel-plugin-polyfill-corejs3 all 0.6.0~0~20220913+ds1-1 [30.2 kB] 146s Get:321 http://ftpmaster.internal/ubuntu plucky/universe s390x node-babel-plugin-polyfill-regenerator all 0.4.1~0~20220913+ds1-1 [4366 B] 146s Get:322 http://ftpmaster.internal/ubuntu plucky/universe s390x node-color-name all 1.1.4+~1.1.1-2 [6076 B] 146s Get:323 http://ftpmaster.internal/ubuntu plucky/universe s390x node-color-convert all 2.0.1+~cs2.0.0-2 [12.8 kB] 146s Get:324 http://ftpmaster.internal/ubuntu plucky/universe s390x node-ansi-styles all 6.2.1-3 [8830 B] 146s Get:325 http://ftpmaster.internal/ubuntu plucky/universe s390x node-chalk all 5.3.0-1build1 [18.8 kB] 146s Get:326 http://ftpmaster.internal/ubuntu plucky/universe s390x node-for-in all 1.0.2-4 [4856 B] 146s Get:327 http://ftpmaster.internal/ubuntu plucky/universe s390x node-for-own all 1.0.0-3 [4708 B] 146s Get:328 http://ftpmaster.internal/ubuntu plucky/universe s390x node-is-plain-object all 5.0.0-7 [6338 B] 146s Get:329 http://ftpmaster.internal/ubuntu plucky/universe s390x node-is-extendable all 1.0.1-3 [5258 B] 146s Get:330 http://ftpmaster.internal/ubuntu plucky/universe s390x node-clone-deep all 4.0.1+~cs7.0.2-1 [6822 B] 146s Get:331 http://ftpmaster.internal/ubuntu plucky/universe s390x node-commander all 9.4.1-1 [50.6 kB] 146s Get:332 http://ftpmaster.internal/ubuntu plucky/universe s390x node-core-js all 3.33.2-1build2 [270 kB] 146s Get:333 http://ftpmaster.internal/ubuntu plucky/universe s390x node-core-js-pure all 3.33.2-1build2 [250 kB] 146s Get:334 http://ftpmaster.internal/ubuntu plucky/universe s390x node-fs-readdir-recursive all 1.1.0+~1.1.0-1 [4552 B] 146s Get:335 http://ftpmaster.internal/ubuntu plucky/universe s390x node-globals all 13.23.0-1 [11.7 kB] 146s Get:336 http://ftpmaster.internal/ubuntu plucky/universe s390x node-js-tokens all 8.0.0-2 [12.1 kB] 146s Get:337 http://ftpmaster.internal/ubuntu plucky/universe s390x node-jsesc all 3.0.2+~3.0.1-1 [18.0 kB] 146s Get:338 http://ftpmaster.internal/ubuntu plucky/universe s390x node-json5 all 2.2.3+dfsg-1build1 [21.9 kB] 146s Get:339 http://ftpmaster.internal/ubuntu plucky/universe s390x node-lodash all 4.17.21+dfsg+~cs8.31.198.20210220-9 [469 kB] 146s Get:340 http://ftpmaster.internal/ubuntu plucky/universe s390x node-quick-lru all 6.1.1-4 [8190 B] 146s Get:341 http://ftpmaster.internal/ubuntu plucky/universe s390x node-regenerator-transform all 0.15.2+~0.10.8-1 [25.5 kB] 146s Get:342 http://ftpmaster.internal/ubuntu plucky/universe s390x node-regenerate all 1.4.2-3 [2340 B] 146s Get:343 http://ftpmaster.internal/ubuntu plucky/universe s390x node-regenerate-unicode-properties all 10.1.0+ds-1 [54.7 kB] 146s Get:344 http://ftpmaster.internal/ubuntu plucky/universe s390x node-regjsgen all 0.7.1+ds-1 [7048 B] 146s Get:345 http://ftpmaster.internal/ubuntu plucky/universe s390x node-regjsparser all 0.9.1+ds-2 [21.6 kB] 146s Get:346 http://ftpmaster.internal/ubuntu plucky/universe s390x node-unicode-canonical-property-names-ecmascript all 2.0.0-2 [4558 B] 146s Get:347 http://ftpmaster.internal/ubuntu plucky/universe s390x node-unicode-property-aliases-ecmascript all 2.1.0+ds-1 [5316 B] 146s Get:348 http://ftpmaster.internal/ubuntu plucky/universe s390x node-unicode-match-property-ecmascript all 2.0.0-2 [4420 B] 146s Get:349 http://ftpmaster.internal/ubuntu plucky/universe s390x node-unicode-match-property-value-ecmascript all 2.1.0+ds-1 [7486 B] 146s Get:350 http://ftpmaster.internal/ubuntu plucky/universe s390x node-regexpu-core all 5.2.2-3 [15.5 kB] 146s Get:351 http://ftpmaster.internal/ubuntu plucky/universe s390x node-source-map-support all 0.5.21+ds+~0.5.4-1 [14.2 kB] 146s Get:352 http://ftpmaster.internal/ubuntu plucky/universe s390x node-to-fast-properties all 3.0.1-3 [4334 B] 146s Get:353 http://ftpmaster.internal/ubuntu plucky/universe s390x node-v8flags all 3.2.0+~3.1.1-1 [7766 B] 147s Get:354 http://ftpmaster.internal/ubuntu plucky/universe s390x node-babel7 all 7.20.15+ds1+~cs214.269.168-8 [623 kB] 147s Get:355 http://ftpmaster.internal/ubuntu plucky/universe s390x node-is-arrayish all 0.3.2-3 [3970 B] 147s Get:356 http://ftpmaster.internal/ubuntu plucky/universe s390x node-error-ex all 1.3.2-4 [5708 B] 147s Get:357 http://ftpmaster.internal/ubuntu plucky/universe s390x node-json-parse-better-errors all 1.0.2+~cs3.3.1-3 [7314 B] 147s Get:358 http://ftpmaster.internal/ubuntu plucky/universe s390x node-parse-json all 5.2.0+~cs5.1.7-2 [7482 B] 147s Get:359 http://ftpmaster.internal/ubuntu plucky/universe s390x node-hosted-git-info all 6.1.1-2 [9904 B] 147s Get:360 http://ftpmaster.internal/ubuntu plucky/universe s390x node-spdx-license-ids all 3.0.12-1 [6488 B] 147s Get:361 http://ftpmaster.internal/ubuntu plucky/universe s390x node-spdx-exceptions all 2.3.0-2 [3978 B] 147s Get:362 http://ftpmaster.internal/ubuntu plucky/universe s390x node-spdx-expression-parse all 3.0.1+~3.0.1-1 [7658 B] 147s Get:363 http://ftpmaster.internal/ubuntu plucky/universe s390x node-spdx-correct all 3.1.1-2 [5476 B] 147s Get:364 http://ftpmaster.internal/ubuntu plucky/universe s390x node-validate-npm-package-license all 3.0.4-2 [4252 B] 147s Get:365 http://ftpmaster.internal/ubuntu plucky/universe s390x node-normalize-package-data all 4.0.1+~2.4.1-1 [13.1 kB] 147s Get:366 http://ftpmaster.internal/ubuntu plucky/universe s390x node-read-pkg all 5.2.0-2 [24.5 kB] 147s Get:367 http://ftpmaster.internal/ubuntu plucky/universe s390x node-uuid all 8.3.2+~8.3.4-1 [36.3 kB] 147s Get:368 http://ftpmaster.internal/ubuntu plucky/universe s390x node-isexe all 2.0.0+~2.0.1-5 [6078 B] 147s Get:369 http://ftpmaster.internal/ubuntu plucky/universe s390x node-which all 2.0.2+~cs1.3.2-3 [7154 B] 147s Get:370 http://ftpmaster.internal/ubuntu plucky/universe s390x node-imurmurhash all 0.1.4+dfsg+~0.1.1-2 [8504 B] 147s Get:371 http://ftpmaster.internal/ubuntu plucky/universe s390x node-is-typedarray all 1.0.0-4 [2072 B] 147s Get:372 http://ftpmaster.internal/ubuntu plucky/universe s390x node-typedarray-to-buffer all 4.0.0-2 [2242 B] 147s Get:373 http://ftpmaster.internal/ubuntu plucky/universe s390x node-write-file-atomic all 4.0.2+~4.0.0-2 [8750 B] 147s Get:374 http://ftpmaster.internal/ubuntu plucky/universe s390x node-slice-ansi all 5.0.0+~cs9.0.0-5 [9044 B] 147s Get:375 http://ftpmaster.internal/ubuntu plucky/universe s390x node-ansi-regex all 5.0.1-1 [4984 B] 147s Get:376 http://ftpmaster.internal/ubuntu plucky/universe s390x node-strip-ansi all 6.0.1-2 [4128 B] 147s Get:377 http://ftpmaster.internal/ubuntu plucky/universe s390x node-clone all 2.1.2+~2.1.2-1 [9340 B] 147s Get:378 http://ftpmaster.internal/ubuntu plucky/universe s390x node-defaults all 1.0.4+~1.0.3-1 [4394 B] 147s Get:379 http://ftpmaster.internal/ubuntu plucky/universe s390x node-wcwidth.js all 1.0.2-2 [7204 B] 147s Get:380 http://ftpmaster.internal/ubuntu plucky/universe s390x node-string-width all 4.2.3+~cs13.2.3-1 [11.4 kB] 147s Get:381 http://ftpmaster.internal/ubuntu plucky/universe s390x node-wrap-ansi all 8.0.1+~8.0.1-3 [12.2 kB] 147s Get:382 http://ftpmaster.internal/ubuntu plucky/universe s390x node-cliui all 7.0.4+repack+1+~cs1.4.2-2 [20.4 kB] 147s Get:383 http://ftpmaster.internal/ubuntu plucky/universe s390x node-get-caller-file all 2.0.5+~cs1.1.1-4 [5774 B] 147s Get:384 http://ftpmaster.internal/ubuntu plucky/universe s390x node-require-directory all 2.1.1+~2.1.2-1 [7190 B] 147s Get:385 http://ftpmaster.internal/ubuntu plucky/universe s390x node-y18n all 5.0.8+~5.0.0-3 [9390 B] 147s Get:386 http://ftpmaster.internal/ubuntu plucky/universe s390x node-camelcase all 7.0.0-3 [6104 B] 147s Get:387 http://ftpmaster.internal/ubuntu plucky/universe s390x node-yargs-parser all 21.1.1+~21.0.0-4 [23.6 kB] 147s Get:388 http://ftpmaster.internal/ubuntu plucky/universe s390x node-yargs all 16.2.0+~16.0.4-7 [123 kB] 147s Get:389 http://ftpmaster.internal/ubuntu plucky/universe s390x node-istanbul all 0.4.5+repack10+~cs98.25.59-2 [211 kB] 147s Get:390 http://ftpmaster.internal/ubuntu plucky/universe s390x node-through all 2.3.8+~cs0.0.30-1 [5496 B] 147s Get:391 http://ftpmaster.internal/ubuntu plucky/universe s390x node-resumer all 0.0.0-6 [4054 B] 147s Get:392 http://ftpmaster.internal/ubuntu plucky/universe s390x node-tape all 5.6.1+~cs8.20.19-2 [32.2 kB] 147s Get:393 http://ftpmaster.internal/ubuntu plucky/universe s390x node-deep-equal all 2.2.3+~cs43.15.94-1 [39.6 kB] 147s Get:394 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-util all 0.12.5+~1.0.10-1 [15.4 kB] 147s Get:395 http://ftpmaster.internal/ubuntu plucky/universe s390x libleptonica6 s390x 1.84.1-4 [1195 kB] 148s Get:396 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 148s Get:397 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 148s Get:398 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 148s Get:399 http://ftpmaster.internal/ubuntu plucky/universe s390x libtbbmalloc2 s390x 2022.0.0-1 [57.6 kB] 148s Get:400 http://ftpmaster.internal/ubuntu plucky/universe s390x libtbbbind-2-5 s390x 2022.0.0-1 [15.3 kB] 148s Get:401 http://ftpmaster.internal/ubuntu plucky/universe s390x libtbb12 s390x 2022.0.0-1 [99.9 kB] 148s Get:402 http://ftpmaster.internal/ubuntu plucky/universe s390x libopencv-core406t64 s390x 4.6.0+dfsg-14build3 [1164 kB] 148s Get:403 http://ftpmaster.internal/ubuntu plucky/universe s390x libopencv-flann406t64 s390x 4.6.0+dfsg-14build3 [145 kB] 148s Get:404 http://ftpmaster.internal/ubuntu plucky/universe s390x libopencv-imgproc406t64 s390x 4.6.0+dfsg-14build3 [1138 kB] 148s Get:405 http://ftpmaster.internal/ubuntu plucky/universe s390x libopencv-features2d406t64 s390x 4.6.0+dfsg-14build3 [246 kB] 149s Get:406 http://ftpmaster.internal/ubuntu plucky/universe s390x libopencv-calib3d406t64 s390x 4.6.0+dfsg-14build3 [764 kB] 149s Get:407 http://ftpmaster.internal/ubuntu plucky/main s390x libprotobuf32t64 s390x 3.21.12-10build1 [944 kB] 149s Get:408 http://ftpmaster.internal/ubuntu plucky/universe s390x libopencv-dnn406t64 s390x 4.6.0+dfsg-14build3 [1237 kB] 150s Get:409 http://ftpmaster.internal/ubuntu plucky/universe s390x libopenexr-3-1-30 s390x 3.1.5-5.1build3 [1042 kB] 150s Get:410 http://ftpmaster.internal/ubuntu plucky/universe s390x libopencv-imgcodecs406t64 s390x 4.6.0+dfsg-14build3 [137 kB] 150s Get:411 http://ftpmaster.internal/ubuntu plucky/main s390x libopengl0 s390x 1.7.0-1build1 [48.0 kB] 150s Get:412 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 150s Get:413 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-1ubuntu2 [2243 kB] 150s Get:414 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 150s Get:415 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 150s Get:416 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-1ubuntu2 [240 kB] 150s Get:417 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-1ubuntu2 [788 kB] 150s Get:418 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 150s Get:419 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 150s Get:420 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 150s Get:421 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 150s Get:422 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 150s Get:423 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 150s Get:424 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 150s Get:425 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 150s Get:426 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 150s Get:427 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 150s Get:428 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 150s Get:429 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-1ubuntu2 [4187 kB] 151s Get:430 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5widgets5t64 s390x 5.15.15+dfsg-1ubuntu2 [2718 kB] 151s Get:431 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5opengl5t64 s390x 5.15.15+dfsg-1ubuntu2 [156 kB] 151s Get:432 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5test5t64 s390x 5.15.15+dfsg-1ubuntu2 [155 kB] 151s Get:433 http://ftpmaster.internal/ubuntu plucky/universe s390x libopencv-highgui406t64 s390x 4.6.0+dfsg-14build3 [119 kB] 151s Get:434 http://ftpmaster.internal/ubuntu plucky/universe s390x libopencv-ml406t64 s390x 4.6.0+dfsg-14build3 [230 kB] 151s Get:435 http://ftpmaster.internal/ubuntu plucky/universe s390x libopencv-objdetect406t64 s390x 4.6.0+dfsg-14build3 [240 kB] 151s Get:436 http://ftpmaster.internal/ubuntu plucky/universe s390x libopencv-video406t64 s390x 4.6.0+dfsg-14build3 [189 kB] 151s Get:437 http://ftpmaster.internal/ubuntu plucky/universe s390x libtesseract5 s390x 5.5.0-1 [1451 kB] 151s Get:438 http://ftpmaster.internal/ubuntu plucky/universe s390x libopencv-contrib406t64 s390x 4.6.0+dfsg-14build3 [4245 kB] 151s Get:439 http://ftpmaster.internal/ubuntu plucky/universe s390x libopencv-stitching406t64 s390x 4.6.0+dfsg-14build3 [207 kB] 151s Get:440 http://ftpmaster.internal/ubuntu plucky/universe s390x libswscale8 s390x 7:7.1-3ubuntu3 [216 kB] 152s Get:441 http://ftpmaster.internal/ubuntu plucky/universe s390x libopencv-videoio406t64 s390x 4.6.0+dfsg-14build3 [218 kB] 152s Get:442 http://ftpmaster.internal/ubuntu plucky/universe s390x node-agent-base all 7.1.1~0~2024040606-5 [11.2 kB] 152s Get:443 http://ftpmaster.internal/ubuntu plucky/universe s390x node-aproba all 2.0.0-3 [5698 B] 152s Get:444 http://ftpmaster.internal/ubuntu plucky/universe s390x node-delegates all 1.0.0-3 [4280 B] 152s Get:445 http://ftpmaster.internal/ubuntu plucky/universe s390x node-are-we-there-yet all 3.0.1+~1.1.0-1 [9066 B] 152s Get:446 http://ftpmaster.internal/ubuntu plucky/universe s390x node-buffers all 0.1.1-5 [6208 B] 152s Get:447 http://ftpmaster.internal/ubuntu plucky/universe s390x node-chownr all 2.0.0-3 [4328 B] 152s Get:448 http://ftpmaster.internal/ubuntu plucky/universe s390x node-console-control-strings all 1.1.0-3 [5616 B] 152s Get:449 http://ftpmaster.internal/ubuntu plucky/universe s390x node-data-uri-to-buffer all 6.0.2~0~2024040606-5 [8672 B] 152s Get:450 http://ftpmaster.internal/ubuntu plucky/universe s390x node-time-stamp all 2.2.0-2 [6012 B] 152s Get:451 http://ftpmaster.internal/ubuntu plucky/universe s390x node-fancy-log all 1.3.3+~cs1.3.1-2 [8102 B] 152s Get:452 http://ftpmaster.internal/ubuntu plucky/universe s390x node-fetch all 3.3.2+~cs11.4.11-3 [218 kB] 152s Get:453 http://ftpmaster.internal/ubuntu plucky/universe s390x node-has-unicode all 2.0.1-5 [3962 B] 152s Get:454 http://ftpmaster.internal/ubuntu plucky/universe s390x node-wide-align all 1.1.3-4 [4228 B] 152s Get:455 http://ftpmaster.internal/ubuntu plucky/universe s390x node-gauge all 4.0.4-2 [16.1 kB] 152s Get:456 http://ftpmaster.internal/ubuntu plucky/universe s390x node-https-proxy-agent all 7.0.4~0~2024040606-5 [11.2 kB] 152s Get:457 http://ftpmaster.internal/ubuntu plucky/universe s390x node-iconv-lite all 0.6.3-3 [158 kB] 152s Get:458 http://ftpmaster.internal/ubuntu plucky/universe s390x node-encoding all 0.1.13-2 [4366 B] 152s Get:459 http://ftpmaster.internal/ubuntu plucky/universe s390x node-jsonparse all 1.3.1-10 [8060 B] 152s Get:460 http://ftpmaster.internal/ubuntu plucky/universe s390x node-yallist all 4.0.0+~4.0.1-1 [8322 B] 152s Get:461 http://ftpmaster.internal/ubuntu plucky/universe s390x node-minipass all 5.0.0+~cs10.3.21-2 [44.4 kB] 152s Get:462 http://ftpmaster.internal/ubuntu plucky/universe s390x node-nan all 2.18.0-1ubuntu1 [43.7 kB] 152s Get:463 http://ftpmaster.internal/ubuntu plucky/universe s390x node-set-blocking all 2.0.0-2 [3766 B] 152s Get:464 http://ftpmaster.internal/ubuntu plucky/universe s390x node-npmlog all 7.0.1+~4.1.4-1 [9826 B] 152s Get:465 http://ftpmaster.internal/ubuntu plucky/universe s390x node-tar all 6.2.1+~cs7.0.8-1 [51.3 kB] 152s Get:466 http://ftpmaster.internal/ubuntu plucky/universe s390x node-pre-gyp all 1.0.11+~2.0.3-1 [41.1 kB] 152s Get:467 http://ftpmaster.internal/ubuntu plucky/universe s390x node-opencv s390x 7.0.0+git20200316.f0a03a4b-1build7 [4508 kB] 153s Fetched 147 MB in 15s (9972 kB/s) 153s Selecting previously unselected package libfreetype6:s390x. 154s (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.) 154s Preparing to unpack .../000-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 154s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 154s Selecting previously unselected package fonts-dejavu-mono. 154s Preparing to unpack .../001-fonts-dejavu-mono_2.37-8_all.deb ... 154s Unpacking fonts-dejavu-mono (2.37-8) ... 154s Selecting previously unselected package fonts-dejavu-core. 154s Preparing to unpack .../002-fonts-dejavu-core_2.37-8_all.deb ... 154s Unpacking fonts-dejavu-core (2.37-8) ... 154s Selecting previously unselected package fontconfig-config. 154s Preparing to unpack .../003-fontconfig-config_2.15.0-1.1ubuntu2_s390x.deb ... 154s Unpacking fontconfig-config (2.15.0-1.1ubuntu2) ... 154s Selecting previously unselected package libfontconfig1:s390x. 154s Preparing to unpack .../004-libfontconfig1_2.15.0-1.1ubuntu2_s390x.deb ... 154s Unpacking libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 154s Selecting previously unselected package fontconfig. 154s Preparing to unpack .../005-fontconfig_2.15.0-1.1ubuntu2_s390x.deb ... 154s Unpacking fontconfig (2.15.0-1.1ubuntu2) ... 154s Selecting previously unselected package gdal-data. 154s Preparing to unpack .../006-gdal-data_3.10.1+dfsg-1build2_all.deb ... 154s Unpacking gdal-data (3.10.1+dfsg-1build2) ... 154s Selecting previously unselected package gdal-plugins:s390x. 154s Preparing to unpack .../007-gdal-plugins_3.10.1+dfsg-1build2_s390x.deb ... 154s Unpacking gdal-plugins:s390x (3.10.1+dfsg-1build2) ... 154s Selecting previously unselected package libcares2:s390x. 154s Preparing to unpack .../008-libcares2_1.34.4-2.1_s390x.deb ... 154s Unpacking libcares2:s390x (1.34.4-2.1) ... 154s Selecting previously unselected package node-xtend. 154s Preparing to unpack .../009-node-xtend_4.0.2-3_all.deb ... 154s Unpacking node-xtend (4.0.2-3) ... 154s Selecting previously unselected package node-acorn. 154s Preparing to unpack .../010-node-acorn_8.8.1+ds+~cs25.17.7-2_all.deb ... 154s Unpacking node-acorn (8.8.1+ds+~cs25.17.7-2) ... 154s Selecting previously unselected package node-cjs-module-lexer. 154s Preparing to unpack .../011-node-cjs-module-lexer_1.2.3+dfsg-1_all.deb ... 154s Unpacking node-cjs-module-lexer (1.2.3+dfsg-1) ... 154s Selecting previously unselected package node-balanced-match. 154s Preparing to unpack .../012-node-balanced-match_2.0.0-1_all.deb ... 154s Unpacking node-balanced-match (2.0.0-1) ... 154s Selecting previously unselected package node-brace-expansion. 154s Preparing to unpack .../013-node-brace-expansion_2.0.1+~1.1.0-1_all.deb ... 154s Unpacking node-brace-expansion (2.0.1+~1.1.0-1) ... 154s Selecting previously unselected package node-minimatch. 154s Preparing to unpack .../014-node-minimatch_9.0.3-5_all.deb ... 154s Unpacking node-minimatch (9.0.3-5) ... 154s Selecting previously unselected package node-undici. 154s Preparing to unpack .../015-node-undici_7.3.0+dfsg1+~cs24.12.11-1_all.deb ... 154s Unpacking node-undici (7.3.0+dfsg1+~cs24.12.11-1) ... 154s Selecting previously unselected package libnode115:s390x. 154s Preparing to unpack .../016-libnode115_20.18.1+dfsg-1ubuntu1_s390x.deb ... 154s Unpacking libnode115:s390x (20.18.1+dfsg-1ubuntu1) ... 154s Selecting previously unselected package nodejs. 154s Preparing to unpack .../017-nodejs_20.18.1+dfsg-1ubuntu1_s390x.deb ... 154s Unpacking nodejs (20.18.1+dfsg-1ubuntu1) ... 154s Selecting previously unselected package node-neo-async. 154s Preparing to unpack .../018-node-neo-async_2.6.2+~cs3.0.0-3_all.deb ... 154s Unpacking node-neo-async (2.6.2+~cs3.0.0-3) ... 154s Selecting previously unselected package node-arrify. 154s Preparing to unpack .../019-node-arrify_2.0.1-3_all.deb ... 154s Unpacking node-arrify (2.0.1-3) ... 154s Selecting previously unselected package node-is-plain-obj. 154s Preparing to unpack .../020-node-is-plain-obj_3.0.0-2_all.deb ... 154s Unpacking node-is-plain-obj (3.0.0-2) ... 154s Selecting previously unselected package node-is-buffer. 154s Preparing to unpack .../021-node-is-buffer_2.0.5-2_all.deb ... 154s Unpacking node-is-buffer (2.0.5-2) ... 154s Selecting previously unselected package node-kind-of. 154s Preparing to unpack .../022-node-kind-of_6.0.3+dfsg-2_all.deb ... 154s Unpacking node-kind-of (6.0.3+dfsg-2) ... 154s Selecting previously unselected package node-minimist. 154s Preparing to unpack .../023-node-minimist_1.2.8+~cs5.3.5-1_all.deb ... 154s Unpacking node-minimist (1.2.8+~cs5.3.5-1) ... 154s Selecting previously unselected package node-wordwrap. 154s Preparing to unpack .../024-node-wordwrap_1.0.0-4_all.deb ... 154s Unpacking node-wordwrap (1.0.0-4) ... 154s Selecting previously unselected package node-optimist. 154s Preparing to unpack .../025-node-optimist_0.6.1+~0.0.30-2_all.deb ... 154s Unpacking node-optimist (0.6.1+~0.0.30-2) ... 154s Selecting previously unselected package libjs-source-map. 154s Preparing to unpack .../026-libjs-source-map_0.7.0++dfsg2+really.0.6.1-15_all.deb ... 154s Unpacking libjs-source-map (0.7.0++dfsg2+really.0.6.1-15) ... 154s Selecting previously unselected package node-source-map. 154s Preparing to unpack .../027-node-source-map_0.7.0++dfsg2+really.0.6.1-15_all.deb ... 154s Unpacking node-source-map (0.7.0++dfsg2+really.0.6.1-15) ... 154s Selecting previously unselected package handlebars. 154s Preparing to unpack .../028-handlebars_3%3a4.7.7+~4.1.0-1_all.deb ... 154s Unpacking handlebars (3:4.7.7+~4.1.0-1) ... 154s Selecting previously unselected package libaec0:s390x. 154s Preparing to unpack .../029-libaec0_1.1.3-1_s390x.deb ... 154s Unpacking libaec0:s390x (1.1.3-1) ... 154s Selecting previously unselected package libaom3:s390x. 154s Preparing to unpack .../030-libaom3_3.12.0-1_s390x.deb ... 154s Unpacking libaom3:s390x (3.12.0-1) ... 154s Selecting previously unselected package libblas3:s390x. 154s Preparing to unpack .../031-libblas3_3.12.1-2_s390x.deb ... 154s Unpacking libblas3:s390x (3.12.1-2) ... 154s Selecting previously unselected package libgfortran5:s390x. 154s Preparing to unpack .../032-libgfortran5_14.2.0-17ubuntu1_s390x.deb ... 154s Unpacking libgfortran5:s390x (14.2.0-17ubuntu1) ... 154s Selecting previously unselected package liblapack3:s390x. 154s Preparing to unpack .../033-liblapack3_3.12.1-2_s390x.deb ... 154s Unpacking liblapack3:s390x (3.12.1-2) ... 154s Selecting previously unselected package libarpack2t64:s390x. 154s Preparing to unpack .../034-libarpack2t64_3.9.1-4_s390x.deb ... 154s Unpacking libarpack2t64:s390x (3.9.1-4) ... 154s Selecting previously unselected package libarmadillo14. 154s Preparing to unpack .../035-libarmadillo14_1%3a14.2.1+dfsg-1_s390x.deb ... 154s Unpacking libarmadillo14 (1:14.2.1+dfsg-1) ... 154s Selecting previously unselected package libva2:s390x. 154s Preparing to unpack .../036-libva2_2.22.0-2_s390x.deb ... 154s Unpacking libva2:s390x (2.22.0-2) ... 154s Selecting previously unselected package libva-drm2:s390x. 154s Preparing to unpack .../037-libva-drm2_2.22.0-2_s390x.deb ... 154s Unpacking libva-drm2:s390x (2.22.0-2) ... 154s Selecting previously unselected package libx11-xcb1:s390x. 154s Preparing to unpack .../038-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 154s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 154s Selecting previously unselected package libxcb-dri3-0:s390x. 154s Preparing to unpack .../039-libxcb-dri3-0_1.17.0-2_s390x.deb ... 154s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 154s Selecting previously unselected package libxfixes3:s390x. 154s Preparing to unpack .../040-libxfixes3_1%3a6.0.0-2build1_s390x.deb ... 154s Unpacking libxfixes3:s390x (1:6.0.0-2build1) ... 154s Selecting previously unselected package libva-x11-2:s390x. 154s Preparing to unpack .../041-libva-x11-2_2.22.0-2_s390x.deb ... 154s Unpacking libva-x11-2:s390x (2.22.0-2) ... 154s Selecting previously unselected package libvdpau1:s390x. 154s Preparing to unpack .../042-libvdpau1_1.5-3_s390x.deb ... 154s Unpacking libvdpau1:s390x (1.5-3) ... 154s Selecting previously unselected package ocl-icd-libopencl1:s390x. 154s Preparing to unpack .../043-ocl-icd-libopencl1_2.3.2-1build1_s390x.deb ... 154s Unpacking ocl-icd-libopencl1:s390x (2.3.2-1build1) ... 154s Selecting previously unselected package libavutil59:s390x. 154s Preparing to unpack .../044-libavutil59_7%3a7.1-3ubuntu3_s390x.deb ... 154s Unpacking libavutil59:s390x (7:7.1-3ubuntu3) ... 154s Selecting previously unselected package libpixman-1-0:s390x. 154s Preparing to unpack .../045-libpixman-1-0_0.44.0-3_s390x.deb ... 154s Unpacking libpixman-1-0:s390x (0.44.0-3) ... 154s Selecting previously unselected package libxcb-render0:s390x. 154s Preparing to unpack .../046-libxcb-render0_1.17.0-2_s390x.deb ... 154s Unpacking libxcb-render0:s390x (1.17.0-2) ... 154s Selecting previously unselected package libxcb-shm0:s390x. 154s Preparing to unpack .../047-libxcb-shm0_1.17.0-2_s390x.deb ... 154s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 154s Selecting previously unselected package libxrender1:s390x. 154s Preparing to unpack .../048-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 154s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 154s Selecting previously unselected package libcairo2:s390x. 154s Preparing to unpack .../049-libcairo2_1.18.2-2_s390x.deb ... 154s Unpacking libcairo2:s390x (1.18.2-2) ... 154s Selecting previously unselected package libcodec2-1.2:s390x. 154s Preparing to unpack .../050-libcodec2-1.2_1.2.0-3_s390x.deb ... 154s Unpacking libcodec2-1.2:s390x (1.2.0-3) ... 154s Selecting previously unselected package libdav1d7:s390x. 154s Preparing to unpack .../051-libdav1d7_1.5.1-1_s390x.deb ... 154s Unpacking libdav1d7:s390x (1.5.1-1) ... 154s Selecting previously unselected package libgsm1:s390x. 154s Preparing to unpack .../052-libgsm1_1.0.22-1build1_s390x.deb ... 154s Unpacking libgsm1:s390x (1.0.22-1build1) ... 155s Selecting previously unselected package liblcms2-2:s390x. 155s Preparing to unpack .../053-liblcms2-2_2.16-2_s390x.deb ... 155s Unpacking liblcms2-2:s390x (2.16-2) ... 155s Selecting previously unselected package libjxl0.11:s390x. 155s Preparing to unpack .../054-libjxl0.11_0.11.1-1_s390x.deb ... 155s Unpacking libjxl0.11:s390x (0.11.1-1) ... 155s Selecting previously unselected package libmp3lame0:s390x. 155s Preparing to unpack .../055-libmp3lame0_3.100-6build1_s390x.deb ... 155s Unpacking libmp3lame0:s390x (3.100-6build1) ... 155s Selecting previously unselected package libopenjp2-7:s390x. 155s Preparing to unpack .../056-libopenjp2-7_2.5.0-2ubuntu3_s390x.deb ... 155s Unpacking libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 155s Selecting previously unselected package libopus0:s390x. 155s Preparing to unpack .../057-libopus0_1.5.2-2_s390x.deb ... 155s Unpacking libopus0:s390x (1.5.2-2) ... 155s Selecting previously unselected package librav1e0.7:s390x. 155s Preparing to unpack .../058-librav1e0.7_0.7.1-9_s390x.deb ... 155s Unpacking librav1e0.7:s390x (0.7.1-9) ... 155s Selecting previously unselected package libcairo-gobject2:s390x. 155s Preparing to unpack .../059-libcairo-gobject2_1.18.2-2_s390x.deb ... 155s Unpacking libcairo-gobject2:s390x (1.18.2-2) ... 155s Selecting previously unselected package libgdk-pixbuf2.0-common. 155s Preparing to unpack .../060-libgdk-pixbuf2.0-common_2.42.12+dfsg-2_all.deb ... 155s Unpacking libgdk-pixbuf2.0-common (2.42.12+dfsg-2) ... 155s Selecting previously unselected package libjpeg-turbo8:s390x. 155s Preparing to unpack .../061-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 155s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 155s Selecting previously unselected package libjpeg8:s390x. 155s Preparing to unpack .../062-libjpeg8_8c-2ubuntu11_s390x.deb ... 155s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 155s Selecting previously unselected package libdeflate0:s390x. 155s Preparing to unpack .../063-libdeflate0_1.23-1_s390x.deb ... 155s Unpacking libdeflate0:s390x (1.23-1) ... 155s Selecting previously unselected package libjbig0:s390x. 155s Preparing to unpack .../064-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 155s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 155s Selecting previously unselected package libsharpyuv0:s390x. 155s Preparing to unpack .../065-libsharpyuv0_1.5.0-0.1_s390x.deb ... 155s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 155s Selecting previously unselected package libwebp7:s390x. 155s Preparing to unpack .../066-libwebp7_1.5.0-0.1_s390x.deb ... 155s Unpacking libwebp7:s390x (1.5.0-0.1) ... 155s Selecting previously unselected package libtiff6:s390x. 155s Preparing to unpack .../067-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 155s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 155s Selecting previously unselected package libgdk-pixbuf-2.0-0:s390x. 155s Preparing to unpack .../068-libgdk-pixbuf-2.0-0_2.42.12+dfsg-2_s390x.deb ... 155s Unpacking libgdk-pixbuf-2.0-0:s390x (2.42.12+dfsg-2) ... 155s Selecting previously unselected package libgraphite2-3:s390x. 155s Preparing to unpack .../069-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 155s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 155s Selecting previously unselected package libharfbuzz0b:s390x. 155s Preparing to unpack .../070-libharfbuzz0b_10.2.0-1_s390x.deb ... 155s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 155s Selecting previously unselected package libthai-data. 155s Preparing to unpack .../071-libthai-data_0.1.29-2build1_all.deb ... 155s Unpacking libthai-data (0.1.29-2build1) ... 155s Selecting previously unselected package libdatrie1:s390x. 155s Preparing to unpack .../072-libdatrie1_0.2.13-3build1_s390x.deb ... 155s Unpacking libdatrie1:s390x (0.2.13-3build1) ... 155s Selecting previously unselected package libthai0:s390x. 155s Preparing to unpack .../073-libthai0_0.1.29-2build1_s390x.deb ... 155s Unpacking libthai0:s390x (0.1.29-2build1) ... 155s Selecting previously unselected package libpango-1.0-0:s390x. 155s Preparing to unpack .../074-libpango-1.0-0_1.56.1-1_s390x.deb ... 155s Unpacking libpango-1.0-0:s390x (1.56.1-1) ... 155s Selecting previously unselected package libpangoft2-1.0-0:s390x. 155s Preparing to unpack .../075-libpangoft2-1.0-0_1.56.1-1_s390x.deb ... 155s Unpacking libpangoft2-1.0-0:s390x (1.56.1-1) ... 155s Selecting previously unselected package libpangocairo-1.0-0:s390x. 155s Preparing to unpack .../076-libpangocairo-1.0-0_1.56.1-1_s390x.deb ... 155s Unpacking libpangocairo-1.0-0:s390x (1.56.1-1) ... 155s Selecting previously unselected package librsvg2-2:s390x. 155s Preparing to unpack .../077-librsvg2-2_2.59.90+dfsg-2_s390x.deb ... 155s Unpacking librsvg2-2:s390x (2.59.90+dfsg-2) ... 155s Selecting previously unselected package libshine3:s390x. 155s Preparing to unpack .../078-libshine3_3.1.1-2build1_s390x.deb ... 155s Unpacking libshine3:s390x (3.1.1-2build1) ... 155s Selecting previously unselected package libsnappy1v5:s390x. 155s Preparing to unpack .../079-libsnappy1v5_1.2.1-1_s390x.deb ... 155s Unpacking libsnappy1v5:s390x (1.2.1-1) ... 155s Selecting previously unselected package libspeex1:s390x. 155s Preparing to unpack .../080-libspeex1_1.2.1-3_s390x.deb ... 155s Unpacking libspeex1:s390x (1.2.1-3) ... 155s Selecting previously unselected package libsvtav1enc2:s390x. 155s Preparing to unpack .../081-libsvtav1enc2_2.3.0+dfsg-1_s390x.deb ... 155s Unpacking libsvtav1enc2:s390x (2.3.0+dfsg-1) ... 155s Selecting previously unselected package libgomp1:s390x. 155s Preparing to unpack .../082-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 155s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 155s Selecting previously unselected package libsoxr0:s390x. 155s Preparing to unpack .../083-libsoxr0_0.1.3-4build3_s390x.deb ... 155s Unpacking libsoxr0:s390x (0.1.3-4build3) ... 155s Selecting previously unselected package libswresample5:s390x. 155s Preparing to unpack .../084-libswresample5_7%3a7.1-3ubuntu3_s390x.deb ... 155s Unpacking libswresample5:s390x (7:7.1-3ubuntu3) ... 155s Selecting previously unselected package libtheoradec1:s390x. 155s Preparing to unpack .../085-libtheoradec1_1.2.0~alpha1+dfsg-5_s390x.deb ... 155s Unpacking libtheoradec1:s390x (1.2.0~alpha1+dfsg-5) ... 155s Selecting previously unselected package libogg0:s390x. 155s Preparing to unpack .../086-libogg0_1.3.5-3build1_s390x.deb ... 155s Unpacking libogg0:s390x (1.3.5-3build1) ... 155s Selecting previously unselected package libtheoraenc1:s390x. 155s Preparing to unpack .../087-libtheoraenc1_1.2.0~alpha1+dfsg-5_s390x.deb ... 155s Unpacking libtheoraenc1:s390x (1.2.0~alpha1+dfsg-5) ... 155s Selecting previously unselected package libtwolame0:s390x. 155s Preparing to unpack .../088-libtwolame0_0.4.0-2build3_s390x.deb ... 155s Unpacking libtwolame0:s390x (0.4.0-2build3) ... 155s Selecting previously unselected package libvorbis0a:s390x. 155s Preparing to unpack .../089-libvorbis0a_1.3.7-2_s390x.deb ... 155s Unpacking libvorbis0a:s390x (1.3.7-2) ... 155s Selecting previously unselected package libvorbisenc2:s390x. 155s Preparing to unpack .../090-libvorbisenc2_1.3.7-2_s390x.deb ... 155s Unpacking libvorbisenc2:s390x (1.3.7-2) ... 155s Selecting previously unselected package libvpx9:s390x. 155s Preparing to unpack .../091-libvpx9_1.15.0-1ubuntu1_s390x.deb ... 155s Unpacking libvpx9:s390x (1.15.0-1ubuntu1) ... 155s Selecting previously unselected package libwebpmux3:s390x. 155s Preparing to unpack .../092-libwebpmux3_1.5.0-0.1_s390x.deb ... 155s Unpacking libwebpmux3:s390x (1.5.0-0.1) ... 155s Selecting previously unselected package libx264-164:s390x. 155s Preparing to unpack .../093-libx264-164_2%3a0.164.3108+git31e19f9-2build1_s390x.deb ... 155s Unpacking libx264-164:s390x (2:0.164.3108+git31e19f9-2build1) ... 155s Selecting previously unselected package libx265-215:s390x. 155s Preparing to unpack .../094-libx265-215_4.1-2_s390x.deb ... 155s Unpacking libx265-215:s390x (4.1-2) ... 155s Selecting previously unselected package libxvidcore4:s390x. 155s Preparing to unpack .../095-libxvidcore4_2%3a1.3.7-1build1_s390x.deb ... 155s Unpacking libxvidcore4:s390x (2:1.3.7-1build1) ... 155s Selecting previously unselected package libzvbi-common. 155s Preparing to unpack .../096-libzvbi-common_0.2.43-2ubuntu1_all.deb ... 155s Unpacking libzvbi-common (0.2.43-2ubuntu1) ... 155s Selecting previously unselected package libzvbi0t64:s390x. 155s Preparing to unpack .../097-libzvbi0t64_0.2.43-2ubuntu1_s390x.deb ... 155s Unpacking libzvbi0t64:s390x (0.2.43-2ubuntu1) ... 155s Selecting previously unselected package libavcodec61:s390x. 155s Preparing to unpack .../098-libavcodec61_7%3a7.1-3ubuntu3_s390x.deb ... 155s Unpacking libavcodec61:s390x (7:7.1-3ubuntu3) ... 155s Selecting previously unselected package libudfread0:s390x. 155s Preparing to unpack .../099-libudfread0_1.1.2-1build1_s390x.deb ... 155s Unpacking libudfread0:s390x (1.1.2-1build1) ... 155s Selecting previously unselected package libbluray2:s390x. 155s Preparing to unpack .../100-libbluray2_1%3a1.3.4-1build1_s390x.deb ... 155s Unpacking libbluray2:s390x (1:1.3.4-1build1) ... 155s Selecting previously unselected package libchromaprint1:s390x. 155s Preparing to unpack .../101-libchromaprint1_1.5.1-7_s390x.deb ... 155s Unpacking libchromaprint1:s390x (1.5.1-7) ... 155s Selecting previously unselected package libdvdread8t64:s390x. 155s Preparing to unpack .../102-libdvdread8t64_6.1.3-2_s390x.deb ... 155s Unpacking libdvdread8t64:s390x (6.1.3-2) ... 155s Selecting previously unselected package libdvdnav4:s390x. 155s Preparing to unpack .../103-libdvdnav4_6.1.1-3build1_s390x.deb ... 155s Unpacking libdvdnav4:s390x (6.1.1-3build1) ... 155s Selecting previously unselected package libgme0:s390x. 155s Preparing to unpack .../104-libgme0_0.6.3-7build1_s390x.deb ... 155s Unpacking libgme0:s390x (0.6.3-7build1) ... 155s Selecting previously unselected package libmpg123-0t64:s390x. 155s Preparing to unpack .../105-libmpg123-0t64_1.32.10-1_s390x.deb ... 155s Unpacking libmpg123-0t64:s390x (1.32.10-1) ... 155s Selecting previously unselected package libvorbisfile3:s390x. 155s Preparing to unpack .../106-libvorbisfile3_1.3.7-2_s390x.deb ... 155s Unpacking libvorbisfile3:s390x (1.3.7-2) ... 155s Selecting previously unselected package libopenmpt0t64:s390x. 155s Preparing to unpack .../107-libopenmpt0t64_0.7.13-1_s390x.deb ... 155s Unpacking libopenmpt0t64:s390x (0.7.13-1) ... 156s Selecting previously unselected package librabbitmq4:s390x. 156s Preparing to unpack .../108-librabbitmq4_0.15.0-1_s390x.deb ... 156s Unpacking librabbitmq4:s390x (0.15.0-1) ... 156s Selecting previously unselected package libcjson1:s390x. 156s Preparing to unpack .../109-libcjson1_1.7.18-3_s390x.deb ... 156s Unpacking libcjson1:s390x (1.7.18-3) ... 156s Selecting previously unselected package libmbedcrypto16:s390x. 156s Preparing to unpack .../110-libmbedcrypto16_3.6.2-3ubuntu1_s390x.deb ... 156s Unpacking libmbedcrypto16:s390x (3.6.2-3ubuntu1) ... 156s Selecting previously unselected package librist4:s390x. 156s Preparing to unpack .../111-librist4_0.2.11+dfsg-1_s390x.deb ... 156s Unpacking librist4:s390x (0.2.11+dfsg-1) ... 156s Selecting previously unselected package libsrt1.5-gnutls:s390x. 156s Preparing to unpack .../112-libsrt1.5-gnutls_1.5.4-1_s390x.deb ... 156s Unpacking libsrt1.5-gnutls:s390x (1.5.4-1) ... 156s Selecting previously unselected package libssh-4:s390x. 156s Preparing to unpack .../113-libssh-4_0.11.1-1_s390x.deb ... 156s Unpacking libssh-4:s390x (0.11.1-1) ... 156s Selecting previously unselected package libnorm1t64:s390x. 156s Preparing to unpack .../114-libnorm1t64_1.5.9+dfsg-3.1build1_s390x.deb ... 156s Unpacking libnorm1t64:s390x (1.5.9+dfsg-3.1build1) ... 156s Selecting previously unselected package libpgm-5.3-0t64:s390x. 156s Preparing to unpack .../115-libpgm-5.3-0t64_5.3.128~dfsg-2.1build1_s390x.deb ... 156s Unpacking libpgm-5.3-0t64:s390x (5.3.128~dfsg-2.1build1) ... 156s Selecting previously unselected package libsodium23:s390x. 156s Preparing to unpack .../116-libsodium23_1.0.18-1build3_s390x.deb ... 156s Unpacking libsodium23:s390x (1.0.18-1build3) ... 156s Selecting previously unselected package libzmq5:s390x. 156s Preparing to unpack .../117-libzmq5_4.3.5-1build2_s390x.deb ... 156s Unpacking libzmq5:s390x (4.3.5-1build2) ... 156s Selecting previously unselected package libavformat61:s390x. 156s Preparing to unpack .../118-libavformat61_7%3a7.1-3ubuntu3_s390x.deb ... 156s Unpacking libavformat61:s390x (7:7.1-3ubuntu3) ... 156s Selecting previously unselected package libyuv0:s390x. 156s Preparing to unpack .../119-libyuv0_0.0.1904.20250204-1_s390x.deb ... 156s Unpacking libyuv0:s390x (0.0.1904.20250204-1) ... 156s Selecting previously unselected package libavif16:s390x. 156s Preparing to unpack .../120-libavif16_1.1.1-1ubuntu1_s390x.deb ... 156s Unpacking libavif16:s390x (1.1.1-1ubuntu1) ... 156s Selecting previously unselected package libblosc1:s390x. 156s Preparing to unpack .../121-libblosc1_1.21.5+ds-1build1_s390x.deb ... 156s Unpacking libblosc1:s390x (1.21.5+ds-1build1) ... 156s Selecting previously unselected package libcfitsio10t64:s390x. 156s Preparing to unpack .../122-libcfitsio10t64_4.5.0-5_s390x.deb ... 156s Unpacking libcfitsio10t64:s390x (4.5.0-5) ... 156s Selecting previously unselected package libcharls2:s390x. 156s Preparing to unpack .../123-libcharls2_2.4.2-2build2_s390x.deb ... 156s Unpacking libcharls2:s390x (2.4.2-2build2) ... 156s Selecting previously unselected package libraw1394-11:s390x. 156s Preparing to unpack .../124-libraw1394-11_2.1.2-2build3_s390x.deb ... 156s Unpacking libraw1394-11:s390x (2.1.2-2build3) ... 156s Selecting previously unselected package libdc1394-25:s390x. 156s Preparing to unpack .../125-libdc1394-25_2.2.6-4build1_s390x.deb ... 156s Unpacking libdc1394-25:s390x (2.2.6-4build1) ... 156s Selecting previously unselected package libde265-0:s390x. 156s Preparing to unpack .../126-libde265-0_1.0.15-1build4_s390x.deb ... 156s Unpacking libde265-0:s390x (1.0.15-1build4) ... 156s Selecting previously unselected package libdouble-conversion3:s390x. 156s Preparing to unpack .../127-libdouble-conversion3_3.3.0-1build1_s390x.deb ... 156s Unpacking libdouble-conversion3:s390x (3.3.0-1build1) ... 156s Selecting previously unselected package libdrm-radeon1:s390x. 156s Preparing to unpack .../128-libdrm-radeon1_2.4.123-1_s390x.deb ... 156s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 156s Selecting previously unselected package libwayland-server0:s390x. 156s Preparing to unpack .../129-libwayland-server0_1.23.1-1_s390x.deb ... 156s Unpacking libwayland-server0:s390x (1.23.1-1) ... 156s Selecting previously unselected package libglapi-mesa:s390x. 156s Preparing to unpack .../130-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 156s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 156s Selecting previously unselected package libxcb-present0:s390x. 156s Preparing to unpack .../131-libxcb-present0_1.17.0-2_s390x.deb ... 156s Unpacking libxcb-present0:s390x (1.17.0-2) ... 156s Selecting previously unselected package libxcb-randr0:s390x. 156s Preparing to unpack .../132-libxcb-randr0_1.17.0-2_s390x.deb ... 156s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 156s Selecting previously unselected package libxcb-sync1:s390x. 156s Preparing to unpack .../133-libxcb-sync1_1.17.0-2_s390x.deb ... 156s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 156s Selecting previously unselected package libxcb-xfixes0:s390x. 156s Preparing to unpack .../134-libxcb-xfixes0_1.17.0-2_s390x.deb ... 156s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 156s Selecting previously unselected package libxshmfence1:s390x. 156s Preparing to unpack .../135-libxshmfence1_1.3-1build5_s390x.deb ... 156s Unpacking libxshmfence1:s390x (1.3-1build5) ... 156s Selecting previously unselected package mesa-libgallium:s390x. 156s Preparing to unpack .../136-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 156s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 156s Selecting previously unselected package libgbm1:s390x. 156s Preparing to unpack .../137-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 156s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 156s Selecting previously unselected package libwayland-client0:s390x. 156s Preparing to unpack .../138-libwayland-client0_1.23.1-1_s390x.deb ... 156s Unpacking libwayland-client0:s390x (1.23.1-1) ... 156s Selecting previously unselected package libegl-mesa0:s390x. 156s Preparing to unpack .../139-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 156s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 156s Selecting previously unselected package libexif12:s390x. 156s Preparing to unpack .../140-libexif12_0.6.25-1_s390x.deb ... 156s Unpacking libexif12:s390x (0.6.25-1) ... 156s Selecting previously unselected package libfyba0t64:s390x. 156s Preparing to unpack .../141-libfyba0t64_4.1.1-11build1_s390x.deb ... 156s Unpacking libfyba0t64:s390x (4.1.1-11build1) ... 156s Selecting previously unselected package libheif-plugin-aomdec:s390x. 156s Preparing to unpack .../142-libheif-plugin-aomdec_1.19.5-1build1_s390x.deb ... 156s Unpacking libheif-plugin-aomdec:s390x (1.19.5-1build1) ... 156s Selecting previously unselected package libheif-plugin-libde265:s390x. 156s Preparing to unpack .../143-libheif-plugin-libde265_1.19.5-1build1_s390x.deb ... 156s Unpacking libheif-plugin-libde265:s390x (1.19.5-1build1) ... 156s Selecting previously unselected package libheif1:s390x. 156s Preparing to unpack .../144-libheif1_1.19.5-1build1_s390x.deb ... 156s Unpacking libheif1:s390x (1.19.5-1build1) ... 156s Selecting previously unselected package libimagequant0:s390x. 156s Preparing to unpack .../145-libimagequant0_2.18.0-1build1_s390x.deb ... 156s Unpacking libimagequant0:s390x (2.18.0-1build1) ... 156s Selecting previously unselected package libraqm0:s390x. 156s Preparing to unpack .../146-libraqm0_0.10.2-1_s390x.deb ... 156s Unpacking libraqm0:s390x (0.10.2-1) ... 156s Selecting previously unselected package libxpm4:s390x. 156s Preparing to unpack .../147-libxpm4_1%3a3.5.17-1build2_s390x.deb ... 156s Unpacking libxpm4:s390x (1:3.5.17-1build2) ... 156s Selecting previously unselected package libgd3:s390x. 156s Preparing to unpack .../148-libgd3_2.3.3-12ubuntu3_s390x.deb ... 156s Unpacking libgd3:s390x (2.3.3-12ubuntu3) ... 156s Selecting previously unselected package libminizip1t64:s390x. 156s Preparing to unpack .../149-libminizip1t64_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 156s Unpacking libminizip1t64:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 156s Selecting previously unselected package libfreexl1:s390x. 156s Preparing to unpack .../150-libfreexl1_2.0.0-1build2_s390x.deb ... 156s Unpacking libfreexl1:s390x (2.0.0-1build2) ... 156s Selecting previously unselected package libgeos3.13.0:s390x. 156s Preparing to unpack .../151-libgeos3.13.0_3.13.0-1_s390x.deb ... 156s Unpacking libgeos3.13.0:s390x (3.13.0-1) ... 156s Selecting previously unselected package libgeos-c1t64:s390x. 156s Preparing to unpack .../152-libgeos-c1t64_3.13.0-1_s390x.deb ... 156s Unpacking libgeos-c1t64:s390x (3.13.0-1) ... 156s Selecting previously unselected package proj-data. 156s Preparing to unpack .../153-proj-data_9.5.1-1_all.deb ... 156s Unpacking proj-data (9.5.1-1) ... 156s Selecting previously unselected package libproj25:s390x. 156s Preparing to unpack .../154-libproj25_9.5.1-1_s390x.deb ... 156s Unpacking libproj25:s390x (9.5.1-1) ... 156s Selecting previously unselected package libgeotiff5:s390x. 156s Preparing to unpack .../155-libgeotiff5_1.7.3-1_s390x.deb ... 156s Unpacking libgeotiff5:s390x (1.7.3-1) ... 156s Selecting previously unselected package libgif7:s390x. 156s Preparing to unpack .../156-libgif7_5.2.2-1ubuntu1_s390x.deb ... 156s Unpacking libgif7:s390x (5.2.2-1ubuntu1) ... 156s Selecting previously unselected package libsz2:s390x. 156s Preparing to unpack .../157-libsz2_1.1.3-1_s390x.deb ... 156s Unpacking libsz2:s390x (1.1.3-1) ... 156s Selecting previously unselected package libhdf4-0-alt:s390x. 156s Preparing to unpack .../158-libhdf4-0-alt_4.3.0-1_s390x.deb ... 156s Unpacking libhdf4-0-alt:s390x (4.3.0-1) ... 157s Selecting previously unselected package libhdf5-310:s390x. 157s Preparing to unpack .../159-libhdf5-310_1.14.5+repack-3_s390x.deb ... 157s Unpacking libhdf5-310:s390x (1.14.5+repack-3) ... 157s Selecting previously unselected package liburiparser1:s390x. 157s Preparing to unpack .../160-liburiparser1_0.9.8+dfsg-2_s390x.deb ... 157s Unpacking liburiparser1:s390x (0.9.8+dfsg-2) ... 157s Selecting previously unselected package libkmlbase1t64:s390x. 157s Preparing to unpack .../161-libkmlbase1t64_1.3.0-12build1_s390x.deb ... 157s Unpacking libkmlbase1t64:s390x (1.3.0-12build1) ... 157s Selecting previously unselected package libkmldom1t64:s390x. 157s Preparing to unpack .../162-libkmldom1t64_1.3.0-12build1_s390x.deb ... 157s Unpacking libkmldom1t64:s390x (1.3.0-12build1) ... 157s Selecting previously unselected package libkmlengine1t64:s390x. 157s Preparing to unpack .../163-libkmlengine1t64_1.3.0-12build1_s390x.deb ... 157s Unpacking libkmlengine1t64:s390x (1.3.0-12build1) ... 157s Selecting previously unselected package mysql-common. 157s Preparing to unpack .../164-mysql-common_5.8+1.1.1_all.deb ... 157s Unpacking mysql-common (5.8+1.1.1) ... 157s Selecting previously unselected package libmysqlclient24:s390x. 157s Preparing to unpack .../165-libmysqlclient24_8.4.4-0ubuntu1_s390x.deb ... 157s Unpacking libmysqlclient24:s390x (8.4.4-0ubuntu1) ... 157s Selecting previously unselected package libhdf5-hl-310:s390x. 157s Preparing to unpack .../166-libhdf5-hl-310_1.14.5+repack-3_s390x.deb ... 157s Unpacking libhdf5-hl-310:s390x (1.14.5+repack-3) ... 157s Selecting previously unselected package libnetcdf19t64:s390x. 157s Preparing to unpack .../167-libnetcdf19t64_1%3a4.9.2-6ubuntu2_s390x.deb ... 157s Unpacking libnetcdf19t64:s390x (1:4.9.2-6ubuntu2) ... 157s Selecting previously unselected package libltdl7:s390x. 157s Preparing to unpack .../168-libltdl7_2.5.4-3build1_s390x.deb ... 157s Unpacking libltdl7:s390x (2.5.4-3build1) ... 157s Selecting previously unselected package libodbc2:s390x. 157s Preparing to unpack .../169-libodbc2_2.3.12-2ubuntu1_s390x.deb ... 157s Unpacking libodbc2:s390x (2.3.12-2ubuntu1) ... 157s Selecting previously unselected package unixodbc-common. 157s Preparing to unpack .../170-unixodbc-common_2.3.12-2ubuntu1_all.deb ... 157s Unpacking unixodbc-common (2.3.12-2ubuntu1) ... 157s Selecting previously unselected package libodbcinst2:s390x. 157s Preparing to unpack .../171-libodbcinst2_2.3.12-2ubuntu1_s390x.deb ... 157s Unpacking libodbcinst2:s390x (2.3.12-2ubuntu1) ... 157s Selecting previously unselected package libogdi4.1:s390x. 157s Preparing to unpack .../172-libogdi4.1_4.1.1+ds-5_s390x.deb ... 157s Unpacking libogdi4.1:s390x (4.1.1+ds-5) ... 157s Selecting previously unselected package libgpgmepp6t64:s390x. 157s Preparing to unpack .../173-libgpgmepp6t64_1.24.1-4ubuntu1_s390x.deb ... 157s Unpacking libgpgmepp6t64:s390x (1.24.1-4ubuntu1) ... 157s Selecting previously unselected package libpoppler145:s390x. 157s Preparing to unpack .../174-libpoppler145_25.01.0-4_s390x.deb ... 157s Unpacking libpoppler145:s390x (25.01.0-4) ... 157s Selecting previously unselected package libpq5:s390x. 157s Preparing to unpack .../175-libpq5_17.3-2_s390x.deb ... 157s Unpacking libpq5:s390x (17.3-2) ... 157s Selecting previously unselected package libqhull-r8.0:s390x. 157s Preparing to unpack .../176-libqhull-r8.0_2020.2-6build1_s390x.deb ... 157s Unpacking libqhull-r8.0:s390x (2020.2-6build1) ... 157s Selecting previously unselected package librttopo1:s390x. 157s Preparing to unpack .../177-librttopo1_1.1.0-3build2_s390x.deb ... 157s Unpacking librttopo1:s390x (1.1.0-3build2) ... 157s Selecting previously unselected package libspatialite8t64:s390x. 157s Preparing to unpack .../178-libspatialite8t64_5.1.0-3build1_s390x.deb ... 157s Unpacking libspatialite8t64:s390x (5.1.0-3build1) ... 157s Selecting previously unselected package libxerces-c3.2t64:s390x. 157s Preparing to unpack .../179-libxerces-c3.2t64_3.2.4+debian-1.3build1_s390x.deb ... 157s Unpacking libxerces-c3.2t64:s390x (3.2.4+debian-1.3build1) ... 157s Selecting previously unselected package libgdal36:s390x. 157s Preparing to unpack .../180-libgdal36_3.10.1+dfsg-1build2_s390x.deb ... 157s Unpacking libgdal36:s390x (3.10.1+dfsg-1build2) ... 157s Selecting previously unselected package libsocket++1:s390x. 157s Preparing to unpack .../181-libsocket++1_1.12.13+git20131030.5d039ba-1build1_s390x.deb ... 157s Unpacking libsocket++1:s390x (1.12.13+git20131030.5d039ba-1build1) ... 157s Selecting previously unselected package libgdcm3.0t64:s390x. 157s Preparing to unpack .../182-libgdcm3.0t64_3.0.24-5ubuntu1_s390x.deb ... 157s Unpacking libgdcm3.0t64:s390x (3.0.24-5ubuntu1) ... 157s Selecting previously unselected package libvulkan1:s390x. 157s Preparing to unpack .../183-libvulkan1_1.4.304.0-1_s390x.deb ... 157s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 157s Selecting previously unselected package libgl1-mesa-dri:s390x. 157s Preparing to unpack .../184-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 157s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 157s Selecting previously unselected package libxcb-glx0:s390x. 157s Preparing to unpack .../185-libxcb-glx0_1.17.0-2_s390x.deb ... 157s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 157s Selecting previously unselected package libxxf86vm1:s390x. 157s Preparing to unpack .../186-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 157s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 157s Selecting previously unselected package libglx-mesa0:s390x. 157s Preparing to unpack .../187-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 157s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 157s Selecting previously unselected package libgphoto2-port12t64:s390x. 157s Preparing to unpack .../188-libgphoto2-port12t64_2.5.31-4_s390x.deb ... 157s Unpacking libgphoto2-port12t64:s390x (2.5.31-4) ... 157s Selecting previously unselected package libgphoto2-6t64:s390x. 157s Preparing to unpack .../189-libgphoto2-6t64_2.5.31-4_s390x.deb ... 157s Unpacking libgphoto2-6t64:s390x (2.5.31-4) ... 157s Selecting previously unselected package libgstreamer1.0-0:s390x. 157s Preparing to unpack .../190-libgstreamer1.0-0_1.25.50-1_s390x.deb ... 157s Unpacking libgstreamer1.0-0:s390x (1.25.50-1) ... 157s Selecting previously unselected package liborc-0.4-0t64:s390x. 157s Preparing to unpack .../191-liborc-0.4-0t64_1%3a0.4.40-1_s390x.deb ... 157s Unpacking liborc-0.4-0t64:s390x (1:0.4.40-1) ... 157s Selecting previously unselected package libgstreamer-plugins-base1.0-0:s390x. 157s Preparing to unpack .../192-libgstreamer-plugins-base1.0-0_1.25.50-1_s390x.deb ... 157s Unpacking libgstreamer-plugins-base1.0-0:s390x (1.25.50-1) ... 157s Selecting previously unselected package libhwloc15:s390x. 157s Preparing to unpack .../193-libhwloc15_2.11.2-1build1_s390x.deb ... 157s Unpacking libhwloc15:s390x (2.11.2-1build1) ... 157s Selecting previously unselected package x11-common. 157s Preparing to unpack .../194-x11-common_1%3a7.7+23ubuntu3_all.deb ... 157s Unpacking x11-common (1:7.7+23ubuntu3) ... 157s Selecting previously unselected package libice6:s390x. 157s Preparing to unpack .../195-libice6_2%3a1.1.1-1_s390x.deb ... 157s Unpacking libice6:s390x (2:1.1.1-1) ... 157s Selecting previously unselected package libimath-3-1-29t64:s390x. 157s Preparing to unpack .../196-libimath-3-1-29t64_3.1.12-1ubuntu1_s390x.deb ... 157s Unpacking libimath-3-1-29t64:s390x (3.1.12-1ubuntu1) ... 157s Selecting previously unselected package libwacom-common. 157s Preparing to unpack .../197-libwacom-common_2.14.0-1_all.deb ... 157s Unpacking libwacom-common (2.14.0-1) ... 158s Selecting previously unselected package libwacom9:s390x. 158s Preparing to unpack .../198-libwacom9_2.14.0-1_s390x.deb ... 158s Unpacking libwacom9:s390x (2.14.0-1) ... 158s Selecting previously unselected package libinput-bin. 158s Preparing to unpack .../199-libinput-bin_1.27.1-1_s390x.deb ... 158s Unpacking libinput-bin (1.27.1-1) ... 158s Selecting previously unselected package libmtdev1t64:s390x. 158s Preparing to unpack .../200-libmtdev1t64_1.1.7-1_s390x.deb ... 158s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 158s Selecting previously unselected package libinput10:s390x. 158s Preparing to unpack .../201-libinput10_1.27.1-1_s390x.deb ... 158s Unpacking libinput10:s390x (1.27.1-1) ... 158s Selecting previously unselected package libjs-async. 158s Preparing to unpack .../202-libjs-async_0.8.0-6_all.deb ... 158s Unpacking libjs-async (0.8.0-6) ... 158s Selecting previously unselected package libjs-is-typedarray. 158s Preparing to unpack .../203-libjs-is-typedarray_1.0.0-4_all.deb ... 158s Unpacking libjs-is-typedarray (1.0.0-4) ... 158s Selecting previously unselected package libjs-prettify. 158s Preparing to unpack .../204-libjs-prettify_2015.12.04+dfsg-1.1_all.deb ... 158s Unpacking libjs-prettify (2015.12.04+dfsg-1.1) ... 158s Selecting previously unselected package libjs-regenerate. 158s Preparing to unpack .../205-libjs-regenerate_1.4.2-3_all.deb ... 158s Unpacking libjs-regenerate (1.4.2-3) ... 158s Selecting previously unselected package libjs-sprintf-js. 158s Preparing to unpack .../206-libjs-sprintf-js_1.1.2+ds1+~1.1.2-1_all.deb ... 158s Unpacking libjs-sprintf-js (1.1.2+ds1+~1.1.2-1) ... 158s Selecting previously unselected package libjs-typedarray-to-buffer. 158s Preparing to unpack .../207-libjs-typedarray-to-buffer_4.0.0-2_all.deb ... 158s Unpacking libjs-typedarray-to-buffer (4.0.0-2) ... 158s Selecting previously unselected package node-lodash-packages. 158s Preparing to unpack .../208-node-lodash-packages_4.17.21+dfsg+~cs8.31.198.20210220-9_all.deb ... 158s Unpacking node-lodash-packages (4.17.21+dfsg+~cs8.31.198.20210220-9) ... 158s Selecting previously unselected package node-function-bind. 158s Preparing to unpack .../209-node-function-bind_1.1.2+~cs2.1.14-1_all.deb ... 158s Unpacking node-function-bind (1.1.2+~cs2.1.14-1) ... 158s Selecting previously unselected package node-object-inspect. 158s Preparing to unpack .../210-node-object-inspect_1.12.2+~cs1.8.1-1_all.deb ... 158s Unpacking node-object-inspect (1.12.2+~cs1.8.1-1) ... 158s Selecting previously unselected package node-es-abstract. 158s Preparing to unpack .../211-node-es-abstract_1.20.4+~cs26.27.47-2_all.deb ... 158s Unpacking node-es-abstract (1.20.4+~cs26.27.47-2) ... 158s Selecting previously unselected package node-resolve. 158s Preparing to unpack .../212-node-resolve_1.22.8+~cs5.34.15-2_all.deb ... 158s Unpacking node-resolve (1.22.8+~cs5.34.15-2) ... 158s Selecting previously unselected package node-define-properties. 158s Preparing to unpack .../213-node-define-properties_1.2.1+~cs2.2.3-1_all.deb ... 158s Unpacking node-define-properties (1.2.1+~cs2.2.3-1) ... 158s Selecting previously unselected package node-debbundle-es-to-primitive. 158s Preparing to unpack .../214-node-debbundle-es-to-primitive_1.2.1+~cs9.7.25-2_all.deb ... 158s Unpacking node-debbundle-es-to-primitive (1.2.1+~cs9.7.25-2) ... 158s Selecting previously unselected package node-isobject. 158s Preparing to unpack .../215-node-isobject_4.0.0-2_all.deb ... 158s Unpacking node-isobject (4.0.0-2) ... 158s Selecting previously unselected package node-is-descriptor. 158s Preparing to unpack .../216-node-is-descriptor_3.0.0-2_all.deb ... 158s Unpacking node-is-descriptor (3.0.0-2) ... 158s Selecting previously unselected package node-define-property. 158s Preparing to unpack .../217-node-define-property_2.0.2+really+2.0.2-3_all.deb ... 158s Unpacking node-define-property (2.0.2+really+2.0.2-3) ... 158s Selecting previously unselected package node-defined. 158s Preparing to unpack .../218-node-defined_1.0.1+~1.0.0-1_all.deb ... 158s Unpacking node-defined (1.0.1+~1.0.0-1) ... 158s Selecting previously unselected package node-fs.realpath. 158s Preparing to unpack .../219-node-fs.realpath_1.0.0-3_all.deb ... 158s Unpacking node-fs.realpath (1.0.0-3) ... 158s Selecting previously unselected package node-wrappy. 158s Preparing to unpack .../220-node-wrappy_1.0.2-3_all.deb ... 158s Unpacking node-wrappy (1.0.2-3) ... 158s Selecting previously unselected package node-once. 158s Preparing to unpack .../221-node-once_1.4.1-1_all.deb ... 158s Unpacking node-once (1.4.1-1) ... 158s Selecting previously unselected package node-inflight. 158s Preparing to unpack .../222-node-inflight_1.0.6-2_all.deb ... 158s Unpacking node-inflight (1.0.6-2) ... 158s Selecting previously unselected package libjs-inherits. 158s Preparing to unpack .../223-libjs-inherits_2.0.4-6_all.deb ... 158s Unpacking libjs-inherits (2.0.4-6) ... 158s Selecting previously unselected package node-inherits. 158s Preparing to unpack .../224-node-inherits_2.0.4-6_all.deb ... 158s Unpacking node-inherits (2.0.4-6) ... 158s Selecting previously unselected package node-glob. 158s Preparing to unpack .../225-node-glob_8.1.0+~cs8.5.15-1_all.deb ... 158s Unpacking node-glob (8.1.0+~cs8.5.15-1) ... 158s Selecting previously unselected package node-abbrev. 158s Preparing to unpack .../226-node-abbrev_1.1.1+~1.1.2-1_all.deb ... 158s Unpacking node-abbrev (1.1.1+~1.1.2-1) ... 158s Selecting previously unselected package node-archy. 158s Preparing to unpack .../227-node-archy_1.0.0-6_all.deb ... 158s Unpacking node-archy (1.0.0-6) ... 158s Selecting previously unselected package node-async. 158s Preparing to unpack .../228-node-async_0.8.0-6_all.deb ... 158s Unpacking node-async (0.8.0-6) ... 158s Selecting previously unselected package node-convert-source-map. 158s Preparing to unpack .../229-node-convert-source-map_1.9.0+~1.5.2-1_all.deb ... 158s Unpacking node-convert-source-map (1.9.0+~1.5.2-1) ... 158s Selecting previously unselected package node-decamelize. 158s Preparing to unpack .../230-node-decamelize_4.0.0-2_all.deb ... 158s Unpacking node-decamelize (4.0.0-2) ... 158s Selecting previously unselected package node-es6-error. 158s Preparing to unpack .../231-node-es6-error_4.1.1-5_all.deb ... 158s Unpacking node-es6-error (4.1.1-5) ... 158s Selecting previously unselected package node-esprima. 158s Preparing to unpack .../232-node-esprima_4.0.1+ds+~4.0.3-2_all.deb ... 158s Unpacking node-esprima (4.0.1+ds+~4.0.3-2) ... 158s Selecting previously unselected package node-estraverse. 158s Preparing to unpack .../233-node-estraverse_5.3.0+ds+~5.1.1-1_all.deb ... 158s Unpacking node-estraverse (5.3.0+ds+~5.1.1-1) ... 158s Selecting previously unselected package node-esutils. 158s Preparing to unpack .../234-node-esutils_2.0.3+~2.0.0-1_all.deb ... 158s Unpacking node-esutils (2.0.3+~2.0.0-1) ... 158s Selecting previously unselected package node-deep-is. 158s Preparing to unpack .../235-node-deep-is_0.1.4-1_all.deb ... 158s Unpacking node-deep-is (0.1.4-1) ... 158s Selecting previously unselected package node-fast-levenshtein. 158s Preparing to unpack .../236-node-fast-levenshtein_2.0.6+ds-3_all.deb ... 158s Unpacking node-fast-levenshtein (2.0.6+ds-3) ... 158s Selecting previously unselected package node-prelude-ls. 158s Preparing to unpack .../237-node-prelude-ls_1.2.1+dfsg-3_all.deb ... 158s Unpacking node-prelude-ls (1.2.1+dfsg-3) ... 158s Selecting previously unselected package node-type-check. 158s Preparing to unpack .../238-node-type-check_0.4.0+dfsg-3_all.deb ... 158s Unpacking node-type-check (0.4.0+dfsg-3) ... 158s Selecting previously unselected package node-levn. 158s Preparing to unpack .../239-node-levn_0.4.1+dfsg-2_all.deb ... 158s Unpacking node-levn (0.4.1+dfsg-2) ... 158s Selecting previously unselected package node-optionator. 158s Preparing to unpack .../240-node-optionator_0.9.1+dfsg+~cs1.2.3-1_all.deb ... 158s Unpacking node-optionator (0.9.1+dfsg+~cs1.2.3-1) ... 158s Selecting previously unselected package node-escodegen. 158s Preparing to unpack .../241-node-escodegen_2.1.0+dfsg+~0.0.8-1_all.deb ... 158s Unpacking node-escodegen (2.1.0+dfsg+~0.0.8-1) ... 158s Selecting previously unselected package node-commondir. 158s Preparing to unpack .../242-node-commondir_1.0.1+~1.0.0-1_all.deb ... 158s Unpacking node-commondir (1.0.1+~1.0.0-1) ... 158s Selecting previously unselected package node-is-extglob. 158s Preparing to unpack .../243-node-is-extglob_2.1.1-5_all.deb ... 158s Unpacking node-is-extglob (2.1.1-5) ... 158s Selecting previously unselected package node-is-glob. 158s Preparing to unpack .../244-node-is-glob_4.0.3-2_all.deb ... 158s Unpacking node-is-glob (4.0.3-2) ... 158s Selecting previously unselected package node-path-dirname. 158s Preparing to unpack .../245-node-path-dirname_1.0.2-2_all.deb ... 158s Unpacking node-path-dirname (1.0.2-2) ... 158s Selecting previously unselected package node-glob-parent. 158s Preparing to unpack .../246-node-glob-parent_6.0.2+~5.1.1-2_all.deb ... 158s Unpacking node-glob-parent (6.0.2+~5.1.1-2) ... 158s Selecting previously unselected package node-ignore. 158s Preparing to unpack .../247-node-ignore_5.2.1-1_all.deb ... 158s Unpacking node-ignore (5.2.1-1) ... 158s Selecting previously unselected package node-is-number. 158s Preparing to unpack .../248-node-is-number_7.0.0-4_all.deb ... 158s Unpacking node-is-number (7.0.0-4) ... 159s Selecting previously unselected package node-repeat-string. 159s Preparing to unpack .../249-node-repeat-string_1.6.1+repack-1_all.deb ... 159s Unpacking node-repeat-string (1.6.1+repack-1) ... 159s Selecting previously unselected package node-to-regex-range. 159s Preparing to unpack .../250-node-to-regex-range_5.0.1-4_all.deb ... 159s Unpacking node-to-regex-range (5.0.1-4) ... 159s Selecting previously unselected package node-fill-range. 159s Preparing to unpack .../251-node-fill-range_7.1.1+~7.0.3-1_all.deb ... 159s Unpacking node-fill-range (7.1.1+~7.0.3-1) ... 159s Selecting previously unselected package node-braces. 159s Preparing to unpack .../252-node-braces_3.0.3+~3.0.4-1_all.deb ... 159s Unpacking node-braces (3.0.3+~3.0.4-1) ... 159s Selecting previously unselected package node-normalize-path. 159s Preparing to unpack .../253-node-normalize-path_3.0.0+~3.0.0-1_all.deb ... 159s Unpacking node-normalize-path (3.0.0+~3.0.0-1) ... 159s Selecting previously unselected package node-anymatch. 159s Preparing to unpack .../254-node-anymatch_3.1.3+~cs4.6.1-2_all.deb ... 159s Unpacking node-anymatch (3.1.3+~cs4.6.1-2) ... 159s Selecting previously unselected package node-micromatch. 159s Preparing to unpack .../255-node-micromatch_4.0.7+~4.0.9-1_all.deb ... 159s Unpacking node-micromatch (4.0.7+~4.0.9-1) ... 159s Selecting previously unselected package node-pify. 159s Preparing to unpack .../256-node-pify_5.0.0+~cs5.0.1-1_all.deb ... 159s Unpacking node-pify (5.0.0+~cs5.0.1-1) ... 159s Selecting previously unselected package node-path-type. 159s Preparing to unpack .../257-node-path-type_4.0.0-3_all.deb ... 159s Unpacking node-path-type (4.0.0-3) ... 159s Selecting previously unselected package node-core-util-is. 159s Preparing to unpack .../258-node-core-util-is_1.0.3-1_all.deb ... 159s Unpacking node-core-util-is (1.0.3-1) ... 159s Selecting previously unselected package node-safe-buffer. 159s Preparing to unpack .../259-node-safe-buffer_5.2.1+~cs2.1.2-3_all.deb ... 159s Unpacking node-safe-buffer (5.2.1+~cs2.1.2-3) ... 159s Selecting previously unselected package node-string-decoder. 159s Preparing to unpack .../260-node-string-decoder_1.3.0-6_all.deb ... 159s Unpacking node-string-decoder (1.3.0-6) ... 159s Selecting previously unselected package node-process-nextick-args. 159s Preparing to unpack .../261-node-process-nextick-args_2.0.1-3_all.deb ... 159s Unpacking node-process-nextick-args (2.0.1-3) ... 159s Selecting previously unselected package node-util-deprecate. 159s Preparing to unpack .../262-node-util-deprecate_1.0.2-3_all.deb ... 159s Unpacking node-util-deprecate (1.0.2-3) ... 159s Selecting previously unselected package node-isarray. 159s Preparing to unpack .../263-node-isarray_2.0.5-4_all.deb ... 159s Unpacking node-isarray (2.0.5-4) ... 159s Selecting previously unselected package node-readable-stream. 159s Preparing to unpack .../264-node-readable-stream_3.6.0+~cs3.0.0-4build1_all.deb ... 159s Unpacking node-readable-stream (3.6.0+~cs3.0.0-4build1) ... 159s Selecting previously unselected package node-n3. 159s Preparing to unpack .../265-node-n3_1.16.3+~1.2.3+~1.10.4-1_all.deb ... 159s Unpacking node-n3 (1.16.3+~1.2.3+~1.10.4-1) ... 159s Selecting previously unselected package node-slash. 159s Preparing to unpack .../266-node-slash_4.0.0-3_all.deb ... 159s Unpacking node-slash (4.0.0-3) ... 159s Selecting previously unselected package node-globby. 159s Preparing to unpack .../267-node-globby_13.1.3+~cs16.25.40-3_all.deb ... 159s Unpacking node-globby (13.1.3+~cs16.25.40-3) ... 159s Selecting previously unselected package node-graceful-fs. 159s Preparing to unpack .../268-node-graceful-fs_4.2.10-1_all.deb ... 159s Unpacking node-graceful-fs (4.2.10-1) ... 159s Selecting previously unselected package node-is-path-cwd. 159s Preparing to unpack .../269-node-is-path-cwd_2.2.0-2_all.deb ... 159s Unpacking node-is-path-cwd (2.2.0-2) ... 159s Selecting previously unselected package node-path-is-inside. 159s Preparing to unpack .../270-node-path-is-inside_1.0.2+~1.0.0-1_all.deb ... 159s Unpacking node-path-is-inside (1.0.2+~1.0.0-1) ... 159s Selecting previously unselected package node-is-path-inside. 159s Preparing to unpack .../271-node-is-path-inside_3.0.3-2_all.deb ... 159s Unpacking node-is-path-inside (3.0.3-2) ... 159s Selecting previously unselected package node-escape-string-regexp. 159s Preparing to unpack .../272-node-escape-string-regexp_4.0.0-2_all.deb ... 159s Unpacking node-escape-string-regexp (4.0.0-2) ... 159s Selecting previously unselected package node-indent-string. 159s Preparing to unpack .../273-node-indent-string_4.0.0-2_all.deb ... 159s Unpacking node-indent-string (4.0.0-2) ... 159s Selecting previously unselected package node-p-map. 159s Preparing to unpack .../274-node-p-map_4.0.0+~3.1.0+~3.0.1-2_all.deb ... 159s Unpacking node-p-map (4.0.0+~3.1.0+~3.0.1-2) ... 159s Selecting previously unselected package node-rimraf. 159s Preparing to unpack .../275-node-rimraf_3.0.2-2_all.deb ... 159s Unpacking node-rimraf (3.0.2-2) ... 159s Selecting previously unselected package node-del. 159s Preparing to unpack .../276-node-del_7.1.0-1_all.deb ... 159s Unpacking node-del (7.1.0-1) ... 159s Selecting previously unselected package node-lru-cache. 159s Preparing to unpack .../277-node-lru-cache_10.0.1-3_all.deb ... 159s Unpacking node-lru-cache (10.0.1-3) ... 159s Selecting previously unselected package node-semver. 159s Preparing to unpack .../278-node-semver_7.6.1+~7.5.8-2_all.deb ... 159s Unpacking node-semver (7.6.1+~7.5.8-2) ... 159s Selecting previously unselected package node-make-dir. 159s Preparing to unpack .../279-node-make-dir_3.1.0-3_all.deb ... 159s Unpacking node-make-dir (3.1.0-3) ... 159s Selecting previously unselected package node-p-limit. 159s Preparing to unpack .../280-node-p-limit_4.0.0+~cs4.0.0-5_all.deb ... 159s Unpacking node-p-limit (4.0.0+~cs4.0.0-5) ... 159s Selecting previously unselected package node-p-locate. 159s Preparing to unpack .../281-node-p-locate_6.0.0-12_all.deb ... 159s Unpacking node-p-locate (6.0.0-12) ... 159s Selecting previously unselected package node-locate-path. 159s Preparing to unpack .../282-node-locate-path_7.1.1-2_all.deb ... 159s Unpacking node-locate-path (7.1.1-2) ... 159s Selecting previously unselected package node-path-exists. 159s Preparing to unpack .../283-node-path-exists_5.0.0-8_all.deb ... 159s Unpacking node-path-exists (5.0.0-8) ... 159s Selecting previously unselected package node-find-up. 159s Preparing to unpack .../284-node-find-up_6.3.0-7_all.deb ... 159s Unpacking node-find-up (6.3.0-7) ... 159s Selecting previously unselected package node-pkg-dir. 159s Preparing to unpack .../285-node-pkg-dir_5.0.0-2_all.deb ... 159s Unpacking node-pkg-dir (5.0.0-2) ... 159s Selecting previously unselected package node-find-cache-dir. 159s Preparing to unpack .../286-node-find-cache-dir_3.3.2+~3.2.1-1_all.deb ... 159s Unpacking node-find-cache-dir (3.3.2+~3.2.1-1) ... 159s Selecting previously unselected package node-signal-exit. 159s Preparing to unpack .../287-node-signal-exit_4.1.0-7_all.deb ... 159s Unpacking node-signal-exit (4.1.0-7) ... 159s Selecting previously unselected package node-foreground-child. 159s Preparing to unpack .../288-node-foreground-child_3.1.1-2_all.deb ... 159s Unpacking node-foreground-child (3.1.1-2) ... 159s Selecting previously unselected package node-is-stream. 159s Preparing to unpack .../289-node-is-stream_3.0.0-4_all.deb ... 159s Unpacking node-is-stream (3.0.0-4) ... 159s Selecting previously unselected package node-is-windows. 159s Preparing to unpack .../290-node-is-windows_1.0.2+~cs1.0.0-1_all.deb ... 159s Unpacking node-is-windows (1.0.2+~cs1.0.0-1) ... 159s Selecting previously unselected package node-ampproject-remapping. 159s Preparing to unpack .../291-node-ampproject-remapping_2.2.0+~cs5.15.37-1_all.deb ... 159s Unpacking node-ampproject-remapping (2.2.0+~cs5.15.37-1) ... 159s Selecting previously unselected package node-sprintf-js. 159s Preparing to unpack .../292-node-sprintf-js_1.1.2+ds1+~1.1.2-1_all.deb ... 159s Unpacking node-sprintf-js (1.1.2+ds1+~1.1.2-1) ... 159s Selecting previously unselected package node-argparse. 159s Preparing to unpack .../293-node-argparse_2.0.1-2_all.deb ... 159s Unpacking node-argparse (2.0.1-2) ... 159s Selecting previously unselected package node-js-yaml. 159s Preparing to unpack .../294-node-js-yaml_4.1.0+dfsg+~4.0.5-7_all.deb ... 159s Unpacking node-js-yaml (4.1.0+dfsg+~4.0.5-7) ... 159s Selecting previously unselected package node-mkdirp. 159s Preparing to unpack .../295-node-mkdirp_2.1.6+~cs5.2.1-2_all.deb ... 159s Unpacking node-mkdirp (2.1.6+~cs5.2.1-2) ... 159s Selecting previously unselected package node-nopt. 159s Preparing to unpack .../296-node-nopt_5.0.0-4_all.deb ... 159s Unpacking node-nopt (5.0.0-4) ... 159s Selecting previously unselected package node-npm-run-path. 159s Preparing to unpack .../297-node-npm-run-path_5.1.0+~4.0.0-8_all.deb ... 159s Unpacking node-npm-run-path (5.1.0+~4.0.0-8) ... 159s Selecting previously unselected package node-resolve-from. 159s Preparing to unpack .../298-node-resolve-from_5.0.0+~3.1.0+~3.3.0+~2.0.0-1_all.deb ... 159s Unpacking node-resolve-from (5.0.0+~3.1.0+~3.3.0+~2.0.0-1) ... 159s Selecting previously unselected package node-shebang-regex. 159s Preparing to unpack .../299-node-shebang-regex_3.0.0-2_all.deb ... 159s Unpacking node-shebang-regex (3.0.0-2) ... 159s Selecting previously unselected package node-shebang-command. 159s Preparing to unpack .../300-node-shebang-command_2.0.0-1_all.deb ... 159s Unpacking node-shebang-command (2.0.0-1) ... 159s Selecting previously unselected package node-strip-bom. 159s Preparing to unpack .../301-node-strip-bom_4.0.0-2_all.deb ... 159s Unpacking node-strip-bom (4.0.0-2) ... 159s Selecting previously unselected package node-has-flag. 159s Preparing to unpack .../302-node-has-flag_5.0.1-1_all.deb ... 159s Unpacking node-has-flag (5.0.1-1) ... 159s Selecting previously unselected package node-supports-color. 159s Preparing to unpack .../303-node-supports-color_8.1.1+~8.1.1-1_all.deb ... 159s Unpacking node-supports-color (8.1.1+~8.1.1-1) ... 159s Selecting previously unselected package node-object-assign. 159s Preparing to unpack .../304-node-object-assign_4.1.1-7_all.deb ... 159s Unpacking node-object-assign (4.1.1-7) ... 159s Selecting previously unselected package node-util. 159s Preparing to unpack .../305-node-util_0.12.5+~1.0.10-1_all.deb ... 159s Unpacking node-util (0.12.5+~1.0.10-1) ... 159s Selecting previously unselected package node-assert. 159s Preparing to unpack .../306-node-assert_2.0.0+~cs3.9.8-2_all.deb ... 159s Unpacking node-assert (2.0.0+~cs3.9.8-2) ... 159s Selecting previously unselected package node-babel-plugin-add-module-exports. 159s Preparing to unpack .../307-node-babel-plugin-add-module-exports_1.0.4+dfsg1~cs5.8.0-4_all.deb ... 159s Unpacking node-babel-plugin-add-module-exports (1.0.4+dfsg1~cs5.8.0-4) ... 159s Selecting previously unselected package node-regenerator-runtime. 159s Preparing to unpack .../308-node-regenerator-runtime_0.15.2+~0.10.8-1_all.deb ... 159s Unpacking node-regenerator-runtime (0.15.2+~0.10.8-1) ... 159s Selecting previously unselected package node-babel7-runtime. 159s Preparing to unpack .../309-node-babel7-runtime_7.20.15+ds1+~cs214.269.168-8_all.deb ... 159s Unpacking node-babel7-runtime (7.20.15+ds1+~cs214.269.168-8) ... 159s Selecting previously unselected package node-ms. 159s Preparing to unpack .../310-node-ms_2.1.3+~cs0.7.31-3_all.deb ... 159s Unpacking node-ms (2.1.3+~cs0.7.31-3) ... 159s Selecting previously unselected package node-debug. 159s Preparing to unpack .../311-node-debug_4.3.4+~cs4.1.7-1_all.deb ... 159s Unpacking node-debug (4.3.4+~cs4.1.7-1) ... 159s Selecting previously unselected package node-babel-helper-define-polyfill-provider. 159s Preparing to unpack .../312-node-babel-helper-define-polyfill-provider_0.3.3~0~20220913+ds1-1_all.deb ... 159s Unpacking node-babel-helper-define-polyfill-provider (0.3.3~0~20220913+ds1-1) ... 159s Selecting previously unselected package node-babel-plugin-polyfill-corejs2. 159s Preparing to unpack .../313-node-babel-plugin-polyfill-corejs2_0.3.3~0~20220913+ds1-1_all.deb ... 159s Unpacking node-babel-plugin-polyfill-corejs2 (0.3.3~0~20220913+ds1-1) ... 159s Selecting previously unselected package node-caniuse-lite. 159s Preparing to unpack .../314-node-caniuse-lite_1.0.30001692+dfsg+~1.0.5-1_all.deb ... 159s Unpacking node-caniuse-lite (1.0.30001692+dfsg+~1.0.5-1) ... 159s Selecting previously unselected package node-electron-to-chromium. 159s Preparing to unpack .../315-node-electron-to-chromium_1.5.80-1_all.deb ... 159s Unpacking node-electron-to-chromium (1.5.80-1) ... 159s Selecting previously unselected package node-picocolors. 159s Preparing to unpack .../316-node-picocolors_1.0.0-4_all.deb ... 159s Unpacking node-picocolors (1.0.0-4) ... 159s Selecting previously unselected package node-browserslist. 159s Preparing to unpack .../317-node-browserslist_4.24.4+~cs6.3.21-1_all.deb ... 159s Unpacking node-browserslist (4.24.4+~cs6.3.21-1) ... 159s Selecting previously unselected package node-core-js-compat. 159s Preparing to unpack .../318-node-core-js-compat_3.33.2-1build2_all.deb ... 159s Unpacking node-core-js-compat (3.33.2-1build2) ... 159s Selecting previously unselected package node-babel-plugin-polyfill-corejs3. 159s Preparing to unpack .../319-node-babel-plugin-polyfill-corejs3_0.6.0~0~20220913+ds1-1_all.deb ... 159s Unpacking node-babel-plugin-polyfill-corejs3 (0.6.0~0~20220913+ds1-1) ... 159s Selecting previously unselected package node-babel-plugin-polyfill-regenerator. 159s Preparing to unpack .../320-node-babel-plugin-polyfill-regenerator_0.4.1~0~20220913+ds1-1_all.deb ... 159s Unpacking node-babel-plugin-polyfill-regenerator (0.4.1~0~20220913+ds1-1) ... 159s Selecting previously unselected package node-color-name. 159s Preparing to unpack .../321-node-color-name_1.1.4+~1.1.1-2_all.deb ... 159s Unpacking node-color-name (1.1.4+~1.1.1-2) ... 160s Selecting previously unselected package node-color-convert. 160s Preparing to unpack .../322-node-color-convert_2.0.1+~cs2.0.0-2_all.deb ... 160s Unpacking node-color-convert (2.0.1+~cs2.0.0-2) ... 160s Selecting previously unselected package node-ansi-styles. 160s Preparing to unpack .../323-node-ansi-styles_6.2.1-3_all.deb ... 160s Unpacking node-ansi-styles (6.2.1-3) ... 160s Selecting previously unselected package node-chalk. 160s Preparing to unpack .../324-node-chalk_5.3.0-1build1_all.deb ... 160s Unpacking node-chalk (5.3.0-1build1) ... 160s Selecting previously unselected package node-for-in. 160s Preparing to unpack .../325-node-for-in_1.0.2-4_all.deb ... 160s Unpacking node-for-in (1.0.2-4) ... 160s Selecting previously unselected package node-for-own. 160s Preparing to unpack .../326-node-for-own_1.0.0-3_all.deb ... 160s Unpacking node-for-own (1.0.0-3) ... 160s Selecting previously unselected package node-is-plain-object. 160s Preparing to unpack .../327-node-is-plain-object_5.0.0-7_all.deb ... 160s Unpacking node-is-plain-object (5.0.0-7) ... 160s Selecting previously unselected package node-is-extendable. 160s Preparing to unpack .../328-node-is-extendable_1.0.1-3_all.deb ... 160s Unpacking node-is-extendable (1.0.1-3) ... 160s Selecting previously unselected package node-clone-deep. 160s Preparing to unpack .../329-node-clone-deep_4.0.1+~cs7.0.2-1_all.deb ... 160s Unpacking node-clone-deep (4.0.1+~cs7.0.2-1) ... 160s Selecting previously unselected package node-commander. 160s Preparing to unpack .../330-node-commander_9.4.1-1_all.deb ... 160s Unpacking node-commander (9.4.1-1) ... 160s Selecting previously unselected package node-core-js. 160s Preparing to unpack .../331-node-core-js_3.33.2-1build2_all.deb ... 160s Unpacking node-core-js (3.33.2-1build2) ... 160s Selecting previously unselected package node-core-js-pure. 160s Preparing to unpack .../332-node-core-js-pure_3.33.2-1build2_all.deb ... 160s Unpacking node-core-js-pure (3.33.2-1build2) ... 160s Selecting previously unselected package node-fs-readdir-recursive. 160s Preparing to unpack .../333-node-fs-readdir-recursive_1.1.0+~1.1.0-1_all.deb ... 160s Unpacking node-fs-readdir-recursive (1.1.0+~1.1.0-1) ... 160s Selecting previously unselected package node-globals. 160s Preparing to unpack .../334-node-globals_13.23.0-1_all.deb ... 160s Unpacking node-globals (13.23.0-1) ... 160s Selecting previously unselected package node-js-tokens. 160s Preparing to unpack .../335-node-js-tokens_8.0.0-2_all.deb ... 160s Unpacking node-js-tokens (8.0.0-2) ... 160s Selecting previously unselected package node-jsesc. 160s Preparing to unpack .../336-node-jsesc_3.0.2+~3.0.1-1_all.deb ... 160s Unpacking node-jsesc (3.0.2+~3.0.1-1) ... 160s Selecting previously unselected package node-json5. 160s Preparing to unpack .../337-node-json5_2.2.3+dfsg-1build1_all.deb ... 160s Unpacking node-json5 (2.2.3+dfsg-1build1) ... 160s Selecting previously unselected package node-lodash. 160s Preparing to unpack .../338-node-lodash_4.17.21+dfsg+~cs8.31.198.20210220-9_all.deb ... 160s Unpacking node-lodash (4.17.21+dfsg+~cs8.31.198.20210220-9) ... 160s Selecting previously unselected package node-quick-lru. 160s Preparing to unpack .../339-node-quick-lru_6.1.1-4_all.deb ... 160s Unpacking node-quick-lru (6.1.1-4) ... 160s Selecting previously unselected package node-regenerator-transform. 160s Preparing to unpack .../340-node-regenerator-transform_0.15.2+~0.10.8-1_all.deb ... 160s Unpacking node-regenerator-transform (0.15.2+~0.10.8-1) ... 160s Selecting previously unselected package node-regenerate. 160s Preparing to unpack .../341-node-regenerate_1.4.2-3_all.deb ... 160s Unpacking node-regenerate (1.4.2-3) ... 160s Selecting previously unselected package node-regenerate-unicode-properties. 160s Preparing to unpack .../342-node-regenerate-unicode-properties_10.1.0+ds-1_all.deb ... 160s Unpacking node-regenerate-unicode-properties (10.1.0+ds-1) ... 160s Selecting previously unselected package node-regjsgen. 160s Preparing to unpack .../343-node-regjsgen_0.7.1+ds-1_all.deb ... 160s Unpacking node-regjsgen (0.7.1+ds-1) ... 160s Selecting previously unselected package node-regjsparser. 160s Preparing to unpack .../344-node-regjsparser_0.9.1+ds-2_all.deb ... 160s Unpacking node-regjsparser (0.9.1+ds-2) ... 160s Selecting previously unselected package node-unicode-canonical-property-names-ecmascript. 160s Preparing to unpack .../345-node-unicode-canonical-property-names-ecmascript_2.0.0-2_all.deb ... 160s Unpacking node-unicode-canonical-property-names-ecmascript (2.0.0-2) ... 160s Selecting previously unselected package node-unicode-property-aliases-ecmascript. 160s Preparing to unpack .../346-node-unicode-property-aliases-ecmascript_2.1.0+ds-1_all.deb ... 160s Unpacking node-unicode-property-aliases-ecmascript (2.1.0+ds-1) ... 160s Selecting previously unselected package node-unicode-match-property-ecmascript. 160s Preparing to unpack .../347-node-unicode-match-property-ecmascript_2.0.0-2_all.deb ... 160s Unpacking node-unicode-match-property-ecmascript (2.0.0-2) ... 160s Selecting previously unselected package node-unicode-match-property-value-ecmascript. 160s Preparing to unpack .../348-node-unicode-match-property-value-ecmascript_2.1.0+ds-1_all.deb ... 160s Unpacking node-unicode-match-property-value-ecmascript (2.1.0+ds-1) ... 160s Selecting previously unselected package node-regexpu-core. 160s Preparing to unpack .../349-node-regexpu-core_5.2.2-3_all.deb ... 160s Unpacking node-regexpu-core (5.2.2-3) ... 160s Selecting previously unselected package node-source-map-support. 160s Preparing to unpack .../350-node-source-map-support_0.5.21+ds+~0.5.4-1_all.deb ... 160s Unpacking node-source-map-support (0.5.21+ds+~0.5.4-1) ... 160s Selecting previously unselected package node-to-fast-properties. 160s Preparing to unpack .../351-node-to-fast-properties_3.0.1-3_all.deb ... 160s Unpacking node-to-fast-properties (3.0.1-3) ... 160s Selecting previously unselected package node-v8flags. 160s Preparing to unpack .../352-node-v8flags_3.2.0+~3.1.1-1_all.deb ... 160s Unpacking node-v8flags (3.2.0+~3.1.1-1) ... 160s Selecting previously unselected package node-babel7. 160s Preparing to unpack .../353-node-babel7_7.20.15+ds1+~cs214.269.168-8_all.deb ... 160s Unpacking node-babel7 (7.20.15+ds1+~cs214.269.168-8) ... 160s Selecting previously unselected package node-is-arrayish. 160s Preparing to unpack .../354-node-is-arrayish_0.3.2-3_all.deb ... 160s Unpacking node-is-arrayish (0.3.2-3) ... 161s Selecting previously unselected package node-error-ex. 161s Preparing to unpack .../355-node-error-ex_1.3.2-4_all.deb ... 161s Unpacking node-error-ex (1.3.2-4) ... 161s Selecting previously unselected package node-json-parse-better-errors. 161s Preparing to unpack .../356-node-json-parse-better-errors_1.0.2+~cs3.3.1-3_all.deb ... 161s Unpacking node-json-parse-better-errors (1.0.2+~cs3.3.1-3) ... 161s Selecting previously unselected package node-parse-json. 161s Preparing to unpack .../357-node-parse-json_5.2.0+~cs5.1.7-2_all.deb ... 161s Unpacking node-parse-json (5.2.0+~cs5.1.7-2) ... 161s Selecting previously unselected package node-hosted-git-info. 161s Preparing to unpack .../358-node-hosted-git-info_6.1.1-2_all.deb ... 161s Unpacking node-hosted-git-info (6.1.1-2) ... 161s Selecting previously unselected package node-spdx-license-ids. 161s Preparing to unpack .../359-node-spdx-license-ids_3.0.12-1_all.deb ... 161s Unpacking node-spdx-license-ids (3.0.12-1) ... 161s Selecting previously unselected package node-spdx-exceptions. 161s Preparing to unpack .../360-node-spdx-exceptions_2.3.0-2_all.deb ... 161s Unpacking node-spdx-exceptions (2.3.0-2) ... 161s Selecting previously unselected package node-spdx-expression-parse. 161s Preparing to unpack .../361-node-spdx-expression-parse_3.0.1+~3.0.1-1_all.deb ... 161s Unpacking node-spdx-expression-parse (3.0.1+~3.0.1-1) ... 161s Selecting previously unselected package node-spdx-correct. 161s Preparing to unpack .../362-node-spdx-correct_3.1.1-2_all.deb ... 161s Unpacking node-spdx-correct (3.1.1-2) ... 161s Selecting previously unselected package node-validate-npm-package-license. 161s Preparing to unpack .../363-node-validate-npm-package-license_3.0.4-2_all.deb ... 161s Unpacking node-validate-npm-package-license (3.0.4-2) ... 161s Selecting previously unselected package node-normalize-package-data. 161s Preparing to unpack .../364-node-normalize-package-data_4.0.1+~2.4.1-1_all.deb ... 161s Unpacking node-normalize-package-data (4.0.1+~2.4.1-1) ... 161s Selecting previously unselected package node-read-pkg. 161s Preparing to unpack .../365-node-read-pkg_5.2.0-2_all.deb ... 161s Unpacking node-read-pkg (5.2.0-2) ... 161s Selecting previously unselected package node-uuid. 161s Preparing to unpack .../366-node-uuid_8.3.2+~8.3.4-1_all.deb ... 161s Unpacking node-uuid (8.3.2+~8.3.4-1) ... 161s Selecting previously unselected package node-isexe. 161s Preparing to unpack .../367-node-isexe_2.0.0+~2.0.1-5_all.deb ... 161s Unpacking node-isexe (2.0.0+~2.0.1-5) ... 161s Selecting previously unselected package node-which. 161s Preparing to unpack .../368-node-which_2.0.2+~cs1.3.2-3_all.deb ... 161s Unpacking node-which (2.0.2+~cs1.3.2-3) ... 161s Selecting previously unselected package node-imurmurhash. 161s Preparing to unpack .../369-node-imurmurhash_0.1.4+dfsg+~0.1.1-2_all.deb ... 161s Unpacking node-imurmurhash (0.1.4+dfsg+~0.1.1-2) ... 161s Selecting previously unselected package node-is-typedarray. 161s Preparing to unpack .../370-node-is-typedarray_1.0.0-4_all.deb ... 161s Unpacking node-is-typedarray (1.0.0-4) ... 161s Selecting previously unselected package node-typedarray-to-buffer. 161s Preparing to unpack .../371-node-typedarray-to-buffer_4.0.0-2_all.deb ... 161s Unpacking node-typedarray-to-buffer (4.0.0-2) ... 161s Selecting previously unselected package node-write-file-atomic. 161s Preparing to unpack .../372-node-write-file-atomic_4.0.2+~4.0.0-2_all.deb ... 161s Unpacking node-write-file-atomic (4.0.2+~4.0.0-2) ... 161s Selecting previously unselected package node-slice-ansi. 161s Preparing to unpack .../373-node-slice-ansi_5.0.0+~cs9.0.0-5_all.deb ... 161s Unpacking node-slice-ansi (5.0.0+~cs9.0.0-5) ... 161s Selecting previously unselected package node-ansi-regex. 161s Preparing to unpack .../374-node-ansi-regex_5.0.1-1_all.deb ... 161s Unpacking node-ansi-regex (5.0.1-1) ... 161s Selecting previously unselected package node-strip-ansi. 161s Preparing to unpack .../375-node-strip-ansi_6.0.1-2_all.deb ... 161s Unpacking node-strip-ansi (6.0.1-2) ... 161s Selecting previously unselected package node-clone. 161s Preparing to unpack .../376-node-clone_2.1.2+~2.1.2-1_all.deb ... 161s Unpacking node-clone (2.1.2+~2.1.2-1) ... 161s Selecting previously unselected package node-defaults. 161s Preparing to unpack .../377-node-defaults_1.0.4+~1.0.3-1_all.deb ... 161s Unpacking node-defaults (1.0.4+~1.0.3-1) ... 161s Selecting previously unselected package node-wcwidth.js. 161s Preparing to unpack .../378-node-wcwidth.js_1.0.2-2_all.deb ... 161s Unpacking node-wcwidth.js (1.0.2-2) ... 161s Selecting previously unselected package node-string-width. 161s Preparing to unpack .../379-node-string-width_4.2.3+~cs13.2.3-1_all.deb ... 161s Unpacking node-string-width (4.2.3+~cs13.2.3-1) ... 161s Selecting previously unselected package node-wrap-ansi. 161s Preparing to unpack .../380-node-wrap-ansi_8.0.1+~8.0.1-3_all.deb ... 161s Unpacking node-wrap-ansi (8.0.1+~8.0.1-3) ... 161s Selecting previously unselected package node-cliui. 161s Preparing to unpack .../381-node-cliui_7.0.4+repack+1+~cs1.4.2-2_all.deb ... 161s Unpacking node-cliui (7.0.4+repack+1+~cs1.4.2-2) ... 161s Selecting previously unselected package node-get-caller-file. 161s Preparing to unpack .../382-node-get-caller-file_2.0.5+~cs1.1.1-4_all.deb ... 161s Unpacking node-get-caller-file (2.0.5+~cs1.1.1-4) ... 161s Selecting previously unselected package node-require-directory. 161s Preparing to unpack .../383-node-require-directory_2.1.1+~2.1.2-1_all.deb ... 161s Unpacking node-require-directory (2.1.1+~2.1.2-1) ... 161s Selecting previously unselected package node-y18n. 161s Preparing to unpack .../384-node-y18n_5.0.8+~5.0.0-3_all.deb ... 161s Unpacking node-y18n (5.0.8+~5.0.0-3) ... 161s Selecting previously unselected package node-camelcase. 161s Preparing to unpack .../385-node-camelcase_7.0.0-3_all.deb ... 161s Unpacking node-camelcase (7.0.0-3) ... 161s Selecting previously unselected package node-yargs-parser. 161s Preparing to unpack .../386-node-yargs-parser_21.1.1+~21.0.0-4_all.deb ... 161s Unpacking node-yargs-parser (21.1.1+~21.0.0-4) ... 161s Selecting previously unselected package node-yargs. 161s Preparing to unpack .../387-node-yargs_16.2.0+~16.0.4-7_all.deb ... 161s Unpacking node-yargs (16.2.0+~16.0.4-7) ... 161s Selecting previously unselected package node-istanbul. 161s Preparing to unpack .../388-node-istanbul_0.4.5+repack10+~cs98.25.59-2_all.deb ... 161s Unpacking node-istanbul (0.4.5+repack10+~cs98.25.59-2) ... 161s Selecting previously unselected package node-through. 161s Preparing to unpack .../389-node-through_2.3.8+~cs0.0.30-1_all.deb ... 161s Unpacking node-through (2.3.8+~cs0.0.30-1) ... 161s Selecting previously unselected package node-resumer. 161s Preparing to unpack .../390-node-resumer_0.0.0-6_all.deb ... 161s Unpacking node-resumer (0.0.0-6) ... 161s Selecting previously unselected package node-tape. 161s Preparing to unpack .../391-node-tape_5.6.1+~cs8.20.19-2_all.deb ... 161s Unpacking node-tape (5.6.1+~cs8.20.19-2) ... 161s Selecting previously unselected package node-deep-equal. 161s Preparing to unpack .../392-node-deep-equal_2.2.3+~cs43.15.94-1_all.deb ... 161s Unpacking node-deep-equal (2.2.3+~cs43.15.94-1) ... 161s Selecting previously unselected package libjs-util. 161s Preparing to unpack .../393-libjs-util_0.12.5+~1.0.10-1_all.deb ... 161s Unpacking libjs-util (0.12.5+~1.0.10-1) ... 161s Selecting previously unselected package libleptonica6:s390x. 161s Preparing to unpack .../394-libleptonica6_1.84.1-4_s390x.deb ... 161s Unpacking libleptonica6:s390x (1.84.1-4) ... 161s Selecting previously unselected package libmd4c0:s390x. 161s Preparing to unpack .../395-libmd4c0_0.5.2-2_s390x.deb ... 161s Unpacking libmd4c0:s390x (0.5.2-2) ... 161s Selecting previously unselected package libglvnd0:s390x. 161s Preparing to unpack .../396-libglvnd0_1.7.0-1build1_s390x.deb ... 161s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 161s Selecting previously unselected package libglx0:s390x. 161s Preparing to unpack .../397-libglx0_1.7.0-1build1_s390x.deb ... 161s Unpacking libglx0:s390x (1.7.0-1build1) ... 161s Selecting previously unselected package libtbbmalloc2:s390x. 161s Preparing to unpack .../398-libtbbmalloc2_2022.0.0-1_s390x.deb ... 161s Unpacking libtbbmalloc2:s390x (2022.0.0-1) ... 161s Selecting previously unselected package libtbbbind-2-5:s390x. 161s Preparing to unpack .../399-libtbbbind-2-5_2022.0.0-1_s390x.deb ... 161s Unpacking libtbbbind-2-5:s390x (2022.0.0-1) ... 161s Selecting previously unselected package libtbb12:s390x. 161s Preparing to unpack .../400-libtbb12_2022.0.0-1_s390x.deb ... 161s Unpacking libtbb12:s390x (2022.0.0-1) ... 161s Selecting previously unselected package libopencv-core406t64:s390x. 161s Preparing to unpack .../401-libopencv-core406t64_4.6.0+dfsg-14build3_s390x.deb ... 161s Unpacking libopencv-core406t64:s390x (4.6.0+dfsg-14build3) ... 161s Selecting previously unselected package libopencv-flann406t64:s390x. 161s Preparing to unpack .../402-libopencv-flann406t64_4.6.0+dfsg-14build3_s390x.deb ... 161s Unpacking libopencv-flann406t64:s390x (4.6.0+dfsg-14build3) ... 161s Selecting previously unselected package libopencv-imgproc406t64:s390x. 161s Preparing to unpack .../403-libopencv-imgproc406t64_4.6.0+dfsg-14build3_s390x.deb ... 161s Unpacking libopencv-imgproc406t64:s390x (4.6.0+dfsg-14build3) ... 161s Selecting previously unselected package libopencv-features2d406t64:s390x. 161s Preparing to unpack .../404-libopencv-features2d406t64_4.6.0+dfsg-14build3_s390x.deb ... 161s Unpacking libopencv-features2d406t64:s390x (4.6.0+dfsg-14build3) ... 161s Selecting previously unselected package libopencv-calib3d406t64:s390x. 161s Preparing to unpack .../405-libopencv-calib3d406t64_4.6.0+dfsg-14build3_s390x.deb ... 161s Unpacking libopencv-calib3d406t64:s390x (4.6.0+dfsg-14build3) ... 161s Selecting previously unselected package libprotobuf32t64:s390x. 161s Preparing to unpack .../406-libprotobuf32t64_3.21.12-10build1_s390x.deb ... 161s Unpacking libprotobuf32t64:s390x (3.21.12-10build1) ... 161s Selecting previously unselected package libopencv-dnn406t64:s390x. 161s Preparing to unpack .../407-libopencv-dnn406t64_4.6.0+dfsg-14build3_s390x.deb ... 161s Unpacking libopencv-dnn406t64:s390x (4.6.0+dfsg-14build3) ... 161s Selecting previously unselected package libopenexr-3-1-30:s390x. 161s Preparing to unpack .../408-libopenexr-3-1-30_3.1.5-5.1build3_s390x.deb ... 161s Unpacking libopenexr-3-1-30:s390x (3.1.5-5.1build3) ... 162s Selecting previously unselected package libopencv-imgcodecs406t64:s390x. 162s Preparing to unpack .../409-libopencv-imgcodecs406t64_4.6.0+dfsg-14build3_s390x.deb ... 162s Unpacking libopencv-imgcodecs406t64:s390x (4.6.0+dfsg-14build3) ... 162s Selecting previously unselected package libopengl0:s390x. 162s Preparing to unpack .../410-libopengl0_1.7.0-1build1_s390x.deb ... 162s Unpacking libopengl0:s390x (1.7.0-1build1) ... 162s Selecting previously unselected package libpcre2-16-0:s390x. 162s Preparing to unpack .../411-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 162s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 162s Selecting previously unselected package libqt5core5t64:s390x. 162s Preparing to unpack .../412-libqt5core5t64_5.15.15+dfsg-1ubuntu2_s390x.deb ... 162s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 162s Selecting previously unselected package libegl1:s390x. 162s Preparing to unpack .../413-libegl1_1.7.0-1build1_s390x.deb ... 162s Unpacking libegl1:s390x (1.7.0-1build1) ... 162s Selecting previously unselected package libgl1:s390x. 162s Preparing to unpack .../414-libgl1_1.7.0-1build1_s390x.deb ... 162s Unpacking libgl1:s390x (1.7.0-1build1) ... 162s Selecting previously unselected package libqt5dbus5t64:s390x. 162s Preparing to unpack .../415-libqt5dbus5t64_5.15.15+dfsg-1ubuntu2_s390x.deb ... 162s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 162s Selecting previously unselected package libqt5network5t64:s390x. 162s Preparing to unpack .../416-libqt5network5t64_5.15.15+dfsg-1ubuntu2_s390x.deb ... 162s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 162s Selecting previously unselected package libsm6:s390x. 162s Preparing to unpack .../417-libsm6_2%3a1.2.4-1_s390x.deb ... 162s Unpacking libsm6:s390x (2:1.2.4-1) ... 162s Selecting previously unselected package libxcb-icccm4:s390x. 162s Preparing to unpack .../418-libxcb-icccm4_0.4.2-1_s390x.deb ... 162s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 162s Selecting previously unselected package libxcb-util1:s390x. 162s Preparing to unpack .../419-libxcb-util1_0.4.1-1_s390x.deb ... 162s Unpacking libxcb-util1:s390x (0.4.1-1) ... 162s Selecting previously unselected package libxcb-image0:s390x. 162s Preparing to unpack .../420-libxcb-image0_0.4.0-2build1_s390x.deb ... 162s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 162s Selecting previously unselected package libxcb-keysyms1:s390x. 162s Preparing to unpack .../421-libxcb-keysyms1_0.4.1-1_s390x.deb ... 162s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 162s Selecting previously unselected package libxcb-render-util0:s390x. 162s Preparing to unpack .../422-libxcb-render-util0_0.3.10-1_s390x.deb ... 162s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 162s Selecting previously unselected package libxcb-shape0:s390x. 162s Preparing to unpack .../423-libxcb-shape0_1.17.0-2_s390x.deb ... 162s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 162s Selecting previously unselected package libxcb-xinerama0:s390x. 162s Preparing to unpack .../424-libxcb-xinerama0_1.17.0-2_s390x.deb ... 162s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 162s Selecting previously unselected package libxcb-xinput0:s390x. 162s Preparing to unpack .../425-libxcb-xinput0_1.17.0-2_s390x.deb ... 162s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 162s Selecting previously unselected package libxcb-xkb1:s390x. 162s Preparing to unpack .../426-libxcb-xkb1_1.17.0-2_s390x.deb ... 162s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 162s Selecting previously unselected package libxkbcommon-x11-0:s390x. 162s Preparing to unpack .../427-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 162s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 162s Selecting previously unselected package libqt5gui5t64:s390x. 162s Preparing to unpack .../428-libqt5gui5t64_5.15.15+dfsg-1ubuntu2_s390x.deb ... 162s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 162s Selecting previously unselected package libqt5widgets5t64:s390x. 162s Preparing to unpack .../429-libqt5widgets5t64_5.15.15+dfsg-1ubuntu2_s390x.deb ... 162s Unpacking libqt5widgets5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 162s Selecting previously unselected package libqt5opengl5t64:s390x. 162s Preparing to unpack .../430-libqt5opengl5t64_5.15.15+dfsg-1ubuntu2_s390x.deb ... 162s Unpacking libqt5opengl5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 162s Selecting previously unselected package libqt5test5t64:s390x. 162s Preparing to unpack .../431-libqt5test5t64_5.15.15+dfsg-1ubuntu2_s390x.deb ... 162s Unpacking libqt5test5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 162s Selecting previously unselected package libopencv-highgui406t64:s390x. 162s Preparing to unpack .../432-libopencv-highgui406t64_4.6.0+dfsg-14build3_s390x.deb ... 162s Unpacking libopencv-highgui406t64:s390x (4.6.0+dfsg-14build3) ... 162s Selecting previously unselected package libopencv-ml406t64:s390x. 162s Preparing to unpack .../433-libopencv-ml406t64_4.6.0+dfsg-14build3_s390x.deb ... 162s Unpacking libopencv-ml406t64:s390x (4.6.0+dfsg-14build3) ... 162s Selecting previously unselected package libopencv-objdetect406t64:s390x. 162s Preparing to unpack .../434-libopencv-objdetect406t64_4.6.0+dfsg-14build3_s390x.deb ... 162s Unpacking libopencv-objdetect406t64:s390x (4.6.0+dfsg-14build3) ... 162s Selecting previously unselected package libopencv-video406t64:s390x. 162s Preparing to unpack .../435-libopencv-video406t64_4.6.0+dfsg-14build3_s390x.deb ... 162s Unpacking libopencv-video406t64:s390x (4.6.0+dfsg-14build3) ... 162s Selecting previously unselected package libtesseract5:s390x. 162s Preparing to unpack .../436-libtesseract5_5.5.0-1_s390x.deb ... 162s Unpacking libtesseract5:s390x (5.5.0-1) ... 162s Selecting previously unselected package libopencv-contrib406t64:s390x. 162s Preparing to unpack .../437-libopencv-contrib406t64_4.6.0+dfsg-14build3_s390x.deb ... 162s Unpacking libopencv-contrib406t64:s390x (4.6.0+dfsg-14build3) ... 162s Selecting previously unselected package libopencv-stitching406t64:s390x. 162s Preparing to unpack .../438-libopencv-stitching406t64_4.6.0+dfsg-14build3_s390x.deb ... 162s Unpacking libopencv-stitching406t64:s390x (4.6.0+dfsg-14build3) ... 162s Selecting previously unselected package libswscale8:s390x. 162s Preparing to unpack .../439-libswscale8_7%3a7.1-3ubuntu3_s390x.deb ... 162s Unpacking libswscale8:s390x (7:7.1-3ubuntu3) ... 162s Selecting previously unselected package libopencv-videoio406t64:s390x. 162s Preparing to unpack .../440-libopencv-videoio406t64_4.6.0+dfsg-14build3_s390x.deb ... 162s Unpacking libopencv-videoio406t64:s390x (4.6.0+dfsg-14build3) ... 162s Selecting previously unselected package node-agent-base. 162s Preparing to unpack .../441-node-agent-base_7.1.1~0~2024040606-5_all.deb ... 162s Unpacking node-agent-base (7.1.1~0~2024040606-5) ... 162s Selecting previously unselected package node-aproba. 162s Preparing to unpack .../442-node-aproba_2.0.0-3_all.deb ... 162s Unpacking node-aproba (2.0.0-3) ... 162s Selecting previously unselected package node-delegates. 162s Preparing to unpack .../443-node-delegates_1.0.0-3_all.deb ... 162s Unpacking node-delegates (1.0.0-3) ... 162s Selecting previously unselected package node-are-we-there-yet. 162s Preparing to unpack .../444-node-are-we-there-yet_3.0.1+~1.1.0-1_all.deb ... 162s Unpacking node-are-we-there-yet (3.0.1+~1.1.0-1) ... 162s Selecting previously unselected package node-buffers. 162s Preparing to unpack .../445-node-buffers_0.1.1-5_all.deb ... 162s Unpacking node-buffers (0.1.1-5) ... 162s Selecting previously unselected package node-chownr. 162s Preparing to unpack .../446-node-chownr_2.0.0-3_all.deb ... 162s Unpacking node-chownr (2.0.0-3) ... 162s Selecting previously unselected package node-console-control-strings. 162s Preparing to unpack .../447-node-console-control-strings_1.1.0-3_all.deb ... 162s Unpacking node-console-control-strings (1.1.0-3) ... 162s Selecting previously unselected package node-data-uri-to-buffer. 162s Preparing to unpack .../448-node-data-uri-to-buffer_6.0.2~0~2024040606-5_all.deb ... 162s Unpacking node-data-uri-to-buffer (6.0.2~0~2024040606-5) ... 162s Selecting previously unselected package node-time-stamp. 162s Preparing to unpack .../449-node-time-stamp_2.2.0-2_all.deb ... 162s Unpacking node-time-stamp (2.2.0-2) ... 162s Selecting previously unselected package node-fancy-log. 162s Preparing to unpack .../450-node-fancy-log_1.3.3+~cs1.3.1-2_all.deb ... 162s Unpacking node-fancy-log (1.3.3+~cs1.3.1-2) ... 162s Selecting previously unselected package node-fetch. 162s Preparing to unpack .../451-node-fetch_3.3.2+~cs11.4.11-3_all.deb ... 162s Unpacking node-fetch (3.3.2+~cs11.4.11-3) ... 162s Selecting previously unselected package node-has-unicode. 162s Preparing to unpack .../452-node-has-unicode_2.0.1-5_all.deb ... 162s Unpacking node-has-unicode (2.0.1-5) ... 162s Selecting previously unselected package node-wide-align. 162s Preparing to unpack .../453-node-wide-align_1.1.3-4_all.deb ... 162s Unpacking node-wide-align (1.1.3-4) ... 162s Selecting previously unselected package node-gauge. 162s Preparing to unpack .../454-node-gauge_4.0.4-2_all.deb ... 162s Unpacking node-gauge (4.0.4-2) ... 162s Selecting previously unselected package node-https-proxy-agent. 162s Preparing to unpack .../455-node-https-proxy-agent_7.0.4~0~2024040606-5_all.deb ... 162s Unpacking node-https-proxy-agent (7.0.4~0~2024040606-5) ... 163s Selecting previously unselected package node-iconv-lite. 163s Preparing to unpack .../456-node-iconv-lite_0.6.3-3_all.deb ... 163s Unpacking node-iconv-lite (0.6.3-3) ... 163s Selecting previously unselected package node-encoding. 163s Preparing to unpack .../457-node-encoding_0.1.13-2_all.deb ... 163s Unpacking node-encoding (0.1.13-2) ... 163s Selecting previously unselected package node-jsonparse. 163s Preparing to unpack .../458-node-jsonparse_1.3.1-10_all.deb ... 163s Unpacking node-jsonparse (1.3.1-10) ... 163s Selecting previously unselected package node-yallist. 163s Preparing to unpack .../459-node-yallist_4.0.0+~4.0.1-1_all.deb ... 163s Unpacking node-yallist (4.0.0+~4.0.1-1) ... 163s Selecting previously unselected package node-minipass. 163s Preparing to unpack .../460-node-minipass_5.0.0+~cs10.3.21-2_all.deb ... 163s Unpacking node-minipass (5.0.0+~cs10.3.21-2) ... 163s Selecting previously unselected package node-nan. 163s Preparing to unpack .../461-node-nan_2.18.0-1ubuntu1_all.deb ... 163s Unpacking node-nan (2.18.0-1ubuntu1) ... 163s Selecting previously unselected package node-set-blocking. 163s Preparing to unpack .../462-node-set-blocking_2.0.0-2_all.deb ... 163s Unpacking node-set-blocking (2.0.0-2) ... 163s Selecting previously unselected package node-npmlog. 163s Preparing to unpack .../463-node-npmlog_7.0.1+~4.1.4-1_all.deb ... 163s Unpacking node-npmlog (7.0.1+~4.1.4-1) ... 163s Selecting previously unselected package node-tar. 163s Preparing to unpack .../464-node-tar_6.2.1+~cs7.0.8-1_all.deb ... 163s Unpacking node-tar (6.2.1+~cs7.0.8-1) ... 163s Selecting previously unselected package node-pre-gyp. 163s Preparing to unpack .../465-node-pre-gyp_1.0.11+~2.0.3-1_all.deb ... 163s Unpacking node-pre-gyp (1.0.11+~2.0.3-1) ... 163s Selecting previously unselected package node-opencv:s390x. 163s Preparing to unpack .../466-node-opencv_7.0.0+git20200316.f0a03a4b-1build7_s390x.deb ... 163s Unpacking node-opencv:s390x (7.0.0+git20200316.f0a03a4b-1build7) ... 163s Setting up libgme0:s390x (0.6.3-7build1) ... 163s Setting up libchromaprint1:s390x (1.5.1-7) ... 163s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 163s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 163s Setting up liblcms2-2:s390x (2.16-2) ... 163s Setting up libtbbmalloc2:s390x (2022.0.0-1) ... 163s Setting up libpixman-1-0:s390x (0.44.0-3) ... 163s Setting up libdvdread8t64:s390x (6.1.3-2) ... 163s Setting up node-fs.realpath (1.0.0-3) ... 163s Setting up libudfread0:s390x (1.1.2-1build1) ... 163s Setting up libnorm1t64:s390x (1.5.9+dfsg-3.1build1) ... 163s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 163s Setting up libgpgmepp6t64:s390x (1.24.1-4ubuntu1) ... 163s Setting up libwayland-server0:s390x (1.23.1-1) ... 163s Setting up node-ampproject-remapping (2.2.0+~cs5.15.37-1) ... 163s Setting up libaom3:s390x (3.12.0-1) ... 163s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 163s Setting up mysql-common (5.8+1.1.1) ... 163s update-alternatives: using /etc/mysql/my.cnf.fallback to provide /etc/mysql/my.cnf (my.cnf) in auto mode 163s Setting up libprotobuf32t64:s390x (3.21.12-10build1) ... 163s Setting up librabbitmq4:s390x (0.15.0-1) ... 163s Setting up libdouble-conversion3:s390x (3.3.0-1build1) ... 163s Setting up node-lru-cache (10.0.1-3) ... 163s Setting up libraw1394-11:s390x (2.1.2-2build3) ... 163s Setting up node-abbrev (1.1.1+~1.1.2-1) ... 163s Setting up node-path-is-inside (1.0.2+~1.0.0-1) ... 163s Setting up libjs-sprintf-js (1.1.2+ds1+~1.1.2-1) ... 163s Setting up libsodium23:s390x (1.0.18-1build3) ... 163s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 163s Setting up node-pify (5.0.0+~cs5.0.1-1) ... 163s Setting up libogg0:s390x (1.3.5-3build1) ... 163s Setting up node-p-limit (4.0.0+~cs4.0.0-5) ... 163s Setting up node-yallist (4.0.0+~4.0.1-1) ... 163s Setting up libjs-inherits (2.0.4-6) ... 163s Setting up libspeex1:s390x (1.2.1-3) ... 163s Setting up proj-data (9.5.1-1) ... 163s Setting up libshine3:s390x (3.1.1-2build1) ... 163s Setting up node-is-windows (1.0.2+~cs1.0.0-1) ... 163s Setting up node-ansi-regex (5.0.1-1) ... 163s Setting up libxpm4:s390x (1:3.5.17-1build2) ... 163s Setting up libx264-164:s390x (2:0.164.3108+git31e19f9-2build1) ... 163s Setting up libtwolame0:s390x (0.4.0-2build3) ... 163s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 163s Setting up node-object-inspect (1.12.2+~cs1.8.1-1) ... 163s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 163s Setting up libdatrie1:s390x (0.2.13-3build1) ... 163s Setting up node-slash (4.0.0-3) ... 163s Setting up node-util-deprecate (1.0.2-3) ... 163s Setting up libogdi4.1:s390x (4.1.1+ds-5) ... 163s Setting up node-fs-readdir-recursive (1.1.0+~1.1.0-1) ... 163s Setting up node-v8flags (3.2.0+~3.1.1-1) ... 163s Setting up libgsm1:s390x (1.0.22-1build1) ... 163s Setting up node-get-caller-file (2.0.5+~cs1.1.1-4) ... 163s Setting up libcharls2:s390x (2.4.2-2build2) ... 163s Setting up node-arrify (2.0.1-3) ... 163s Setting up libxcb-render0:s390x (1.17.0-2) ... 163s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 163s Setting up node-caniuse-lite (1.0.30001692+dfsg+~1.0.5-1) ... 163s Setting up node-isobject (4.0.0-2) ... 163s Setting up libglvnd0:s390x (1.7.0-1build1) ... 163s Setting up node-delegates (1.0.0-3) ... 163s Setting up libcodec2-1.2:s390x (1.2.0-3) ... 163s Setting up libxcb-glx0:s390x (1.17.0-2) ... 163s Setting up node-isexe (2.0.0+~2.0.1-5) ... 163s Setting up libgeos3.13.0:s390x (3.13.0-1) ... 163s Setting up node-resolve (1.22.8+~cs5.34.15-2) ... 163s Setting up node-jsonparse (1.3.1-10) ... 163s Setting up node-core-js-pure (3.33.2-1build2) ... 163s Setting up node-path-exists (5.0.0-8) ... 163s Setting up libgdk-pixbuf2.0-common (2.42.12+dfsg-2) ... 163s Setting up node-unicode-match-property-value-ecmascript (2.1.0+ds-1) ... 163s Setting up node-escape-string-regexp (4.0.0-2) ... 163s Setting up node-through (2.3.8+~cs0.0.30-1) ... 163s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 163s Setting up libxcb-shape0:s390x (1.17.0-2) ... 163s Setting up libjs-source-map (0.7.0++dfsg2+really.0.6.1-15) ... 163s Setting up x11-common (1:7.7+23ubuntu3) ... 163s Setting up node-p-locate (6.0.0-12) ... 163s Setting up node-strip-bom (4.0.0-2) ... 163s Setting up libpq5:s390x (17.3-2) ... 163s Setting up libdeflate0:s390x (1.23-1) ... 163s Setting up node-color-name (1.1.4+~1.1.1-2) ... 163s Setting up libqhull-r8.0:s390x (2020.2-6build1) ... 163s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 163s Setting up node-electron-to-chromium (1.5.80-1) ... 163s Setting up node-cjs-module-lexer (1.2.3+dfsg-1) ... 163s Setting up node-console-control-strings (1.1.0-3) ... 163s Setting up libxcb-shm0:s390x (1.17.0-2) ... 163s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 163s Setting up node-camelcase (7.0.0-3) ... 163s Setting up node-resumer (0.0.0-6) ... 163s Setting up node-uuid (8.3.2+~8.3.4-1) ... 163s Setting up libmpg123-0t64:s390x (1.32.10-1) ... 163s Setting up libxerces-c3.2t64:s390x (3.2.4+debian-1.3build1) ... 163s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 163s Setting up libcjson1:s390x (1.7.18-3) ... 163s Setting up libxvidcore4:s390x (2:1.3.7-1build1) ... 163s Setting up libmysqlclient24:s390x (8.4.4-0ubuntu1) ... 163s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 163s Setting up node-path-type (4.0.0-3) ... 163s Setting up node-indent-string (4.0.0-2) ... 163s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 163s Setting up libaec0:s390x (1.1.3-1) ... 163s Setting up gdal-data (3.10.1+dfsg-1build2) ... 163s Setting up libopengl0:s390x (1.7.0-1build1) ... 163s Setting up libxcb-util1:s390x (0.4.1-1) ... 163s Setting up node-function-bind (1.1.2+~cs2.1.14-1) ... 163s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 163s Setting up libsnappy1v5:s390x (1.2.1-1) ... 163s Setting up liborc-0.4-0t64:s390x (1:0.4.40-1) ... 163s Setting up node-clone (2.1.2+~2.1.2-1) ... 163s Setting up node-p-map (4.0.0+~3.1.0+~3.0.1-2) ... 163s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 163s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 163s Setting up node-chownr (2.0.0-3) ... 163s Setting up node-has-flag (5.0.1-1) ... 163s Setting up node-estraverse (5.3.0+ds+~5.1.1-1) ... 163s Setting up node-regjsgen (0.7.1+ds-1) ... 163s Setting up libxcb-present0:s390x (1.17.0-2) ... 163s Setting up node-lodash-packages (4.17.21+dfsg+~cs8.31.198.20210220-9) ... 163s Setting up node-inherits (2.0.4-6) ... 163s Setting up node-locate-path (7.1.1-2) ... 163s Setting up libpgm-5.3-0t64:s390x (5.3.128~dfsg-2.1build1) ... 163s Setting up libtheoraenc1:s390x (1.2.0~alpha1+dfsg-5) ... 163s Setting up libqt5core5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 163s Setting up node-is-descriptor (3.0.0-2) ... 163s Setting up node-safe-buffer (5.2.1+~cs2.1.2-3) ... 163s Setting up libblas3:s390x (3.12.1-2) ... 163s 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 163s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 163s Setting up libcfitsio10t64:s390x (4.5.0-5) ... 163s Setting up node-json-parse-better-errors (1.0.2+~cs3.3.1-3) ... 163s Setting up node-unicode-canonical-property-names-ecmascript (2.0.0-2) ... 163s Setting up node-sprintf-js (1.1.2+ds1+~1.1.2-1) ... 163s Setting up libva2:s390x (2.22.0-2) ... 163s Setting up node-y18n (5.0.8+~5.0.0-3) ... 163s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 163s Setting up node-shebang-regex (3.0.0-2) ... 163s Setting up node-resolve-from (5.0.0+~3.1.0+~3.3.0+~2.0.0-1) ... 163s Setting up libsvtav1enc2:s390x (2.3.0+dfsg-1) ... 163s Setting up libxfixes3:s390x (1:6.0.0-2build1) ... 163s Setting up node-nan (2.18.0-1ubuntu1) ... 163s Setting up libxcb-sync1:s390x (1.17.0-2) ... 163s Setting up node-balanced-match (2.0.0-1) ... 163s Setting up node-convert-source-map (1.9.0+~1.5.2-1) ... 163s Setting up node-brace-expansion (2.0.1+~1.1.0-1) ... 163s Setting up node-is-stream (3.0.0-4) ... 163s Setting up node-spdx-exceptions (2.3.0-2) ... 163s Setting up libopus0:s390x (1.5.2-2) ... 163s Setting up node-js-tokens (8.0.0-2) ... 163s Setting up node-core-js (3.33.2-1build2) ... 163s Setting up libexif12:s390x (0.6.25-1) ... 163s Setting up libimagequant0:s390x (2.18.0-1build1) ... 163s Setting up node-set-blocking (2.0.0-2) ... 163s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 163s Setting up libdc1394-25:s390x (2.2.6-4build1) ... 163s Setting up fonts-dejavu-mono (2.37-8) ... 163s Setting up libhwloc15:s390x (2.11.2-1build1) ... 163s Setting up libcares2:s390x (1.34.4-2.1) ... 163s Setting up libimath-3-1-29t64:s390x (3.1.12-1ubuntu1) ... 163s Setting up node-repeat-string (1.6.1+repack-1) ... 163s Setting up libvorbis0a:s390x (1.3.7-2) ... 163s Setting up node-globals (13.23.0-1) ... 163s Setting up node-deep-is (0.1.4-1) ... 163s Setting up fonts-dejavu-core (2.37-8) ... 163s Setting up node-signal-exit (4.1.0-7) ... 163s Setting up unixodbc-common (2.3.12-2ubuntu1) ... 163s Setting up libsocket++1:s390x (1.12.13+git20131030.5d039ba-1build1) ... 163s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 163s Setting up node-source-map (0.7.0++dfsg2+really.0.6.1-15) ... 163s Setting up libltdl7:s390x (2.5.4-3build1) ... 163s Setting up node-wrappy (1.0.2-3) ... 163s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 163s Setting up libssh-4:s390x (0.11.1-1) ... 163s Setting up libgfortran5:s390x (14.2.0-17ubuntu1) ... 163s Setting up libvulkan1:s390x (1.4.304.0-1) ... 163s Setting up node-require-directory (2.1.1+~2.1.2-1) ... 163s Setting up node-quick-lru (6.1.1-4) ... 163s Setting up node-regenerator-runtime (0.15.2+~0.10.8-1) ... 163s Setting up libwebp7:s390x (1.5.0-0.1) ... 163s Setting up node-to-fast-properties (3.0.1-3) ... 163s Setting up node-defaults (1.0.4+~1.0.3-1) ... 163s Setting up libgif7:s390x (5.2.2-1ubuntu1) ... 163s Setting up libodbc2:s390x (2.3.12-2ubuntu1) ... 163s Setting up liburiparser1:s390x (0.9.8+dfsg-2) ... 163s Setting up node-commander (9.4.1-1) ... 163s Setting up node-undici (7.3.0+dfsg1+~cs24.12.11-1) ... 163s Setting up libfyba0t64:s390x (4.1.1-11build1) ... 163s Setting up libjs-typedarray-to-buffer (4.0.0-2) ... 163s Setting up libvpx9:s390x (1.15.0-1ubuntu1) ... 163s Setting up libsrt1.5-gnutls:s390x (1.5.4-1) ... 163s Setting up libdav1d7:s390x (1.5.1-1) ... 163s Setting up libmtdev1t64:s390x (1.1.7-1) ... 163s Setting up libva-drm2:s390x (2.22.0-2) ... 163s Setting up libminizip1t64:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 163s Setting up node-graceful-fs (4.2.10-1) ... 163s Setting up ocl-icd-libopencl1:s390x (2.3.2-1build1) ... 163s Setting up node-is-path-cwd (2.2.0-2) ... 163s Setting up libxshmfence1:s390x (1.3-1build5) ... 163s Setting up libvdpau1:s390x (1.5-3) ... 163s Setting up libxcb-randr0:s390x (1.17.0-2) ... 163s Setting up librav1e0.7:s390x (0.7.1-9) ... 163s Setting up node-fast-levenshtein (2.0.6+ds-3) ... 163s Setting up libjs-regenerate (1.4.2-3) ... 163s Setting up libblosc1:s390x (1.21.5+ds-1build1) ... 163s Setting up node-hosted-git-info (6.1.1-2) ... 163s Setting up node-aproba (2.0.0-3) ... 163s Setting up node-unicode-property-aliases-ecmascript (2.1.0+ds-1) ... 163s Setting up node-is-plain-object (5.0.0-7) ... 163s Setting up libmd4c0:s390x (0.5.2-2) ... 163s Setting up node-path-dirname (1.0.2-2) ... 163s Setting up libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 163s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 163s Setting up libthai-data (0.1.29-2build1) ... 163s Setting up node-spdx-license-ids (3.0.12-1) ... 163s Setting up node-string-decoder (1.3.0-6) ... 163s Setting up node-esutils (2.0.3+~2.0.0-1) ... 163s Setting up node-time-stamp (2.2.0-2) ... 163s Setting up node-commondir (1.0.1+~1.0.0-1) ... 163s Setting up libjs-prettify (2015.12.04+dfsg-1.1) ... 163s Setting up libgphoto2-port12t64:s390x (2.5.31-4) ... 163s Setting up node-core-util-is (1.0.3-1) ... 163s Setting up node-prelude-ls (1.2.1+dfsg-3) ... 163s Setting up node-minimatch (9.0.3-5) ... 163s Setting up libmbedcrypto16:s390x (3.6.2-3ubuntu1) ... 163s Setting up libjs-async (0.8.0-6) ... 163s Setting up node-imurmurhash (0.1.4+dfsg+~0.1.1-2) ... 163s Setting up node-xtend (4.0.2-3) ... 163s Setting up node-foreground-child (3.1.1-2) ... 163s Setting up libde265-0:s390x (1.0.15-1build4) ... 163s Setting up libkmlbase1t64:s390x (1.3.0-12build1) ... 163s Setting up libx265-215:s390x (4.1-2) ... 163s Setting up node-wordwrap (1.0.0-4) ... 163s Setting up libva-x11-2:s390x (2.22.0-2) ... 163s Setting up libwebpmux3:s390x (1.5.0-0.1) ... 163s Setting up node-is-arrayish (0.3.2-3) ... 163s Setting up libjxl0.11:s390x (0.11.1-1) ... 163s Setting up node-npm-run-path (5.1.0+~4.0.0-8) ... 163s Setting up node-is-buffer (2.0.5-2) ... 163s Setting up node-color-convert (2.0.1+~cs2.0.0-2) ... 163s Setting up node-data-uri-to-buffer (6.0.2~0~2024040606-5) ... 163s Setting up libzvbi-common (0.2.43-2ubuntu1) ... 163s Setting up libgstreamer1.0-0:s390x (1.25.50-1) ... 163s Setcap worked! gst-ptp-helper is not suid! 163s Setting up libmp3lame0:s390x (3.100-6build1) ... 163s Setting up libsz2:s390x (1.1.3-1) ... 163s Setting up node-isarray (2.0.5-4) ... 163s Setting up libvorbisenc2:s390x (1.3.7-2) ... 163s Setting up node-is-plain-obj (3.0.0-2) ... 163s Setting up node-is-extglob (2.1.1-5) ... 163s Setting up libdvdnav4:s390x (6.1.1-3build1) ... 163s Setting up node-shebang-command (2.0.0-1) ... 163s Setting up libjs-is-typedarray (1.0.0-4) ... 163s Setting up gdal-plugins:s390x (3.10.1+dfsg-1build2) ... 163s Setting up libwacom-common (2.14.0-1) ... 163s Setting up node-babel-plugin-add-module-exports (1.0.4+dfsg1~cs5.8.0-4) ... 163s Setting up node-process-nextick-args (2.0.1-3) ... 163s Setting up node-has-unicode (2.0.1-5) ... 163s Setting up libwayland-client0:s390x (1.23.1-1) ... 163s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 163s Setting up libgdcm3.0t64:s390x (3.0.24-5ubuntu1) ... 163s Setting up node-readable-stream (3.6.0+~cs3.0.0-4build1) ... 163s Setting up libice6:s390x (2:1.1.1-1) ... 163s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 163s Setting up libodbcinst2:s390x (2.3.12-2ubuntu1) ... 163s Setting up liblapack3:s390x (3.12.1-2) ... 163s 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 163s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 163s Setting up libarpack2t64:s390x (3.9.1-4) ... 163s Setting up node-supports-color (8.1.1+~8.1.1-1) ... 163s Setting up libzmq5:s390x (4.3.5-1build2) ... 163s Setting up node-error-ex (1.3.2-4) ... 163s Setting up libzvbi0t64:s390x (0.2.43-2ubuntu1) ... 163s Setting up node-once (1.4.1-1) ... 163s Setting up node-n3 (1.16.3+~1.2.3+~1.10.4-1) ... 163s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 163s Setting up libsoxr0:s390x (0.1.3-4build3) ... 163s Setting up libwacom9:s390x (2.14.0-1) ... 163s Setting up fontconfig-config (2.15.0-1.1ubuntu2) ... 163s Setting up libgeos-c1t64:s390x (3.13.0-1) ... 163s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 163s Setting up libqt5network5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 163s Setting up node-are-we-there-yet (3.0.1+~1.1.0-1) ... 163s Setting up node-find-up (6.3.0-7) ... 163s Setting up node-kind-of (6.0.3+dfsg-2) ... 163s Setting up libgstreamer-plugins-base1.0-0:s390x (1.25.50-1) ... 163s Setting up libqt5test5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 163s Setting up node-minimist (1.2.8+~cs5.3.5-1) ... 163s Setting up libavutil59:s390x (7:7.1-3ubuntu3) ... 163s Setting up node-fancy-log (1.3.3+~cs1.3.1-2) ... 163s Setting up node-define-property (2.0.2+really+2.0.2-3) ... 163s Setting up libinput-bin (1.27.1-1) ... 163s Setting up libtbbbind-2-5:s390x (2022.0.0-1) ... 163s Setting up librist4:s390x (0.2.11+dfsg-1) ... 163s Setting up node-wcwidth.js (1.0.2-2) ... 163s Setting up libkmldom1t64:s390x (1.3.0-12build1) ... 163s Setting up libthai0:s390x (0.1.29-2build1) ... 163s Setting up node-fetch (3.3.2+~cs11.4.11-3) ... 163s Setting up node-babel7-runtime (7.20.15+ds1+~cs214.269.168-8) ... 163s Setting up libvorbisfile3:s390x (1.3.7-2) ... 163s Setting up libswresample5:s390x (7:7.1-3ubuntu3) ... 163s Setting up node-iconv-lite (0.6.3-3) ... 163s Setting up node-type-check (0.4.0+dfsg-3) ... 163s Setting up libswscale8:s390x (7:7.1-3ubuntu3) ... 163s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 163s Setting up node-ansi-styles (6.2.1-3) ... 163s Setting up node-pkg-dir (5.0.0-2) ... 163s Setting up libraqm0:s390x (0.10.2-1) ... 163s Setting up libopenexr-3-1-30:s390x (3.1.5-5.1build3) ... 163s Setting up node-async (0.8.0-6) ... 163s Setting up node-optimist (0.6.1+~0.0.30-2) ... 163s Setting up node-spdx-expression-parse (3.0.1+~3.0.1-1) ... 163s Setting up libhdf4-0-alt:s390x (4.3.0-1) ... 163s Setting up node-is-typedarray (1.0.0-4) ... 163s Setting up librttopo1:s390x (1.1.0-3build2) ... 163s Setting up libhdf5-310:s390x (1.14.5+repack-3) ... 163s Setting up libfreexl1:s390x (2.0.0-1build2) ... 163s Setting up node-inflight (1.0.6-2) ... 163s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 163s Setting up libegl1:s390x (1.7.0-1build1) ... 163s Setting up libgdk-pixbuf-2.0-0:s390x (2.42.12+dfsg-2) ... 163s Setting up libarmadillo14 (1:14.2.1+dfsg-1) ... 163s Setting up libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 163s Setting up libbluray2:s390x (1:1.3.4-1build1) ... 163s Setting up node-encoding (0.1.13-2) ... 163s Setting up libyuv0:s390x (0.0.1904.20250204-1) ... 163s Setting up libsm6:s390x (2:1.2.4-1) ... 163s Setting up libopenmpt0t64:s390x (0.7.13-1) ... 163s Setting up node-slice-ansi (5.0.0+~cs9.0.0-5) ... 163s Setting up libpoppler145:s390x (25.01.0-4) ... 163s Setting up libinput10:s390x (1.27.1-1) ... 163s Setting up libhdf5-hl-310:s390x (1.14.5+repack-3) ... 163s Setting up fontconfig (2.15.0-1.1ubuntu2) ... 165s Regenerating fonts cache... done. 165s Setting up libavif16:s390x (1.1.1-1ubuntu1) ... 165s Setting up libnetcdf19t64:s390x (1:4.9.2-6ubuntu2) ... 165s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 165s Setting up libglx0:s390x (1.7.0-1build1) ... 165s Setting up libproj25:s390x (9.5.1-1) ... 165s Setting up node-regenerator-transform (0.15.2+~0.10.8-1) ... 165s Setting up libpango-1.0-0:s390x (1.56.1-1) ... 165s Setting up libleptonica6:s390x (1.84.1-4) ... 165s Setting up libtbb12:s390x (2022.0.0-1) ... 165s Setting up libkmlengine1t64:s390x (1.3.0-12build1) ... 165s Setting up libcairo2:s390x (1.18.2-2) ... 165s Setting up libgeotiff5:s390x (1.7.3-1) ... 165s Setting up node-levn (0.4.1+dfsg-2) ... 165s Setting up node-spdx-correct (3.1.1-2) ... 165s Setting up libgl1:s390x (1.7.0-1build1) ... 165s Setting up libtheoradec1:s390x (1.2.0~alpha1+dfsg-5) ... 165s Setting up node-glob (8.1.0+~cs8.5.15-1) ... 165s Setting up node-typedarray-to-buffer (4.0.0-2) ... 165s Setting up libtesseract5:s390x (5.5.0-1) ... 165s Setting up node-minipass (5.0.0+~cs10.3.21-2) ... 165s Setting up libcairo-gobject2:s390x (1.18.2-2) ... 165s Setting up libpangoft2-1.0-0:s390x (1.56.1-1) ... 165s Setting up libopencv-core406t64:s390x (4.6.0+dfsg-14build3) ... 165s Setting up libpangocairo-1.0-0:s390x (1.56.1-1) ... 165s Setting up libspatialite8t64:s390x (5.1.0-3build1) ... 165s Setting up node-validate-npm-package-license (3.0.4-2) ... 165s Setting up node-optionator (0.9.1+dfsg+~cs1.2.3-1) ... 165s Setting up node-write-file-atomic (4.0.2+~4.0.0-2) ... 165s Setting up libopencv-flann406t64:s390x (4.6.0+dfsg-14build3) ... 165s Setting up librsvg2-2:s390x (2.59.90+dfsg-2) ... 165s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 165s Setting up libopencv-ml406t64:s390x (4.6.0+dfsg-14build3) ... 165s Setting up libopencv-imgproc406t64:s390x (4.6.0+dfsg-14build3) ... 165s Setting up libavcodec61:s390x (7:7.1-3ubuntu3) ... 165s Setting up libopencv-dnn406t64:s390x (4.6.0+dfsg-14build3) ... 165s Setting up libqt5widgets5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 165s Setting up libopencv-features2d406t64:s390x (4.6.0+dfsg-14build3) ... 165s Setting up libavformat61:s390x (7:7.1-3ubuntu3) ... 165s Setting up libqt5opengl5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 165s Setting up libopencv-calib3d406t64:s390x (4.6.0+dfsg-14build3) ... 165s Setting up libopencv-video406t64:s390x (4.6.0+dfsg-14build3) ... 165s Setting up libopencv-stitching406t64:s390x (4.6.0+dfsg-14build3) ... 165s Setting up libopencv-objdetect406t64:s390x (4.6.0+dfsg-14build3) ... 165s Setting up node-define-properties (1.2.1+~cs2.2.3-1) ... 165s Setting up libheif1:s390x (1.19.5-1build1) ... 165s Setting up libgd3:s390x (2.3.3-12ubuntu3) ... 165s Setting up node-acorn (8.8.1+ds+~cs25.17.7-2) ... 165s Setting up libgdal36:s390x (3.10.1+dfsg-1build2) ... 165s Setting up node-debbundle-es-to-primitive (1.2.1+~cs9.7.25-2) ... 165s Setting up libheif-plugin-aomdec:s390x (1.19.5-1build1) ... 165s Setting up libheif-plugin-libde265:s390x (1.19.5-1build1) ... 165s Setting up libopencv-imgcodecs406t64:s390x (4.6.0+dfsg-14build3) ... 165s Setting up libnode115:s390x (20.18.1+dfsg-1ubuntu1) ... 165s Setting up node-util (0.12.5+~1.0.10-1) ... 165s Setting up nodejs (20.18.1+dfsg-1ubuntu1) ... 165s update-alternatives: using /usr/bin/nodejs to provide /usr/bin/js (js) in auto mode 165s Setting up node-argparse (2.0.1-2) ... 165s Setting up node-source-map-support (0.5.21+ds+~0.5.4-1) ... 165s Setting up node-unicode-match-property-ecmascript (2.0.0-2) ... 165s Setting up libopencv-highgui406t64:s390x (4.6.0+dfsg-14build3) ... 165s Setting up node-defined (1.0.1+~1.0.0-1) ... 165s Setting up libgphoto2-6t64:s390x (2.5.31-4) ... 165s Setting up node-strip-ansi (6.0.1-2) ... 165s Setting up node-ignore (5.2.1-1) ... 165s Setting up libopencv-videoio406t64:s390x (4.6.0+dfsg-14build3) ... 165s Setting up node-chalk (5.3.0-1build1) ... 165s Setting up node-which (2.0.2+~cs1.3.2-3) ... 165s Setting up node-esprima (4.0.1+ds+~4.0.3-2) ... 165s Setting up node-is-path-inside (3.0.3-2) ... 165s Setting up node-buffers (0.1.1-5) ... 165s Setting up node-neo-async (2.6.2+~cs3.0.0-3) ... 165s Setting up node-mkdirp (2.1.6+~cs5.2.1-2) ... 165s Setting up node-es6-error (4.1.1-5) ... 165s Setting up node-archy (1.0.0-6) ... 165s Setting up node-js-yaml (4.1.0+dfsg+~4.0.5-7) ... 165s Setting up node-nopt (5.0.0-4) ... 165s Setting up node-lodash (4.17.21+dfsg+~cs8.31.198.20210220-9) ... 165s Setting up node-json5 (2.2.3+dfsg-1build1) ... 165s Setting up node-ms (2.1.3+~cs0.7.31-3) ... 165s Setting up node-rimraf (3.0.2-2) ... 165s Setting up node-string-width (4.2.3+~cs13.2.3-1) ... 165s Setting up node-regenerate (1.4.2-3) ... 165s Setting up node-semver (7.6.1+~7.5.8-2) ... 165s Setting up node-picocolors (1.0.0-4) ... 165s Setting up node-es-abstract (1.20.4+~cs26.27.47-2) ... 165s Setting up handlebars (3:4.7.7+~4.1.0-1) ... 165s Setting up node-object-assign (4.1.1-7) ... 165s Setting up node-is-glob (4.0.3-2) ... 165s Setting up node-is-number (7.0.0-4) ... 165s Setting up node-babel-plugin-polyfill-corejs2 (0.3.3~0~20220913+ds1-1) ... 165s Setting up node-for-in (1.0.2-4) ... 165s Setting up node-is-extendable (1.0.1-3) ... 165s Setting up node-jsesc (3.0.2+~3.0.1-1) ... 165s Setting up node-regjsparser (0.9.1+ds-2) ... 165s Setting up node-decamelize (4.0.0-2) ... 165s Setting up node-normalize-path (3.0.0+~3.0.0-1) ... 165s Setting up node-debug (4.3.4+~cs4.1.7-1) ... 165s Setting up node-agent-base (7.1.1~0~2024040606-5) ... 165s Setting up node-browserslist (4.24.4+~cs6.3.21-1) ... 165s Setting up node-yargs-parser (21.1.1+~21.0.0-4) ... 165s Setting up node-make-dir (3.1.0-3) ... 165s Setting up libopencv-contrib406t64:s390x (4.6.0+dfsg-14build3) ... 165s Setting up node-wrap-ansi (8.0.1+~8.0.1-3) ... 165s Setting up node-normalize-package-data (4.0.1+~2.4.1-1) ... 165s Setting up node-for-own (1.0.0-3) ... 165s Setting up node-escodegen (2.1.0+dfsg+~0.0.8-1) ... 165s Setting up node-babel-helper-define-polyfill-provider (0.3.3~0~20220913+ds1-1) ... 165s Setting up node-assert (2.0.0+~cs3.9.8-2) ... 165s Setting up node-tar (6.2.1+~cs7.0.8-1) ... 165s Setting up node-regenerate-unicode-properties (10.1.0+ds-1) ... 165s Setting up node-glob-parent (6.0.2+~5.1.1-2) ... 165s Setting up node-wide-align (1.1.3-4) ... 165s Setting up node-anymatch (3.1.3+~cs4.6.1-2) ... 165s Setting up node-https-proxy-agent (7.0.4~0~2024040606-5) ... 165s Setting up node-cliui (7.0.4+repack+1+~cs1.4.2-2) ... 165s Setting up node-regexpu-core (5.2.2-3) ... 165s Setting up node-yargs (16.2.0+~16.0.4-7) ... 165s Setting up node-to-regex-range (5.0.1-4) ... 165s Setting up node-core-js-compat (3.33.2-1build2) ... 165s Setting up node-clone-deep (4.0.1+~cs7.0.2-1) ... 165s Setting up node-babel-plugin-polyfill-regenerator (0.4.1~0~20220913+ds1-1) ... 165s Setting up node-gauge (4.0.4-2) ... 165s Setting up node-npmlog (7.0.1+~4.1.4-1) ... 165s Setting up node-babel-plugin-polyfill-corejs3 (0.6.0~0~20220913+ds1-1) ... 165s Setting up node-fill-range (7.1.1+~7.0.3-1) ... 165s Setting up node-pre-gyp (1.0.11+~2.0.3-1) ... 165s Setting up node-braces (3.0.3+~3.0.4-1) ... 165s Setting up node-micromatch (4.0.7+~4.0.9-1) ... 165s Setting up node-globby (13.1.3+~cs16.25.40-3) ... 165s Setting up node-del (7.1.0-1) ... 165s Setting up node-find-cache-dir (3.3.2+~3.2.1-1) ... 165s Setting up node-babel7 (7.20.15+ds1+~cs214.269.168-8) ... 165s update-alternatives: using /usr/bin/babeljs-7 to provide /usr/bin/babeljs (babeljs) in auto mode 165s update-alternatives: using /usr/bin/babeljs-7-external-helpers to provide /usr/bin/babeljs-external-helpers (babeljs-external-helpers) in auto mode 165s update-alternatives: using /usr/bin/babeljs-7-node to provide /usr/bin/babeljs-node (babeljs-node) in auto mode 165s update-alternatives: using /usr/bin/babeljs-7-parser to provide /usr/bin/babeljs-parser (babeljs-parser) in auto mode 165s Setting up node-parse-json (5.2.0+~cs5.1.7-2) ... 165s Setting up node-read-pkg (5.2.0-2) ... 165s Setting up node-istanbul (0.4.5+repack10+~cs98.25.59-2) ... 165s Setting up node-opencv:s390x (7.0.0+git20200316.f0a03a4b-1build7) ... 165s Setting up node-tape (5.6.1+~cs8.20.19-2) ... 165s Setting up node-deep-equal (2.2.3+~cs43.15.94-1) ... 165s Setting up libjs-util (0.12.5+~1.0.10-1) ... 165s Processing triggers for man-db (2.13.0-1) ... 165s Processing triggers for udev (257.2-3ubuntu1) ... 166s Processing triggers for libc-bin (2.41-1ubuntu1) ... 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'node-opencv'], kind short, sout pipe, serr pipe, env [] 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.cAVQ9K/require-packages.all"], kind short, sout raw, serr pipe, env [] 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.cAVQ9K/require-packages.all /tmp/autopkgtest-work.s36dbjc5/out/require-packages.all 167s autopkgtest: DBG: got reply from testbed: ok 167s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.cAVQ9K/build.E0J/src'], kind short, sout raw, serr raw, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.cAVQ9K/build.E0J/src already exists 167s autopkgtest [01:11:32]: test require: [----------------------- 167s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.cAVQ9K/wrapper.sh --debug --artifacts=/tmp/autopkgtest.cAVQ9K/require-artifacts --chdir=/tmp/autopkgtest.cAVQ9K/build.E0J/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.cAVQ9K/require-stderr --stdout=/tmp/autopkgtest.cAVQ9K/require-stdout --tmp=/tmp/autopkgtest.cAVQ9K/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.cAVQ9K/build.E0J/src/debian/tests/require -- /tmp/autopkgtest.cAVQ9K/build.E0J/src/debian/tests/require"], kind test, sout raw, serr raw, env [] 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.cAVQ9K/require-artifacts 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: changing to directory: /tmp/autopkgtest.cAVQ9K/build.E0J/src 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: setting environment: LANG=C.UTF-8 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LANGUAGE 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_ADDRESS 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_ALL 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_COLLATE 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_CTYPE 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_IDENTIFICATION 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_MEASUREMENT 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_MESSAGES 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_MONETARY 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_NAME 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_NUMERIC 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_PAPER 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_TELEPHONE 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_TIME 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: pretending to be a login shell 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: will write standard error to /tmp/autopkgtest.cAVQ9K/require-stderr 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: will write stdout to /tmp/autopkgtest.cAVQ9K/require-stdout 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.cAVQ9K/autopkgtest_tmp 167s /tmp/autopkgtest.cAVQ9K/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 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: marking as executable: /tmp/autopkgtest.cAVQ9K/build.E0J/src/debian/tests/require 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: command to run: /tmp/autopkgtest.cAVQ9K/build.E0J/src/debian/tests/require 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: copying /tmp/tmp.8ypiRXczds/out to stdout and file: /tmp/autopkgtest.cAVQ9K/require-stdout 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: copying /tmp/tmp.8ypiRXczds/err to standard error and file: /tmp/autopkgtest.cAVQ9K/require-stdout 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: writing script pid 6025 to /tmp/autopkgtest_script_pid 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: checking for leaked background processes... 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: waiting for tee/cat subprocesses... 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: cleaning up... 167s /tmp/autopkgtest.cAVQ9K/wrapper.sh: Exit status: 0 167s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest [01:11:33]: test require: -----------------------] 168s autopkgtest: DBG: testbed executing test finished with exit status 0 168s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.cAVQ9K/require-stdout /tmp/autopkgtest-work.s36dbjc5/out/require-stdout 168s autopkgtest: DBG: got reply from testbed: ok 168s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.cAVQ9K/require-stderr /tmp/autopkgtest-work.s36dbjc5/out/require-stderr 168s autopkgtest: DBG: got reply from testbed: ok 168s require PASS 168s autopkgtest [01:11:33]: test require: - - - - - - - - - - results - - - - - - - - - - 168s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.cAVQ9K/require-artifacts/ /tmp/autopkgtest-work.s36dbjc5/out/artifacts/ 168s autopkgtest: DBG: got reply from testbed: ok 168s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.cAVQ9K/require-artifacts', '/tmp/autopkgtest.cAVQ9K/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest [01:11:33]: test smoketest: preparing testbed 168s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['node-opencv'], deps_new=['node-opencv'] 168s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 168s autopkgtest: DBG: install_deps: deps_new=['node-opencv'] 168s autopkgtest: DBG: install-deps: satisfying node-opencv 168s autopkgtest: DBG: can use apt-get on testbed: True 168s 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', 'node-opencv'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 169s Reading package lists... 169s Building dependency tree... 169s Reading state information... 169s Starting pkgProblemResolver with broken count: 0 169s Starting 2 pkgProblemResolver with broken count: 0 169s Done 169s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 169s autopkgtest: DBG: testbed command exited with code 0 169s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'node-opencv'], kind short, sout pipe, serr pipe, env [] 169s autopkgtest: DBG: testbed command exited with code 0 169s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.cAVQ9K/smoketest-packages.all"], kind short, sout raw, serr pipe, env [] 169s autopkgtest: DBG: testbed command exited with code 0 169s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.cAVQ9K/smoketest-packages.all /tmp/autopkgtest-work.s36dbjc5/out/smoketest-packages.all 170s autopkgtest: DBG: got reply from testbed: ok 170s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.cAVQ9K/build.E0J/src'], kind short, sout raw, serr raw, env [] 170s autopkgtest: DBG: testbed command exited with code 0 170s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.cAVQ9K/build.E0J/src already exists 170s autopkgtest [01:11:35]: test smoketest: [----------------------- 170s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.cAVQ9K/wrapper.sh --debug --artifacts=/tmp/autopkgtest.cAVQ9K/smoketest-artifacts --chdir=/tmp/autopkgtest.cAVQ9K/build.E0J/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.cAVQ9K/smoketest-stderr --stdout=/tmp/autopkgtest.cAVQ9K/smoketest-stdout --tmp=/tmp/autopkgtest.cAVQ9K/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.cAVQ9K/build.E0J/src/debian/tests/smoketest -- /tmp/autopkgtest.cAVQ9K/build.E0J/src/debian/tests/smoketest"], kind test, sout raw, serr raw, env [] 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.cAVQ9K/smoketest-artifacts 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: changing to directory: /tmp/autopkgtest.cAVQ9K/build.E0J/src 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: setting environment: LANG=C.UTF-8 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LANGUAGE 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_ADDRESS 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_ALL 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_COLLATE 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_CTYPE 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_IDENTIFICATION 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_MEASUREMENT 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_MESSAGES 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_MONETARY 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_NAME 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_NUMERIC 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_PAPER 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_TELEPHONE 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_TIME 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: pretending to be a login shell 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: will write standard error to /tmp/autopkgtest.cAVQ9K/smoketest-stderr 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: will write stdout to /tmp/autopkgtest.cAVQ9K/smoketest-stdout 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.cAVQ9K/autopkgtest_tmp 170s /tmp/autopkgtest.cAVQ9K/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 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: marking as executable: /tmp/autopkgtest.cAVQ9K/build.E0J/src/debian/tests/smoketest 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: command to run: /tmp/autopkgtest.cAVQ9K/build.E0J/src/debian/tests/smoketest 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: copying /tmp/tmp.ulg1fdMbdM/out to stdout and file: /tmp/autopkgtest.cAVQ9K/smoketest-stdout 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: copying /tmp/tmp.ulg1fdMbdM/err to standard error and file: /tmp/autopkgtest.cAVQ9K/smoketest-stdout 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: writing script pid 6179 to /tmp/autopkgtest_script_pid 170s dpkg-architecture: warning: cannot determine CC system type, falling back to default (native compilation) 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: checking for leaked background processes... 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: waiting for tee/cat subprocesses... 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: cleaning up... 170s /tmp/autopkgtest.cAVQ9K/wrapper.sh: Exit status: 0 170s autopkgtest: DBG: testbed command exited with code 0 171s autopkgtest [01:11:36]: test smoketest: -----------------------] 171s autopkgtest: DBG: testbed executing test finished with exit status 0 171s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.cAVQ9K/smoketest-stdout /tmp/autopkgtest-work.s36dbjc5/out/smoketest-stdout 171s autopkgtest: DBG: got reply from testbed: ok 171s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.cAVQ9K/smoketest-stderr /tmp/autopkgtest-work.s36dbjc5/out/smoketest-stderr 171s autopkgtest: DBG: got reply from testbed: ok 171s smoketest PASS 171s autopkgtest [01:11:36]: test smoketest: - - - - - - - - - - results - - - - - - - - - - 171s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.cAVQ9K/smoketest-artifacts/ /tmp/autopkgtest-work.s36dbjc5/out/artifacts/ 171s autopkgtest: DBG: got reply from testbed: ok 171s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.cAVQ9K/smoketest-artifacts', '/tmp/autopkgtest.cAVQ9K/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 171s autopkgtest: DBG: testbed command exited with code 0 171s autopkgtest [01:11:36]: test unittest: preparing testbed 171s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['node-opencv'], deps_new=['node-glob', 'node-axios', 'node-tape', 'node-opencv'] 171s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 171s autopkgtest: DBG: install_deps: deps_new=['node-glob', 'node-axios', 'node-tape', 'node-opencv'] 171s autopkgtest: DBG: install-deps: satisfying node-glob, node-axios, node-tape, node-opencv 171s autopkgtest: DBG: can use apt-get on testbed: True 171s 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', 'node-glob, node-axios, node-tape, node-opencv'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 172s Reading package lists... 172s Building dependency tree... 172s Reading state information... 172s Starting pkgProblemResolver with broken count: 0 172s Starting 2 pkgProblemResolver with broken count: 0 172s Done 173s The following NEW packages will be installed: 173s node-asynckit node-axios node-combined-stream node-delayed-stream 173s node-follow-redirects node-form-data node-mime node-mime-types 173s node-proxy-from-env 173s 0 upgraded, 9 newly installed, 0 to remove and 0 not upgraded. 173s Need to get 381 kB of archives. 173s After this operation, 3080 kB of additional disk space will be used. 173s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x node-asynckit all 0.4.0-5 [10.5 kB] 173s Get:2 http://ftpmaster.internal/ubuntu plucky/universe s390x node-follow-redirects all 1.15.9+~1.14.4-1 [13.9 kB] 173s Get:3 http://ftpmaster.internal/ubuntu plucky/universe s390x node-delayed-stream all 1.0.0-5 [5464 B] 173s Get:4 http://ftpmaster.internal/ubuntu plucky/universe s390x node-combined-stream all 1.0.8+~1.0.3-1 [7432 B] 173s Get:5 http://ftpmaster.internal/ubuntu plucky/universe s390x node-mime all 3.0.0+dfsg+~cs6.97.2-1 [37.8 kB] 173s Get:6 http://ftpmaster.internal/ubuntu plucky/universe s390x node-mime-types all 2.1.35-2 [6818 B] 173s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x node-form-data all 4.0.1-1 [13.3 kB] 173s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x node-proxy-from-env all 1.1.0+~1.0.1-1 [7688 B] 173s Get:9 http://ftpmaster.internal/ubuntu plucky/universe s390x node-axios all 1.7.9+dfsg-1 [278 kB] 173s Fetched 381 kB in 1s (747 kB/s) 173s Selecting previously unselected package node-asynckit. 173s (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 ... 82487 files and directories currently installed.) 173s Preparing to unpack .../0-node-asynckit_0.4.0-5_all.deb ... 173s Unpacking node-asynckit (0.4.0-5) ... 173s Selecting previously unselected package node-follow-redirects. 173s Preparing to unpack .../1-node-follow-redirects_1.15.9+~1.14.4-1_all.deb ... 173s Unpacking node-follow-redirects (1.15.9+~1.14.4-1) ... 173s Selecting previously unselected package node-delayed-stream. 173s Preparing to unpack .../2-node-delayed-stream_1.0.0-5_all.deb ... 173s Unpacking node-delayed-stream (1.0.0-5) ... 173s Selecting previously unselected package node-combined-stream. 173s Preparing to unpack .../3-node-combined-stream_1.0.8+~1.0.3-1_all.deb ... 173s Unpacking node-combined-stream (1.0.8+~1.0.3-1) ... 173s Selecting previously unselected package node-mime. 173s Preparing to unpack .../4-node-mime_3.0.0+dfsg+~cs6.97.2-1_all.deb ... 173s Unpacking node-mime (3.0.0+dfsg+~cs6.97.2-1) ... 173s Selecting previously unselected package node-mime-types. 173s Preparing to unpack .../5-node-mime-types_2.1.35-2_all.deb ... 173s Unpacking node-mime-types (2.1.35-2) ... 173s Selecting previously unselected package node-form-data. 173s Preparing to unpack .../6-node-form-data_4.0.1-1_all.deb ... 173s Unpacking node-form-data (4.0.1-1) ... 173s Selecting previously unselected package node-proxy-from-env. 173s Preparing to unpack .../7-node-proxy-from-env_1.1.0+~1.0.1-1_all.deb ... 173s Unpacking node-proxy-from-env (1.1.0+~1.0.1-1) ... 173s Selecting previously unselected package node-axios. 173s Preparing to unpack .../8-node-axios_1.7.9+dfsg-1_all.deb ... 173s Unpacking node-axios (1.7.9+dfsg-1) ... 174s Setting up node-delayed-stream (1.0.0-5) ... 174s Setting up node-follow-redirects (1.15.9+~1.14.4-1) ... 174s Setting up node-mime (3.0.0+dfsg+~cs6.97.2-1) ... 174s Setting up node-combined-stream (1.0.8+~1.0.3-1) ... 174s Setting up node-mime-types (2.1.35-2) ... 174s Setting up node-asynckit (0.4.0-5) ... 174s Setting up node-proxy-from-env (1.1.0+~1.0.1-1) ... 174s Setting up node-form-data (4.0.1-1) ... 174s Setting up node-axios (1.7.9+dfsg-1) ... 174s autopkgtest: DBG: testbed command exited with code 0 174s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'node-opencv'], kind short, sout pipe, serr pipe, env [] 174s autopkgtest: DBG: testbed command exited with code 0 174s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.cAVQ9K/unittest-packages.all"], kind short, sout raw, serr pipe, env [] 174s autopkgtest: DBG: testbed command exited with code 0 174s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.cAVQ9K/unittest-packages.all /tmp/autopkgtest-work.s36dbjc5/out/unittest-packages.all 174s autopkgtest: DBG: got reply from testbed: ok 174s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.cAVQ9K/build.E0J/src'], kind short, sout raw, serr raw, env [] 174s autopkgtest: DBG: testbed command exited with code 0 174s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.cAVQ9K/build.E0J/src already exists 174s autopkgtest [01:11:39]: test unittest: [----------------------- 174s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.cAVQ9K/wrapper.sh --debug --artifacts=/tmp/autopkgtest.cAVQ9K/unittest-artifacts --chdir=/tmp/autopkgtest.cAVQ9K/build.E0J/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.cAVQ9K/unittest-stderr --stdout=/tmp/autopkgtest.cAVQ9K/unittest-stdout --tmp=/tmp/autopkgtest.cAVQ9K/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.cAVQ9K/build.E0J/src/debian/tests/unittest -- /tmp/autopkgtest.cAVQ9K/build.E0J/src/debian/tests/unittest"], kind test, sout raw, serr raw, env [] 175s /tmp/autopkgtest.cAVQ9K/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.cAVQ9K/unittest-artifacts 175s /tmp/autopkgtest.cAVQ9K/wrapper.sh: changing to directory: /tmp/autopkgtest.cAVQ9K/build.E0J/src 175s /tmp/autopkgtest.cAVQ9K/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 175s /tmp/autopkgtest.cAVQ9K/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 175s /tmp/autopkgtest.cAVQ9K/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 175s /tmp/autopkgtest.cAVQ9K/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 175s /tmp/autopkgtest.cAVQ9K/wrapper.sh: setting environment: LANG=C.UTF-8 175s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LANGUAGE 175s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_ADDRESS 175s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_ALL 175s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_COLLATE 175s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_CTYPE 175s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_IDENTIFICATION 175s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_MEASUREMENT 175s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_MESSAGES 175s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_MONETARY 175s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_NAME 175s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_NUMERIC 175s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_PAPER 175s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_TELEPHONE 175s /tmp/autopkgtest.cAVQ9K/wrapper.sh: unsetting environment: LC_TIME 175s /tmp/autopkgtest.cAVQ9K/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 175s /tmp/autopkgtest.cAVQ9K/wrapper.sh: pretending to be a login shell 175s /tmp/autopkgtest.cAVQ9K/wrapper.sh: will write standard error to /tmp/autopkgtest.cAVQ9K/unittest-stderr 175s /tmp/autopkgtest.cAVQ9K/wrapper.sh: will write stdout to /tmp/autopkgtest.cAVQ9K/unittest-stdout 175s /tmp/autopkgtest.cAVQ9K/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.cAVQ9K/autopkgtest_tmp 175s /tmp/autopkgtest.cAVQ9K/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 175s /tmp/autopkgtest.cAVQ9K/wrapper.sh: marking as executable: /tmp/autopkgtest.cAVQ9K/build.E0J/src/debian/tests/unittest 175s /tmp/autopkgtest.cAVQ9K/wrapper.sh: command to run: /tmp/autopkgtest.cAVQ9K/build.E0J/src/debian/tests/unittest 175s /tmp/autopkgtest.cAVQ9K/wrapper.sh: copying /tmp/tmp.CHcQJpHQKP/out to stdout and file: /tmp/autopkgtest.cAVQ9K/unittest-stdout 175s /tmp/autopkgtest.cAVQ9K/wrapper.sh: copying /tmp/tmp.CHcQJpHQKP/err to standard error and file: /tmp/autopkgtest.cAVQ9K/unittest-stdout 175s /tmp/autopkgtest.cAVQ9K/wrapper.sh: writing script pid 6449 to /tmp/autopkgtest_script_pid 175s dpkg-architecture: warning: cannot determine CC system type, falling back to default (native compilation) 175s TAP version 13 175s # Smoke tests / Can Import 175s ok 1 imported fine 175s ok 2 version is there:4.6 175s ok 3 point is there 175s ok 4 matrix is there 175s # importing library multiple times is ok 175s ok 5 null 175s ok 6 null 175s # Point 175s ok 7 should be truthy 175s ok 8 cannot call without new 175s ok 9 should be strictly equal 175s ok 10 should be strictly equal 175s ok 11 should be strictly equal 175s ok 12 should be strictly equal 175s ok 13 Points are immutable 175s ok 14 Points are immutable 175s ok 15 should be truthy 175s ok 16 should be strictly equal 175s # Matrix constructor 175s ok 17 should be truthy 175s ok 18 should be truthy 175s ok 19 should be truthy 175s ok 20 should be truthy 175s ok 21 should be truthy 175s # Matrix accessors 175s ok 22 should be deeply equivalent 175s ok 23 should be strictly equal 175s ok 24 should be strictly equal 175s ok 25 should be strictly equal 175s ok 26 should be strictly equal 175s ok 27 should be deeply equivalent 175s ok 28 should be strictly equal 175s ok 29 should be strictly equal 175s ok 30 should be deeply equivalent 175s ok 31 should be deeply equivalent 175s ok 32 should be deeply equivalent 175s ok 33 should be deeply equivalent 175s ok 34 should be strictly equal 175s ok 35 should be deeply equivalent 175s # Matrix functions 175s ok 36 should be strictly equal 175s ok 37 should be strictly equal 175s ok 38 should be strictly equal 175s ok 39 GetRotationMatrix2D 175s # .norm 175s ok 40 should be truthy 175s ok 41 should be truthy 175s ok 42 should be strictly equal 175s ok 43 should be strictly equal 175s # Matrix toBuffer 175s ok 44 should be truthy 175s # Matrix toBuffer Async 175s (node:6478) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead. 175s (Use `node --trace-deprecation ...` to show where the warning was created) 175s ok 45 null 175s ok 46 should be truthy 175s ok 47 should be truthy 175s # detectObject 175s ok 48 null 175s ok 49 should be truthy 175s ok 50 should be strictly equal 175s # .absDiff and .countNonZero 175s ok 51 should be truthy 175s ok 52 should be truthy 175s ok 53 should be strictly equal 175s # .bitwiseXor 175s ok 54 should be strictly equal 175s # Image read from file 175s ok 55 should be truthy 175s ok 56 should be strictly equal 175s ok 57 should be strictly equal 175s ok 58 should be strictly equal 175s ok 59 should be strictly equal 175s # Multi-page image read from file 175s ok 60 should be truthy 175s ok 61 should be strictly equal 175s ok 62 should be truthy 175s ok 63 should be strictly equal 175s ok 64 should be strictly equal 175s ok 65 should be strictly equal 175s ok 66 should be strictly equal 175s ok 67 should be truthy 175s ok 68 should be strictly equal 175s ok 69 should be strictly equal 175s ok 70 should be strictly equal 175s ok 71 should be strictly equal 175s ok 72 should be truthy 175s ok 73 should be strictly equal 175s ok 74 should be strictly equal 175s ok 75 should be strictly equal 175s ok 76 should be strictly equal 175s ok 77 should be truthy 175s ok 78 should be strictly equal 175s ok 79 should be strictly equal 175s ok 80 should be strictly equal 175s ok 81 should be strictly equal 175s ok 82 should be truthy 175s ok 83 should be strictly equal 175s ok 84 should be strictly equal 175s ok 85 should be strictly equal 175s ok 86 should be strictly equal 175s ok 87 should be truthy 175s ok 88 should be strictly equal 175s ok 89 should be strictly equal 175s ok 90 should be strictly equal 175s ok 91 should be strictly equal 175s ok 92 should be truthy 175s ok 93 should be strictly equal 175s ok 94 should be strictly equal 175s ok 95 should be strictly equal 175s ok 96 should be strictly equal 175s ok 97 should be truthy 175s ok 98 should be strictly equal 175s ok 99 should be strictly equal 175s ok 100 should be strictly equal 175s ok 101 should be strictly equal 175s ok 102 should be truthy 175s ok 103 should be strictly equal 175s ok 104 should be strictly equal 175s ok 105 should be strictly equal 175s ok 106 should be strictly equal 175s ok 107 should be truthy 175s ok 108 should be strictly equal 175s ok 109 should be strictly equal 175s ok 110 should be strictly equal 175s ok 111 should be strictly equal 175s # Distance transform 175s ok 112 should be truthy 175s ok 113 should be strictly equal 175s # read Image from buffer 175s ok 114 should be truthy 175s ok 115 should be strictly equal 175s ok 116 should be strictly equal 175s ok 117 should be strictly equal 175s ok 118 should be strictly equal 175s # Cascade Classifier 175s ok 119 test constructor 175s ok 120 null 175s ok 121 should be strictly equal 175s ok 122 should be strictly equal 175s # ImageDataStream 175s ok 123 should be truthy 175s ok 124 should be strictly equal 175s # ImageStream 175s ok 125 should be deeply equivalent 175s # CamShift 175s ok 126 should be truthy 175s ok 127 should be truthy 175s ok 128 should be truthy 175s ok 129 should be truthy 175s ok 130 should be truthy 175s ok 131 should be truthy 175s ok 132 should be truthy 175s ok 133 should be truthy 175s ok 134 should be truthy 175s ok 135 should be truthy 175s # fonts 175s ok 136 image is ok 175s # LDA Wrap 175s TODO: Please port LDAWrap.cc to OpenCV 3 175s # Native Matrix 175s ok 137 nativemat 175s # Subtract 175s ok 138 should be deeply equivalent 175s # Mean 175s ok 139 should be deeply equivalent 175s # Compare 175s ok 140 should be deeply equivalent 175s ok 141 should be deeply equivalent 175s ok 142 should be deeply equivalent 175s # MatchTemplateByMatrix 176s ok 143 RGB Found Match 176s ok 144 match location x === 42 176s ok 145 match location y === 263 176s ok 146 Canny edge Found Match 176s ok 147 match location x === 42 176s ok 148 match location y === 263 176s # setColor works will alpha channels 176s ok 149 should be strictly equal 176s ok 150 should be strictly equal 176s ok 151 should be strictly equal 176s ok 152 should be strictly equal 176s # getPixel 176s ok 153 should be strictly equal 176s ok 154 should be deeply equivalent 176s ok 155 should be deeply equivalent 176s ok 156 should be deeply equivalent 176s ok 157 should be deeply equivalent 176s ok 158 should be strictly equal 176s ok 159 should be deeply equivalent 176s ok 160 should be deeply equivalent 176s ok 161 should be deeply equivalent 176s ok 162 should be deeply equivalent 176s ok 163 should be strictly equal 176s ok 164 should be deeply equivalent 176s ok 165 should be deeply equivalent 176s ok 166 should be deeply equivalent 176s ok 167 should be deeply equivalent 176s # pixelRow pixelCol 4 channel image 176s ok 168 should be strictly equal 176s ok 169 should be deeply equivalent 176s ok 170 should be deeply equivalent 176s ok 171 should be deeply equivalent 176s ok 172 should be deeply equivalent 176s # toArray/fromArray working in both ways 176s ok 173 should be strictly equal 176s # floodFill optional returned bounding rect 176s ok 174 should be strictly equal 176s ok 175 should be strictly equal 176s ok 176 should be strictly equal 176s ok 177 should be strictly equal 176s # Example: ./examples/addweighted.js 178s ok 178 null 178s # Example: ./examples/async-resize.js 178s ok 179 null 178s # Example: ./examples/bgsubtractor.js 183s ok 180 null 183s # Example: ./examples/calc-hist.js 184s ok 181 null 184s # Example: ./examples/camera.js 184s # Example: ./examples/car-detection.js 184s ok 182 null 184s # Example: ./examples/color-filter.js 184s ok 183 null 184s # Example: ./examples/contours.js 184s ok 184 null 184s # Example: ./examples/convert-image.js 185s ok 185 null 185s # Example: ./examples/detect-shapes.js 185s ok 186 null 185s # Example: ./examples/dissimilarity.js 185s ok 187 null 185s # Example: ./examples/emd.js 186s ok 188 null 186s # Example: ./examples/face-detection-rectangle.js 186s ok 189 null 186s # Example: ./examples/face-detection.js 187s ok 190 null 187s # Example: ./examples/face-proxy.js 187s ok 191 null 187s # Example: ./examples/mat-array-conversion.js 188s ok 192 null 188s # Example: ./examples/mat-dct.js 188s ok 193 null 188s # Example: ./examples/mat-normalize.js 188s ok 194 null 188s # Example: ./examples/mat-put.js 189s ok 195 null 189s # Example: ./examples/matrix-ref-count.js 189s ok 196 null 189s # Example: ./examples/motion-track.js 189s ok 197 null 189s # Example: ./examples/optical-flow.js 192s ok 198 null 192s # Example: ./examples/quad-crosses.js 192s ok 199 null 192s # Example: ./examples/readimage.js 193s ok 200 null 193s # Example: ./examples/remove-lines.js 193s ok 201 null 193s # Example: ./examples/salt.js 193s ok 202 null 193s # Example: ./examples/take-face-pics.js 193s ok 203 null 193s # Example: ./examples/test.js 194s ok 204 null 194s # Example: ./examples/warp-image.js 194s ok 205 null 194s # Example: ./examples/write-video.js 195s ok 206 null 195s 195s 1..206 195s # tests 206 195s # pass 206 195s 195s # ok 195s 195s /tmp/autopkgtest.cAVQ9K/wrapper.sh: checking for leaked background processes... 195s /tmp/autopkgtest.cAVQ9K/wrapper.sh: waiting for tee/cat subprocesses... 195s /tmp/autopkgtest.cAVQ9K/wrapper.sh: cleaning up... 195s /tmp/autopkgtest.cAVQ9K/wrapper.sh: Exit status: 0 195s autopkgtest: DBG: testbed command exited with code 0 195s autopkgtest [01:12:00]: test unittest: -----------------------] 195s autopkgtest: DBG: testbed executing test finished with exit status 0 195s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.cAVQ9K/unittest-stdout /tmp/autopkgtest-work.s36dbjc5/out/unittest-stdout 195s autopkgtest: DBG: got reply from testbed: ok 195s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.cAVQ9K/unittest-stderr /tmp/autopkgtest-work.s36dbjc5/out/unittest-stderr 195s autopkgtest: DBG: got reply from testbed: ok 196s unittest PASS 196s autopkgtest [01:12:01]: test unittest: - - - - - - - - - - results - - - - - - - - - - 196s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.cAVQ9K/unittest-artifacts/ /tmp/autopkgtest-work.s36dbjc5/out/artifacts/ 196s autopkgtest: DBG: got reply from testbed: ok 196s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.cAVQ9K/unittest-artifacts', '/tmp/autopkgtest.cAVQ9K/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 196s autopkgtest: DBG: testbed command exited with code 0 196s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 196s autopkgtest [01:12:01]: @@@@@@@@@@@@@@@@@@@@ summary 196s require PASS 196s smoketest PASS 196s unittest PASS 196s autopkgtest: DBG: testbed stop 196s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.cAVQ9K 196s autopkgtest: DBG: sending command to testbed: close 213s autopkgtest: DBG: got reply from testbed: ok 213s autopkgtest: DBG: sending command to testbed: quit 213s nova [W] Using flock in prodstack6-s390x 213s flock: timeout while waiting to get lock 213s Creating nova instance adt-plucky-s390x-node-opencv-20250216-010844-juju-7f2275-prod-proposed-migration-environment-15-57408ebf-be22-4513-af80-d2ace0b083bd from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 213s nova [W] Timed out waiting for ce7e15ce-7e3c-49c5-9f94-0ab14a6ea56d to get deleted.