0s autopkgtest: DBG: testbed init 0s autopkgtest [12:06:54]: starting date and time: 2025-02-19 12:06:54+0000 0s autopkgtest [12:06:54]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [12:06:54]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.t3r0l3uo/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:sphinx --apt-upgrade flycheck --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-29.secgroup --name adt-plucky-s390x-flycheck-20250219-120654-juju-7f2275-prod-proposed-migration-environment-15-0283ce47-387a-4158-a8a7-7d543c4999f4 --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 117s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.Cp90Zb 117s autopkgtest: DBG: sending command to testbed: print-execute-command 117s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.hjhcw0rv/runcmd 117s autopkgtest: DBG: sending command to testbed: capabilities 117s autopkgtest: DBG: got reply from testbed: ok revert suggested-normal-user=ubuntu isolation-machine reboot revert-full-system root-on-testbed 117s autopkgtest: DBG: testbed capabilities: ['revert', 'suggested-normal-user=ubuntu', 'isolation-machine', 'reboot', 'revert-full-system', 'root-on-testbed', 'has_internet'] 117s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Cp90Zb'], kind short, sout raw, serr pipe, env [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.Cp90Zb/wrapper.sh 117s autopkgtest: DBG: got reply from testbed: ok 117s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Cp90Zb/wrapper.sh'], kind short, sout raw, serr pipe, env [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest [12:08:51]: testbed dpkg architecture: s390x 117s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest [12:08:51]: testbed apt version: 2.9.30 117s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest: DBG: testbed has eatmydata 118s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest [12:08:52]: @@@@@@@@@@@@@@@@@@@@ test bed setup 118s 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 [] 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest [12:08:52]: testbed release detected to be: None 118s 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 [] 118s autopkgtest: DBG: testbed command exited with code 0 118s 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 [] 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest: DBG: adding APT source: Types: deb deb-src 118s URIs: http://ftpmaster.internal/ubuntu/ 118s Suites: plucky-proposed 118s Components: main restricted universe multiverse 118s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 118s 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 [] 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 118s Package: * 118s Pin: release plucky-proposed 118s Pin-Priority: 500 118s 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 [] 119s autopkgtest: DBG: testbed command exited with code 0 119s autopkgtest [12:08:53]: updating testbed package index (apt update) 119s 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'] 119s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 119s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 119s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 119s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 119s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 119s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 119s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 119s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 120s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 120s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 120s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 120s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 120s Fetched 1700 kB in 2s (1016 kB/s) 121s Reading package lists... 121s autopkgtest: DBG: testbed command exited with code 0 121s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 121s Package: * 121s Pin: release plucky-proposed 121s Pin-Priority: 100 121s 121s Package: src:sphinx:any 121s Pin: release plucky-proposed 121s Pin-Priority: 995 121s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:sphinx:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 121s autopkgtest: DBG: testbed command exited with code 0 121s 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.Cp90Zb/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 121s autopkgtest: DBG: testbed command exited with code 0 121s 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'] 122s + lsb_release --codename --short 122s + RELEASE=plucky 122s + cat 122s + [ plucky != trusty ] 122s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 122s Reading package lists... 122s Building dependency tree... 122s Reading state information... 122s Calculating upgrade... 122s The following packages were automatically installed and are no longer required: 122s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 122s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 122s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 122s linux-tools-6.11.0-8-generic 122s Use 'sudo apt autoremove' to remove them. 122s The following packages will be upgraded: 122s iproute2 liblsof0 libp11-kit0 lsof 122s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 122s Need to get 1791 kB of archives. 122s After this operation, 17.4 kB of additional disk space will be used. 122s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 123s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 123s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 123s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 124s Preconfiguring packages ... 124s Fetched 1791 kB in 1s (1261 kB/s) 124s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 124s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 124s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 124s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 124s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 124s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 124s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 124s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 124s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 124s Setting up liblsof0 (4.99.4+dfsg-1) ... 124s Setting up iproute2 (6.13.0-1ubuntu1) ... 124s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 124s Setting up lsof (4.99.4+dfsg-1) ... 124s Processing triggers for man-db (2.13.0-1) ... 125s Processing triggers for libc-bin (2.40-4ubuntu1) ... 125s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 125s + /usr/lib/apt/apt-helper analyze-pattern ?true 125s + uname -r 125s + sed s/\./\\./g 125s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 125s + apt list ?obsolete 125s + tail -n+2 125s + cut -d/ -f1 125s + grep -v ^linux-.*6\.12\.0-15-generic.* 125s + true 125s + obsolete_pkgs= 125s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 125s Reading package lists... 125s Building dependency tree... 125s Reading state information... 126s The following packages will be REMOVED: 126s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 126s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 126s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 126s linux-tools-6.11.0-8-generic* 126s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 126s After this operation, 167 MB disk space will be freed. 126s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81031 files and directories currently installed.) 126s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 126s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 126s Removing libpython3.12t64:s390x (3.12.9-1) ... 126s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 126s Removing libnsl2:s390x (1.3.0-3build3) ... 126s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 126s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 126s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 127s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 127s Processing triggers for libc-bin (2.40-4ubuntu1) ... 127s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55931 files and directories currently installed.) 127s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 127s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 127s + grep -q trusty /etc/lsb-release 127s + [ ! -d /usr/share/doc/unattended-upgrades ] 127s + [ ! -d /usr/share/doc/lxd ] 127s + [ ! -d /usr/share/doc/lxd-client ] 127s + [ ! -d /usr/share/doc/snapd ] 127s + type iptables 127s + cat 127s + chmod 755 /etc/rc.local 127s + . /etc/rc.local 127s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 127s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 127s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 127s + uname -m 127s + [ s390x = ppc64le ] 127s + [ -d /run/systemd/system ] 127s + systemd-detect-virt --quiet --vm 127s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 127s + cat 127s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 127s + echo COMPRESS=lz4 127s autopkgtest: DBG: testbed command exited with code 0 127s autopkgtest [12:09:01]: upgrading testbed (apt dist-upgrade and autopurge) 127s 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'] 128s Reading package lists... 128s Building dependency tree... 128s Reading state information... 128s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 128s Starting 2 pkgProblemResolver with broken count: 0 128s Done 130s Entering ResolveByKeep 130s autopkgtest: DBG: testbed command exited with code 0 130s 130s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 130s Reading package lists... 130s Building dependency tree... 130s Reading state information... 130s Starting pkgProblemResolver with broken count: 0 130s Starting 2 pkgProblemResolver with broken count: 0 130s Done 130s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 130s 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'] 130s autopkgtest: DBG: testbed command exited with code 0 130s 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.Cp90Zb/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 130s autopkgtest: DBG: testbed command exited with code 1 130s autopkgtest [12:09:03]: rebooting testbed after setup commands that affected boot 130s autopkgtest: DBG: sending command to testbed: reboot 148s autopkgtest: DBG: got reply from testbed: ok 148s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 148s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Cp90Zb'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.Cp90Zb/autopkgtest-reboot 148s autopkgtest: DBG: got reply from testbed: ok 148s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Cp90Zb/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Cp90Zb/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Cp90Zb/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Cp90Zb'], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.Cp90Zb/autopkgtest-reboot-prepare 149s autopkgtest: DBG: got reply from testbed: ok 149s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Cp90Zb/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Cp90Zb/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest [12:09:23]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 149s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.Cp90Zb/testbed-packages"], kind short, sout raw, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Cp90Zb/testbed-packages /tmp/autopkgtest-work.t3r0l3uo/out/testbed-packages 150s autopkgtest: DBG: got reply from testbed: ok 150s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 150s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Cp90Zb'], kind short, sout raw, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.Cp90Zb/autopkgtest-reboot 150s autopkgtest: DBG: got reply from testbed: ok 150s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Cp90Zb/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Cp90Zb/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Cp90Zb/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Cp90Zb'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.Cp90Zb/autopkgtest-reboot-prepare 151s autopkgtest: DBG: got reply from testbed: ok 151s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Cp90Zb/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Cp90Zb/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: Binaries: initialising 152s autopkgtest [12:09:26]: @@@@@@@@@@@@@@@@@@@@ apt-source flycheck 152s autopkgtest: DBG: blame += flycheck 152s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 152s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'flycheck'], kind short, sout pipe, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^flycheck-doc$'], kind short, sout pipe, serr raw, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'flycheck-doc=33~git20230824.e56e30d-2'], kind short, sout pipe, serr raw, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^elpa-flycheck$'], kind short, sout pipe, serr raw, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'elpa-flycheck=33~git20230824.e56e30d-2'], kind short, sout pipe, serr raw, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: install_deps: deps_new=[] 153s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s 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.Cp90Zb/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source flycheck=33~git20230824.e56e30d-2 2>&1) || RC=$?;if [ -n "$RC" ]; then if echo "$OUT" | grep -q "Unable to find a source package"; then exit 1; else exit $RC; fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x flycheck_*.dsc src >/dev/null; chmod -R a+rX .; cd [a-z0-9]*/.; pwd >&3; sed -n "1 {s/).*//; s/ (/\\n/; p}" debian/changelog >&3\''], kind build, sout pipe, serr raw, env ['ADT_TEST_TRIGGERS=sphinx/8.1.3-5'] 153s + cd / 153s + mktemp -d /tmp/autopkgtest.Cp90Zb/build.XXX 153s + builddir=/tmp/autopkgtest.Cp90Zb/build.spP 153s + cd /tmp/autopkgtest.Cp90Zb/build.spP 153s + apt-get source -d -q --only-source flycheck=33~git20230824.e56e30d-2 154s + OUT=Reading package lists... 154s NOTICE: 'flycheck' packaging is maintained in the 'Git' version control system at: 154s https://salsa.debian.org/emacsen-team/flycheck.git 154s Please use: 154s git clone https://salsa.debian.org/emacsen-team/flycheck.git 154s to retrieve the latest (possibly unreleased) updates to the package. 154s Need to get 983 kB of source archives. 154s Get:1 http://ftpmaster.internal/ubuntu plucky/universe flycheck 33~git20230824.e56e30d-2 (dsc) [2332 B] 154s Get:2 http://ftpmaster.internal/ubuntu plucky/universe flycheck 33~git20230824.e56e30d-2 (tar) [959 kB] 154s Get:3 http://ftpmaster.internal/ubuntu plucky/universe flycheck 33~git20230824.e56e30d-2 (diff) [21.7 kB] 154s Fetched 983 kB in 1s (972 kB/s) 154s Download complete and in download only mode 154s + [ -n ] 154s + echo Reading package lists... 154s NOTICE: 'flycheck' packaging is maintained in the 'Git' version control system at: 154s https://salsa.debian.org/emacsen-team/flycheck.git 154s Please use: 154s git clone https://salsa.debian.org/emacsen-team/flycheck.git 154s to retrieve the latest (possibly unreleased) updates to the package. 154s Need to get 983 kB of source archives. 154s Get:1 http://ftpmaster.internal/ubuntu plucky/universe flycheck 33~git20230824.e56e30d-2 (dsc) [2332 B] 154s Get:2 http://ftpmaster.internal/ubuntu plucky/universe flycheck 33~git20230824.e56e30d-2 (tar) [959 kB] 154s Get:3 http://ftpmaster.internal/ubuntu plucky/universe flycheck 33~git20230824.e56e30d-2 (diff) [21.7 kB] 154s Fetched 983 kB in 1s (972 kB/s) 154s Download complete and in download only mode 154s + grep ^Get: 154s Get:1 http://ftpmaster.internal/ubuntu plucky/universe flycheck 33~git20230824.e56e30d-2 (dsc) [2332 B] 154s Get:2 http://ftpmaster.internal/ubuntu plucky/universe flycheck 33~git20230824.e56e30d-2 (tar) [959 kB] 154s Get:3 http://ftpmaster.internal/ubuntu plucky/universe flycheck 33~git20230824.e56e30d-2 (diff) [21.7 kB] 154s + dpkg-source -x flycheck_33~git20230824.e56e30d-2.dsc src 154s gpgv: Signature made Thu Oct 5 23:53:02 2023 UTC 154s gpgv: using RSA key E2A6261E3900AED7CDC667085A8830475F7D1061 154s gpgv: Can't check signature: No public key 154s dpkg-source: warning: cannot verify inline signature for ./flycheck_33~git20230824.e56e30d-2.dsc: no acceptable signature found 154s + chmod -R a+rX . 154s + cd src/. 154s + pwd 154s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest [12:09:29]: testing package flycheck version 33~git20230824.e56e30d-2 155s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Cp90Zb/build.spP/src/debian/ /tmp/autopkgtest-work.t3r0l3uo/out/pkg/debian/ 155s autopkgtest: DBG: got reply from testbed: ok 155s autopkgtest: DBG: autodep8 generated control: ----- 155s Test-Command: dh_elpa_test --autopkgtest 155s Depends: @, @builddeps@, 155s Restrictions: rw-build-tree, 155s Features: test-name=dh-elpa-test-autopkgtest 155s 155s ------- 155s autopkgtest: DBG: processing dependency @ 155s autopkgtest: DBG: synthesised dependency elpa-flycheck 155s autopkgtest: DBG: synthesised dependency flycheck-doc 155s autopkgtest: DBG: processing dependency @builddeps@ 155s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 155s autopkgtest: DBG: synthesised dependency dh-elpa (>= 1.7) 155s autopkgtest: DBG: synthesised dependency elpa-buttercup (>= 1.31~) 155s autopkgtest: DBG: synthesised dependency elpa-dash 155s autopkgtest: DBG: synthesised dependency elpa-f 155s autopkgtest: DBG: synthesised dependency elpa-let-alist 155s autopkgtest: DBG: synthesised dependency elpa-seq 155s autopkgtest: DBG: synthesised dependency elpa-shut-up 155s autopkgtest: DBG: synthesised dependency elpa-haskell-mode 155s autopkgtest: DBG: synthesised dependency python3-sphinx 155s autopkgtest: DBG: synthesised dependency python3-minimal 155s autopkgtest: DBG: synthesised dependency build-essential 155s autopkgtest: DBG: Test defined: name dh-elpa-test-autopkgtest path None command "dh_elpa_test --autopkgtest" restrictions ['rw-build-tree'] features ['test-name=dh-elpa-test-autopkgtest'] depends ['elpa-flycheck', 'flycheck-doc', 'debhelper-compat (= 13)', 'dh-elpa (>= 1.7)', 'elpa-buttercup (>= 1.31~)', 'elpa-dash', 'elpa-f', 'elpa-let-alist', 'elpa-seq', 'elpa-shut-up', 'elpa-haskell-mode', 'python3-sphinx', 'python3-minimal', 'build-essential'] 155s autopkgtest [12:09:29]: build not needed 155s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Cp90Zb/build.spP/src/ /tmp/autopkgtest-work.t3r0l3uo/out/tests-tree/ 155s autopkgtest: DBG: got reply from testbed: ok 155s autopkgtest: DBG: autodep8 generated control: ----- 155s Test-Command: dh_elpa_test --autopkgtest 155s Depends: @, @builddeps@, 155s Restrictions: rw-build-tree, 155s Features: test-name=dh-elpa-test-autopkgtest 155s 155s ------- 155s autopkgtest: DBG: processing dependency @ 155s autopkgtest: DBG: synthesised dependency elpa-flycheck 155s autopkgtest: DBG: synthesised dependency flycheck-doc 155s autopkgtest: DBG: processing dependency @builddeps@ 155s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 155s autopkgtest: DBG: synthesised dependency dh-elpa (>= 1.7) 155s autopkgtest: DBG: synthesised dependency elpa-buttercup (>= 1.31~) 155s autopkgtest: DBG: synthesised dependency elpa-dash 155s autopkgtest: DBG: synthesised dependency elpa-f 155s autopkgtest: DBG: synthesised dependency elpa-let-alist 155s autopkgtest: DBG: synthesised dependency elpa-seq 155s autopkgtest: DBG: synthesised dependency elpa-shut-up 155s autopkgtest: DBG: synthesised dependency elpa-haskell-mode 155s autopkgtest: DBG: synthesised dependency python3-sphinx 155s autopkgtest: DBG: synthesised dependency python3-minimal 155s autopkgtest: DBG: synthesised dependency build-essential 155s autopkgtest: DBG: Test defined: name dh-elpa-test-autopkgtest path None command "dh_elpa_test --autopkgtest" restrictions ['rw-build-tree'] features ['test-name=dh-elpa-test-autopkgtest'] depends ['elpa-flycheck', 'flycheck-doc', 'debhelper-compat (= 13)', 'dh-elpa (>= 1.7)', 'elpa-buttercup (>= 1.31~)', 'elpa-dash', 'elpa-f', 'elpa-let-alist', 'elpa-seq', 'elpa-shut-up', 'elpa-haskell-mode', 'python3-sphinx', 'python3-minimal', 'build-essential'] 155s autopkgtest [12:09:29]: test dh-elpa-test-autopkgtest: preparing testbed 155s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['elpa-flycheck', 'flycheck-doc', 'debhelper-compat (= 13)', 'dh-elpa (>= 1.7)', 'elpa-buttercup (>= 1.31~)', 'elpa-dash', 'elpa-f', 'elpa-let-alist', 'elpa-seq', 'elpa-shut-up', 'elpa-haskell-mode', 'python3-sphinx', 'python3-minimal', 'build-essential'] 155s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 155s autopkgtest: DBG: install_deps: deps_new=['elpa-flycheck', 'flycheck-doc', 'debhelper-compat (= 13)', 'dh-elpa (>= 1.7)', 'elpa-buttercup (>= 1.31~)', 'elpa-dash', 'elpa-f', 'elpa-let-alist', 'elpa-seq', 'elpa-shut-up', 'elpa-haskell-mode', 'python3-sphinx', 'python3-minimal', 'build-essential'] 155s autopkgtest: DBG: install-deps: satisfying elpa-flycheck, flycheck-doc, debhelper-compat (= 13), dh-elpa (>= 1.7), elpa-buttercup (>= 1.31~), elpa-dash, elpa-f, elpa-let-alist, elpa-seq, elpa-shut-up, elpa-haskell-mode, python3-sphinx, python3-minimal, build-essential 155s autopkgtest: DBG: can use apt-get on testbed: True 155s 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', 'elpa-flycheck, flycheck-doc, debhelper-compat (= 13), dh-elpa (>= 1.7), elpa-buttercup (>= 1.31~), elpa-dash, elpa-f, elpa-let-alist, elpa-seq, elpa-shut-up, elpa-haskell-mode, python3-sphinx, python3-minimal, build-essential'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 156s Reading package lists... 156s Building dependency tree... 156s Reading state information... 156s Starting pkgProblemResolver with broken count: 0 156s Starting 2 pkgProblemResolver with broken count: 0 156s Done 156s The following NEW packages will be installed: 156s adwaita-icon-theme at-spi2-common autoconf automake autopoint autotools-dev 156s build-essential cpp cpp-14 cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu 156s dconf-gsettings-backend dconf-service debhelper debugedit dh-autoreconf 156s dh-elpa dh-elpa-helper dh-strip-nondeterminism docutils-common dwz 156s elpa-buttercup elpa-dash elpa-epl elpa-f elpa-flycheck elpa-haskell-mode 156s elpa-let-alist elpa-pkg-info elpa-s elpa-seq elpa-shut-up emacs 156s emacs-bin-common emacs-common emacs-el emacs-gtk emacsen-common flycheck-doc 156s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono g++ g++-14 156s g++-14-s390x-linux-gnu g++-s390x-linux-gnu gcc gcc-14 gcc-14-s390x-linux-gnu 156s gcc-s390x-linux-gnu gettext gtk-update-icon-cache hicolor-icon-theme 156s intltool-debian libaom3 libapt-pkg-perl libarchive-zip-perl 156s libarray-unique-perl libarray-utils-perl libasan8 libasound2-data 156s libasound2t64 libatk-bridge2.0-0t64 libatk1.0-0t64 libatspi2.0-0t64 156s libavahi-client3 libavahi-common-data libavahi-common3 libcairo-gobject2 156s libcairo2 libcc1-0 libcgi-pm-perl libclass-accessor-perl libclone-perl 156s libcolord2 libconfig-tiny-perl libcups2t64 libdatrie1 libdconf1 libde265-0 156s libdebhelper-perl libdebian-source-perl libdeflate0 libencode-locale-perl 156s libepoxy0 liberror-perl libexporter-lite-perl libexporter-tiny-perl 156s libfile-find-rule-perl libfile-listing-perl libfile-stripnondeterminism-perl 156s libfontconfig1 libfreetype6 libgcc-14-dev libgd3 libgdk-pixbuf-2.0-0 156s libgdk-pixbuf2.0-common libgif7 libgomp1 libgraphite2-3 libgtk-3-0t64 156s libgtk-3-common libharfbuzz0b libheif-plugin-aomdec libheif-plugin-libde265 156s libheif1 libhtml-form-perl libhtml-parser-perl libhtml-tagset-perl 156s libhtml-tree-perl libhttp-cookies-perl libhttp-date-perl 156s libhttp-message-perl libhttp-negotiate-perl libice6 libimagequant0 156s libio-html-perl libio-socket-ssl-perl libio-stringy-perl libisl23 libitm1 156s libjbig0 libjpeg-turbo8 libjpeg8 libjs-jquery libjs-sphinxdoc 156s libjs-underscore libjson-perl liblcms2-2 liblist-moreutils-perl 156s liblist-moreutils-xs-perl liblwp-mediatypes-perl liblwp-protocol-https-perl 156s libm17n-0 libmpc3 libnet-http-perl libnet-ssleay-perl libnumber-compare-perl 156s libotf1 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 156s libparse-debcontrol-perl libpixman-1-0 libraqm0 librsvg2-2 libsharpyuv0 156s libsm6 libstdc++-14-dev libsub-install-perl libsub-name-perl 156s libtext-glob-perl libthai-data libthai0 libtie-ixhash-perl libtiff6 156s libtimedate-perl libtool libtree-sitter0 libtry-tiny-perl libubsan1 156s liburi-perl libwayland-client0 libwayland-cursor0 libwayland-egl1 libwebp7 156s libwebpdecoder3 libwebpdemux2 libwww-mechanize-perl libwww-perl 156s libwww-robotrules-perl libxcb-render0 libxcb-shm0 libxcomposite1 libxcursor1 156s libxdamage1 libxfixes3 libxft2 libxi6 libxinerama1 libxpm4 libxrandr2 156s libxrender1 libxt6t64 m17n-db m4 perl-openssl-defaults po-debconf 156s python3-alabaster python3-defusedxml python3-docutils python3-imagesize 156s python3-packaging python3-roman python3-snowballstemmer python3-sphinx 156s sgml-base sphinx-common x11-common xml-core 157s 0 upgraded, 201 newly installed, 0 to remove and 0 not upgraded. 157s Need to get 117 MB of archives. 157s After this operation, 388 MB of additional disk space will be used. 157s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x sgml-base all 1.31 [11.4 kB] 157s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libgdk-pixbuf2.0-common all 2.42.12+dfsg-2 [8004 B] 157s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 157s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 157s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 157s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 157s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 157s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 157s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 157s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libgdk-pixbuf-2.0-0 s390x 2.42.12+dfsg-2 [154 kB] 157s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x gtk-update-icon-cache s390x 4.17.4+ds-4 [52.9 kB] 157s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x hicolor-icon-theme all 0.18-2 [13.3 kB] 157s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x adwaita-icon-theme all 48~beta-3 [578 kB] 158s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x at-spi2-common all 2.55.2-1 [8916 B] 158s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 158s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 158s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 158s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 158s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 159s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 159s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 159s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 160s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 160s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 160s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 160s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 15-20250213-1ubuntu1 [49.2 kB] 160s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 160s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 15-20250213-1ubuntu1 [31.2 kB] 160s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 15-20250213-1ubuntu1 [2970 kB] 161s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 15-20250213-1ubuntu1 [1213 kB] 161s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 161s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 162s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 162s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 162s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 162s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 162s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 162s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 162s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 162s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 162s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 162s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libdconf1 s390x 0.40.0-5 [40.0 kB] 162s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x dconf-service s390x 0.40.0-5 [28.4 kB] 162s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x dconf-gsettings-backend s390x 0.40.0-5 [22.8 kB] 162s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 162s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 162s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 162s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 162s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 162s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 162s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 162s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 162s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 162s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 162s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 162s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 163s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libapt-pkg-perl s390x 0.1.40build8 [70.7 kB] 163s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libtie-ixhash-perl all 1.23-4 [11.3 kB] 163s Get:59 http://ftpmaster.internal/ubuntu plucky/universe s390x libarray-unique-perl all 0.09-1 [12.2 kB] 163s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libsub-name-perl s390x 0.28-1 [10.8 kB] 163s Get:61 http://ftpmaster.internal/ubuntu plucky/universe s390x libclass-accessor-perl all 0.51-2 [21.4 kB] 163s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libexporter-tiny-perl all 1.006002-1 [36.8 kB] 163s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x liblist-moreutils-xs-perl s390x 0.430-4build1 [45.3 kB] 163s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x liblist-moreutils-perl all 0.430-2 [38.2 kB] 163s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x libio-stringy-perl all 2.113-2 [45.3 kB] 163s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x libencode-locale-perl all 1.05-3 [11.6 kB] 163s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x libtimedate-perl all 2.3300-2 [34.0 kB] 163s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x libhttp-date-perl all 6.06-1 [10.2 kB] 163s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-listing-perl all 6.16-1 [11.3 kB] 163s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x libhtml-tagset-perl all 3.24-1 [14.1 kB] 163s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x liburi-perl all 5.30-1 [94.4 kB] 163s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x libhtml-parser-perl s390x 3.83-1build1 [87.8 kB] 163s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x libhtml-tree-perl all 5.07-3 [200 kB] 163s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x libclone-perl s390x 0.47-1 [10.7 kB] 163s Get:75 http://ftpmaster.internal/ubuntu plucky/main s390x libio-html-perl all 1.004-3 [15.9 kB] 163s Get:76 http://ftpmaster.internal/ubuntu plucky/main s390x liblwp-mediatypes-perl all 6.04-2 [20.1 kB] 163s Get:77 http://ftpmaster.internal/ubuntu plucky/main s390x libhttp-message-perl all 7.00-2ubuntu1 [75.9 kB] 163s Get:78 http://ftpmaster.internal/ubuntu plucky/main s390x libhttp-cookies-perl all 6.11-1 [18.2 kB] 163s Get:79 http://ftpmaster.internal/ubuntu plucky/main s390x libhttp-negotiate-perl all 6.01-2 [12.4 kB] 163s Get:80 http://ftpmaster.internal/ubuntu plucky/main s390x perl-openssl-defaults s390x 7build3 [6628 B] 163s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x libnet-ssleay-perl s390x 1.94-2 [319 kB] 163s Get:82 http://ftpmaster.internal/ubuntu plucky/main s390x libio-socket-ssl-perl all 2.089-1 [200 kB] 163s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x libnet-http-perl all 6.23-1 [22.3 kB] 163s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x liblwp-protocol-https-perl all 6.14-1 [9040 B] 163s Get:85 http://ftpmaster.internal/ubuntu plucky/main s390x libtry-tiny-perl all 0.32-1 [21.2 kB] 163s Get:86 http://ftpmaster.internal/ubuntu plucky/main s390x libwww-robotrules-perl all 6.02-1 [12.6 kB] 163s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x libwww-perl all 6.77-1 [138 kB] 163s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x liberror-perl all 0.17029-2 [25.6 kB] 163s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x libexporter-lite-perl all 0.09-2 [9748 B] 163s Get:90 http://ftpmaster.internal/ubuntu plucky/universe s390x libparse-debcontrol-perl all 2.005-6 [20.4 kB] 163s Get:91 http://ftpmaster.internal/ubuntu plucky/main s390x libsub-install-perl all 0.929-1 [9764 B] 163s Get:92 http://ftpmaster.internal/ubuntu plucky/main s390x libcgi-pm-perl all 4.67-1 [185 kB] 163s Get:93 http://ftpmaster.internal/ubuntu plucky/main s390x libhtml-form-perl all 6.12-1 [31.1 kB] 163s Get:94 http://ftpmaster.internal/ubuntu plucky/main s390x libwww-mechanize-perl all 2.18-1ubuntu1 [93.1 kB] 163s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x libdebian-source-perl all 0.126 [53.5 kB] 163s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x emacs-el all 1:29.4+1-5ubuntu1 [18.7 MB] 164s Get:97 http://ftpmaster.internal/ubuntu plucky/main s390x emacsen-common all 3.0.5 [12.1 kB] 164s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x emacs-common all 1:29.4+1-5ubuntu1 [16.0 MB] 165s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x emacs-bin-common s390x 1:29.4+1-5ubuntu1 [109 kB] 165s Get:100 http://ftpmaster.internal/ubuntu plucky/main s390x libasound2-data all 1.2.13-1build1 [21.1 kB] 165s Get:101 http://ftpmaster.internal/ubuntu plucky/main s390x libasound2t64 s390x 1.2.13-1build1 [411 kB] 165s Get:102 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 165s Get:103 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 165s Get:104 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 165s Get:105 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 165s Get:106 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 165s Get:107 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-0 s390x 0.44.0-3 [201 kB] 165s Get:108 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 165s Get:109 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 165s Get:110 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 165s Get:111 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo2 s390x 1.18.2-2 [580 kB] 165s Get:112 http://ftpmaster.internal/ubuntu plucky/main s390x libgif7 s390x 5.2.2-1ubuntu1 [38.0 kB] 165s Get:113 http://ftpmaster.internal/ubuntu plucky/main s390x libatk1.0-0t64 s390x 2.55.2-1 [54.8 kB] 165s Get:114 http://ftpmaster.internal/ubuntu plucky/main s390x libxi6 s390x 2:1.8.2-1 [35.4 kB] 166s Get:115 http://ftpmaster.internal/ubuntu plucky/main s390x libatspi2.0-0t64 s390x 2.55.2-1 [80.3 kB] 166s Get:116 http://ftpmaster.internal/ubuntu plucky/main s390x libatk-bridge2.0-0t64 s390x 2.55.2-1 [66.7 kB] 166s Get:117 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo-gobject2 s390x 1.18.2-2 [127 kB] 166s Get:118 http://ftpmaster.internal/ubuntu plucky/main s390x liblcms2-2 s390x 2.16-2 [175 kB] 166s Get:119 http://ftpmaster.internal/ubuntu plucky/main s390x libcolord2 s390x 1.4.7-1build2 [151 kB] 166s Get:120 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-common-data s390x 0.8-14ubuntu1 [30.5 kB] 166s Get:121 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-common3 s390x 0.8-14ubuntu1 [23.6 kB] 166s Get:122 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-client3 s390x 0.8-14ubuntu1 [26.8 kB] 166s Get:123 http://ftpmaster.internal/ubuntu plucky/main s390x libcups2t64 s390x 2.4.11-0ubuntu2 [282 kB] 166s Get:124 http://ftpmaster.internal/ubuntu plucky/main s390x libepoxy0 s390x 1.5.10-2 [222 kB] 166s Get:125 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 166s Get:126 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 166s Get:127 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 166s Get:128 http://ftpmaster.internal/ubuntu plucky/main s390x libthai-data all 0.1.29-2build1 [158 kB] 166s Get:129 http://ftpmaster.internal/ubuntu plucky/main s390x libdatrie1 s390x 0.2.13-3build1 [20.6 kB] 166s Get:130 http://ftpmaster.internal/ubuntu plucky/main s390x libthai0 s390x 0.1.29-2build1 [20.7 kB] 166s Get:131 http://ftpmaster.internal/ubuntu plucky/main s390x libpango-1.0-0 s390x 1.56.1-1 [253 kB] 166s Get:132 http://ftpmaster.internal/ubuntu plucky/main s390x libpangoft2-1.0-0 s390x 1.56.1-1 [50.3 kB] 166s Get:133 http://ftpmaster.internal/ubuntu plucky/main s390x libpangocairo-1.0-0 s390x 1.56.1-1 [28.3 kB] 166s Get:134 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-1 [27.8 kB] 166s Get:135 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-cursor0 s390x 1.23.1-1 [11.5 kB] 166s Get:136 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-egl1 s390x 1.23.1-1 [5654 B] 166s Get:137 http://ftpmaster.internal/ubuntu plucky/main s390x libxcomposite1 s390x 1:0.4.6-1 [6588 B] 166s Get:138 http://ftpmaster.internal/ubuntu plucky/main s390x libxfixes3 s390x 1:6.0.0-2build1 [11.3 kB] 166s Get:139 http://ftpmaster.internal/ubuntu plucky/main s390x libxcursor1 s390x 1:1.2.3-1 [23.4 kB] 166s Get:140 http://ftpmaster.internal/ubuntu plucky/main s390x libxdamage1 s390x 1:1.1.6-1build1 [6156 B] 166s Get:141 http://ftpmaster.internal/ubuntu plucky/main s390x libxinerama1 s390x 2:1.1.4-3build1 [6476 B] 166s Get:142 http://ftpmaster.internal/ubuntu plucky/main s390x libxrandr2 s390x 2:1.5.4-1 [20.8 kB] 166s Get:143 http://ftpmaster.internal/ubuntu plucky/main s390x libgtk-3-common all 3.24.48-3ubuntu1 [1424 kB] 166s Get:144 http://ftpmaster.internal/ubuntu plucky/main s390x libgtk-3-0t64 s390x 3.24.48-3ubuntu1 [2949 kB] 166s Get:145 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 166s Get:146 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 166s Get:147 http://ftpmaster.internal/ubuntu plucky/main s390x m17n-db all 1.8.9-1 [1585 kB] 166s Get:148 http://ftpmaster.internal/ubuntu plucky/main s390x libaom3 s390x 3.12.0-1 [1492 kB] 166s Get:149 http://ftpmaster.internal/ubuntu plucky/main s390x libheif-plugin-aomdec s390x 1.19.5-1build1 [11.6 kB] 166s Get:150 http://ftpmaster.internal/ubuntu plucky/main s390x libde265-0 s390x 1.0.15-1build4 [175 kB] 166s Get:151 http://ftpmaster.internal/ubuntu plucky/main s390x libheif-plugin-libde265 s390x 1.19.5-1build1 [9066 B] 166s Get:152 http://ftpmaster.internal/ubuntu plucky/main s390x libheif1 s390x 1.19.5-1build1 [410 kB] 166s Get:153 http://ftpmaster.internal/ubuntu plucky/main s390x libimagequant0 s390x 2.18.0-1build1 [43.3 kB] 166s Get:154 http://ftpmaster.internal/ubuntu plucky/main s390x libraqm0 s390x 0.10.2-1 [15.8 kB] 166s Get:155 http://ftpmaster.internal/ubuntu plucky/main s390x libxpm4 s390x 1:3.5.17-1build2 [41.2 kB] 166s Get:156 http://ftpmaster.internal/ubuntu plucky/main s390x libgd3 s390x 2.3.3-12ubuntu3 [141 kB] 166s Get:157 http://ftpmaster.internal/ubuntu plucky/main s390x libotf1 s390x 0.9.16-4build2 [53.3 kB] 166s Get:158 http://ftpmaster.internal/ubuntu plucky/main s390x libxft2 s390x 2.3.6-1build1 [49.6 kB] 166s Get:159 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 166s Get:160 http://ftpmaster.internal/ubuntu plucky/main s390x libxt6t64 s390x 1:1.2.1-1.2build1 [184 kB] 166s Get:161 http://ftpmaster.internal/ubuntu plucky/main s390x libm17n-0 s390x 1.8.4-2 [283 kB] 166s Get:162 http://ftpmaster.internal/ubuntu plucky/main s390x librsvg2-2 s390x 2.59.90+dfsg-2 [1986 kB] 167s Get:163 http://ftpmaster.internal/ubuntu plucky/universe s390x libtree-sitter0 s390x 0.20.8-2 [87.1 kB] 167s Get:164 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpdecoder3 s390x 1.5.0-0.1 [90.2 kB] 167s Get:165 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpdemux2 s390x 1.5.0-0.1 [12.6 kB] 167s Get:166 http://ftpmaster.internal/ubuntu plucky/universe s390x emacs-gtk s390x 1:29.4+1-5ubuntu1 [4342 kB] 167s Get:167 http://ftpmaster.internal/ubuntu plucky/universe s390x emacs all 1:29.4+1-5ubuntu1 [20.8 kB] 167s Get:168 http://ftpmaster.internal/ubuntu plucky/universe s390x libarray-utils-perl all 0.5-3 [5862 B] 167s Get:169 http://ftpmaster.internal/ubuntu plucky/main s390x libconfig-tiny-perl all 2.30-1 [14.7 kB] 167s Get:170 http://ftpmaster.internal/ubuntu plucky/main s390x libnumber-compare-perl all 0.03-3 [5974 B] 167s Get:171 http://ftpmaster.internal/ubuntu plucky/main s390x libtext-glob-perl all 0.11-3 [6780 B] 167s Get:172 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-find-rule-perl all 0.34-3 [24.4 kB] 167s Get:173 http://ftpmaster.internal/ubuntu plucky/universe s390x dh-elpa all 2.1.5ubuntu1 [30.7 kB] 167s Get:174 http://ftpmaster.internal/ubuntu plucky/universe s390x dh-elpa-helper all 2.1.5ubuntu1 [9054 B] 167s Get:175 http://ftpmaster.internal/ubuntu plucky/main s390x xml-core all 0.19 [20.3 kB] 167s Get:176 http://ftpmaster.internal/ubuntu plucky/main s390x docutils-common all 0.21.2+dfsg-2 [131 kB] 167s Get:177 http://ftpmaster.internal/ubuntu plucky/universe s390x elpa-buttercup all 1.37-1 [48.1 kB] 167s Get:178 http://ftpmaster.internal/ubuntu plucky/universe s390x elpa-epl all 0.9-7 [10.4 kB] 167s Get:179 http://ftpmaster.internal/ubuntu plucky/universe s390x elpa-s all 1.13.0-2 [18.2 kB] 167s Get:180 http://ftpmaster.internal/ubuntu plucky/universe s390x elpa-dash all 2.19.1+git20240510.1de9dcb+dfsg-1 [64.2 kB] 167s Get:181 http://ftpmaster.internal/ubuntu plucky/universe s390x elpa-f all 0.21.0-1 [19.7 kB] 167s Get:182 http://ftpmaster.internal/ubuntu plucky/universe s390x elpa-pkg-info all 0.6-7 [6818 B] 167s Get:183 http://ftpmaster.internal/ubuntu plucky/universe s390x elpa-let-alist all 1.0.6-3 [5476 B] 167s Get:184 http://ftpmaster.internal/ubuntu plucky/universe s390x elpa-seq all 2.24-2 [12.1 kB] 167s Get:185 http://ftpmaster.internal/ubuntu plucky/universe s390x elpa-flycheck all 33~git20230824.e56e30d-2 [330 kB] 167s Get:186 http://ftpmaster.internal/ubuntu plucky/universe s390x elpa-haskell-mode all 17.5-2 [187 kB] 167s Get:187 http://ftpmaster.internal/ubuntu plucky/universe s390x elpa-shut-up all 0.3.3-5 [6090 B] 167s Get:188 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 167s Get:189 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB] 167s Get:190 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libjs-sphinxdoc all 8.1.3-5 [31.0 kB] 167s Get:191 http://ftpmaster.internal/ubuntu plucky/universe s390x flycheck-doc all 33~git20230824.e56e30d-2 [861 kB] 167s Get:192 http://ftpmaster.internal/ubuntu plucky/main s390x libjson-perl all 4.10000-1 [81.9 kB] 167s Get:193 http://ftpmaster.internal/ubuntu plucky/main s390x python3-defusedxml all 0.7.1-3 [42.2 kB] 167s Get:194 http://ftpmaster.internal/ubuntu plucky/main s390x python3-roman all 5.0-1 [10.3 kB] 167s Get:195 http://ftpmaster.internal/ubuntu plucky/main s390x python3-docutils all 0.21.2+dfsg-2 [409 kB] 167s Get:196 http://ftpmaster.internal/ubuntu plucky/main s390x python3-imagesize all 1.4.1-1 [6844 B] 167s Get:197 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 167s Get:198 http://ftpmaster.internal/ubuntu plucky/main s390x python3-snowballstemmer all 2.2.0-4build1 [59.8 kB] 167s Get:199 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x sphinx-common all 8.1.3-5 [663 kB] 167s Get:200 http://ftpmaster.internal/ubuntu plucky/main s390x python3-alabaster all 0.7.16-0.1 [18.5 kB] 167s Get:201 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x python3-sphinx all 8.1.3-5 [474 kB] 168s Fetched 117 MB in 11s (10.8 MB/s) 168s Selecting previously unselected package sgml-base. 168s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55929 files and directories currently installed.) 168s Preparing to unpack .../000-sgml-base_1.31_all.deb ... 168s Unpacking sgml-base (1.31) ... 168s Selecting previously unselected package libgdk-pixbuf2.0-common. 168s Preparing to unpack .../001-libgdk-pixbuf2.0-common_2.42.12+dfsg-2_all.deb ... 168s Unpacking libgdk-pixbuf2.0-common (2.42.12+dfsg-2) ... 168s Selecting previously unselected package libjpeg-turbo8:s390x. 168s Preparing to unpack .../002-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 168s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 168s Selecting previously unselected package libjpeg8:s390x. 168s Preparing to unpack .../003-libjpeg8_8c-2ubuntu11_s390x.deb ... 168s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 168s Selecting previously unselected package libdeflate0:s390x. 168s Preparing to unpack .../004-libdeflate0_1.23-1_s390x.deb ... 168s Unpacking libdeflate0:s390x (1.23-1) ... 168s Selecting previously unselected package libjbig0:s390x. 168s Preparing to unpack .../005-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 168s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 168s Selecting previously unselected package libsharpyuv0:s390x. 168s Preparing to unpack .../006-libsharpyuv0_1.5.0-0.1_s390x.deb ... 168s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 168s Selecting previously unselected package libwebp7:s390x. 168s Preparing to unpack .../007-libwebp7_1.5.0-0.1_s390x.deb ... 168s Unpacking libwebp7:s390x (1.5.0-0.1) ... 168s Selecting previously unselected package libtiff6:s390x. 168s Preparing to unpack .../008-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 168s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 168s Selecting previously unselected package libgdk-pixbuf-2.0-0:s390x. 168s Preparing to unpack .../009-libgdk-pixbuf-2.0-0_2.42.12+dfsg-2_s390x.deb ... 168s Unpacking libgdk-pixbuf-2.0-0:s390x (2.42.12+dfsg-2) ... 168s Selecting previously unselected package gtk-update-icon-cache. 168s Preparing to unpack .../010-gtk-update-icon-cache_4.17.4+ds-4_s390x.deb ... 168s No diversion 'diversion of /usr/sbin/update-icon-caches to /usr/sbin/update-icon-caches.gtk2 by libgtk-3-bin', none removed. 168s No diversion 'diversion of /usr/share/man/man8/update-icon-caches.8.gz to /usr/share/man/man8/update-icon-caches.gtk2.8.gz by libgtk-3-bin', none removed. 168s Unpacking gtk-update-icon-cache (4.17.4+ds-4) ... 168s Selecting previously unselected package hicolor-icon-theme. 168s Preparing to unpack .../011-hicolor-icon-theme_0.18-2_all.deb ... 168s Unpacking hicolor-icon-theme (0.18-2) ... 168s Selecting previously unselected package adwaita-icon-theme. 168s Preparing to unpack .../012-adwaita-icon-theme_48~beta-3_all.deb ... 168s Unpacking adwaita-icon-theme (48~beta-3) ... 168s Selecting previously unselected package at-spi2-common. 168s Preparing to unpack .../013-at-spi2-common_2.55.2-1_all.deb ... 168s Unpacking at-spi2-common (2.55.2-1) ... 168s Selecting previously unselected package m4. 168s Preparing to unpack .../014-m4_1.4.19-5_s390x.deb ... 168s Unpacking m4 (1.4.19-5) ... 168s Selecting previously unselected package autoconf. 168s Preparing to unpack .../015-autoconf_2.72-3_all.deb ... 168s Unpacking autoconf (2.72-3) ... 168s Selecting previously unselected package autotools-dev. 168s Preparing to unpack .../016-autotools-dev_20220109.1_all.deb ... 168s Unpacking autotools-dev (20220109.1) ... 168s Selecting previously unselected package automake. 168s Preparing to unpack .../017-automake_1%3a1.17-3_all.deb ... 168s Unpacking automake (1:1.17-3) ... 168s Selecting previously unselected package autopoint. 168s Preparing to unpack .../018-autopoint_0.23.1-1_all.deb ... 168s Unpacking autopoint (0.23.1-1) ... 168s Selecting previously unselected package libisl23:s390x. 168s Preparing to unpack .../019-libisl23_0.27-1_s390x.deb ... 168s Unpacking libisl23:s390x (0.27-1) ... 168s Selecting previously unselected package libmpc3:s390x. 168s Preparing to unpack .../020-libmpc3_1.3.1-1build2_s390x.deb ... 168s Unpacking libmpc3:s390x (1.3.1-1build2) ... 168s Selecting previously unselected package cpp-14-s390x-linux-gnu. 168s Preparing to unpack .../021-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 168s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 169s Selecting previously unselected package cpp-14. 169s Preparing to unpack .../022-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 169s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 169s Selecting previously unselected package cpp-s390x-linux-gnu. 169s Preparing to unpack .../023-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 169s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 169s Selecting previously unselected package cpp. 169s Preparing to unpack .../024-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 169s Unpacking cpp (4:14.2.0-1ubuntu1) ... 169s Selecting previously unselected package libcc1-0:s390x. 169s Preparing to unpack .../025-libcc1-0_15-20250213-1ubuntu1_s390x.deb ... 169s Unpacking libcc1-0:s390x (15-20250213-1ubuntu1) ... 169s Selecting previously unselected package libgomp1:s390x. 169s Preparing to unpack .../026-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 169s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 169s Selecting previously unselected package libitm1:s390x. 169s Preparing to unpack .../027-libitm1_15-20250213-1ubuntu1_s390x.deb ... 169s Unpacking libitm1:s390x (15-20250213-1ubuntu1) ... 169s Selecting previously unselected package libasan8:s390x. 169s Preparing to unpack .../028-libasan8_15-20250213-1ubuntu1_s390x.deb ... 169s Unpacking libasan8:s390x (15-20250213-1ubuntu1) ... 169s Selecting previously unselected package libubsan1:s390x. 169s Preparing to unpack .../029-libubsan1_15-20250213-1ubuntu1_s390x.deb ... 169s Unpacking libubsan1:s390x (15-20250213-1ubuntu1) ... 169s Selecting previously unselected package libgcc-14-dev:s390x. 169s Preparing to unpack .../030-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 169s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 169s Selecting previously unselected package gcc-14-s390x-linux-gnu. 169s Preparing to unpack .../031-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 169s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 169s Selecting previously unselected package gcc-14. 169s Preparing to unpack .../032-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 169s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 169s Selecting previously unselected package gcc-s390x-linux-gnu. 169s Preparing to unpack .../033-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 169s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 169s Selecting previously unselected package gcc. 169s Preparing to unpack .../034-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 169s Unpacking gcc (4:14.2.0-1ubuntu1) ... 169s Selecting previously unselected package libstdc++-14-dev:s390x. 169s Preparing to unpack .../035-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 169s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 169s Selecting previously unselected package g++-14-s390x-linux-gnu. 169s Preparing to unpack .../036-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 169s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 169s Selecting previously unselected package g++-14. 169s Preparing to unpack .../037-g++-14_14.2.0-17ubuntu1_s390x.deb ... 169s Unpacking g++-14 (14.2.0-17ubuntu1) ... 169s Selecting previously unselected package g++-s390x-linux-gnu. 169s Preparing to unpack .../038-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 169s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 169s Selecting previously unselected package g++. 169s Preparing to unpack .../039-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 169s Unpacking g++ (4:14.2.0-1ubuntu1) ... 169s Selecting previously unselected package build-essential. 169s Preparing to unpack .../040-build-essential_12.10ubuntu1_s390x.deb ... 169s Unpacking build-essential (12.10ubuntu1) ... 169s Selecting previously unselected package libdconf1:s390x. 169s Preparing to unpack .../041-libdconf1_0.40.0-5_s390x.deb ... 169s Unpacking libdconf1:s390x (0.40.0-5) ... 170s Selecting previously unselected package dconf-service. 170s Preparing to unpack .../042-dconf-service_0.40.0-5_s390x.deb ... 170s Unpacking dconf-service (0.40.0-5) ... 170s Selecting previously unselected package dconf-gsettings-backend:s390x. 170s Preparing to unpack .../043-dconf-gsettings-backend_0.40.0-5_s390x.deb ... 170s Unpacking dconf-gsettings-backend:s390x (0.40.0-5) ... 170s Selecting previously unselected package libdebhelper-perl. 170s Preparing to unpack .../044-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 170s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 170s Selecting previously unselected package libtool. 170s Preparing to unpack .../045-libtool_2.5.4-3build1_all.deb ... 170s Unpacking libtool (2.5.4-3build1) ... 170s Selecting previously unselected package dh-autoreconf. 170s Preparing to unpack .../046-dh-autoreconf_20_all.deb ... 170s Unpacking dh-autoreconf (20) ... 170s Selecting previously unselected package libarchive-zip-perl. 170s Preparing to unpack .../047-libarchive-zip-perl_1.68-1_all.deb ... 170s Unpacking libarchive-zip-perl (1.68-1) ... 170s Selecting previously unselected package libfile-stripnondeterminism-perl. 170s Preparing to unpack .../048-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 170s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 170s Selecting previously unselected package dh-strip-nondeterminism. 170s Preparing to unpack .../049-dh-strip-nondeterminism_1.14.1-2_all.deb ... 170s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 170s Selecting previously unselected package debugedit. 170s Preparing to unpack .../050-debugedit_1%3a5.1-2_s390x.deb ... 170s Unpacking debugedit (1:5.1-2) ... 170s Selecting previously unselected package dwz. 170s Preparing to unpack .../051-dwz_0.15-1build6_s390x.deb ... 170s Unpacking dwz (0.15-1build6) ... 170s Selecting previously unselected package gettext. 170s Preparing to unpack .../052-gettext_0.23.1-1_s390x.deb ... 170s Unpacking gettext (0.23.1-1) ... 170s Selecting previously unselected package intltool-debian. 170s Preparing to unpack .../053-intltool-debian_0.35.0+20060710.6_all.deb ... 170s Unpacking intltool-debian (0.35.0+20060710.6) ... 170s Selecting previously unselected package po-debconf. 170s Preparing to unpack .../054-po-debconf_1.0.21+nmu1_all.deb ... 170s Unpacking po-debconf (1.0.21+nmu1) ... 170s Selecting previously unselected package debhelper. 170s Preparing to unpack .../055-debhelper_13.24.1ubuntu2_all.deb ... 170s Unpacking debhelper (13.24.1ubuntu2) ... 170s Selecting previously unselected package libapt-pkg-perl. 170s Preparing to unpack .../056-libapt-pkg-perl_0.1.40build8_s390x.deb ... 170s Unpacking libapt-pkg-perl (0.1.40build8) ... 170s Selecting previously unselected package libtie-ixhash-perl. 170s Preparing to unpack .../057-libtie-ixhash-perl_1.23-4_all.deb ... 170s Unpacking libtie-ixhash-perl (1.23-4) ... 170s Selecting previously unselected package libarray-unique-perl. 170s Preparing to unpack .../058-libarray-unique-perl_0.09-1_all.deb ... 170s Unpacking libarray-unique-perl (0.09-1) ... 170s Selecting previously unselected package libsub-name-perl:s390x. 170s Preparing to unpack .../059-libsub-name-perl_0.28-1_s390x.deb ... 170s Unpacking libsub-name-perl:s390x (0.28-1) ... 170s Selecting previously unselected package libclass-accessor-perl. 170s Preparing to unpack .../060-libclass-accessor-perl_0.51-2_all.deb ... 170s Unpacking libclass-accessor-perl (0.51-2) ... 170s Selecting previously unselected package libexporter-tiny-perl. 170s Preparing to unpack .../061-libexporter-tiny-perl_1.006002-1_all.deb ... 170s Unpacking libexporter-tiny-perl (1.006002-1) ... 170s Selecting previously unselected package liblist-moreutils-xs-perl. 170s Preparing to unpack .../062-liblist-moreutils-xs-perl_0.430-4build1_s390x.deb ... 170s Unpacking liblist-moreutils-xs-perl (0.430-4build1) ... 170s Selecting previously unselected package liblist-moreutils-perl. 170s Preparing to unpack .../063-liblist-moreutils-perl_0.430-2_all.deb ... 170s Unpacking liblist-moreutils-perl (0.430-2) ... 170s Selecting previously unselected package libio-stringy-perl. 170s Preparing to unpack .../064-libio-stringy-perl_2.113-2_all.deb ... 170s Unpacking libio-stringy-perl (2.113-2) ... 170s Selecting previously unselected package libencode-locale-perl. 170s Preparing to unpack .../065-libencode-locale-perl_1.05-3_all.deb ... 170s Unpacking libencode-locale-perl (1.05-3) ... 170s Selecting previously unselected package libtimedate-perl. 170s Preparing to unpack .../066-libtimedate-perl_2.3300-2_all.deb ... 170s Unpacking libtimedate-perl (2.3300-2) ... 170s Selecting previously unselected package libhttp-date-perl. 170s Preparing to unpack .../067-libhttp-date-perl_6.06-1_all.deb ... 170s Unpacking libhttp-date-perl (6.06-1) ... 170s Selecting previously unselected package libfile-listing-perl. 170s Preparing to unpack .../068-libfile-listing-perl_6.16-1_all.deb ... 170s Unpacking libfile-listing-perl (6.16-1) ... 170s Selecting previously unselected package libhtml-tagset-perl. 170s Preparing to unpack .../069-libhtml-tagset-perl_3.24-1_all.deb ... 170s Unpacking libhtml-tagset-perl (3.24-1) ... 170s Selecting previously unselected package liburi-perl. 170s Preparing to unpack .../070-liburi-perl_5.30-1_all.deb ... 170s Unpacking liburi-perl (5.30-1) ... 170s Selecting previously unselected package libhtml-parser-perl:s390x. 170s Preparing to unpack .../071-libhtml-parser-perl_3.83-1build1_s390x.deb ... 170s Unpacking libhtml-parser-perl:s390x (3.83-1build1) ... 170s Selecting previously unselected package libhtml-tree-perl. 170s Preparing to unpack .../072-libhtml-tree-perl_5.07-3_all.deb ... 170s Unpacking libhtml-tree-perl (5.07-3) ... 170s Selecting previously unselected package libclone-perl:s390x. 170s Preparing to unpack .../073-libclone-perl_0.47-1_s390x.deb ... 170s Unpacking libclone-perl:s390x (0.47-1) ... 170s Selecting previously unselected package libio-html-perl. 170s Preparing to unpack .../074-libio-html-perl_1.004-3_all.deb ... 170s Unpacking libio-html-perl (1.004-3) ... 170s Selecting previously unselected package liblwp-mediatypes-perl. 170s Preparing to unpack .../075-liblwp-mediatypes-perl_6.04-2_all.deb ... 170s Unpacking liblwp-mediatypes-perl (6.04-2) ... 170s Selecting previously unselected package libhttp-message-perl. 170s Preparing to unpack .../076-libhttp-message-perl_7.00-2ubuntu1_all.deb ... 170s Unpacking libhttp-message-perl (7.00-2ubuntu1) ... 170s Selecting previously unselected package libhttp-cookies-perl. 170s Preparing to unpack .../077-libhttp-cookies-perl_6.11-1_all.deb ... 170s Unpacking libhttp-cookies-perl (6.11-1) ... 170s Selecting previously unselected package libhttp-negotiate-perl. 170s Preparing to unpack .../078-libhttp-negotiate-perl_6.01-2_all.deb ... 170s Unpacking libhttp-negotiate-perl (6.01-2) ... 170s Selecting previously unselected package perl-openssl-defaults:s390x. 170s Preparing to unpack .../079-perl-openssl-defaults_7build3_s390x.deb ... 170s Unpacking perl-openssl-defaults:s390x (7build3) ... 170s Selecting previously unselected package libnet-ssleay-perl:s390x. 170s Preparing to unpack .../080-libnet-ssleay-perl_1.94-2_s390x.deb ... 170s Unpacking libnet-ssleay-perl:s390x (1.94-2) ... 170s Selecting previously unselected package libio-socket-ssl-perl. 170s Preparing to unpack .../081-libio-socket-ssl-perl_2.089-1_all.deb ... 170s Unpacking libio-socket-ssl-perl (2.089-1) ... 170s Selecting previously unselected package libnet-http-perl. 170s Preparing to unpack .../082-libnet-http-perl_6.23-1_all.deb ... 170s Unpacking libnet-http-perl (6.23-1) ... 170s Selecting previously unselected package liblwp-protocol-https-perl. 170s Preparing to unpack .../083-liblwp-protocol-https-perl_6.14-1_all.deb ... 170s Unpacking liblwp-protocol-https-perl (6.14-1) ... 170s Selecting previously unselected package libtry-tiny-perl. 170s Preparing to unpack .../084-libtry-tiny-perl_0.32-1_all.deb ... 170s Unpacking libtry-tiny-perl (0.32-1) ... 170s Selecting previously unselected package libwww-robotrules-perl. 170s Preparing to unpack .../085-libwww-robotrules-perl_6.02-1_all.deb ... 170s Unpacking libwww-robotrules-perl (6.02-1) ... 170s Selecting previously unselected package libwww-perl. 170s Preparing to unpack .../086-libwww-perl_6.77-1_all.deb ... 170s Unpacking libwww-perl (6.77-1) ... 170s Selecting previously unselected package liberror-perl. 170s Preparing to unpack .../087-liberror-perl_0.17029-2_all.deb ... 170s Unpacking liberror-perl (0.17029-2) ... 170s Selecting previously unselected package libexporter-lite-perl. 170s Preparing to unpack .../088-libexporter-lite-perl_0.09-2_all.deb ... 170s Unpacking libexporter-lite-perl (0.09-2) ... 170s Selecting previously unselected package libparse-debcontrol-perl. 170s Preparing to unpack .../089-libparse-debcontrol-perl_2.005-6_all.deb ... 170s Unpacking libparse-debcontrol-perl (2.005-6) ... 170s Selecting previously unselected package libsub-install-perl. 170s Preparing to unpack .../090-libsub-install-perl_0.929-1_all.deb ... 170s Unpacking libsub-install-perl (0.929-1) ... 170s Selecting previously unselected package libcgi-pm-perl. 170s Preparing to unpack .../091-libcgi-pm-perl_4.67-1_all.deb ... 170s Unpacking libcgi-pm-perl (4.67-1) ... 170s Selecting previously unselected package libhtml-form-perl. 170s Preparing to unpack .../092-libhtml-form-perl_6.12-1_all.deb ... 170s Unpacking libhtml-form-perl (6.12-1) ... 170s Selecting previously unselected package libwww-mechanize-perl. 170s Preparing to unpack .../093-libwww-mechanize-perl_2.18-1ubuntu1_all.deb ... 170s Unpacking libwww-mechanize-perl (2.18-1ubuntu1) ... 170s Selecting previously unselected package libdebian-source-perl. 170s Preparing to unpack .../094-libdebian-source-perl_0.126_all.deb ... 170s Unpacking libdebian-source-perl (0.126) ... 170s Selecting previously unselected package emacs-el. 170s Preparing to unpack .../095-emacs-el_1%3a29.4+1-5ubuntu1_all.deb ... 170s Unpacking emacs-el (1:29.4+1-5ubuntu1) ... 170s Selecting previously unselected package emacsen-common. 170s Preparing to unpack .../096-emacsen-common_3.0.5_all.deb ... 170s Unpacking emacsen-common (3.0.5) ... 170s Selecting previously unselected package emacs-common. 170s Preparing to unpack .../097-emacs-common_1%3a29.4+1-5ubuntu1_all.deb ... 170s Unpacking emacs-common (1:29.4+1-5ubuntu1) ... 171s Selecting previously unselected package emacs-bin-common. 171s Preparing to unpack .../098-emacs-bin-common_1%3a29.4+1-5ubuntu1_s390x.deb ... 171s Unpacking emacs-bin-common (1:29.4+1-5ubuntu1) ... 171s Selecting previously unselected package libasound2-data. 171s Preparing to unpack .../099-libasound2-data_1.2.13-1build1_all.deb ... 171s Unpacking libasound2-data (1.2.13-1build1) ... 171s Selecting previously unselected package libasound2t64:s390x. 171s Preparing to unpack .../100-libasound2t64_1.2.13-1build1_s390x.deb ... 171s Unpacking libasound2t64:s390x (1.2.13-1build1) ... 171s Selecting previously unselected package libfreetype6:s390x. 171s Preparing to unpack .../101-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 171s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 171s Selecting previously unselected package fonts-dejavu-mono. 171s Preparing to unpack .../102-fonts-dejavu-mono_2.37-8_all.deb ... 171s Unpacking fonts-dejavu-mono (2.37-8) ... 171s Selecting previously unselected package fonts-dejavu-core. 171s Preparing to unpack .../103-fonts-dejavu-core_2.37-8_all.deb ... 171s Unpacking fonts-dejavu-core (2.37-8) ... 171s Selecting previously unselected package fontconfig-config. 171s Preparing to unpack .../104-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 171s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 171s Selecting previously unselected package libfontconfig1:s390x. 171s Preparing to unpack .../105-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 171s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 171s Selecting previously unselected package libpixman-1-0:s390x. 171s Preparing to unpack .../106-libpixman-1-0_0.44.0-3_s390x.deb ... 171s Unpacking libpixman-1-0:s390x (0.44.0-3) ... 171s Selecting previously unselected package libxcb-render0:s390x. 171s Preparing to unpack .../107-libxcb-render0_1.17.0-2_s390x.deb ... 171s Unpacking libxcb-render0:s390x (1.17.0-2) ... 171s Selecting previously unselected package libxcb-shm0:s390x. 171s Preparing to unpack .../108-libxcb-shm0_1.17.0-2_s390x.deb ... 171s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 171s Selecting previously unselected package libxrender1:s390x. 171s Preparing to unpack .../109-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 171s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 171s Selecting previously unselected package libcairo2:s390x. 171s Preparing to unpack .../110-libcairo2_1.18.2-2_s390x.deb ... 171s Unpacking libcairo2:s390x (1.18.2-2) ... 171s Selecting previously unselected package libgif7:s390x. 171s Preparing to unpack .../111-libgif7_5.2.2-1ubuntu1_s390x.deb ... 171s Unpacking libgif7:s390x (5.2.2-1ubuntu1) ... 171s Selecting previously unselected package libatk1.0-0t64:s390x. 171s Preparing to unpack .../112-libatk1.0-0t64_2.55.2-1_s390x.deb ... 171s Unpacking libatk1.0-0t64:s390x (2.55.2-1) ... 171s Selecting previously unselected package libxi6:s390x. 171s Preparing to unpack .../113-libxi6_2%3a1.8.2-1_s390x.deb ... 171s Unpacking libxi6:s390x (2:1.8.2-1) ... 171s Selecting previously unselected package libatspi2.0-0t64:s390x. 171s Preparing to unpack .../114-libatspi2.0-0t64_2.55.2-1_s390x.deb ... 171s Unpacking libatspi2.0-0t64:s390x (2.55.2-1) ... 171s Selecting previously unselected package libatk-bridge2.0-0t64:s390x. 171s Preparing to unpack .../115-libatk-bridge2.0-0t64_2.55.2-1_s390x.deb ... 171s Unpacking libatk-bridge2.0-0t64:s390x (2.55.2-1) ... 171s Selecting previously unselected package libcairo-gobject2:s390x. 171s Preparing to unpack .../116-libcairo-gobject2_1.18.2-2_s390x.deb ... 171s Unpacking libcairo-gobject2:s390x (1.18.2-2) ... 171s Selecting previously unselected package liblcms2-2:s390x. 171s Preparing to unpack .../117-liblcms2-2_2.16-2_s390x.deb ... 171s Unpacking liblcms2-2:s390x (2.16-2) ... 171s Selecting previously unselected package libcolord2:s390x. 171s Preparing to unpack .../118-libcolord2_1.4.7-1build2_s390x.deb ... 171s Unpacking libcolord2:s390x (1.4.7-1build2) ... 171s Selecting previously unselected package libavahi-common-data:s390x. 171s Preparing to unpack .../119-libavahi-common-data_0.8-14ubuntu1_s390x.deb ... 171s Unpacking libavahi-common-data:s390x (0.8-14ubuntu1) ... 171s Selecting previously unselected package libavahi-common3:s390x. 171s Preparing to unpack .../120-libavahi-common3_0.8-14ubuntu1_s390x.deb ... 171s Unpacking libavahi-common3:s390x (0.8-14ubuntu1) ... 171s Selecting previously unselected package libavahi-client3:s390x. 171s Preparing to unpack .../121-libavahi-client3_0.8-14ubuntu1_s390x.deb ... 171s Unpacking libavahi-client3:s390x (0.8-14ubuntu1) ... 171s Selecting previously unselected package libcups2t64:s390x. 171s Preparing to unpack .../122-libcups2t64_2.4.11-0ubuntu2_s390x.deb ... 171s Unpacking libcups2t64:s390x (2.4.11-0ubuntu2) ... 171s Selecting previously unselected package libepoxy0:s390x. 171s Preparing to unpack .../123-libepoxy0_1.5.10-2_s390x.deb ... 171s Unpacking libepoxy0:s390x (1.5.10-2) ... 171s Selecting previously unselected package libgraphite2-3:s390x. 171s Preparing to unpack .../124-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 171s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 171s Selecting previously unselected package libharfbuzz0b:s390x. 171s Preparing to unpack .../125-libharfbuzz0b_10.2.0-1_s390x.deb ... 171s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 171s Selecting previously unselected package fontconfig. 171s Preparing to unpack .../126-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 171s Unpacking fontconfig (2.15.0-2ubuntu1) ... 171s Selecting previously unselected package libthai-data. 171s Preparing to unpack .../127-libthai-data_0.1.29-2build1_all.deb ... 171s Unpacking libthai-data (0.1.29-2build1) ... 171s Selecting previously unselected package libdatrie1:s390x. 171s Preparing to unpack .../128-libdatrie1_0.2.13-3build1_s390x.deb ... 171s Unpacking libdatrie1:s390x (0.2.13-3build1) ... 171s Selecting previously unselected package libthai0:s390x. 171s Preparing to unpack .../129-libthai0_0.1.29-2build1_s390x.deb ... 171s Unpacking libthai0:s390x (0.1.29-2build1) ... 171s Selecting previously unselected package libpango-1.0-0:s390x. 171s Preparing to unpack .../130-libpango-1.0-0_1.56.1-1_s390x.deb ... 171s Unpacking libpango-1.0-0:s390x (1.56.1-1) ... 171s Selecting previously unselected package libpangoft2-1.0-0:s390x. 171s Preparing to unpack .../131-libpangoft2-1.0-0_1.56.1-1_s390x.deb ... 171s Unpacking libpangoft2-1.0-0:s390x (1.56.1-1) ... 171s Selecting previously unselected package libpangocairo-1.0-0:s390x. 171s Preparing to unpack .../132-libpangocairo-1.0-0_1.56.1-1_s390x.deb ... 171s Unpacking libpangocairo-1.0-0:s390x (1.56.1-1) ... 171s Selecting previously unselected package libwayland-client0:s390x. 171s Preparing to unpack .../133-libwayland-client0_1.23.1-1_s390x.deb ... 171s Unpacking libwayland-client0:s390x (1.23.1-1) ... 171s Selecting previously unselected package libwayland-cursor0:s390x. 171s Preparing to unpack .../134-libwayland-cursor0_1.23.1-1_s390x.deb ... 171s Unpacking libwayland-cursor0:s390x (1.23.1-1) ... 171s Selecting previously unselected package libwayland-egl1:s390x. 171s Preparing to unpack .../135-libwayland-egl1_1.23.1-1_s390x.deb ... 171s Unpacking libwayland-egl1:s390x (1.23.1-1) ... 171s Selecting previously unselected package libxcomposite1:s390x. 171s Preparing to unpack .../136-libxcomposite1_1%3a0.4.6-1_s390x.deb ... 171s Unpacking libxcomposite1:s390x (1:0.4.6-1) ... 171s Selecting previously unselected package libxfixes3:s390x. 171s Preparing to unpack .../137-libxfixes3_1%3a6.0.0-2build1_s390x.deb ... 171s Unpacking libxfixes3:s390x (1:6.0.0-2build1) ... 171s Selecting previously unselected package libxcursor1:s390x. 171s Preparing to unpack .../138-libxcursor1_1%3a1.2.3-1_s390x.deb ... 171s Unpacking libxcursor1:s390x (1:1.2.3-1) ... 171s Selecting previously unselected package libxdamage1:s390x. 171s Preparing to unpack .../139-libxdamage1_1%3a1.1.6-1build1_s390x.deb ... 171s Unpacking libxdamage1:s390x (1:1.1.6-1build1) ... 171s Selecting previously unselected package libxinerama1:s390x. 171s Preparing to unpack .../140-libxinerama1_2%3a1.1.4-3build1_s390x.deb ... 171s Unpacking libxinerama1:s390x (2:1.1.4-3build1) ... 171s Selecting previously unselected package libxrandr2:s390x. 171s Preparing to unpack .../141-libxrandr2_2%3a1.5.4-1_s390x.deb ... 171s Unpacking libxrandr2:s390x (2:1.5.4-1) ... 172s Selecting previously unselected package libgtk-3-common. 172s Preparing to unpack .../142-libgtk-3-common_3.24.48-3ubuntu1_all.deb ... 172s Unpacking libgtk-3-common (3.24.48-3ubuntu1) ... 172s Selecting previously unselected package libgtk-3-0t64:s390x. 172s Preparing to unpack .../143-libgtk-3-0t64_3.24.48-3ubuntu1_s390x.deb ... 172s Unpacking libgtk-3-0t64:s390x (3.24.48-3ubuntu1) ... 172s Selecting previously unselected package x11-common. 172s Preparing to unpack .../144-x11-common_1%3a7.7+23ubuntu3_all.deb ... 172s Unpacking x11-common (1:7.7+23ubuntu3) ... 172s Selecting previously unselected package libice6:s390x. 172s Preparing to unpack .../145-libice6_2%3a1.1.1-1_s390x.deb ... 172s Unpacking libice6:s390x (2:1.1.1-1) ... 172s Selecting previously unselected package m17n-db. 172s Preparing to unpack .../146-m17n-db_1.8.9-1_all.deb ... 172s Unpacking m17n-db (1.8.9-1) ... 172s Selecting previously unselected package libaom3:s390x. 172s Preparing to unpack .../147-libaom3_3.12.0-1_s390x.deb ... 172s Unpacking libaom3:s390x (3.12.0-1) ... 172s Selecting previously unselected package libheif-plugin-aomdec:s390x. 172s Preparing to unpack .../148-libheif-plugin-aomdec_1.19.5-1build1_s390x.deb ... 172s Unpacking libheif-plugin-aomdec:s390x (1.19.5-1build1) ... 172s Selecting previously unselected package libde265-0:s390x. 172s Preparing to unpack .../149-libde265-0_1.0.15-1build4_s390x.deb ... 172s Unpacking libde265-0:s390x (1.0.15-1build4) ... 172s Selecting previously unselected package libheif-plugin-libde265:s390x. 172s Preparing to unpack .../150-libheif-plugin-libde265_1.19.5-1build1_s390x.deb ... 172s Unpacking libheif-plugin-libde265:s390x (1.19.5-1build1) ... 172s Selecting previously unselected package libheif1:s390x. 172s Preparing to unpack .../151-libheif1_1.19.5-1build1_s390x.deb ... 172s Unpacking libheif1:s390x (1.19.5-1build1) ... 172s Selecting previously unselected package libimagequant0:s390x. 172s Preparing to unpack .../152-libimagequant0_2.18.0-1build1_s390x.deb ... 172s Unpacking libimagequant0:s390x (2.18.0-1build1) ... 172s Selecting previously unselected package libraqm0:s390x. 172s Preparing to unpack .../153-libraqm0_0.10.2-1_s390x.deb ... 172s Unpacking libraqm0:s390x (0.10.2-1) ... 172s Selecting previously unselected package libxpm4:s390x. 172s Preparing to unpack .../154-libxpm4_1%3a3.5.17-1build2_s390x.deb ... 172s Unpacking libxpm4:s390x (1:3.5.17-1build2) ... 172s Selecting previously unselected package libgd3:s390x. 172s Preparing to unpack .../155-libgd3_2.3.3-12ubuntu3_s390x.deb ... 172s Unpacking libgd3:s390x (2.3.3-12ubuntu3) ... 172s Selecting previously unselected package libotf1:s390x. 172s Preparing to unpack .../156-libotf1_0.9.16-4build2_s390x.deb ... 172s Unpacking libotf1:s390x (0.9.16-4build2) ... 172s Selecting previously unselected package libxft2:s390x. 172s Preparing to unpack .../157-libxft2_2.3.6-1build1_s390x.deb ... 172s Unpacking libxft2:s390x (2.3.6-1build1) ... 172s Selecting previously unselected package libsm6:s390x. 172s Preparing to unpack .../158-libsm6_2%3a1.2.4-1_s390x.deb ... 172s Unpacking libsm6:s390x (2:1.2.4-1) ... 172s Selecting previously unselected package libxt6t64:s390x. 172s Preparing to unpack .../159-libxt6t64_1%3a1.2.1-1.2build1_s390x.deb ... 172s Unpacking libxt6t64:s390x (1:1.2.1-1.2build1) ... 172s Selecting previously unselected package libm17n-0:s390x. 172s Preparing to unpack .../160-libm17n-0_1.8.4-2_s390x.deb ... 172s Unpacking libm17n-0:s390x (1.8.4-2) ... 172s Selecting previously unselected package librsvg2-2:s390x. 172s Preparing to unpack .../161-librsvg2-2_2.59.90+dfsg-2_s390x.deb ... 172s Unpacking librsvg2-2:s390x (2.59.90+dfsg-2) ... 172s Selecting previously unselected package libtree-sitter0:s390x. 172s Preparing to unpack .../162-libtree-sitter0_0.20.8-2_s390x.deb ... 172s Unpacking libtree-sitter0:s390x (0.20.8-2) ... 172s Selecting previously unselected package libwebpdecoder3:s390x. 172s Preparing to unpack .../163-libwebpdecoder3_1.5.0-0.1_s390x.deb ... 172s Unpacking libwebpdecoder3:s390x (1.5.0-0.1) ... 172s Selecting previously unselected package libwebpdemux2:s390x. 172s Preparing to unpack .../164-libwebpdemux2_1.5.0-0.1_s390x.deb ... 172s Unpacking libwebpdemux2:s390x (1.5.0-0.1) ... 172s Selecting previously unselected package emacs-gtk. 172s Preparing to unpack .../165-emacs-gtk_1%3a29.4+1-5ubuntu1_s390x.deb ... 172s Unpacking emacs-gtk (1:29.4+1-5ubuntu1) ... 172s Selecting previously unselected package emacs. 172s Preparing to unpack .../166-emacs_1%3a29.4+1-5ubuntu1_all.deb ... 172s Unpacking emacs (1:29.4+1-5ubuntu1) ... 172s Selecting previously unselected package libarray-utils-perl. 172s Preparing to unpack .../167-libarray-utils-perl_0.5-3_all.deb ... 172s Unpacking libarray-utils-perl (0.5-3) ... 172s Selecting previously unselected package libconfig-tiny-perl. 172s Preparing to unpack .../168-libconfig-tiny-perl_2.30-1_all.deb ... 172s Unpacking libconfig-tiny-perl (2.30-1) ... 172s Selecting previously unselected package libnumber-compare-perl. 172s Preparing to unpack .../169-libnumber-compare-perl_0.03-3_all.deb ... 172s Unpacking libnumber-compare-perl (0.03-3) ... 172s Selecting previously unselected package libtext-glob-perl. 172s Preparing to unpack .../170-libtext-glob-perl_0.11-3_all.deb ... 172s Unpacking libtext-glob-perl (0.11-3) ... 172s Selecting previously unselected package libfile-find-rule-perl. 172s Preparing to unpack .../171-libfile-find-rule-perl_0.34-3_all.deb ... 172s Unpacking libfile-find-rule-perl (0.34-3) ... 172s Selecting previously unselected package dh-elpa. 172s Preparing to unpack .../172-dh-elpa_2.1.5ubuntu1_all.deb ... 172s Unpacking dh-elpa (2.1.5ubuntu1) ... 172s Selecting previously unselected package dh-elpa-helper. 172s Preparing to unpack .../173-dh-elpa-helper_2.1.5ubuntu1_all.deb ... 172s Unpacking dh-elpa-helper (2.1.5ubuntu1) ... 172s Selecting previously unselected package xml-core. 172s Preparing to unpack .../174-xml-core_0.19_all.deb ... 172s Unpacking xml-core (0.19) ... 172s Selecting previously unselected package docutils-common. 172s Preparing to unpack .../175-docutils-common_0.21.2+dfsg-2_all.deb ... 172s Unpacking docutils-common (0.21.2+dfsg-2) ... 172s Selecting previously unselected package elpa-buttercup. 172s Preparing to unpack .../176-elpa-buttercup_1.37-1_all.deb ... 172s Unpacking elpa-buttercup (1.37-1) ... 172s Selecting previously unselected package elpa-epl. 172s Preparing to unpack .../177-elpa-epl_0.9-7_all.deb ... 172s Unpacking elpa-epl (0.9-7) ... 172s Selecting previously unselected package elpa-s. 172s Preparing to unpack .../178-elpa-s_1.13.0-2_all.deb ... 172s Unpacking elpa-s (1.13.0-2) ... 172s Selecting previously unselected package elpa-dash. 172s Preparing to unpack .../179-elpa-dash_2.19.1+git20240510.1de9dcb+dfsg-1_all.deb ... 172s Unpacking elpa-dash (2.19.1+git20240510.1de9dcb+dfsg-1) ... 172s Selecting previously unselected package elpa-f. 172s Preparing to unpack .../180-elpa-f_0.21.0-1_all.deb ... 172s Unpacking elpa-f (0.21.0-1) ... 172s Selecting previously unselected package elpa-pkg-info. 172s Preparing to unpack .../181-elpa-pkg-info_0.6-7_all.deb ... 172s Unpacking elpa-pkg-info (0.6-7) ... 172s Selecting previously unselected package elpa-let-alist. 172s Preparing to unpack .../182-elpa-let-alist_1.0.6-3_all.deb ... 172s Unpacking elpa-let-alist (1.0.6-3) ... 172s Selecting previously unselected package elpa-seq. 172s Preparing to unpack .../183-elpa-seq_2.24-2_all.deb ... 172s Unpacking elpa-seq (2.24-2) ... 172s Selecting previously unselected package elpa-flycheck. 172s Preparing to unpack .../184-elpa-flycheck_33~git20230824.e56e30d-2_all.deb ... 172s Unpacking elpa-flycheck (33~git20230824.e56e30d-2) ... 172s Selecting previously unselected package elpa-haskell-mode. 172s Preparing to unpack .../185-elpa-haskell-mode_17.5-2_all.deb ... 172s Unpacking elpa-haskell-mode (17.5-2) ... 172s Selecting previously unselected package elpa-shut-up. 172s Preparing to unpack .../186-elpa-shut-up_0.3.3-5_all.deb ... 172s Unpacking elpa-shut-up (0.3.3-5) ... 172s Selecting previously unselected package libjs-jquery. 172s Preparing to unpack .../187-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 172s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 172s Selecting previously unselected package libjs-underscore. 172s Preparing to unpack .../188-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ... 172s Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 172s Selecting previously unselected package libjs-sphinxdoc. 172s Preparing to unpack .../189-libjs-sphinxdoc_8.1.3-5_all.deb ... 172s Unpacking libjs-sphinxdoc (8.1.3-5) ... 172s Selecting previously unselected package flycheck-doc. 172s Preparing to unpack .../190-flycheck-doc_33~git20230824.e56e30d-2_all.deb ... 173s Unpacking flycheck-doc (33~git20230824.e56e30d-2) ... 173s Selecting previously unselected package libjson-perl. 173s Preparing to unpack .../191-libjson-perl_4.10000-1_all.deb ... 173s Unpacking libjson-perl (4.10000-1) ... 173s Selecting previously unselected package python3-defusedxml. 173s Preparing to unpack .../192-python3-defusedxml_0.7.1-3_all.deb ... 173s Unpacking python3-defusedxml (0.7.1-3) ... 173s Selecting previously unselected package python3-roman. 173s Preparing to unpack .../193-python3-roman_5.0-1_all.deb ... 173s Unpacking python3-roman (5.0-1) ... 173s Selecting previously unselected package python3-docutils. 173s Preparing to unpack .../194-python3-docutils_0.21.2+dfsg-2_all.deb ... 173s Unpacking python3-docutils (0.21.2+dfsg-2) ... 173s Selecting previously unselected package python3-imagesize. 173s Preparing to unpack .../195-python3-imagesize_1.4.1-1_all.deb ... 173s Unpacking python3-imagesize (1.4.1-1) ... 173s Selecting previously unselected package python3-packaging. 173s Preparing to unpack .../196-python3-packaging_24.2-1_all.deb ... 173s Unpacking python3-packaging (24.2-1) ... 173s Selecting previously unselected package python3-snowballstemmer. 173s Preparing to unpack .../197-python3-snowballstemmer_2.2.0-4build1_all.deb ... 173s Unpacking python3-snowballstemmer (2.2.0-4build1) ... 173s Selecting previously unselected package sphinx-common. 173s Preparing to unpack .../198-sphinx-common_8.1.3-5_all.deb ... 173s Unpacking sphinx-common (8.1.3-5) ... 173s Selecting previously unselected package python3-alabaster. 173s Preparing to unpack .../199-python3-alabaster_0.7.16-0.1_all.deb ... 173s Unpacking python3-alabaster (0.7.16-0.1) ... 173s Selecting previously unselected package python3-sphinx. 173s Preparing to unpack .../200-python3-sphinx_8.1.3-5_all.deb ... 173s Unpacking python3-sphinx (8.1.3-5) ... 173s Setting up libapt-pkg-perl (0.1.40build8) ... 173s Setting up libarray-utils-perl (0.5-3) ... 173s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 173s Setting up liblcms2-2:s390x (2.16-2) ... 173s Setting up libpixman-1-0:s390x (0.44.0-3) ... 173s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 173s Setting up libaom3:s390x (3.12.0-1) ... 173s Setting up libtie-ixhash-perl (1.23-4) ... 173s Setting up libxdamage1:s390x (1:1.1.6-1build1) ... 173s Setting up libxpm4:s390x (1:3.5.17-1build2) ... 173s Setting up hicolor-icon-theme (0.18-2) ... 173s Setting up libxi6:s390x (2:1.8.2-1) ... 173s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 173s Setting up libdatrie1:s390x (0.2.13-3build1) ... 173s Setting up libtext-glob-perl (0.11-3) ... 173s Setting up libxcb-render0:s390x (1.17.0-2) ... 173s Setting up python3-defusedxml (0.7.1-3) ... 173s Setting up libclone-perl:s390x (0.47-1) ... 173s Setting up libarchive-zip-perl (1.68-1) ... 173s Setting up python3-alabaster (0.7.16-0.1) ... 173s Setting up libio-stringy-perl (2.113-2) ... 173s Setting up libhtml-tagset-perl (3.24-1) ... 173s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 173s Setting up liblwp-mediatypes-perl (6.04-2) ... 173s Setting up libgdk-pixbuf2.0-common (2.42.12+dfsg-2) ... 173s Setting up x11-common (1:7.7+23ubuntu3) ... 173s Setting up libtry-tiny-perl (0.32-1) ... 173s Setting up libdeflate0:s390x (1.23-1) ... 173s Setting up m17n-db (1.8.9-1) ... 173s Setting up perl-openssl-defaults:s390x (7build3) ... 173s Setting up libwebpdecoder3:s390x (1.5.0-0.1) ... 173s Setting up m4 (1.4.19-5) ... 173s Setting up libencode-locale-perl (1.05-3) ... 173s Setting up libxcb-shm0:s390x (1.17.0-2) ... 173s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 173s Setting up libconfig-tiny-perl (2.30-1) ... 173s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 173s Setting up libcolord2:s390x (1.4.7-1build2) ... 173s Setting up libsub-install-perl (0.929-1) ... 173s Setting up libnumber-compare-perl (0.03-3) ... 173s Setting up liberror-perl (0.17029-2) ... 173s Setting up libdconf1:s390x (0.40.0-5) ... 173s Setting up libasound2-data (1.2.13-1build1) ... 173s Setting up python3-roman (5.0-1) ... 173s Setting up autotools-dev (20220109.1) ... 173s Setting up python3-packaging (24.2-1) ... 173s Setting up libasound2t64:s390x (1.2.13-1build1) ... 173s Setting up libtree-sitter0:s390x (0.20.8-2) ... 173s Setting up emacsen-common (3.0.5) ... 174s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 174s Setting up libepoxy0:s390x (1.5.10-2) ... 174s Setting up libfile-find-rule-perl (0.34-3) ... 174s Setting up libxfixes3:s390x (1:6.0.0-2build1) ... 174s Setting up python3-snowballstemmer (2.2.0-4build1) ... 174s Setting up dh-elpa-helper (2.1.5ubuntu1) ... 174s Setting up libavahi-common-data:s390x (0.8-14ubuntu1) ... 174s Setting up libatspi2.0-0t64:s390x (2.55.2-1) ... 174s Setting up libxinerama1:s390x (2:1.1.4-3build1) ... 174s Setting up libimagequant0:s390x (2.18.0-1build1) ... 174s Setting up libarray-unique-perl (0.09-1) ... 174s Setting up fonts-dejavu-mono (2.37-8) ... 174s Setting up libmpc3:s390x (1.3.1-1build2) ... 174s Setting up libio-html-perl (1.004-3) ... 174s Setting up libxrandr2:s390x (2:1.5.4-1) ... 174s Setting up autopoint (0.23.1-1) ... 174s Setting up fonts-dejavu-core (2.37-8) ... 174s Setting up liblist-moreutils-xs-perl (0.430-4build1) ... 174s Setting up elpa-shut-up (0.3.3-5) ... 174s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 174s Setting up autoconf (2.72-3) ... 174s Setting up libwebp7:s390x (1.5.0-0.1) ... 174s Setting up libtimedate-perl (2.3300-2) ... 174s Setting up libexporter-lite-perl (0.09-2) ... 174s Setting up libubsan1:s390x (15-20250213-1ubuntu1) ... 174s Setting up libsub-name-perl:s390x (0.28-1) ... 174s Setting up libgif7:s390x (5.2.2-1ubuntu1) ... 174s Setting up dwz (0.15-1build6) ... 174s Setting up elpa-let-alist (1.0.6-3) ... 174s Setting up elpa-seq (2.24-2) ... 174s Setting up at-spi2-common (2.55.2-1) ... 174s Setting up libasan8:s390x (15-20250213-1ubuntu1) ... 174s Setting up libjson-perl (4.10000-1) ... 174s Setting up debugedit (1:5.1-2) ... 174s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 174s Setting up libthai-data (0.1.29-2build1) ... 174s Setting up sgml-base (1.31) ... 174s Setting up libwayland-egl1:s390x (1.23.1-1) ... 174s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 174s Setting up libexporter-tiny-perl (1.006002-1) ... 174s Setting up libclass-accessor-perl (0.51-2) ... 174s Setting up libisl23:s390x (0.27-1) ... 174s Setting up libde265-0:s390x (1.0.15-1build4) ... 174s Setting up libxcomposite1:s390x (1:0.4.6-1) ... 174s Setting up libcc1-0:s390x (15-20250213-1ubuntu1) ... 174s Setting up liburi-perl (5.30-1) ... 174s Setting up libitm1:s390x (15-20250213-1ubuntu1) ... 174s Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 174s Setting up python3-imagesize (1.4.1-1) ... 174s Setting up libwayland-client0:s390x (1.23.1-1) ... 174s Setting up libnet-ssleay-perl:s390x (1.94-2) ... 174s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 174s Setting up libotf1:s390x (0.9.16-4build2) ... 174s Setting up automake (1:1.17-3) ... 174s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 174s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 174s Setting up libice6:s390x (2:1.1.1-1) ... 174s Setting up libhttp-date-perl (6.06-1) ... 174s Setting up gettext (0.23.1-1) ... 174s Setting up libatk1.0-0t64:s390x (2.55.2-1) ... 174s Setting up libfile-listing-perl (6.16-1) ... 174s Setting up elpa-s (1.13.0-2) ... 174s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 174s Setting up liblist-moreutils-perl (0.430-2) ... 174s Setting up libwebpdemux2:s390x (1.5.0-0.1) ... 174s Setting up libxcursor1:s390x (1:1.2.3-1) ... 174s Setting up libavahi-common3:s390x (0.8-14ubuntu1) ... 174s Setting up elpa-haskell-mode (17.5-2) ... 174s Setting up libnet-http-perl (6.23-1) ... 174s Setting up dconf-service (0.40.0-5) ... 174s Setting up intltool-debian (0.35.0+20060710.6) ... 174s Setting up libthai0:s390x (0.1.29-2build1) ... 174s Setting up elpa-dash (2.19.1+git20240510.1de9dcb+dfsg-1) ... 174s Setting up libraqm0:s390x (0.10.2-1) ... 174s Setting up libjs-sphinxdoc (8.1.3-5) ... 174s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 174s Setting up cpp-14 (14.2.0-17ubuntu1) ... 174s Setting up dh-strip-nondeterminism (1.14.1-2) ... 174s Setting up libwww-robotrules-perl (6.02-1) ... 174s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 174s Setting up libwayland-cursor0:s390x (1.23.1-1) ... 174s Setting up xml-core (0.19) ... 174s Setting up libhtml-parser-perl:s390x (3.83-1build1) ... 174s Setting up libgdk-pixbuf-2.0-0:s390x (2.42.12+dfsg-2) ... 174s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 174s Setting up elpa-f (0.21.0-1) ... 174s tsort: -: input contains a loop: 174s tsort: elpa-dash 174s tsort: emacsen-common 174s tsort: -: input contains a loop: 174s tsort: emacsen-common 174s tsort: elpa-s 174s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 174s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 174s Setting up libsm6:s390x (2:1.2.4-1) ... 174s Setting up libavahi-client3:s390x (0.8-14ubuntu1) ... 174s Setting up libio-socket-ssl-perl (2.089-1) ... 174s Setting up libhttp-message-perl (7.00-2ubuntu1) ... 174s Setting up libhtml-form-perl (6.12-1) ... 174s Setting up libatk-bridge2.0-0t64:s390x (2.55.2-1) ... 174s Setting up gtk-update-icon-cache (4.17.4+ds-4) ... 174s Setting up libhttp-negotiate-perl (6.01-2) ... 174s Setting up fontconfig (2.15.0-2ubuntu1) ... 176s Regenerating fonts cache... done. 176s Setting up libxft2:s390x (2.3.6-1build1) ... 176s Setting up dconf-gsettings-backend:s390x (0.40.0-5) ... 177s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 177s Setting up libhttp-cookies-perl (6.11-1) ... 177s Setting up po-debconf (1.0.21+nmu1) ... 177s Setting up libhtml-tree-perl (5.07-3) ... 177s Setting up libpango-1.0-0:s390x (1.56.1-1) ... 177s Setting up libcgi-pm-perl (4.67-1) ... 177s Setting up libcairo2:s390x (1.18.2-2) ... 177s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 177s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 177s Setting up adwaita-icon-theme (48~beta-3) ... 177s update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode 177s Setting up sphinx-common (8.1.3-5) ... 177s Setting up libxt6t64:s390x (1:1.2.1-1.2build1) ... 177s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 177s Setting up cpp (4:14.2.0-1ubuntu1) ... 177s Setting up libcairo-gobject2:s390x (1.18.2-2) ... 177s Setting up libpangoft2-1.0-0:s390x (1.56.1-1) ... 177s Setting up libcups2t64:s390x (2.4.11-0ubuntu2) ... 177s Setting up libgtk-3-common (3.24.48-3ubuntu1) ... 177s Setting up libpangocairo-1.0-0:s390x (1.56.1-1) ... 177s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 177s Setting up gcc-14 (14.2.0-17ubuntu1) ... 177s Setting up librsvg2-2:s390x (2.59.90+dfsg-2) ... 177s Setting up g++-14 (14.2.0-17ubuntu1) ... 177s Setting up libtool (2.5.4-3build1) ... 177s Setting up gcc (4:14.2.0-1ubuntu1) ... 177s Setting up dh-autoreconf (20) ... 177s Setting up g++ (4:14.2.0-1ubuntu1) ... 177s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 177s Setting up build-essential (12.10ubuntu1) ... 177s Setting up debhelper (13.24.1ubuntu2) ... 177s Setting up emacs-el (1:29.4+1-5ubuntu1) ... 177s Setting up emacs-common (1:29.4+1-5ubuntu1) ... 177s Setting up libheif-plugin-aomdec:s390x (1.19.5-1build1) ... 177s Setting up liblwp-protocol-https-perl (6.14-1) ... 177s Setting up libheif-plugin-libde265:s390x (1.19.5-1build1) ... 177s Setting up libwww-perl (6.77-1) ... 177s Setting up libheif1:s390x (1.19.5-1build1) ... 177s Setting up libparse-debcontrol-perl (2.005-6) ... 177s Setting up libwww-mechanize-perl (2.18-1ubuntu1) ... 177s Setting up libgd3:s390x (2.3.3-12ubuntu3) ... 177s Setting up libdebian-source-perl (0.126) ... 177s Setting up emacs-bin-common (1:29.4+1-5ubuntu1) ... 177s update-alternatives: using /usr/bin/ctags.emacs to provide /usr/bin/ctags (ctags) in auto mode 177s update-alternatives: using /usr/bin/ebrowse.emacs to provide /usr/bin/ebrowse (ebrowse) in auto mode 177s update-alternatives: using /usr/bin/etags.emacs to provide /usr/bin/etags (etags) in auto mode 177s Setting up libm17n-0:s390x (1.8.4-2) ... 177s Processing triggers for man-db (2.13.0-1) ... 178s Processing triggers for libglib2.0-0t64:s390x (2.83.3-2) ... 178s Setting up libgtk-3-0t64:s390x (3.24.48-3ubuntu1) ... 178s Setting up emacs-gtk (1:29.4+1-5ubuntu1) ... 178s update-alternatives: using /usr/bin/emacs-gtk to provide /usr/bin/emacs (emacs) in auto mode 178s update-alternatives: using /usr/bin/emacsclient.emacs to provide /usr/bin/emacsclient (emacsclient) in auto mode 178s tsort: -: input contains a loop: 178s tsort: elpa-dash 178s tsort: emacsen-common 178s tsort: -: input contains a loop: 178s tsort: emacsen-common 178s tsort: elpa-s 178s Install elpa-dash for emacs 178s install/dash-2.19.1: Handling install of emacsen flavor emacs 178s install/dash-2.19.1: byte-compiling for emacs 179s Install emacsen-common for emacs 179s emacsen-common: Handling install of emacsen flavor emacs 179s Install elpa-let-alist for emacs 179s install/let-alist-1.0.6: Handling install of emacsen flavor emacs 179s install/let-alist-1.0.6: byte-compiling for emacs 179s Install elpa-s for emacs 179s install/s-1.13.0: Handling install of emacsen flavor emacs 179s install/s-1.13.0: byte-compiling for emacs 179s Install elpa-seq for emacs 179s install/seq-2.24: Handling install of emacsen flavor emacs 179s install/seq-2.24: byte-compiling for emacs 179s Install elpa-haskell-mode for emacs 179s install/haskell-mode-17.5: Handling install of emacsen flavor emacs 179s install/haskell-mode-17.5: byte-compiling for emacs 180s Install elpa-shut-up for emacs 180s install/shut-up-0.3.2: Handling install of emacsen flavor emacs 180s install/shut-up-0.3.2: byte-compiling for emacs 180s Install elpa-f for emacs 180s install/f-0.21.0: Handling install of emacsen flavor emacs 180s install/f-0.21.0: byte-compiling for emacs 180s Processing triggers for install-info (7.1.1-1) ... 180s Setting up emacs (1:29.4+1-5ubuntu1) ... 180s Setting up dh-elpa (2.1.5ubuntu1) ... 180s Processing triggers for libc-bin (2.40-4ubuntu1) ... 180s Setting up elpa-epl (0.9-7) ... 180s Install emacsen-common for emacs 180s emacsen-common: Handling install of emacsen flavor emacs 181s Install elpa-epl for emacs 181s install/epl-0.9: Handling install of emacsen flavor emacs 181s install/epl-0.9: byte-compiling for emacs 181s Setting up elpa-pkg-info (0.6-7) ... 181s tsort: -: input contains a loop: 181s tsort: elpa-epl 181s tsort: emacsen-common 181s Install elpa-epl for emacs 181s install/epl-0.9: Handling install of emacsen flavor emacs 181s install/epl-0.9: byte-compiling for emacs 181s Install emacsen-common for emacs 181s emacsen-common: Handling install of emacsen flavor emacs 181s Install elpa-pkg-info for emacs 181s install/pkg-info-0.6: Handling install of emacsen flavor emacs 181s install/pkg-info-0.6: byte-compiling for emacs 181s Setting up elpa-buttercup (1.37-1) ... 181s Install emacsen-common for emacs 181s emacsen-common: Handling install of emacsen flavor emacs 181s Install elpa-buttercup for emacs 181s install/buttercup-1.37: Handling install of emacsen flavor emacs 181s install/buttercup-1.37: byte-compiling for emacs 181s Setting up elpa-flycheck (33~git20230824.e56e30d-2) ... 182s Install elpa-epl for emacs 182s install/epl-0.9: Handling install of emacsen flavor emacs 182s install/epl-0.9: byte-compiling for emacs 182s Install emacsen-common for emacs 182s emacsen-common: Handling install of emacsen flavor emacs 182s Install elpa-seq for emacs 182s install/seq-2.24: Handling install of emacsen flavor emacs 182s install/seq-2.24: byte-compiling for emacs 182s Install elpa-let-alist for emacs 182s install/let-alist-1.0.6: Handling install of emacsen flavor emacs 182s install/let-alist-1.0.6: byte-compiling for emacs 182s Install elpa-pkg-info for emacs 182s install/pkg-info-0.6: Handling install of emacsen flavor emacs 182s install/pkg-info-0.6: byte-compiling for emacs 182s Install elpa-dash for emacs 182s install/dash-2.19.1: Handling install of emacsen flavor emacs 182s install/dash-2.19.1: byte-compiling for emacs 182s Install elpa-flycheck for emacs 182s install/flycheck-33snapshot: Handling install of emacsen flavor emacs 182s install/flycheck-33snapshot: byte-compiling for emacs 183s Setting up flycheck-doc (33~git20230824.e56e30d-2) ... 183s Processing triggers for sgml-base (1.31) ... 183s Setting up docutils-common (0.21.2+dfsg-2) ... 185s Processing triggers for sgml-base (1.31) ... 185s autopkgtest: DBG: testbed command exited with code 0 185s Setting up python3-docutils (0.21.2+dfsg-2) ... 185s Setting up python3-sphinx (8.1.3-5) ... 185s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'elpa-flycheck'], kind short, sout pipe, serr pipe, env [] 185s autopkgtest: DBG: testbed command exited with code 0 185s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'flycheck-doc'], kind short, sout pipe, serr pipe, env [] 185s autopkgtest: DBG: testbed command exited with code 0 185s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.Cp90Zb/dh-elpa-test-autopkgtest-packages.all"], kind short, sout raw, serr pipe, env [] 185s autopkgtest: DBG: testbed command exited with code 0 185s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Cp90Zb/dh-elpa-test-autopkgtest-packages.all /tmp/autopkgtest-work.t3r0l3uo/out/dh-elpa-test-autopkgtest-packages.all 185s autopkgtest: DBG: got reply from testbed: ok 185s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.Cp90Zb/build.spP/src'], kind short, sout raw, serr raw, env [] 185s autopkgtest: DBG: testbed command exited with code 0 185s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.Cp90Zb/build.spP/src already exists 185s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '/tmp/autopkgtest.Cp90Zb/build.spP/src'], kind short, sout raw, serr pipe, env [] 185s autopkgtest: DBG: testbed command exited with code 0 185s autopkgtest [12:09:59]: test dh-elpa-test-autopkgtest: dh_elpa_test --autopkgtest 185s autopkgtest [12:09:59]: test dh-elpa-test-autopkgtest: [----------------------- 185s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.Cp90Zb/wrapper.sh --debug --artifacts=/tmp/autopkgtest.Cp90Zb/dh-elpa-test-autopkgtest-artifacts --chdir=/tmp/autopkgtest.Cp90Zb/build.spP/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.Cp90Zb/dh-elpa-test-autopkgtest-stderr --stdout=/tmp/autopkgtest.Cp90Zb/dh-elpa-test-autopkgtest-stdout --tmp=/tmp/autopkgtest.Cp90Zb/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec 'dh_elpa_test --autopkgtest'"], kind test, sout raw, serr raw, env [] 185s /tmp/autopkgtest.Cp90Zb/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.Cp90Zb/dh-elpa-test-autopkgtest-artifacts 185s /tmp/autopkgtest.Cp90Zb/wrapper.sh: changing to directory: /tmp/autopkgtest.Cp90Zb/build.spP/src 185s /tmp/autopkgtest.Cp90Zb/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 185s /tmp/autopkgtest.Cp90Zb/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 185s /tmp/autopkgtest.Cp90Zb/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 185s /tmp/autopkgtest.Cp90Zb/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 185s /tmp/autopkgtest.Cp90Zb/wrapper.sh: setting environment: LANG=C.UTF-8 185s /tmp/autopkgtest.Cp90Zb/wrapper.sh: unsetting environment: LANGUAGE 185s /tmp/autopkgtest.Cp90Zb/wrapper.sh: unsetting environment: LC_ADDRESS 185s /tmp/autopkgtest.Cp90Zb/wrapper.sh: unsetting environment: LC_ALL 185s /tmp/autopkgtest.Cp90Zb/wrapper.sh: unsetting environment: LC_COLLATE 185s /tmp/autopkgtest.Cp90Zb/wrapper.sh: unsetting environment: LC_CTYPE 185s /tmp/autopkgtest.Cp90Zb/wrapper.sh: unsetting environment: LC_IDENTIFICATION 185s /tmp/autopkgtest.Cp90Zb/wrapper.sh: unsetting environment: LC_MEASUREMENT 185s /tmp/autopkgtest.Cp90Zb/wrapper.sh: unsetting environment: LC_MESSAGES 185s /tmp/autopkgtest.Cp90Zb/wrapper.sh: unsetting environment: LC_MONETARY 185s /tmp/autopkgtest.Cp90Zb/wrapper.sh: unsetting environment: LC_NAME 185s /tmp/autopkgtest.Cp90Zb/wrapper.sh: unsetting environment: LC_NUMERIC 185s /tmp/autopkgtest.Cp90Zb/wrapper.sh: unsetting environment: LC_PAPER 185s /tmp/autopkgtest.Cp90Zb/wrapper.sh: unsetting environment: LC_TELEPHONE 185s /tmp/autopkgtest.Cp90Zb/wrapper.sh: unsetting environment: LC_TIME 185s /tmp/autopkgtest.Cp90Zb/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 185s /tmp/autopkgtest.Cp90Zb/wrapper.sh: pretending to be a login shell 186s /tmp/autopkgtest.Cp90Zb/wrapper.sh: will write standard error to /tmp/autopkgtest.Cp90Zb/dh-elpa-test-autopkgtest-stderr 186s /tmp/autopkgtest.Cp90Zb/wrapper.sh: will write stdout to /tmp/autopkgtest.Cp90Zb/dh-elpa-test-autopkgtest-stdout 186s /tmp/autopkgtest.Cp90Zb/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.Cp90Zb/autopkgtest_tmp 186s /tmp/autopkgtest.Cp90Zb/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 186s /tmp/autopkgtest.Cp90Zb/wrapper.sh: command to run: bash -ec dh_elpa_test --autopkgtest 186s /tmp/autopkgtest.Cp90Zb/wrapper.sh: copying /tmp/tmp.zP26fFrzFj/out to stdout and file: /tmp/autopkgtest.Cp90Zb/dh-elpa-test-autopkgtest-stdout 186s /tmp/autopkgtest.Cp90Zb/wrapper.sh: copying /tmp/tmp.zP26fFrzFj/err to standard error and file: /tmp/autopkgtest.Cp90Zb/dh-elpa-test-autopkgtest-stdout 186s /tmp/autopkgtest.Cp90Zb/wrapper.sh: writing script pid 4034 to /tmp/autopkgtest_script_pid 186s buttercup -L . --traceback pretty 186s Loading /etc/emacs/site-start.d/00debian.el (source)... 186s Loading /etc/emacs/site-start.d/50autoconf.el (source)... 186s Running 110 specs. 186s 186s Language C/C++ 186s The Cppcheck error parser 186s parses Cppcheck XML using automatic parser selection  parses Cppcheck XML using automatic parser selection (5.72ms) 186s parses Cppcheck XML without errors using automatic parser selection  parses Cppcheck XML without errors using automatic parser selection (0.10ms) 186s parses Cppcheck XML without errors using builtin parser  parses Cppcheck XML without errors using builtin parser (1.80ms) 186s 186s Language Emacs Lisp 186s Checkdoc 186s exports all customizable variables  exports all customizable variables (0.17ms) 186s 186s Language Go 186s The staticcheck error parser 186s parses staticcheck JSON output  parses staticcheck JSON output (0.46ms) 186s 186s Language Haskell 186s Module names 186s does not extract a module name from commented code  does not extract a module name from commented code (0.10ms) 186s extracts a simple module name without exports  extracts a simple module name without exports (0.10ms) 186s extracts a simple module name at the end of a line  extracts a simple module name at the end of a line (0.08ms) 186s extracts a module name with exports  extracts a module name with exports (0.08ms) 186s extracts a module name with exports right after the name  extracts a module name with exports right after the name (0.08ms) 186s 186s Syntax checker Help 186s flycheck-describe-checker 186s pops up a help buffer for ruby-rubocop  pops up a help buffer for ruby-rubocop (0.64ms) 186s documents ruby-rubocop in the help buffer  documents ruby-rubocop in the help buffer (0.47ms) 186s navigates to the source of ruby-rubocop  navigates to the source of ruby-rubocop (12.29ms) 186s shows next checkers in the help of ruby-rubocop  shows next checkers in the help of ruby-rubocop (0.58ms) 186s shows the executable name in the help of ruby-rubocop  shows the executable name in the help of ruby-rubocop (0.48ms) 186s shows the executable variable in the help of ruby-rubocop  shows the executable variable in the help of ruby-rubocop (0.47ms) 186s shows the configuration file variable in the help of ruby-rubocop  shows the configuration file variable in the help of ruby-rubocop (0.46ms) 186s shows the option variables in the help of ruby-rubocop  shows the option variables in the help of ruby-rubocop (0.48ms) 186s shows the docstring of ruby-rubocop  shows the docstring of ruby-rubocop (0.48ms) 186s 186s Language JavaScript 186s The ESLint error parser 186s parses ESLint JSON output with errors  parses ESLint JSON output with errors (0.13ms) 186s parses ESLint JSON output without errors  parses ESLint JSON output without errors (0.09ms) 186s parses ESLint JSON output with deprecation warning  parses ESLint JSON output with deprecation warning (0.12ms) 186s 186s Language PHP 186s The PHDMD error parser 186s parses PHPMD XML output  parses PHPMD XML output (0.45ms) 186s 186s Language Ruby 186s The Reek error parser 186s parses Reek JSON output  parses Reek JSON output (0.44ms) 186s 186s Language TypeScript 186s The TSLint error parser 186s parses TSLint JSON output  parses TSLint JSON output (0.31ms) 186s parses TSLint JSON output with unknown severity  parses TSLint JSON output with unknown severity (0.20ms) 186s 186s Documentation 186s Syntax checkers 186s documents all syntax checkers  documents all syntax checkers (0.60ms) 186s doesn't document syntax checkers that don't exist  doesn't document syntax checkers that don't exist (0.58ms) 186s Options 186s documents all syntax checker options  documents all syntax checker options (0.60ms) 186s doesn't document syntax checker options that don't exist  doesn't document syntax checker options that don't exist (0.58ms) 186s Configuration files 186s documents all syntax checker configuration files  documents all syntax checker configuration files (0.12ms) 186s it doesn't document configuration files that don't exist  it doesn't document configuration files that don't exist (0.11ms) 186s 186s Error filters 186s flycheck-sanitize-errors 186s removes trailing whitespace  removes trailing whitespace (0.09ms) 186s removes empty error IDs  removes empty error IDs (0.08ms) 186s removes zero columns  removes zero columns (0.08ms) 186s flycheck-remove-error-file-names 186s removes the given filename from errors  removes the given filename from errors (0.18ms) 186s flycheck-increment-error-columns 186s ignores nil columns  ignores nil columns (0.09ms) 186s increments with the default offset  increments with the default offset (0.10ms) 186s increments with a custom offset  increments with a custom offset (0.10ms) 186s flycheck-fold-include-levels 186s skips over intermittent errors  skips over intermittent errors (0.44ms) 186s flycheck-collapse-error-message-whitespace 186s collapses all whitespace in error messages  collapses all whitespace in error messages (0.10ms) 186s flycheck-dequalify-error-ids 186s removes all nested qualifiers  removes all nested qualifiers (0.11ms) 186s leaves unqualified IDs alone  leaves unqualified IDs alone (0.08ms) 186s ignores errors without IDs  ignores errors without IDs (0.08ms) 186s flycheck-remove-error-ids 186s ignores errors without IDs  ignores errors without IDs (0.08ms) 186s removes error IDs  removes error IDs (0.09ms) 186s flycheck-fill-empty-line-numbers 186s ignores errors with line numbers  ignores errors with line numbers (0.08ms) 186s sets errors missing line numbers to line 0  sets errors missing line numbers to line 0 (0.08ms) 186s 186s Error List 186s has the correct buffer name  has the correct buffer name (0.08ms) 186s has a permanently local source buffer  has a permanently local source buffer (1.80ms) 186s derives from Tabulated List Mode  derives from Tabulated List Mode (0.10ms) 186s Format 186s sets the error list format locally  sets the error list format locally (0.17ms) 186s sets a proper padding locally  sets a proper padding locally (0.13ms) 186s sets the list entries locally  sets the list entries locally (0.13ms) 186s has a local header line  has a local header line (0.25ms) 186s Columns 186s has the file name in the 1st column  has the file name in the 1st column (0.12ms) 186s has the line number in the 2nd column  has the line number in the 2nd column (0.12ms) 186s has the column number in the 3rd column  has the column number in the 3rd column (0.13ms) 186s has the error level in the 4th column  has the error level in the 4th column (0.12ms) 186s has the error ID in the 5th column  has the error ID in the 5th column (0.12ms) 186s has the error message in the 6th column  has the error message in the 6th column (0.12ms) 186s Entry 186s has the error object as ID  has the error object as ID (0.09ms) 186s has the line number in the 2nd cell  has the line number in the 2nd cell (0.09ms) 186s has the column number in the 3rd cell  has the column number in the 3rd cell (0.09ms) 186s has an empty 3rd cell if there is no column number  has an empty 3rd cell if there is no column number (0.11ms) 186s has the error level in the 4th cell  has the error level in the 4th cell (0.09ms) 186s has the error ID in the 5th cell  has the error ID in the 5th cell (0.09ms) 186s has the error message in the 6th cell  has the error message in the 6th cell (0.10ms) 186s has a default message in the 6th cell if there is no message  has a default message in the 6th cell if there is no message (0.12ms) 186s Filter 186s kills the filter variable when resetting the filter  kills the filter variable when resetting the filter (0.12ms) 186s filters errors with lower levels  filters errors with lower levels (0.10ms) 186s Mode Line 186s shows no mode line indicator if no filter is set  shows no mode line indicator if no filter is set (0.04ms) 186s shows the level filter in the mode line if set  shows the level filter in the mode line if set (0.09ms) 186s 186s Error parsers 186s The checkstyle parser 186s parses Checkstyle XML using built-in XML parser  parses Checkstyle XML using built-in XML parser (0.54ms) 186s parses Checkstyle XML using libxml  parses Checkstyle XML using libxml (0.43ms) 186s parses Checkstyle XML with automatic parser selection  parses Checkstyle XML with automatic parser selection (0.41ms) 186s 186s Generic syntax checkers 186s Major mode 186s supports the current major mode  supports the current major mode (0.07ms) 186s supports a major mode  supports a major mode (0.06ms) 186s does not support a major mode  does not support a major mode (0.07ms) 186s 186s Global Flycheck Mode 186s checks whether it may enable the mode  checks whether it may enable the mode (0.24ms) 186s enables Flycheck in a regular buffer  enables Flycheck in a regular buffer (0.19ms) 186s enables Flycheck when only that major mode is allowed  enables Flycheck when only that major mode is allowed (0.19ms) 186s does not enable Flycheck in temporary buffers  does not enable Flycheck in temporary buffers (0.11ms) 186s does not enable Flycheck in ephemeral buffers  does not enable Flycheck in ephemeral buffers (0.16ms) 186s does not enable Flycheck in special modes  does not enable Flycheck in special modes (0.12ms) 186s does not enable Flycheck in fundamental-mode  does not enable Flycheck in fundamental-mode (0.12ms) 186s does not enable Flycheck in encrypted buffers  does not enable Flycheck in encrypted buffers (0.19ms) 186s does not enable Flycheck in compilation mode  does not enable Flycheck in compilation mode (13.00ms) 186s does not enable Flycheck if all major modes are disabled  does not enable Flycheck if all major modes are disabled (0.18ms) 186s does not enable Flycheck if the major mode is disabled  does not enable Flycheck if the major mode is disabled (0.17ms) 186s does not enable Flycheck if the major mode is not enabled  does not enable Flycheck if the major mode is not enabled (0.17ms) 186s 186s Encrypted buffers 186s flycheck-encrypted-buffer-p 186s considers a temporary buffer as unencrypted  considers a temporary buffer as unencrypted (0.28ms) 186s considers a file buffer as unencrypted  considers a file buffer as unencrypted (1.45ms) 188s recognizes an encrypted buffer  recognizes an encrypted buffer (1.36s) 188s 188s Mode Line 188s shows the number of errors and warnings  shows the number of errors and warnings (0.11ms) 188s does not show the number of infos  does not show the number of infos (0.10ms) 188s includes the prefix  includes the prefix (0.10ms) 188s 188s Utilities 188s flycheck-buffer-empty-p 188s considers an empty buffer as empty  considers an empty buffer as empty (0.08ms) 188s does not consider a buffer with content as empty  does not consider a buffer with content as empty (0.07ms) 188s detects emptiness of narrowed buffers  detects emptiness of narrowed buffers (0.13ms) 188s flycheck-buffer-saved-p 188s considers an unmodified buffer without backing file unsaved  considers an unmodified buffer without backing file unsaved (0.07ms) 188s considers a modified buffer without backing file unsaved  considers a modified buffer without backing file unsaved (0.07ms) 188s considers an unmodified buffer with backing file saved  considers an unmodified buffer with backing file saved (0.20ms) 188s considers a modified buffer with backing file unsaved  considers a modified buffer with backing file unsaved (0.22ms) 188s flycheck-default-executable-find 188s non-existing programs 188s returns nil when given a non-existing program name  returns nil when given a non-existing program name (0.19ms) 188s returns nil when given a non-existing relative program path  returns nil when given a non-existing relative program path (0.19ms) 188s returns nil when given a non-existing absolute program path  returns nil when given a non-existing absolute program path (0.10ms) 188s existing programs with implied suffix 188s resolves the path when given an existing program name  resolves the path when given an existing program name (0.48ms) 188s resolves the path when given an existing relative program path  resolves the path when given an existing relative program path (0.51ms) 188s resolves the path when given an existing absolute program path  resolves the path when given an existing absolute program path (0.41ms) 188s 188s Ran 110 specs, 0 failed, in 1.43s. 188s emacs -batch -Q -l package --eval "(add-to-list 'package-directory-list \"/usr/share/emacs/site-lisp/elpa\")" --eval "(add-to-list 'package-directory-list \"/usr/share/emacs/site-lisp/elpa-src\")" --eval "(setq ert-batch-backtrace-right-margin nil)" -f package-initialize -L /usr/share/emacs/site-lisp/haskell-mode -L . -L test -l flycheck-ert.el -l test/flycheck-test.el -l debian/ert-helper.el 188s Loading /usr/share/emacs/site-lisp/elpa/haskell-mode-17.5/haskell-mode-autoloads.el (source)... 188s Loading /tmp/autopkgtest.Cp90Zb/build.spP/src/test/run.el (source)... 188s Running tests on Emacs 29.4, built at 2025-01-15 188s Running 562 tests (2025-02-19 12:10:02+0000, selector ‘(and "flycheck-" t)’) 188s passed 1/562 flycheck-CHECKER-executable/defaults-to-nil (0.000492 sec) 188s passed 2/562 flycheck-CHECKER-executable/is-customizable (0.000435 sec) 188s passed 3/562 flycheck-CHECKER-executable/is-special-variable (0.000434 sec) 188s passed 4/562 flycheck-add-mode (0.000044 sec) 188s passed 5/562 flycheck-add-mode/no-valid-checker (0.000057 sec) 188s passed 6/562 flycheck-add-mode/no-valid-mode (0.000052 sec) 188s passed 7/562 flycheck-add-next-checker/append (0.000045 sec) 188s passed 8/562 flycheck-add-next-checker/no-valid-checker (0.000082 sec) 188s passed 9/562 flycheck-add-next-checker/no-valid-next-checker (0.000105 sec) 188s passed 10/562 flycheck-add-next-checker/prepend (0.000040 sec) 188s passed 11/562 flycheck-add-next-checker/redundant (0.000047 sec) 188s passed 12/562 flycheck-add-overlay/can-suppress-help-echo (0.001321 sec) 188s passed 13/562 flycheck-add-overlay/error-category (0.001394 sec) 188s passed 14/562 flycheck-add-overlay/has-error-fringe-icon (0.000447 sec) 188s passed 15/562 flycheck-add-overlay/has-flycheck-error-property (0.000484 sec) 188s passed 16/562 flycheck-add-overlay/has-flycheck-overlay-property (0.000443 sec) 188s passed 17/562 flycheck-add-overlay/has-help-echo (0.000432 sec) 188s passed 18/562 flycheck-add-overlay/has-info-fringe-icon (0.000450 sec) 188s passed 19/562 flycheck-add-overlay/has-left-fringe-icon (0.000445 sec) 188s passed 20/562 flycheck-add-overlay/has-no-fringe-icon-with-disabled-indication (0.000464 sec) 188s passed 21/562 flycheck-add-overlay/has-right-fringe-icon (0.000456 sec) 188s passed 22/562 flycheck-add-overlay/has-warning-fringe-icon (0.000442 sec) 188s passed 23/562 flycheck-add-overlay/help-echo-for-nil-message-is-default (0.000455 sec) 188s passed 24/562 flycheck-add-overlay/help-echo-is-error-message (0.000446 sec) 188s passed 25/562 flycheck-add-overlay/help-echo-stacks-errors (0.000456 sec) 188s passed 26/562 flycheck-add-overlay/help-echo-stacks-errors-region (0.001975 sec) 188s passed 27/562 flycheck-add-overlay/info-category (0.000439 sec) 188s passed 28/562 flycheck-add-overlay/no-error-level (0.000066 sec) 188s skipped 29/562 flycheck-add-overlay/right-position-in-narrowed-buffer (0.129035 sec) 188s passed 30/562 flycheck-add-overlay/undefined-error-level (0.000104 sec) 188s passed 31/562 flycheck-add-overlay/warning-category (0.000472 sec) 188s passed 32/562 flycheck-assert-error-list-p/all-flycheck-errors (0.000045 sec) 188s passed 33/562 flycheck-assert-error-list-p/nil-in-list (0.000083 sec) 188s passed 34/562 flycheck-assert-error-list-p/no-list (0.000078 sec) 188s passed 35/562 flycheck-assert-error-list-p/wrong-type-in-list (0.000078 sec) 188s passed 36/562 flycheck-autoloads-file-p/a-plain-file (0.002492 sec) 188s passed 37/562 flycheck-autoloads-file-p/autoloads-with-backing-file (0.004522 sec) 188s passed 38/562 flycheck-autoloads-file-p/autoloads-without-backing-file (0.000447 sec) 188s passed 39/562 flycheck-autoloads-file-p/ephemeral-buffer (0.000430 sec) 188s passed 40/562 flycheck-bounds-of-things-at-point (0.000891 sec) 188s passed 41/562 flycheck-buffer-automatically/defers-the-test (0.000586 sec) 188s passed 42/562 flycheck-buffer-automatically/does-not-check-with-disabled-mode (0.000453 sec) 188s passed 43/562 flycheck-buffer-deferred/schedules-a-deferred-syntax-check (0.000436 sec) 188s passed 44/562 flycheck-check-syntax-automatically/buffer-switch-check-intermediate-buffers-does-not-cancel-idle-change (0.019414 sec) 188s passed 45/562 flycheck-check-syntax-automatically/defaults-to-all-events (0.000050 sec) 188s passed 46/562 flycheck-check-syntax-automatically/does-not-check-after-buffer-switch-by-default (0.104532 sec) 189s passed 47/562 flycheck-check-syntax-automatically/idle-buffer-switch-cancels-idle-change (1.026705 sec) 189s passed 48/562 flycheck-check-syntax-automatically/idle-buffer-switch-checks-after-buffer-switch (0.104824 sec) 190s passed 49/562 flycheck-check-syntax-automatically/idle-buffer-switch-checks-intermediate-buffers-with-option (0.108683 sec) 191s passed 50/562 flycheck-check-syntax-automatically/idle-buffer-switch-does-not-check-intermediate-buffers-by-default (1.012128 sec) 192s passed 51/562 flycheck-check-syntax-automatically/idle-change-cancels-idle-buffer-switch (1.020982 sec) 193s passed 52/562 flycheck-check-syntax-automatically/idle-change-checks-changed-buffer (1.206597 sec) 194s passed 53/562 flycheck-check-syntax-automatically/idle-change-checks-syntax-after-change (1.005617 sec) 195s passed 54/562 flycheck-check-syntax-automatically/idle-change-does-not-check-before-delay (1.656201 sec) 196s passed 55/562 flycheck-check-syntax-automatically/idle-change-is-disabled (0.555615 sec) 196s passed 56/562 flycheck-check-syntax-automatically/mode-enabled-checks-syntax-after-flycheck-mode (0.004369 sec) 196s passed 57/562 flycheck-check-syntax-automatically/mode-enabled-is-disabled (0.004227 sec) 196s passed 58/562 flycheck-check-syntax-automatically/new-line-checks-syntax-after-new-line (0.003783 sec) 196s passed 59/562 flycheck-check-syntax-automatically/new-line-is-disabled (0.003777 sec) 196s passed 60/562 flycheck-check-syntax-automatically/save-checks-syntax-after-save (0.005517 sec) 196s passed 61/562 flycheck-check-syntax-automatically/save-disabled (0.003998 sec) 196s passed 62/562 flycheck-checker-executable/is-string (0.000699 sec) 196s passed 63/562 flycheck-checker-executable/override-the-executable (0.000653 sec) 196s passed 64/562 flycheck-checker-get/gets-a-property (0.000039 sec) 196s passed 65/562 flycheck-checker-get/modes (0.000798 sec) 196s passed 66/562 flycheck-checker-get/setf (0.000054 sec) 196s passed 67/562 flycheck-checker/disabled-checker-is-not-used (0.005523 sec) 196s passed 68/562 flycheck-checker/unregistered-checker-is-used (0.087896 sec) 196s passed 69/562 flycheck-checker/unusable-checker-causes-an-error (0.000861 sec) 196s passed 70/562 flycheck-checker/usable-checker-is-used (0.087559 sec) 196s passed 71/562 flycheck-checkers/all-declared-checkers-are-registered (0.005533 sec) 196s passed 72/562 flycheck-checkers/all-registered-checkers-are-declared (0.000672 sec) 196s passed 73/562 flycheck-checkers/no-registered-checker-is-disabled (0.000361 sec) 196s passed 74/562 flycheck-checkers/there-are-registered-checkers (0.000037 sec) 196s passed 75/562 flycheck-clean-deferred-check/removes-a-deferred-syntax-check (0.000440 sec) 196s passed 76/562 flycheck-command-argument-p/config-file-with-quoted-variable-symbol (0.000043 sec) 196s passed 77/562 flycheck-command-argument-p/config-file-with-variable-symbol (0.000044 sec) 196s passed 78/562 flycheck-command-argument-p/config-file-without-variable-symbol (0.000040 sec) 196s passed 79/562 flycheck-command-argument-p/eval-with-function-call (0.000039 sec) 196s passed 80/562 flycheck-command-argument-p/eval-with-multiple-forms (0.000037 sec) 196s passed 81/562 flycheck-command-argument-p/eval-with-no-form (0.000046 sec) 196s passed 82/562 flycheck-command-argument-p/eval-with-variable (0.000043 sec) 196s passed 83/562 flycheck-command-argument-p/integer-literal (0.000037 sec) 196s passed 84/562 flycheck-command-argument-p/option-list-with-prepender (0.000038 sec) 196s passed 85/562 flycheck-command-argument-p/option-list-with-prepender-and-filter (0.000040 sec) 196s passed 86/562 flycheck-command-argument-p/option-list-with-quoted-filter-symbol (0.000049 sec) 196s passed 87/562 flycheck-command-argument-p/option-list-with-quoted-prepender-symbol (0.000042 sec) 196s passed 88/562 flycheck-command-argument-p/option-list-with-quoted-variable-symbol (0.000039 sec) 196s passed 89/562 flycheck-command-argument-p/option-list-without-filter-and-prepender (0.000041 sec) 196s passed 90/562 flycheck-command-argument-p/option-list-without-variable-symbol (0.000039 sec) 196s passed 91/562 flycheck-command-argument-p/option-with-filter (0.000038 sec) 196s passed 92/562 flycheck-command-argument-p/option-with-quoted-filter-symbol (0.000036 sec) 196s passed 93/562 flycheck-command-argument-p/option-with-quoted-variable-symbol (0.000038 sec) 196s passed 94/562 flycheck-command-argument-p/option-without-filter (0.000038 sec) 196s passed 95/562 flycheck-command-argument-p/option-without-variable (0.000039 sec) 196s passed 96/562 flycheck-command-argument-p/unknown-argument-cell (0.000038 sec) 196s passed 97/562 flycheck-command-argument-p/unknown-argument-symbol (0.000034 sec) 196s passed 98/562 flycheck-command-argument-p/with-symbols (0.000059 sec) 196s 1st message 196s 2nd message 196s foo 196s 1st message 196s 2nd message [foo] 196s passed 99/562 flycheck-copy-errors-as-kill (0.000544 sec) 196s skipped 100/562 flycheck-d-base-directory/no-module-declaration (0.000136 sec) 196s skipped 101/562 flycheck-d-base-directory/package-file (0.000106 sec) 196s skipped 102/562 flycheck-d-base-directory/with-module-declaration (0.000104 sec) 196s skipped 103/562 flycheck-d-module-re/matches-module-name (0.000105 sec) 196s passed 104/562 flycheck-deferred-check-p/nil (0.000041 sec) 196s passed 105/562 flycheck-deferred-check-p/truthy (0.000037 sec) 196s skipped 106/562 flycheck-define-checker/ada-gnat/syntax-error (0.000243 sec) 196s skipped 107/562 flycheck-define-checker/ada-gnat/warnings (0.000171 sec) 196s skipped 108/562 flycheck-define-checker/asciidoc/default (0.000179 sec) 196s skipped 109/562 flycheck-define-checker/asciidoctor/default (0.000188 sec) 196s skipped 110/562 flycheck-define-checker/awk-gawk/syntax-error (0.000142 sec) 196s skipped 111/562 flycheck-define-checker/bazel-build-buildifier/default (0.000184 sec) 196s skipped 112/562 flycheck-define-checker/bazel-build-buildifier/error (0.000173 sec) 196s skipped 113/562 flycheck-define-checker/bazel-module-buildifier/default (0.000174 sec) 196s skipped 114/562 flycheck-define-checker/bazel-module-buildifier/error (0.000172 sec) 196s skipped 115/562 flycheck-define-checker/bazel-starlark-buildifier/default (0.000173 sec) 196s skipped 116/562 flycheck-define-checker/bazel-starlark-buildifier/error (0.000169 sec) 196s skipped 117/562 flycheck-define-checker/bazel-workspace-buildifier/default (0.000173 sec) 196s skipped 118/562 flycheck-define-checker/bazel-workspace-buildifier/error (0.000172 sec) 196s skipped 119/562 flycheck-define-checker/c/c++-clang/error (0.000175 sec) 196s skipped 120/562 flycheck-define-checker/c/c++-clang/fatal-error (0.000168 sec) 196s skipped 121/562 flycheck-define-checker/c/c++-clang/included-file-warning (0.000169 sec) 196s skipped 122/562 flycheck-define-checker/c/c++-clang/warnings (0.000167 sec) 196s skipped 123/562 flycheck-define-checker/c/c++-cppcheck/default (0.000180 sec) 196s skipped 124/562 flycheck-define-checker/c/c++-gcc/error (0.000146 sec) 196s skipped 125/562 flycheck-define-checker/c/c++-gcc/fatal-error (0.000133 sec) 196s skipped 126/562 flycheck-define-checker/c/c++-gcc/included-file-warning (0.000131 sec) 196s skipped 127/562 flycheck-define-checker/c/c++-gcc/warning (0.000133 sec) 196s skipped 128/562 flycheck-define-checker/cfengine/error (0.000182 sec) 196s skipped 129/562 flycheck-define-checker/cfengine/warning (0.000171 sec) 196s skipped 130/562 flycheck-define-checker/chef-foodcritic/default (0.000181 sec) 196s skipped 131/562 flycheck-define-checker/coffee-coffeelint/error (0.000182 sec) 196s skipped 132/562 flycheck-define-checker/coffee-coffeelint/warning (0.000174 sec) 196s skipped 133/562 flycheck-define-checker/coffee/syntax-error (0.000181 sec) 196s skipped 134/562 flycheck-define-checker/coq/error (0.000182 sec) 196s skipped 135/562 flycheck-define-checker/coq/syntax-error (0.000170 sec) 196s skipped 136/562 flycheck-define-checker/css-csslint/default (0.000179 sec) 196s skipped 137/562 flycheck-define-checker/css-csslint/syntax-error (0.000168 sec) 196s skipped 138/562 flycheck-define-checker/cuda/syntax-error (0.000131 sec) 196s skipped 139/562 flycheck-define-checker/cuda/syntax-warning (0.000128 sec) 196s skipped 140/562 flycheck-define-checker/cwl/syntax-error (0.000188 sec) 196s skipped 141/562 flycheck-define-checker/d-dmd/continuation-line (0.000174 sec) 196s skipped 142/562 flycheck-define-checker/d-dmd/missing-import (0.000169 sec) 196s skipped 143/562 flycheck-define-checker/d-dmd/non-d-extension (0.000164 sec) 196s skipped 144/562 flycheck-define-checker/d-dmd/warning-include-path (0.000241 sec) 196s skipped 145/562 flycheck-define-checker/dockerfile-hadolint/error (0.000183 sec) 196s skipped 146/562 flycheck-define-checker/dockerfile-hadolint/warnings (0.000170 sec) 196s skipped 147/562 flycheck-define-checker/elixir-credo/infos-with-strict-mode (0.000184 sec) 196s skipped 148/562 flycheck-define-checker/elixir-credo/infos-without-strict-mode (0.000166 sec) 196s skipped 149/562 flycheck-define-checker/elixir-credo/warnings (0.000168 sec) 196s skipped 150/562 flycheck-define-checker/emacs-lisp-checkdoc/inherits-checkdoc-variables (0.000126 sec) 196s skipped 151/562 flycheck-define-checker/emacs-lisp/check-declare-warnings (0.000122 sec) 196s skipped 152/562 flycheck-define-checker/emacs-lisp/checkdoc-does-not-check-cask-files (0.000159 sec) 196s skipped 153/562 flycheck-define-checker/emacs-lisp/checks-compressed-file (0.000133 sec) 196s skipped 154/562 flycheck-define-checker/emacs-lisp/default (0.000135 sec) 196s skipped 155/562 flycheck-define-checker/emacs-lisp/disable-check-declare (0.000117 sec) 196s skipped 156/562 flycheck-define-checker/emacs-lisp/does-not-check-autoloads-buffers (0.000136 sec) 196s skipped 157/562 flycheck-define-checker/emacs-lisp/does-not-check-with-no-byte-compile (0.000207 sec) 196s skipped 158/562 flycheck-define-checker/emacs-lisp/syntax-error (0.000119 sec) 196s skipped 159/562 flycheck-define-checker/emacs-lisp/uses-right-major-mode (0.000137 sec) 196s skipped 160/562 flycheck-define-checker/emacs-lisp/without-file-name (0.000134 sec) 196s skipped 161/562 flycheck-define-checker/ember-template/error (0.000191 sec) 196s skipped 162/562 flycheck-define-checker/ember-template/warning (0.000181 sec) 196s skipped 163/562 flycheck-define-checker/erlang-rebar3/build (0.000179 sec) 196s skipped 164/562 flycheck-define-checker/erlang-rebar3/error (0.000169 sec) 196s skipped 165/562 flycheck-define-checker/erlang/error (0.000180 sec) 196s skipped 166/562 flycheck-define-checker/erlang/warning (0.000168 sec) 196s skipped 167/562 flycheck-define-checker/eruby-erubis/default (0.000181 sec) 196s skipped 168/562 flycheck-define-checker/eruby-ruumba/syntax-error (0.000178 sec) 196s skipped 169/562 flycheck-define-checker/fortran-gfortran/error (0.000178 sec) 196s skipped 170/562 flycheck-define-checker/fortran-gfortran/free-form-error (0.000174 sec) 196s skipped 171/562 flycheck-define-checker/fortran-gfortran/warning (0.000173 sec) 196s skipped 172/562 flycheck-define-checker/go-build/complete-chain (0.000176 sec) 196s skipped 173/562 flycheck-define-checker/go-build/handles-packages (0.000171 sec) 196s skipped 174/562 flycheck-define-checker/go-build/missing-package (0.000173 sec) 196s skipped 175/562 flycheck-define-checker/go-errcheck/default (0.000184 sec) 196s skipped 176/562 flycheck-define-checker/go-gofmt/syntax-error (0.000183 sec) 196s skipped 177/562 flycheck-define-checker/go-staticcheck/default (0.000187 sec) 196s skipped 178/562 flycheck-define-checker/go-test/default (0.000170 sec) 196s skipped 179/562 flycheck-define-checker/go-unconvert/default (0.000180 sec) 196s skipped 180/562 flycheck-define-checker/groovy/syntax-error (0.000179 sec) 196s skipped 181/562 flycheck-define-checker/haml/haml-error (0.000179 sec) 196s skipped 182/562 flycheck-define-checker/haml/ruby-error (0.000170 sec) 196s skipped 183/562 flycheck-define-checker/handlebars/default (0.000183 sec) 196s skipped 184/562 flycheck-define-checker/haskell-ghc/complete-chain (0.000180 sec) 196s skipped 185/562 flycheck-define-checker/haskell-ghc/literate (0.000168 sec) 196s skipped 186/562 flycheck-define-checker/haskell-ghc/syntax-error (0.000174 sec) 196s skipped 187/562 flycheck-define-checker/haskell-ghc/type-error (0.000169 sec) 196s skipped 188/562 flycheck-define-checker/haskell-stack-ghc/complete-chain (0.000179 sec) 196s skipped 189/562 flycheck-define-checker/haskell-stack-ghc/literate (0.000173 sec) 196s skipped 190/562 flycheck-define-checker/haskell-stack-ghc/nonstandard-stack-yaml-file (0.000169 sec) 196s skipped 191/562 flycheck-define-checker/haskell-stack-ghc/syntax-error (0.000171 sec) 196s skipped 192/562 flycheck-define-checker/haskell-stack-ghc/type-error (0.000173 sec) 196s skipped 193/562 flycheck-define-checker/html-tidy/default (0.000179 sec) 196s skipped 194/562 flycheck-define-checker/javascript-eslint/error (0.000185 sec) 196s skipped 195/562 flycheck-define-checker/javascript-eslint/warning (0.000170 sec) 196s skipped 196/562 flycheck-define-checker/javascript-jshint/default (0.000178 sec) 196s skipped 197/562 flycheck-define-checker/javascript-jshint/syntax-error (0.000172 sec) 196s skipped 198/562 flycheck-define-checker/javascript-standard/error (0.000179 sec) 196s skipped 199/562 flycheck-define-checker/javascript-standard/semistandard (0.000173 sec) 196s skipped 200/562 flycheck-define-checker/json-jq/default (0.000180 sec) 196s skipped 201/562 flycheck-define-checker/json-jsonlint/default (0.000181 sec) 196s skipped 202/562 flycheck-define-checker/json-python-json/default (0.000141 sec) 196s skipped 203/562 flycheck-define-checker/jsonnet-runtime/default (0.000127 sec) 196s skipped 204/562 flycheck-define-checker/jsonnet-static/default (0.000131 sec) 196s skipped 205/562 flycheck-define-checker/less/file-error (0.000181 sec) 196s skipped 206/562 flycheck-define-checker/less/syntax-error (0.000170 sec) 196s skipped 207/562 flycheck-define-checker/llvm-llc/default (0.000187 sec) 196s skipped 208/562 flycheck-define-checker/lua-luacheck/custom-luacheckrc (0.000183 sec) 196s skipped 209/562 flycheck-define-checker/lua-luacheck/custom-standards (0.000171 sec) 196s skipped 210/562 flycheck-define-checker/lua-luacheck/syntax-error (0.000173 sec) 196s skipped 211/562 flycheck-define-checker/lua-luacheck/warnings (0.000245 sec) 196s skipped 212/562 flycheck-define-checker/lua/default (0.000183 sec) 196s skipped 213/562 flycheck-define-checker/markdown-markdownlint-cli/default (0.000191 sec) 196s skipped 214/562 flycheck-define-checker/markdown-mdl/default (0.000184 sec) 196s skipped 215/562 flycheck-define-checker/nix-linter/default (0.000185 sec) 196s skipped 216/562 flycheck-define-checker/nix/default (0.000190 sec) 196s skipped 217/562 flycheck-define-checker/opam/default (0.000180 sec) 196s skipped 218/562 flycheck-define-checker/perl/default (0.000220 sec) 196s passed 219/562 flycheck-define-checker/perl/modules (0.175443 sec) 196s skipped 220/562 flycheck-define-checker/php/default (0.000262 sec) 196s skipped 221/562 flycheck-define-checker/php/syntax-error (0.000178 sec) 196s skipped 222/562 flycheck-define-checker/processing/syntax-error (0.000210 sec) 196s skipped 223/562 flycheck-define-checker/proselint/default (0.000188 sec) 196s skipped 224/562 flycheck-define-checker/protobuf-protoc/syntax-error (0.000205 sec) 196s skipped 225/562 flycheck-define-checker/protobuf-prototool/warnings (0.027421 sec) 196s skipped 226/562 flycheck-define-checker/pug/include-extends-error (0.000252 sec) 196s skipped 227/562 flycheck-define-checker/pug/non-block-or-mixin-at-top-level-of-extended-template-error (0.000228 sec) 196s skipped 228/562 flycheck-define-checker/pug/syntax-error (0.000227 sec) 196s skipped 229/562 flycheck-define-checker/pug/type-error (0.000239 sec) 196s skipped 230/562 flycheck-define-checker/pug/unknown-filter (0.000233 sec) 196s skipped 231/562 flycheck-define-checker/puppet-lint/default (0.000254 sec) 196s skipped 232/562 flycheck-define-checker/puppet-parser/parser-error-puppet-3 (0.000255 sec) 196s skipped 233/562 flycheck-define-checker/puppet-parser/parser-error-puppet-4 (0.000246 sec) 196s skipped 234/562 flycheck-define-checker/python-flake8/default (0.000246 sec) 196s skipped 235/562 flycheck-define-checker/python-flake8/syntax-error (0.000237 sec) 196s skipped 236/562 flycheck-define-checker/python-mypy/default (0.000385 sec) 196s skipped 237/562 flycheck-define-checker/python-pycompile/has-no-warnings (0.000232 sec) 196s skipped 238/562 flycheck-define-checker/python-pycompile/python27 (0.000220 sec) 196s skipped 239/562 flycheck-define-checker/python-pylint/default (0.000193 sec) 196s skipped 240/562 flycheck-define-checker/python-pylint/negative-columns (0.000247 sec) 196s skipped 241/562 flycheck-define-checker/python-pylint/no-symbolic-id (0.000191 sec) 196s skipped 242/562 flycheck-define-checker/python-pyright/default (0.000282 sec) 196s skipped 243/562 flycheck-define-checker/r-lintr/default (0.000269 sec) 196s skipped 244/562 flycheck-define-checker/racket/default (0.000260 sec) 196s skipped 245/562 flycheck-define-checker/rpm-rpmlint/default (0.000269 sec) 196s skipped 246/562 flycheck-define-checker/rst-sphinx/default (0.000208 sec) 196s skipped 247/562 flycheck-define-checker/rst-sphinx/not-outside-of-a-sphinx-project (0.000197 sec) 196s skipped 248/562 flycheck-define-checker/rst/default (0.000343 sec) 196s skipped 249/562 flycheck-define-checker/ruby-jruby/default (0.000269 sec) 196s skipped 250/562 flycheck-define-checker/ruby-jruby/syntax-error (0.000255 sec) 196s skipped 251/562 flycheck-define-checker/ruby-reek/warnings (0.000266 sec) 196s skipped 252/562 flycheck-define-checker/ruby-rubocop/syntax-error (0.000275 sec) 196s skipped 253/562 flycheck-define-checker/ruby-rubocop/with-rubylint (0.000265 sec) 196s skipped 254/562 flycheck-define-checker/ruby-rubylint/syntax-error (0.000410 sec) 196s skipped 255/562 flycheck-define-checker/ruby-standard/syntax-error (0.000362 sec) 196s skipped 256/562 flycheck-define-checker/ruby/syntax-error (0.000301 sec) 196s skipped 257/562 flycheck-define-checker/ruby/warnings (0.000265 sec) 196s skipped 258/562 flycheck-define-checker/rust-cargo/conventional-layout (0.000275 sec) 196s skipped 259/562 flycheck-define-checker/rust-cargo/default-target (0.000275 sec) 196s skipped 260/562 flycheck-define-checker/rust-cargo/dev-dependencies (0.000263 sec) 196s skipped 261/562 flycheck-define-checker/rust-cargo/lib-main (0.000265 sec) 196s skipped 262/562 flycheck-define-checker/rust-cargo/warning (0.000267 sec) 196s skipped 263/562 flycheck-define-checker/rust-cargo/workspace-subcrate (0.000288 sec) 196s skipped 264/562 flycheck-define-checker/rust/crate-root-not-set (0.000282 sec) 196s skipped 265/562 flycheck-define-checker/rust/macro-error (0.000267 sec) 196s skipped 266/562 flycheck-define-checker/rust/note-and-help (0.000273 sec) 196s skipped 267/562 flycheck-define-checker/rust/syntax-error (0.000281 sec) 196s skipped 268/562 flycheck-define-checker/rust/type-error (0.000300 sec) 196s skipped 269/562 flycheck-define-checker/rust/warning (0.000286 sec) 196s skipped 270/562 flycheck-define-checker/sass/default (0.000290 sec) 196s skipped 271/562 flycheck-define-checker/sass/warning (0.000281 sec) 196s skipped 272/562 flycheck-define-checker/scala-scalastyle/error (0.000285 sec) 196s skipped 273/562 flycheck-define-checker/scala-scalastyle/warning (0.000260 sec) 196s skipped 274/562 flycheck-define-checker/scala/default (0.000259 sec) 196s skipped 275/562 flycheck-define-checker/scheme-chicken/error-no-line-number (0.000242 sec) 196s skipped 276/562 flycheck-define-checker/scheme-chicken/syntax-error (0.000222 sec) 196s skipped 277/562 flycheck-define-checker/scheme-chicken/syntax-error-no-line-number (0.000220 sec) 196s skipped 278/562 flycheck-define-checker/scheme-chicken/syntax-read-error (0.000197 sec) 196s skipped 279/562 flycheck-define-checker/scss-lint/default (0.000235 sec) 196s skipped 280/562 flycheck-define-checker/scss-lint/syntax-error (0.000192 sec) 196s skipped 281/562 flycheck-define-checker/scss/default (0.000171 sec) 196s skipped 282/562 flycheck-define-checker/scss/warning (0.000161 sec) 196s skipped 283/562 flycheck-define-checker/sh-bash/default (0.000143 sec) 196s skipped 284/562 flycheck-define-checker/sh-posix-bash/default (0.000128 sec) 196s skipped 285/562 flycheck-define-checker/sh-posix-dash/default (0.000134 sec) 196s skipped 286/562 flycheck-define-checker/sh-shellcheck/default (0.000175 sec) 196s skipped 287/562 flycheck-define-checker/sh-zsh/default (0.000171 sec) 196s skipped 288/562 flycheck-define-checker/slim/default (0.000174 sec) 196s skipped 289/562 flycheck-define-checker/sqlint/default (0.000103 sec) 196s skipped 290/562 flycheck-define-checker/systemd-analyze/default (0.000149 sec) 196s skipped 291/562 flycheck-define-checker/tcl-nagelfar/default (0.000175 sec) 196s skipped 292/562 flycheck-define-checker/terraform-tflint/default (0.000172 sec) 196s skipped 293/562 flycheck-define-checker/terraform/default (0.000177 sec) 196s skipped 294/562 flycheck-define-checker/tex-chktex/default (0.000169 sec) 196s skipped 295/562 flycheck-define-checker/tex-lacheck/default (0.000171 sec) 196s skipped 296/562 flycheck-define-checker/texinfo/default (0.000174 sec) 196s skipped 297/562 flycheck-define-checker/textlint/default (0.000172 sec) 196s skipped 298/562 flycheck-define-checker/typescript-tslint/default (0.000199 sec) 196s skipped 299/562 flycheck-define-checker/verilog-verilator/error (0.000231 sec) 196s skipped 300/562 flycheck-define-checker/verilog-verilator/warning (0.000166 sec) 196s skipped 301/562 flycheck-define-checker/vhdl-ghdl/error (0.000173 sec) 196s skipped 302/562 flycheck-define-checker/xml-xmllint/default (0.000173 sec) 196s skipped 303/562 flycheck-define-checker/xml-xmlstarlet/default (0.000171 sec) 196s skipped 304/562 flycheck-define-checker/yaml-jsyaml/default (0.000171 sec) 196s skipped 305/562 flycheck-define-checker/yaml-ruby/default (0.000165 sec) 196s skipped 306/562 flycheck-define-checker/yaml-yamllint/default (0.000173 sec) 196s passed 307/562 flycheck-define-error-level/has-error-list-face (0.000040 sec) 196s passed 308/562 flycheck-define-error-level/has-fringe-bitmap (0.000036 sec) 196s passed 309/562 flycheck-define-error-level/has-fringe-face (0.000036 sec) 196s passed 310/562 flycheck-define-error-level/has-overlay-category (0.000035 sec) 196s passed 311/562 flycheck-define-error-level/has-severity (0.000037 sec) 196s passed 312/562 flycheck-define-error-level/is-error-level? (0.000036 sec) 196s passed 313/562 flycheck-defined-checkers/are-registered (0.004383 sec) 196s passed 314/562 flycheck-defined-checkers/are-valid (0.003819 sec) 196s passed 315/562 flycheck-disable-checker/disables-checker (0.000985 sec) 196s passed 316/562 flycheck-disable-checker/enables-checker (0.000774 sec) 196s passed 317/562 flycheck-disabled-checker-p/disabled-checker (0.000054 sec) 196s passed 318/562 flycheck-disabled-checker-p/enabled-checker (0.000051 sec) 196s passed 319/562 flycheck-disabled-checkers/is-empty (0.000050 sec) 196s passed 320/562 flycheck-display-error-messages (0.000157 sec) 196s passed 321/562 flycheck-display-errors-delay/defaults-to-0.9 (0.000052 sec) 196s passed 322/562 flycheck-display-errors-function/defaults-to-display-error-messages (0.000051 sec) 196s passed 323/562 flycheck-display-errors/custom-function (0.000094 sec) 196s passed 324/562 flycheck-display-errors/no-display-function-set (0.000127 sec) 196s passed 325/562 flycheck-ephemeral-buffer-p/buffer-with-leading-whitespace (0.000694 sec) 196s passed 326/562 flycheck-ephemeral-buffer-p/buffer-without-leading-whitespace (0.000654 sec) 196s passed 327/562 flycheck-ephemeral-buffer-p/temporary-buffer (0.000649 sec) 196s passed 328/562 flycheck-error-