Running with gitlab-runner 16.7.0 (102c81ba)
  on 0xacab-runner01 ewWsJdza, system ID: s_2ef2156e1df9
section_start:1703792008:prepare_executor
Preparing the "docker" executor
Using Docker executor with image docker:latest ...
Starting service docker:dind ...
Pulling docker image docker:dind ...
Using docker image sha256:6091c7bd89fd2789606b49815b2b9ea1a9142ee6e8762089ab3975afd6784a6c for docker:dind with digest docker@sha256:1b9844d846ce3a6a6af7013e999a373112c3c0450aca49e155ae444526a2c45e ...
Waiting for services to be up and running (timeout 30 seconds)...
Pulling docker image docker:latest ...
Using docker image sha256:6091c7bd89fd2789606b49815b2b9ea1a9142ee6e8762089ab3975afd6784a6c for docker:latest with digest docker@sha256:1b9844d846ce3a6a6af7013e999a373112c3c0450aca49e155ae444526a2c45e ...
section_end:1703792038:prepare_executor
section_start:1703792038:prepare_script
Preparing environment
Running on runner-ewwsjdza-project-1837-concurrent-7 via gnt01...
section_end:1703792040:prepare_script
section_start:1703792040:get_sources
Getting source from Git repository
Fetching changes...
Reinitialized existing Git repository in /builds/georg/mat2-ci-images/.git/
Checking out 23fa1ed1 as detached HEAD (ref is dev)...

Skipping Git submodules setup
section_end:1703792043:get_sources
section_start:1703792043:step_script
Executing "step_script" stage of the job script
Using docker image sha256:6091c7bd89fd2789606b49815b2b9ea1a9142ee6e8762089ab3975afd6784a6c for docker:latest with digest docker@sha256:1b9844d846ce3a6a6af7013e999a373112c3c0450aca49e155ae444526a2c45e ...
$ CI_JOB_NAME="$(echo $CI_JOB_NAME | cut -d - -f 2)"
$ export CI_JOB_NAME
$ unset HISTFILE
$ echo $CI_JOB_TOKEN | docker login -u gitlab-ci-token --password-stdin $CI_REGISTRY
WARNING! Your password will be stored unencrypted in /root/.docker/config.json.
Configure a credential helper to remove this warning. See
https://docs.docker.com/engine/reference/commandline/login/#credentials-store

Login Succeeded
$ export IMAGE_TAG=$CI_REGISTRY_IMAGE:$CI_JOB_NAME
$ docker pull $IMAGE_TAG || /bin/true
python3.12: Pulling from georg/mat2-ci-images
af107e978371: Pulling fs layer
8ce3f2b601cc: Pulling fs layer
5c578b8d6bec: Pulling fs layer
5eda41c77a92: Pulling fs layer
d0976544ee1e: Pulling fs layer
61c7b8d50631: Pulling fs layer
d0976544ee1e: Waiting
5eda41c77a92: Waiting
8ce3f2b601cc: Verifying Checksum
8ce3f2b601cc: Download complete
5c578b8d6bec: Verifying Checksum
5c578b8d6bec: Download complete
af107e978371: Verifying Checksum
af107e978371: Download complete
af107e978371: Pull complete
8ce3f2b601cc: Pull complete
5c578b8d6bec: Pull complete
5eda41c77a92: Download complete
5eda41c77a92: Pull complete
d0976544ee1e: Download complete
d0976544ee1e: Pull complete
61c7b8d50631: Verifying Checksum
61c7b8d50631: Download complete
61c7b8d50631: Pull complete
Digest: sha256:6b06282bca338c00599cb606fe39b67912fc8d0d5540d4abf17137342c2ccb0f
Status: Downloaded newer image for registry.0xacab.org/georg/mat2-ci-images:python3.12
registry.0xacab.org/georg/mat2-ci-images:python3.12
$ for i in {1..5}; do docker build --cache-from $IMAGE_TAG --file $CI_JOB_NAME --tag $IMAGE_TAG . && break || sleep 15; done
#0 building with "default" instance using docker driver

#1 [internal] load .dockerignore
#1 transferring context: 2B done
#1 DONE 0.1s

#2 [internal] load build definition from python3.12
#2 transferring dockerfile: 1.02kB done
#2 DONE 0.1s

#3 [internal] load metadata for docker.io/library/python:3.12-slim-bookworm
#3 DONE 1.7s

#4 importing cache manifest from registry.0xacab.org/georg/mat2-ci-images:python3.12
#4 DONE 0.0s

#5 [1/2] FROM docker.io/library/python:3.12-slim-bookworm@sha256:c805c5edcf6005fd72f933156f504525e1da263ffbc3fae6b4940e6c360c216f
#5 resolve docker.io/library/python:3.12-slim-bookworm@sha256:c805c5edcf6005fd72f933156f504525e1da263ffbc3fae6b4940e6c360c216f 0.0s done
#5 sha256:c805c5edcf6005fd72f933156f504525e1da263ffbc3fae6b4940e6c360c216f 1.65kB / 1.65kB done
#5 sha256:c127a8c4aca8a5d3ac3a333cbab4c082c7ddbd0891441cc4e30d88dc351f1ce5 1.37kB / 1.37kB done
#5 sha256:7c5c05471c3a90708cbfa4c6cfa11932ad4d6d20e3afcd2af21298a7e4655e60 6.71kB / 6.71kB done
#5 DONE 0.3s

#6 [2/2] RUN printf "deb https://deb.debian.org/debian unstable main" > /etc/apt/sources.list.d/unstable.list &&  printf "Package: *\nPin: release a=stable\nPin-Priority: 900\n\nPackage: *\nPin: release a=stable-security\nPin-Priority: 900\n\nPackage: *\nPin: release a=stable-updates\nPin-Priority: 900\n\nPackage: libimage-exiftool-perl\nPin: release a=unstable\nPin-Priority: 900\n" > /etc/apt/preferences.d/pinning &&  apt-get update &&  apt-get install --no-install-recommends --no-install-suggests --yes     ffmpeg     gir1.2-gdkpixbuf-2.0     gir1.2-poppler-0.18     gir1.2-rsvg-2.0     git     libgirepository1.0-dev     libimage-exiftool-perl &&  apt-get upgrade --yes &&  rm -rf /var/cache/apt/* /var/lib/apt/lists/* &&  git -C mat2 pull --no-rebase || git clone https://0xacab.org/jvoisin/mat2.git mat2 &&  (cd mat2 && pip install --disable-pip-version-check --no-cache-dir --upgrade-strategy only-if-needed --verbose .)
#6 0.447 Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB]
#6 0.455 Get:2 https://deb.debian.org/debian unstable InRelease [198 kB]
#6 0.475 Get:3 http://deb.debian.org/debian bookworm-updates InRelease [52.1 kB]
#6 0.487 Get:4 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
#6 0.553 Get:5 http://deb.debian.org/debian bookworm/main amd64 Packages [8787 kB]
#6 0.713 Get:6 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [11.5 kB]
#6 0.791 Get:7 https://deb.debian.org/debian unstable/main amd64 Packages [9620 kB]
#6 0.875 Get:8 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [132 kB]
#6 3.186 Fetched 19.0 MB in 3s (6770 kB/s)
#6 3.186 Reading package lists...
#6 4.341 Reading package lists...
#6 5.352 Building dependency tree...
#6 5.545 Reading state information...
#6 5.853 The following additional packages will be installed:
#6 5.853   binutils binutils-common binutils-x86-64-linux-gnu build-essential bzip2 cpp
#6 5.853   cpp-12 dpkg-dev fontconfig fontconfig-config fonts-dejavu-core g++ g++-12
#6 5.853   gcc gcc-12 gir1.2-freedesktop gir1.2-glib-2.0 git-man gobject-introspection
#6 5.853   libaom3 libasan8 libasound2 libasound2-data libass9 libasyncns0 libatomic1
#6 5.853   libavc1394-0 libavcodec59 libavdevice59 libavfilter8 libavformat59
#6 5.853   libavutil57 libbinutils libblas3 libblkid-dev libbluray2 libbrotli1 libbs2b0
#6 5.853   libbsd0 libc-dev-bin libc6-dev libcaca0 libcairo-gobject2 libcairo2 libcc1-0
#6 5.853   libcdio-cdda2 libcdio-paranoia2 libcdio19 libchromaprint1 libcjson1
#6 5.853   libcodec2-1.0 libcrypt-dev libctf-nobfd0 libctf0 libcurl3-gnutls libdatrie1
#6 5.853   libdav1d6 libdbus-1-3 libdc1394-25 libdecor-0-0 libdeflate0 libdpkg-perl
#6 5.853   libdrm-amdgpu1 libdrm-common libdrm-intel1 libdrm-nouveau2 libdrm-radeon1
#6 5.853   libdrm2 libedit2 libelf1 libepoxy0 liberror-perl libffi-dev libflac12
#6 5.854   libflite1 libfontconfig1 libfreetype6 libfribidi0 libgbm1 libgcc-12-dev
#6 5.854   libgdbm-compat4 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-common libgfortran5
#6 5.854   libgirepository-1.0-1 libgl1 libgl1-mesa-dri libglapi-mesa libglib2.0-0
#6 5.854   libglib2.0-bin libglib2.0-data libglib2.0-dev libglib2.0-dev-bin libglvnd0
#6 5.854   libglx-mesa0 libglx0 libgme0 libgomp1 libgprofng0 libgraphite2-3 libgsm1
#6 5.854   libharfbuzz0b libhwy1 libicu72 libiec61883-0 libisl23 libitm1
#6 5.854   libjack-jackd2-0 libjansson4 libjbig0 libjpeg62-turbo libjxl0.7 liblapack3
#6 5.854   liblcms2-2 libldap-2.5-0 liblerc4 liblilv-0-0 libllvm15 liblsan0
#6 5.854   libmbedcrypto7 libmfx1 libmount-dev libmp3lame0 libmpc3 libmpfr6 libmpg123-0
#6 5.854   libmysofa1 libnghttp2-14 libnorm1 libnsl-dev libnspr4 libnss3 libnuma1
#6 5.854   libogg0 libopenal-data libopenal1 libopenjp2-7 libopenmpt0 libopus0
#6 5.854   libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0
#6 5.854   libpcre2-16-0 libpcre2-32-0 libpcre2-dev libpcre2-posix3 libperl5.36
#6 5.854   libpgm-5.3-0 libpixman-1-0 libpkgconf3 libplacebo208 libpng16-16
#6 5.854   libpocketsphinx3 libpoppler-glib8 libpoppler126 libpostproc56 libpsl5
#6 5.854   libpulse0 libpython3-stdlib libpython3.11-minimal libpython3.11-stdlib
#6 5.854   libquadmath0 librabbitmq4 librav1e0 libraw1394-11 librist4 librsvg2-2
#6 5.855   librtmp1 librubberband2 libsamplerate0 libsasl2-2 libsasl2-modules-db
#6 5.855   libsdl2-2.0-0 libselinux1-dev libsensors-config libsensors5 libsepol-dev
#6 5.855   libserd-0-0 libshine3 libslang2 libsnappy1v5 libsndfile1 libsndio7.0
#6 5.855   libsodium23 libsord-0-0 libsoxr0 libspeex1 libsphinxbase3 libsratom-0-0
#6 5.855   libsrt1.5-gnutls libssh-gcrypt-4 libssh2-1 libstdc++-12-dev libsvtav1enc1
#6 5.855   libswresample4 libswscale6 libthai-data libthai0 libtheora0 libtiff6
#6 5.855   libtirpc-dev libtsan2 libtwolame0 libubsan1 libudfread0 libusb-1.0-0
#6 5.855   libva-drm2 libva-x11-2 libva2 libvdpau1 libvidstab1.1 libvorbis0a
#6 5.855   libvorbisenc2 libvorbisfile3 libvpx7 libvulkan1 libwayland-client0
#6 5.855   libwayland-cursor0 libwayland-egl1 libwayland-server0 libwebp7 libwebpmux3
#6 5.855   libx11-6 libx11-data libx11-xcb1 libx264-164 libx265-199 libxau6
#6 5.855   libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-randr0
#6 5.855   libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcb1
#6 5.855   libxcursor1 libxdmcp6 libxext6 libxfixes3 libxi6 libxkbcommon0 libxml2
#6 5.855   libxrandr2 libxrender1 libxshmfence1 libxss1 libxv1 libxvidcore4 libxxf86vm1
#6 5.855   libz3-4 libzimg2 libzmq5 libzvbi-common libzvbi0 linux-libc-dev make
#6 5.855   media-types ocl-icd-libopencl1 patch perl perl-modules-5.36 pkg-config
#6 5.856   pkgconf pkgconf-bin python3 python3-distutils python3-lib2to3 python3-mako
#6 5.856   python3-markdown python3-markupsafe python3-minimal python3-pkg-resources
#6 5.856   python3.11 python3.11-minimal rpcsvc-proto shared-mime-info uuid-dev
#6 5.856   x11-common xkb-data xz-utils zlib1g-dev
#6 5.859 Suggested packages:
#6 5.859   binutils-doc bzip2-doc cpp-doc gcc-12-locales cpp-12-doc debian-keyring
#6 5.859   ffmpeg-doc g++-multilib g++-12-multilib gcc-12-doc gcc-multilib manpages-dev
#6 5.859   autoconf automake libtool flex bison gdb gcc-doc gcc-12-multilib
#6 5.859   gettext-base git-daemon-run | git-daemon-sysvinit git-doc git-email git-gui
#6 5.859   gitk gitweb git-cvs git-mediawiki git-svn libasound2-plugins alsa-utils
#6 5.859   libcuda1 libnvcuvid1 libnvidia-encode1 libbluray-bdj glibc-doc gnupg | sq
#6 5.859   | sqop | pgpainless-cli sensible-utils bzr libgirepository1.0-doc
#6 5.859   low-memory-monitor libglib2.0-doc libgdk-pixbuf2.0-bin libxml2-utils
#6 5.859   libposix-strptime-perl jackd2 liblcms2-utils libportaudio2 opus-tools
#6 5.859   pciutils pulseaudio libraw1394-doc librsvg2-bin xdg-utils lm-sensors serdi
#6 5.859   sndiod sordi speex libstdc++-12-doc make-doc opencl-icd ed diffutils-doc
#6 5.859   perl-doc libterm-readline-gnu-perl | libterm-readline-perl-perl
#6 5.859   libtap-harness-archive-perl python3-doc python3-tk python3-venv
#6 5.859   python-mako-doc python3-beaker python-markdown-doc python3-setuptools
#6 5.859   python3.11-venv python3.11-doc binfmt-support
#6 5.859 Recommended packages:
#6 5.859   fakeroot gnupg | sq | sqop | pgpainless-cli libalgorithm-merge-perl less
#6 5.859   ssh-client alsa-ucm-conf alsa-topology-conf libaacs0 manpages manpages-dev
#6 5.859   libc-devtools dbus libdecor-0-plugin-1-cairo | libdecor-0-plugin-1
#6 5.859   libfile-fcntllock-perl liblocale-gettext-perl libgdk-pixbuf2.0-bin
#6 5.859   xdg-user-dirs libarchive-zip-perl libcompress-raw-lzma-perl
#6 5.859   libio-compress-brotli-perl libunicode-linebreak-perl libldap-common
#6 5.859   pocketsphinx-en-us poppler-data publicsuffix librsvg2-common
#6 5.859   libsasl2-modules va-driver-all | va-driver vdpau-driver-all | vdpau-driver
#6 5.859   mesa-vulkan-drivers | vulkan-icd python3-pygments python3-yaml
#6 16.34 The following NEW packages will be installed:
#6 16.34   binutils binutils-common binutils-x86-64-linux-gnu build-essential bzip2 cpp
#6 16.34   cpp-12 dpkg-dev ffmpeg fontconfig fontconfig-config fonts-dejavu-core g++
#6 16.34   g++-12 gcc gcc-12 gir1.2-freedesktop gir1.2-gdkpixbuf-2.0 gir1.2-glib-2.0
#6 16.34   gir1.2-poppler-0.18 gir1.2-rsvg-2.0 git git-man gobject-introspection
#6 16.34   libaom3 libasan8 libasound2 libasound2-data libass9 libasyncns0 libatomic1
#6 16.34   libavc1394-0 libavcodec59 libavdevice59 libavfilter8 libavformat59
#6 16.34   libavutil57 libbinutils libblas3 libblkid-dev libbluray2 libbrotli1 libbs2b0
#6 16.34   libbsd0 libc-dev-bin libc6-dev libcaca0 libcairo-gobject2 libcairo2 libcc1-0
#6 16.34   libcdio-cdda2 libcdio-paranoia2 libcdio19 libchromaprint1 libcjson1
#6 16.34   libcodec2-1.0 libcrypt-dev libctf-nobfd0 libctf0 libcurl3-gnutls libdatrie1
#6 16.34   libdav1d6 libdbus-1-3 libdc1394-25 libdecor-0-0 libdeflate0 libdpkg-perl
#6 16.34   libdrm-amdgpu1 libdrm-common libdrm-intel1 libdrm-nouveau2 libdrm-radeon1
#6 16.34   libdrm2 libedit2 libelf1 libepoxy0 liberror-perl libffi-dev libflac12
#6 16.34   libflite1 libfontconfig1 libfreetype6 libfribidi0 libgbm1 libgcc-12-dev
#6 16.34   libgdbm-compat4 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-common libgfortran5
#6 16.34   libgirepository-1.0-1 libgirepository1.0-dev libgl1 libgl1-mesa-dri
#6 16.34   libglapi-mesa libglib2.0-0 libglib2.0-bin libglib2.0-data libglib2.0-dev
#6 16.34   libglib2.0-dev-bin libglvnd0 libglx-mesa0 libglx0 libgme0 libgomp1
#6 16.34   libgprofng0 libgraphite2-3 libgsm1 libharfbuzz0b libhwy1 libicu72
#6 16.34   libiec61883-0 libimage-exiftool-perl libisl23 libitm1 libjack-jackd2-0
#6 16.34   libjansson4 libjbig0 libjpeg62-turbo libjxl0.7 liblapack3 liblcms2-2
#6 16.34   libldap-2.5-0 liblerc4 liblilv-0-0 libllvm15 liblsan0 libmbedcrypto7 libmfx1
#6 16.34   libmount-dev libmp3lame0 libmpc3 libmpfr6 libmpg123-0 libmysofa1
#6 16.34   libnghttp2-14 libnorm1 libnsl-dev libnspr4 libnss3 libnuma1 libogg0
#6 16.34   libopenal-data libopenal1 libopenjp2-7 libopenmpt0 libopus0 libpango-1.0-0
#6 16.34   libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 libpcre2-16-0
#6 16.34   libpcre2-32-0 libpcre2-dev libpcre2-posix3 libperl5.36 libpgm-5.3-0
#6 16.34   libpixman-1-0 libpkgconf3 libplacebo208 libpng16-16 libpocketsphinx3
#6 16.34   libpoppler-glib8 libpoppler126 libpostproc56 libpsl5 libpulse0
#6 16.34   libpython3-stdlib libpython3.11-minimal libpython3.11-stdlib libquadmath0
#6 16.34   librabbitmq4 librav1e0 libraw1394-11 librist4 librsvg2-2 librtmp1
#6 16.34   librubberband2 libsamplerate0 libsasl2-2 libsasl2-modules-db libsdl2-2.0-0
#6 16.34   libselinux1-dev libsensors-config libsensors5 libsepol-dev libserd-0-0
#6 16.34   libshine3 libslang2 libsnappy1v5 libsndfile1 libsndio7.0 libsodium23
#6 16.34   libsord-0-0 libsoxr0 libspeex1 libsphinxbase3 libsratom-0-0 libsrt1.5-gnutls
#6 16.34   libssh-gcrypt-4 libssh2-1 libstdc++-12-dev libsvtav1enc1 libswresample4
#6 16.34   libswscale6 libthai-data libthai0 libtheora0 libtiff6 libtirpc-dev libtsan2
#6 16.34   libtwolame0 libubsan1 libudfread0 libusb-1.0-0 libva-drm2 libva-x11-2 libva2
#6 16.34   libvdpau1 libvidstab1.1 libvorbis0a libvorbisenc2 libvorbisfile3 libvpx7
#6 16.34   libvulkan1 libwayland-client0 libwayland-cursor0 libwayland-egl1
#6 16.34   libwayland-server0 libwebp7 libwebpmux3 libx11-6 libx11-data libx11-xcb1
#6 16.34   libx264-164 libx265-199 libxau6 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0
#6 16.34   libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0
#6 16.34   libxcb-sync1 libxcb-xfixes0 libxcb1 libxcursor1 libxdmcp6 libxext6
#6 16.34   libxfixes3 libxi6 libxkbcommon0 libxml2 libxrandr2 libxrender1 libxshmfence1
#6 16.34   libxss1 libxv1 libxvidcore4 libxxf86vm1 libz3-4 libzimg2 libzmq5
#6 16.34   libzvbi-common libzvbi0 linux-libc-dev make media-types ocl-icd-libopencl1
#6 16.34   patch perl perl-modules-5.36 pkg-config pkgconf pkgconf-bin python3
#6 16.34   python3-distutils python3-lib2to3 python3-mako python3-markdown
#6 16.34   python3-markupsafe python3-minimal python3-pkg-resources python3.11
#6 16.34   python3.11-minimal rpcsvc-proto shared-mime-info uuid-dev x11-common
#6 16.34   xkb-data xz-utils zlib1g-dev
#6 16.46 0 upgraded, 293 newly installed, 0 to remove and 0 not upgraded.
#6 16.46 Need to get 235 MB of archives.
#6 16.46 After this operation, 939 MB of additional disk space will be used.
#6 16.46 Get:1 http://deb.debian.org/debian bookworm/main amd64 perl-modules-5.36 all 5.36.0-7+deb12u1 [2815 kB]
#6 16.53 Get:2 http://deb.debian.org/debian bookworm/main amd64 libgdbm-compat4 amd64 1.23-3 [48.2 kB]
#6 16.53 Get:3 http://deb.debian.org/debian bookworm/main amd64 libperl5.36 amd64 5.36.0-7+deb12u1 [4218 kB]
#6 16.57 Get:4 http://deb.debian.org/debian bookworm/main amd64 perl amd64 5.36.0-7+deb12u1 [239 kB]
#6 16.57 Get:5 http://deb.debian.org/debian bookworm/main amd64 libpython3.11-minimal amd64 3.11.2-6 [813 kB]
#6 16.58 Get:6 http://deb.debian.org/debian bookworm/main amd64 python3.11-minimal amd64 3.11.2-6 [2064 kB]
#6 16.62 Get:7 http://deb.debian.org/debian bookworm/main amd64 python3-minimal amd64 3.11.2-1+b1 [26.3 kB]
#6 16.62 Get:8 http://deb.debian.org/debian bookworm/main amd64 media-types all 10.0.0 [26.1 kB]
#6 16.62 Get:9 http://deb.debian.org/debian bookworm/main amd64 libpython3.11-stdlib amd64 3.11.2-6 [1796 kB]
#6 16.63 Get:10 http://deb.debian.org/debian bookworm/main amd64 python3.11 amd64 3.11.2-6 [572 kB]
#6 16.64 Get:11 http://deb.debian.org/debian bookworm/main amd64 libpython3-stdlib amd64 3.11.2-1+b1 [9312 B]
#6 16.64 Get:12 http://deb.debian.org/debian bookworm/main amd64 python3 amd64 3.11.2-1+b1 [26.3 kB]
#6 16.64 Get:13 http://deb.debian.org/debian bookworm/main amd64 bzip2 amd64 1.0.8-5+b1 [49.8 kB]
#6 16.64 Get:14 http://deb.debian.org/debian bookworm/main amd64 xz-utils amd64 5.4.1-0.2 [471 kB]
#6 16.64 Get:15 http://deb.debian.org/debian bookworm/main amd64 binutils-common amd64 2.40-2 [2487 kB]
#6 16.67 Get:16 http://deb.debian.org/debian bookworm/main amd64 libbinutils amd64 2.40-2 [572 kB]
#6 16.67 Get:17 http://deb.debian.org/debian bookworm/main amd64 libctf-nobfd0 amd64 2.40-2 [153 kB]
#6 16.67 Get:18 http://deb.debian.org/debian bookworm/main amd64 libctf0 amd64 2.40-2 [89.8 kB]
#6 16.68 Get:19 http://deb.debian.org/debian bookworm/main amd64 libgprofng0 amd64 2.40-2 [812 kB]
#6 16.68 Get:20 http://deb.debian.org/debian bookworm/main amd64 libjansson4 amd64 2.14-2 [40.8 kB]
#6 16.68 Get:21 http://deb.debian.org/debian bookworm/main amd64 binutils-x86-64-linux-gnu amd64 2.40-2 [2246 kB]
#6 16.71 Get:22 http://deb.debian.org/debian bookworm/main amd64 binutils amd64 2.40-2 [65.0 kB]
#6 16.71 Get:23 http://deb.debian.org/debian bookworm/main amd64 libc-dev-bin amd64 2.36-9+deb12u3 [45.2 kB]
#6 16.71 Get:24 http://deb.debian.org/debian bookworm-updates/main amd64 linux-libc-dev amd64 6.1.67-1 [1905 kB]
#6 16.72 Get:25 http://deb.debian.org/debian bookworm/main amd64 libcrypt-dev amd64 1:4.4.33-2 [118 kB]
#6 16.72 Get:26 http://deb.debian.org/debian bookworm/main amd64 libtirpc-dev amd64 1.3.3+ds-1 [191 kB]
#6 16.72 Get:27 http://deb.debian.org/debian bookworm/main amd64 libnsl-dev amd64 1.3.0-2 [66.4 kB]
#6 16.72 Get:28 http://deb.debian.org/debian bookworm/main amd64 rpcsvc-proto amd64 1.4.3-1 [63.3 kB]
#6 16.73 Get:29 http://deb.debian.org/debian bookworm/main amd64 libc6-dev amd64 2.36-9+deb12u3 [1898 kB]
#6 16.73 Get:30 https://deb.debian.org/debian unstable/main amd64 libimage-exiftool-perl all 12.70+dfsg-1 [3940 kB]
#6 16.74 Get:31 http://deb.debian.org/debian bookworm/main amd64 libisl23 amd64 0.25-1 [690 kB]
#6 16.75 Get:32 http://deb.debian.org/debian bookworm/main amd64 libmpfr6 amd64 4.2.0-1 [701 kB]
#6 16.75 Get:33 http://deb.debian.org/debian bookworm/main amd64 libmpc3 amd64 1.3.1-1 [51.5 kB]
#6 16.76 Get:34 http://deb.debian.org/debian bookworm/main amd64 cpp-12 amd64 12.2.0-14 [9764 kB]
#6 16.85 Get:35 http://deb.debian.org/debian bookworm/main amd64 cpp amd64 4:12.2.0-3 [6836 B]
#6 16.85 Get:36 http://deb.debian.org/debian bookworm/main amd64 libcc1-0 amd64 12.2.0-14 [41.7 kB]
#6 16.85 Get:37 http://deb.debian.org/debian bookworm/main amd64 libgomp1 amd64 12.2.0-14 [116 kB]
#6 16.85 Get:38 http://deb.debian.org/debian bookworm/main amd64 libitm1 amd64 12.2.0-14 [26.1 kB]
#6 16.85 Get:39 http://deb.debian.org/debian bookworm/main amd64 libatomic1 amd64 12.2.0-14 [9328 B]
#6 16.85 Get:40 http://deb.debian.org/debian bookworm/main amd64 libasan8 amd64 12.2.0-14 [2195 kB]
#6 16.87 Get:41 http://deb.debian.org/debian bookworm/main amd64 liblsan0 amd64 12.2.0-14 [969 kB]
#6 16.88 Get:42 http://deb.debian.org/debian bookworm/main amd64 libtsan2 amd64 12.2.0-14 [2196 kB]
#6 16.90 Get:43 http://deb.debian.org/debian bookworm/main amd64 libubsan1 amd64 12.2.0-14 [883 kB]
#6 16.93 Get:44 http://deb.debian.org/debian bookworm/main amd64 libquadmath0 amd64 12.2.0-14 [144 kB]
#6 16.93 Get:45 http://deb.debian.org/debian bookworm/main amd64 libgcc-12-dev amd64 12.2.0-14 [2437 kB]
#6 16.95 Get:46 http://deb.debian.org/debian bookworm/main amd64 gcc-12 amd64 12.2.0-14 [19.3 MB]
#6 17.10 Get:47 http://deb.debian.org/debian bookworm/main amd64 gcc amd64 4:12.2.0-3 [5216 B]
#6 17.11 Get:48 http://deb.debian.org/debian bookworm/main amd64 libstdc++-12-dev amd64 12.2.0-14 [2046 kB]
#6 17.12 Get:49 http://deb.debian.org/debian bookworm/main amd64 g++-12 amd64 12.2.0-14 [10.7 MB]
#6 17.22 Get:50 http://deb.debian.org/debian bookworm/main amd64 g++ amd64 4:12.2.0-3 [1356 B]
#6 17.22 Get:51 http://deb.debian.org/debian bookworm/main amd64 make amd64 4.3-4.1 [396 kB]
#6 17.23 Get:52 http://deb.debian.org/debian bookworm/main amd64 libdpkg-perl all 1.21.22 [603 kB]
#6 17.23 Get:53 http://deb.debian.org/debian bookworm/main amd64 patch amd64 2.7.6-7 [128 kB]
#6 17.23 Get:54 http://deb.debian.org/debian bookworm/main amd64 dpkg-dev all 1.21.22 [1353 kB]
#6 17.24 Get:55 http://deb.debian.org/debian bookworm/main amd64 build-essential amd64 12.9 [7704 B]
#6 17.24 Get:56 http://deb.debian.org/debian bookworm/main amd64 libaom3 amd64 3.6.0-1 [1851 kB]
#6 17.26 Get:57 http://deb.debian.org/debian bookworm/main amd64 libdrm-common all 2.4.114-1 [7112 B]
#6 17.26 Get:58 http://deb.debian.org/debian bookworm/main amd64 libdrm2 amd64 2.4.114-1+b1 [37.5 kB]
#6 17.26 Get:59 http://deb.debian.org/debian bookworm/main amd64 libva2 amd64 2.17.0-1 [69.2 kB]
#6 17.26 Get:60 http://deb.debian.org/debian bookworm/main amd64 libmfx1 amd64 22.5.4-1 [3219 kB]
#6 17.29 Get:61 http://deb.debian.org/debian bookworm/main amd64 libva-drm2 amd64 2.17.0-1 [16.4 kB]
#6 17.29 Get:62 http://deb.debian.org/debian bookworm/main amd64 libxau6 amd64 1:1.0.9-1 [19.7 kB]
#6 17.29 Get:63 http://deb.debian.org/debian bookworm/main amd64 libbsd0 amd64 0.11.7-2 [117 kB]
#6 17.30 Get:64 http://deb.debian.org/debian bookworm/main amd64 libxdmcp6 amd64 1:1.1.2-3 [26.3 kB]
#6 17.30 Get:65 http://deb.debian.org/debian bookworm/main amd64 libxcb1 amd64 1.15-1 [144 kB]
#6 17.30 Get:66 http://deb.debian.org/debian bookworm/main amd64 libx11-data all 2:1.8.4-2+deb12u2 [292 kB]
#6 17.30 Get:67 http://deb.debian.org/debian bookworm/main amd64 libx11-6 amd64 2:1.8.4-2+deb12u2 [760 kB]
#6 17.31 Get:68 http://deb.debian.org/debian bookworm/main amd64 libx11-xcb1 amd64 2:1.8.4-2+deb12u2 [192 kB]
#6 17.31 Get:69 http://deb.debian.org/debian bookworm/main amd64 libxcb-dri3-0 amd64 1.15-1 [107 kB]
#6 17.31 Get:70 http://deb.debian.org/debian bookworm/main amd64 libxext6 amd64 2:1.3.4-1+b1 [52.9 kB]
#6 17.31 Get:71 http://deb.debian.org/debian bookworm/main amd64 libxfixes3 amd64 1:6.0.0-2 [22.7 kB]
#6 17.31 Get:72 http://deb.debian.org/debian bookworm/main amd64 libva-x11-2 amd64 2.17.0-1 [21.0 kB]
#6 17.32 Get:73 http://deb.debian.org/debian bookworm/main amd64 libvdpau1 amd64 1.5-2 [26.1 kB]
#6 17.32 Get:74 http://deb.debian.org/debian bookworm/main amd64 ocl-icd-libopencl1 amd64 2.3.1-1 [43.0 kB]
#6 17.32 Get:75 http://deb.debian.org/debian bookworm/main amd64 libavutil57 amd64 7:5.1.4-0+deb12u1 [360 kB]
#6 17.33 Get:76 http://deb.debian.org/debian bookworm/main amd64 libbrotli1 amd64 1.0.9-2+b6 [275 kB]
#6 17.33 Get:77 http://deb.debian.org/debian bookworm/main amd64 libpng16-16 amd64 1.6.39-2 [276 kB]
#6 17.33 Get:78 http://deb.debian.org/debian bookworm/main amd64 libfreetype6 amd64 2.12.1+dfsg-5 [399 kB]
#6 17.34 Get:79 http://deb.debian.org/debian bookworm/main amd64 fonts-dejavu-core all 2.37-6 [1068 kB]
#6 17.35 Get:80 http://deb.debian.org/debian bookworm/main amd64 fontconfig-config amd64 2.14.1-4 [315 kB]
#6 17.35 Get:81 http://deb.debian.org/debian bookworm/main amd64 libfontconfig1 amd64 2.14.1-4 [386 kB]
#6 17.35 Get:82 http://deb.debian.org/debian bookworm/main amd64 libpixman-1-0 amd64 0.42.2-1 [546 kB]
#6 17.36 Get:83 http://deb.debian.org/debian bookworm/main amd64 libxcb-render0 amd64 1.15-1 [115 kB]
#6 17.36 Get:84 http://deb.debian.org/debian bookworm/main amd64 libxcb-shm0 amd64 1.15-1 [105 kB]
#6 17.36 Get:85 http://deb.debian.org/debian bookworm/main amd64 libxrender1 amd64 1:0.9.10-1.1 [33.2 kB]
#6 17.36 Get:86 http://deb.debian.org/debian bookworm/main amd64 libcairo2 amd64 1.16.0-7 [575 kB]
#6 17.37 Get:87 http://deb.debian.org/debian bookworm/main amd64 libcodec2-1.0 amd64 1.0.5-1 [8171 kB]
#6 19.30 Get:88 http://deb.debian.org/debian bookworm/main amd64 libdav1d6 amd64 1.0.0-2 [495 kB]
#6 19.30 Get:89 http://deb.debian.org/debian bookworm/main amd64 libglib2.0-0 amd64 2.74.6-2 [1398 kB]
#6 19.31 Get:90 http://deb.debian.org/debian bookworm/main amd64 libgsm1 amd64 1.0.22-1 [30.9 kB]
#6 19.31 Get:91 http://deb.debian.org/debian bookworm/main amd64 libhwy1 amd64 1.0.3-3+deb12u1 [348 kB]
#6 19.32 Get:92 http://deb.debian.org/debian bookworm/main amd64 liblcms2-2 amd64 2.14-2 [154 kB]
#6 19.32 Get:93 http://deb.debian.org/debian bookworm/main amd64 libjxl0.7 amd64 0.7.0-10 [1046 kB]
#6 19.33 Get:94 http://deb.debian.org/debian bookworm/main amd64 libmp3lame0 amd64 3.100-6 [365 kB]
#6 19.33 Get:95 http://deb.debian.org/debian bookworm/main amd64 libopenjp2-7 amd64 2.5.0-2 [189 kB]
#6 19.33 Get:96 http://deb.debian.org/debian bookworm/main amd64 libopus0 amd64 1.3.1-3 [195 kB]
#6 19.33 Get:97 http://deb.debian.org/debian bookworm/main amd64 librav1e0 amd64 0.5.1-6 [763 kB]
#6 19.34 Get:98 http://deb.debian.org/debian bookworm/main amd64 libcairo-gobject2 amd64 1.16.0-7 [112 kB]
#6 19.34 Get:99 http://deb.debian.org/debian bookworm/main amd64 libgdk-pixbuf2.0-common all 2.42.10+dfsg-1 [306 kB]
#6 19.35 Get:100 http://deb.debian.org/debian bookworm/main amd64 libicu72 amd64 72.1-3 [9376 kB]
#6 19.43 Get:101 http://deb.debian.org/debian bookworm/main amd64 libxml2 amd64 2.9.14+dfsg-1.3~deb12u1 [687 kB]
#6 19.44 Get:102 http://deb.debian.org/debian bookworm/main amd64 shared-mime-info amd64 2.2-1 [729 kB]
#6 19.44 Get:103 http://deb.debian.org/debian bookworm/main amd64 libjpeg62-turbo amd64 1:2.1.5-2 [166 kB]
#6 19.45 Get:104 http://deb.debian.org/debian bookworm/main amd64 libdeflate0 amd64 1.14-1 [61.4 kB]
#6 19.45 Get:105 http://deb.debian.org/debian bookworm/main amd64 libjbig0 amd64 2.1-6.1 [31.7 kB]
#6 19.45 Get:106 http://deb.debian.org/debian bookworm/main amd64 liblerc4 amd64 4.0.0+ds-2 [170 kB]
#6 19.45 Get:107 http://deb.debian.org/debian bookworm/main amd64 libwebp7 amd64 1.2.4-0.2+deb12u1 [286 kB]
#6 19.45 Get:108 http://deb.debian.org/debian bookworm/main amd64 libtiff6 amd64 4.5.0-6+deb12u1 [316 kB]
#6 19.46 Get:109 http://deb.debian.org/debian bookworm/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.10+dfsg-1+b1 [139 kB]
#6 19.46 Get:110 http://deb.debian.org/debian bookworm/main amd64 fontconfig amd64 2.14.1-4 [449 kB]
#6 19.46 Get:111 http://deb.debian.org/debian bookworm/main amd64 libfribidi0 amd64 1.0.8-2.1 [65.0 kB]
#6 19.47 Get:112 http://deb.debian.org/debian bookworm/main amd64 libgraphite2-3 amd64 1.3.14-1 [81.2 kB]
#6 19.47 Get:113 http://deb.debian.org/debian bookworm/main amd64 libharfbuzz0b amd64 6.0.0+dfsg-3 [1945 kB]
#6 19.49 Get:114 http://deb.debian.org/debian bookworm/main amd64 libthai-data all 0.1.29-1 [176 kB]
#6 19.50 Get:115 http://deb.debian.org/debian bookworm/main amd64 libdatrie1 amd64 0.2.13-2+b1 [43.3 kB]
#6 19.50 Get:116 http://deb.debian.org/debian bookworm/main amd64 libthai0 amd64 0.1.29-1 [57.5 kB]
#6 19.50 Get:117 http://deb.debian.org/debian bookworm/main amd64 libpango-1.0-0 amd64 1.50.12+ds-1 [212 kB]
#6 19.50 Get:118 http://deb.debian.org/debian bookworm/main amd64 libpangoft2-1.0-0 amd64 1.50.12+ds-1 [47.4 kB]
#6 19.50 Get:119 http://deb.debian.org/debian bookworm/main amd64 libpangocairo-1.0-0 amd64 1.50.12+ds-1 [34.2 kB]
#6 19.51 Get:120 http://deb.debian.org/debian bookworm/main amd64 librsvg2-2 amd64 2.54.7+dfsg-1~deb12u1 [2620 kB]
#6 19.56 Get:121 http://deb.debian.org/debian bookworm/main amd64 libshine3 amd64 3.1.1-2 [23.6 kB]
#6 19.56 Get:122 http://deb.debian.org/debian bookworm/main amd64 libsnappy1v5 amd64 1.1.9-3 [26.0 kB]
#6 19.56 Get:123 http://deb.debian.org/debian bookworm/main amd64 libspeex1 amd64 1.2.1-2 [54.6 kB]
#6 19.56 Get:124 http://deb.debian.org/debian bookworm/main amd64 libsvtav1enc1 amd64 1.4.1+dfsg-1 [2121 kB]
#6 19.77 Get:125 http://deb.debian.org/debian bookworm/main amd64 libsoxr0 amd64 0.1.3-4 [77.8 kB]
#6 20.31 Get:126 http://deb.debian.org/debian bookworm/main amd64 libswresample4 amd64 7:5.1.4-0+deb12u1 [94.5 kB]
#6 20.31 Get:127 http://deb.debian.org/debian bookworm/main amd64 libogg0 amd64 1.3.5-3 [23.4 kB]
#6 20.31 Get:128 http://deb.debian.org/debian bookworm/main amd64 libtheora0 amd64 1.1.1+dfsg.1-16.1+b1 [154 kB]
#6 20.31 Get:129 http://deb.debian.org/debian bookworm/main amd64 libtwolame0 amd64 0.4.0-2 [51.1 kB]
#6 20.31 Get:130 http://deb.debian.org/debian bookworm/main amd64 libvorbis0a amd64 1.3.7-1 [93.0 kB]
#6 20.31 Get:131 http://deb.debian.org/debian bookworm/main amd64 libvorbisenc2 amd64 1.3.7-1 [80.6 kB]
#6 20.31 Get:132 http://deb.debian.org/debian bookworm/main amd64 libvpx7 amd64 1.12.0-1+deb12u2 [1003 kB]
#6 20.32 Get:133 http://deb.debian.org/debian bookworm/main amd64 libwebpmux3 amd64 1.2.4-0.2+deb12u1 [109 kB]
#6 20.33 Get:134 http://deb.debian.org/debian bookworm/main amd64 libx264-164 amd64 2:0.164.3095+gitbaee400-3 [547 kB]
#6 20.33 Get:135 http://deb.debian.org/debian bookworm/main amd64 libnuma1 amd64 2.0.16-1 [21.0 kB]
#6 20.33 Get:136 http://deb.debian.org/debian bookworm/main amd64 libx265-199 amd64 3.5-2+b1 [1150 kB]
#6 20.34 Get:137 http://deb.debian.org/debian bookworm/main amd64 libxvidcore4 amd64 2:1.3.7-1 [242 kB]
#6 20.35 Get:138 http://deb.debian.org/debian bookworm/main amd64 libzvbi-common all 0.2.41-1 [69.7 kB]
#6 20.35 Get:139 http://deb.debian.org/debian bookworm/main amd64 libzvbi0 amd64 0.2.41-1 [274 kB]
#6 20.35 Get:140 http://deb.debian.org/debian bookworm/main amd64 libavcodec59 amd64 7:5.1.4-0+deb12u1 [5219 kB]
#6 20.42 Get:141 http://deb.debian.org/debian bookworm/main amd64 libasound2-data all 1.2.8-1 [20.5 kB]
#6 20.43 Get:142 http://deb.debian.org/debian bookworm/main amd64 libasound2 amd64 1.2.8-1+b1 [362 kB]
#6 20.44 Get:143 http://deb.debian.org/debian bookworm/main amd64 libraw1394-11 amd64 2.1.2-2 [41.1 kB]
#6 20.44 Get:144 http://deb.debian.org/debian bookworm/main amd64 libavc1394-0 amd64 0.5.4-5 [19.9 kB]
#6 20.44 Get:145 http://deb.debian.org/debian bookworm/main amd64 libass9 amd64 1:0.17.1-1 [107 kB]
#6 20.44 Get:146 http://deb.debian.org/debian bookworm/main amd64 libudfread0 amd64 1.1.2-1 [16.5 kB]
#6 20.44 Get:147 http://deb.debian.org/debian bookworm/main amd64 libbluray2 amd64 1:1.3.4-1 [138 kB]
#6 20.44 Get:148 http://deb.debian.org/debian bookworm/main amd64 libchromaprint1 amd64 1.5.1-2+b1 [41.0 kB]
#6 20.44 Get:149 http://deb.debian.org/debian bookworm/main amd64 libgme0 amd64 0.6.3-6 [130 kB]
#6 20.44 Get:150 http://deb.debian.org/debian bookworm/main amd64 libmpg123-0 amd64 1.31.2-1 [147 kB]
#6 20.45 Get:151 http://deb.debian.org/debian bookworm/main amd64 libvorbisfile3 amd64 1.3.7-1 [26.1 kB]
#6 20.45 Get:152 http://deb.debian.org/debian bookworm/main amd64 libopenmpt0 amd64 0.6.9-1 [693 kB]
#6 20.46 Get:153 http://deb.debian.org/debian bookworm/main amd64 librabbitmq4 amd64 0.11.0-1+b1 [43.5 kB]
#6 20.46 Get:154 http://deb.debian.org/debian bookworm/main amd64 libcjson1 amd64 1.7.15-1 [22.9 kB]
#6 20.46 Get:155 http://deb.debian.org/debian bookworm/main amd64 libmbedcrypto7 amd64 2.28.3-1 [277 kB]
#6 20.46 Get:156 http://deb.debian.org/debian bookworm/main amd64 librist4 amd64 0.2.7+dfsg-1 [73.9 kB]
#6 20.47 Get:157 http://deb.debian.org/debian bookworm/main amd64 libsrt1.5-gnutls amd64 1.5.1-1 [313 kB]
#6 20.47 Get:158 http://deb.debian.org/debian-security bookworm-security/main amd64 libssh-gcrypt-4 amd64 0.10.6-0+deb12u1 [219 kB]
#6 20.47 Get:159 http://deb.debian.org/debian bookworm/main amd64 libnorm1 amd64 1.5.9+dfsg-2 [221 kB]
#6 20.47 Get:160 http://deb.debian.org/debian bookworm/main amd64 libpgm-5.3-0 amd64 5.3.128~dfsg-2 [161 kB]
#6 20.47 Get:161 http://deb.debian.org/debian bookworm/main amd64 libsodium23 amd64 1.0.18-1 [161 kB]
#6 20.48 Get:162 http://deb.debian.org/debian bookworm/main amd64 libzmq5 amd64 4.3.4-6 [273 kB]
#6 20.48 Get:163 http://deb.debian.org/debian bookworm/main amd64 libavformat59 amd64 7:5.1.4-0+deb12u1 [1098 kB]
#6 20.49 Get:164 http://deb.debian.org/debian bookworm/main amd64 libbs2b0 amd64 3.1.0+dfsg-7 [11.5 kB]
#6 20.49 Get:165 http://deb.debian.org/debian bookworm/main amd64 libflite1 amd64 2.2-5 [12.8 MB]
#6 20.62 Get:166 http://deb.debian.org/debian bookworm/main amd64 libserd-0-0 amd64 0.30.16-1 [47.5 kB]
#6 20.62 Get:167 http://deb.debian.org/debian bookworm/main amd64 libsord-0-0 amd64 0.16.14+git221008-1 [20.8 kB]
#6 20.62 Get:168 http://deb.debian.org/debian bookworm/main amd64 libsratom-0-0 amd64 0.6.14-1 [17.7 kB]
#6 20.62 Get:169 http://deb.debian.org/debian bookworm/main amd64 liblilv-0-0 amd64 0.24.14-1 [49.4 kB]
#6 20.62 Get:170 http://deb.debian.org/debian bookworm/main amd64 libmysofa1 amd64 1.3.1~dfsg0-1 [1158 kB]
#6 20.63 Get:171 http://deb.debian.org/debian bookworm/main amd64 libepoxy0 amd64 1.5.10-1 [189 kB]
#6 20.64 Get:172 http://deb.debian.org/debian bookworm/main amd64 libvulkan1 amd64 1.3.239.0-1 [116 kB]
#6 20.64 Get:173 http://deb.debian.org/debian bookworm/main amd64 libplacebo208 amd64 4.208.0-3 [2239 kB]
#6 21.11 Get:174 http://deb.debian.org/debian bookworm/main amd64 libblas3 amd64 3.11.0-2 [149 kB]
#6 21.11 Get:175 http://deb.debian.org/debian bookworm/main amd64 libgfortran5 amd64 12.2.0-14 [793 kB]
#6 21.12 Get:176 http://deb.debian.org/debian bookworm/main amd64 liblapack3 amd64 3.11.0-2 [2323 kB]
#6 21.15 Get:177 http://deb.debian.org/debian bookworm/main amd64 libasyncns0 amd64 0.8-6+b3 [12.9 kB]
#6 21.15 Get:178 http://deb.debian.org/debian bookworm/main amd64 libdbus-1-3 amd64 1.14.10-1~deb12u1 [201 kB]
#6 21.15 Get:179 http://deb.debian.org/debian bookworm/main amd64 libflac12 amd64 1.4.2+ds-2 [198 kB]
#6 21.15 Get:180 http://deb.debian.org/debian bookworm/main amd64 libsndfile1 amd64 1.2.0-1 [196 kB]
#6 21.15 Get:181 http://deb.debian.org/debian bookworm/main amd64 libpulse0 amd64 16.1+dfsg1-2+b1 [274 kB]
#6 21.15 Get:182 http://deb.debian.org/debian bookworm/main amd64 libsphinxbase3 amd64 0.8+5prealpha+1-16 [118 kB]
#6 21.16 Get:183 http://deb.debian.org/debian bookworm/main amd64 libpocketsphinx3 amd64 0.8+5prealpha+1-15 [125 kB]
#6 21.16 Get:184 http://deb.debian.org/debian bookworm/main amd64 libpostproc56 amd64 7:5.1.4-0+deb12u1 [91.1 kB]
#6 21.16 Get:185 http://deb.debian.org/debian bookworm/main amd64 librubberband2 amd64 3.1.2+dfsg0-1 [137 kB]
#6 21.16 Get:186 http://deb.debian.org/debian bookworm/main amd64 libswscale6 amd64 7:5.1.4-0+deb12u1 [212 kB]
#6 21.16 Get:187 http://deb.debian.org/debian bookworm/main amd64 libvidstab1.1 amd64 1.1.0-2+b1 [37.8 kB]
#6 21.17 Get:188 http://deb.debian.org/debian bookworm/main amd64 libzimg2 amd64 3.0.4+ds1-1 [227 kB]
#6 21.17 Get:189 http://deb.debian.org/debian bookworm/main amd64 libavfilter8 amd64 7:5.1.4-0+deb12u1 [3699 kB]
#6 21.21 Get:190 http://deb.debian.org/debian bookworm/main amd64 libslang2 amd64 2.3.3-3 [554 kB]
#6 21.21 Get:191 http://deb.debian.org/debian bookworm/main amd64 libcaca0 amd64 0.99.beta20-3 [205 kB]
#6 21.22 Get:192 http://deb.debian.org/debian bookworm/main amd64 libcdio19 amd64 2.1.0-4 [203 kB]
#6 21.22 Get:193 http://deb.debian.org/debian bookworm/main amd64 libcdio-cdda2 amd64 10.2+2.0.1-1 [20.9 kB]
#6 21.22 Get:194 http://deb.debian.org/debian bookworm/main amd64 libcdio-paranoia2 amd64 10.2+2.0.1-1 [20.4 kB]
#6 21.22 Get:195 http://deb.debian.org/debian bookworm/main amd64 libusb-1.0-0 amd64 2:1.0.26-1 [62.6 kB]
#6 21.22 Get:196 http://deb.debian.org/debian bookworm/main amd64 libdc1394-25 amd64 2.2.6-4 [109 kB]
#6 21.22 Get:197 http://deb.debian.org/debian bookworm/main amd64 libglvnd0 amd64 1.6.0-1 [51.8 kB]
#6 21.22 Get:198 http://deb.debian.org/debian bookworm/main amd64 libglapi-mesa amd64 22.3.6-1+deb12u1 [35.7 kB]
#6 21.23 Get:199 http://deb.debian.org/debian bookworm/main amd64 libxcb-dri2-0 amd64 1.15-1 [107 kB]
#6 21.23 Get:200 http://deb.debian.org/debian bookworm/main amd64 libxcb-glx0 amd64 1.15-1 [122 kB]
#6 21.24 Get:201 http://deb.debian.org/debian bookworm/main amd64 libxcb-present0 amd64 1.15-1 [105 kB]
#6 21.24 Get:202 http://deb.debian.org/debian bookworm/main amd64 libxcb-randr0 amd64 1.15-1 [117 kB]
#6 21.24 Get:203 http://deb.debian.org/debian bookworm/main amd64 libxcb-sync1 amd64 1.15-1 [109 kB]
#6 21.24 Get:204 http://deb.debian.org/debian bookworm/main amd64 libxcb-xfixes0 amd64 1.15-1 [109 kB]
#6 21.24 Get:205 http://deb.debian.org/debian bookworm/main amd64 libxshmfence1 amd64 1.3-1 [8820 B]
#6 21.24 Get:206 http://deb.debian.org/debian bookworm/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB]
#6 21.24 Get:207 http://deb.debian.org/debian bookworm/main amd64 libdrm-amdgpu1 amd64 2.4.114-1+b1 [20.9 kB]
#6 21.25 Get:208 http://deb.debian.org/debian bookworm/main amd64 libpciaccess0 amd64 0.17-2 [51.4 kB]
#6 21.25 Get:209 http://deb.debian.org/debian bookworm/main amd64 libdrm-intel1 amd64 2.4.114-1+b1 [64.0 kB]
#6 21.25 Get:210 http://deb.debian.org/debian bookworm/main amd64 libdrm-nouveau2 amd64 2.4.114-1+b1 [19.1 kB]
#6 21.25 Get:211 http://deb.debian.org/debian bookworm/main amd64 libdrm-radeon1 amd64 2.4.114-1+b1 [21.8 kB]
#6 21.26 Get:212 http://deb.debian.org/debian bookworm/main amd64 libelf1 amd64 0.188-2.1 [174 kB]
#6 21.26 Get:213 http://deb.debian.org/debian bookworm/main amd64 libedit2 amd64 3.1-20221030-2 [93.0 kB]
#6 21.26 Get:214 http://deb.debian.org/debian bookworm/main amd64 libz3-4 amd64 4.8.12-3.1 [7216 kB]
#6 21.34 Get:215 http://deb.debian.org/debian bookworm/main amd64 libllvm15 amd64 1:15.0.6-4+b1 [23.1 MB]
#6 21.54 Get:216 http://deb.debian.org/debian bookworm/main amd64 libsensors-config all 1:3.6.0-7.1 [14.3 kB]
#6 21.54 Get:217 http://deb.debian.org/debian bookworm/main amd64 libsensors5 amd64 1:3.6.0-7.1 [34.2 kB]
#6 21.55 Get:218 http://deb.debian.org/debian bookworm/main amd64 libgl1-mesa-dri amd64 22.3.6-1+deb12u1 [7239 kB]
#6 21.61 Get:219 http://deb.debian.org/debian bookworm/main amd64 libglx-mesa0 amd64 22.3.6-1+deb12u1 [147 kB]
#6 21.62 Get:220 http://deb.debian.org/debian bookworm/main amd64 libglx0 amd64 1.6.0-1 [34.4 kB]
#6 21.62 Get:221 http://deb.debian.org/debian bookworm/main amd64 libgl1 amd64 1.6.0-1 [88.4 kB]
#6 21.62 Get:222 http://deb.debian.org/debian bookworm/main amd64 libiec61883-0 amd64 1.2.0-6+b1 [30.5 kB]
#6 21.62 Get:223 http://deb.debian.org/debian bookworm/main amd64 libsamplerate0 amd64 0.2.2-3 [952 kB]
#6 21.63 Get:224 http://deb.debian.org/debian bookworm/main amd64 libjack-jackd2-0 amd64 1.9.21~dfsg-3 [281 kB]
#6 21.63 Get:225 http://deb.debian.org/debian bookworm/main amd64 libopenal-data all 1:1.19.1-2 [170 kB]
#6 21.64 Get:226 http://deb.debian.org/debian bookworm/main amd64 libsndio7.0 amd64 1.9.0-0.3+b2 [27.3 kB]
#6 21.64 Get:227 http://deb.debian.org/debian bookworm/main amd64 libopenal1 amd64 1:1.19.1-2 [501 kB]
#6 21.64 Get:228 http://deb.debian.org/debian bookworm/main amd64 libwayland-client0 amd64 1.21.0-1 [28.3 kB]
#6 21.64 Get:229 http://deb.debian.org/debian bookworm/main amd64 libdecor-0-0 amd64 0.1.1-2 [14.6 kB]
#6 21.64 Get:230 http://deb.debian.org/debian bookworm/main amd64 libwayland-server0 amd64 1.21.0-1 [35.9 kB]
#6 21.64 Get:231 http://deb.debian.org/debian bookworm/main amd64 libgbm1 amd64 22.3.6-1+deb12u1 [38.0 kB]
#6 21.65 Get:232 http://deb.debian.org/debian bookworm/main amd64 libwayland-cursor0 amd64 1.21.0-1 [14.4 kB]
#6 21.65 Get:233 http://deb.debian.org/debian bookworm/main amd64 libwayland-egl1 amd64 1.21.0-1 [8640 B]
#6 21.65 Get:234 http://deb.debian.org/debian bookworm/main amd64 libxcursor1 amd64 1:1.2.1-1 [40.9 kB]
#6 21.65 Get:235 http://deb.debian.org/debian bookworm/main amd64 libxi6 amd64 2:1.8-1+b1 [84.2 kB]
#6 21.66 Get:236 http://deb.debian.org/debian bookworm/main amd64 xkb-data all 2.35.1-1 [764 kB]
#6 21.66 Get:237 http://deb.debian.org/debian bookworm/main amd64 libxkbcommon0 amd64 1.5.0-1 [106 kB]
#6 21.66 Get:238 http://deb.debian.org/debian bookworm/main amd64 libxrandr2 amd64 2:1.5.2-2+b1 [39.2 kB]
#6 21.67 Get:239 http://deb.debian.org/debian bookworm/main amd64 x11-common all 1:7.7+23 [252 kB]
#6 21.67 Get:240 http://deb.debian.org/debian bookworm/main amd64 libxss1 amd64 1:1.2.3-1 [17.8 kB]
#6 21.67 Get:241 http://deb.debian.org/debian bookworm/main amd64 libsdl2-2.0-0 amd64 2.26.5+dfsg-1 [629 kB]
#6 21.68 Get:242 http://deb.debian.org/debian bookworm/main amd64 libxcb-shape0 amd64 1.15-1 [106 kB]
#6 21.68 Get:243 http://deb.debian.org/debian bookworm/main amd64 libxv1 amd64 2:1.0.11-1.1 [24.8 kB]
#6 21.68 Get:244 http://deb.debian.org/debian bookworm/main amd64 libavdevice59 amd64 7:5.1.4-0+deb12u1 [111 kB]
#6 21.68 Get:245 http://deb.debian.org/debian bookworm/main amd64 ffmpeg amd64 7:5.1.4-0+deb12u1 [1811 kB]
#6 21.70 Get:246 http://deb.debian.org/debian bookworm/main amd64 libgirepository-1.0-1 amd64 1.74.0-3 [101 kB]
#6 21.70 Get:247 http://deb.debian.org/debian bookworm/main amd64 gir1.2-glib-2.0 amd64 1.74.0-3 [159 kB]
#6 21.70 Get:248 http://deb.debian.org/debian bookworm/main amd64 gir1.2-freedesktop amd64 1.74.0-3 [37.2 kB]
#6 21.71 Get:249 http://deb.debian.org/debian bookworm/main amd64 gir1.2-gdkpixbuf-2.0 amd64 2.42.10+dfsg-1+b1 [13.5 kB]
#6 21.71 Get:250 http://deb.debian.org/debian bookworm/main amd64 libnspr4 amd64 2:4.35-1 [113 kB]
#6 21.72 Get:251 http://deb.debian.org/debian bookworm/main amd64 libnss3 amd64 2:3.87.1-1 [1331 kB]
#6 21.74 Get:252 http://deb.debian.org/debian bookworm/main amd64 libpoppler126 amd64 22.12.0-2+b1 [1852 kB]
#6 21.75 Get:253 http://deb.debian.org/debian bookworm/main amd64 libpoppler-glib8 amd64 22.12.0-2+b1 [133 kB]
#6 21.76 Get:254 http://deb.debian.org/debian bookworm/main amd64 gir1.2-poppler-0.18 amd64 22.12.0-2+b1 [24.6 kB]
#6 21.76 Get:255 http://deb.debian.org/debian bookworm/main amd64 gir1.2-rsvg-2.0 amd64 2.54.7+dfsg-1~deb12u1 [20.8 kB]
#6 21.76 Get:256 http://deb.debian.org/debian bookworm/main amd64 libsasl2-modules-db amd64 2.1.28+dfsg-10 [20.3 kB]
#6 21.76 Get:257 http://deb.debian.org/debian bookworm/main amd64 libsasl2-2 amd64 2.1.28+dfsg-10 [59.7 kB]
#6 21.76 Get:258 http://deb.debian.org/debian bookworm/main amd64 libldap-2.5-0 amd64 2.5.13+dfsg-5 [183 kB]
#6 21.76 Get:259 http://deb.debian.org/debian bookworm/main amd64 libnghttp2-14 amd64 1.52.0-1+deb12u1 [72.4 kB]
#6 21.77 Get:260 http://deb.debian.org/debian bookworm/main amd64 libpsl5 amd64 0.21.2-1 [58.7 kB]
#6 21.77 Get:261 http://deb.debian.org/debian bookworm/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-2+b2 [60.8 kB]
#6 21.77 Get:262 http://deb.debian.org/debian bookworm/main amd64 libssh2-1 amd64 1.10.0-3+b1 [179 kB]
#6 21.78 Get:263 http://deb.debian.org/debian-security bookworm-security/main amd64 libcurl3-gnutls amd64 7.88.1-10+deb12u5 [385 kB]
#6 21.78 Get:264 http://deb.debian.org/debian bookworm/main amd64 liberror-perl all 0.17029-2 [29.0 kB]
#6 21.78 Get:265 http://deb.debian.org/debian bookworm/main amd64 git-man all 1:2.39.2-1.1 [2049 kB]
#6 21.80 Get:266 http://deb.debian.org/debian bookworm/main amd64 git amd64 1:2.39.2-1.1 [7171 kB]
#6 21.87 Get:267 http://deb.debian.org/debian bookworm/main amd64 python3-lib2to3 all 3.11.2-3 [76.3 kB]
#6 21.87 Get:268 http://deb.debian.org/debian bookworm/main amd64 python3-distutils all 3.11.2-3 [131 kB]
#6 21.87 Get:269 http://deb.debian.org/debian bookworm/main amd64 python3-pkg-resources all 66.1.1-1 [296 kB]
#6 21.88 Get:270 http://deb.debian.org/debian bookworm/main amd64 python3-markupsafe amd64 2.1.2-1+b1 [13.2 kB]
#6 21.88 Get:271 http://deb.debian.org/debian bookworm/main amd64 python3-mako all 1.2.4+ds-1 [81.9 kB]
#6 21.88 Get:272 http://deb.debian.org/debian bookworm/main amd64 python3-markdown all 3.4.1-2 [64.7 kB]
#6 21.88 Get:273 http://deb.debian.org/debian bookworm/main amd64 gobject-introspection amd64 1.74.0-3 [314 kB]
#6 21.88 Get:274 http://deb.debian.org/debian bookworm/main amd64 uuid-dev amd64 2.38.1-5+b1 [39.9 kB]
#6 21.88 Get:275 http://deb.debian.org/debian bookworm/main amd64 libblkid-dev amd64 2.38.1-5+b1 [179 kB]
#6 21.89 Get:276 http://deb.debian.org/debian bookworm/main amd64 libffi-dev amd64 3.4.4-1 [59.4 kB]
#6 21.89 Get:277 http://deb.debian.org/debian bookworm/main amd64 libglib2.0-data all 2.74.6-2 [1207 kB]
#6 21.91 Get:278 http://deb.debian.org/debian bookworm/main amd64 libglib2.0-bin amd64 2.74.6-2 [110 kB]
#6 21.91 Get:279 http://deb.debian.org/debian bookworm/main amd64 libglib2.0-dev-bin amd64 2.74.6-2 [151 kB]
#6 21.91 Get:280 http://deb.debian.org/debian bookworm/main amd64 libsepol-dev amd64 3.4-2.1 [351 kB]
#6 21.92 Get:281 http://deb.debian.org/debian bookworm/main amd64 libpcre2-16-0 amd64 10.42-1 [245 kB]
#6 21.92 Get:282 http://deb.debian.org/debian bookworm/main amd64 libpcre2-32-0 amd64 10.42-1 [234 kB]
#6 21.92 Get:283 http://deb.debian.org/debian bookworm/main amd64 libpcre2-posix3 amd64 10.42-1 [55.4 kB]
#6 21.92 Get:284 http://deb.debian.org/debian bookworm/main amd64 libpcre2-dev amd64 10.42-1 [753 kB]
#6 21.93 Get:285 http://deb.debian.org/debian bookworm/main amd64 libselinux1-dev amd64 3.4-1+b6 [157 kB]
#6 21.93 Get:286 http://deb.debian.org/debian bookworm/main amd64 libmount-dev amd64 2.38.1-5+b1 [22.5 kB]
#6 21.93 Get:287 http://deb.debian.org/debian bookworm/main amd64 libpkgconf3 amd64 1.8.1-1 [36.1 kB]
#6 21.93 Get:288 http://deb.debian.org/debian bookworm/main amd64 pkgconf-bin amd64 1.8.1-1 [29.5 kB]
#6 21.94 Get:289 http://deb.debian.org/debian bookworm/main amd64 pkgconf amd64 1.8.1-1 [25.9 kB]
#6 21.94 Get:290 http://deb.debian.org/debian bookworm/main amd64 pkg-config amd64 1.8.1-1 [13.7 kB]
#6 21.98 Get:291 http://deb.debian.org/debian bookworm/main amd64 zlib1g-dev amd64 1:1.2.13.dfsg-1 [916 kB]
#6 22.00 Get:292 http://deb.debian.org/debian bookworm/main amd64 libglib2.0-dev amd64 2.74.6-2 [1601 kB]
#6 22.03 Get:293 http://deb.debian.org/debian bookworm/main amd64 libgirepository1.0-dev amd64 1.74.0-3 [875 kB]
#6 24.41 debconf: delaying package configuration, since apt-utils is not installed
#6 24.50 Fetched 235 MB in 6s (41.5 MB/s)
#6 24.72 Selecting previously unselected package perl-modules-5.36.
#6 24.72 (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 ... 6705 files and directories currently installed.)
#6 24.73 Preparing to unpack .../0-perl-modules-5.36_5.36.0-7+deb12u1_all.deb ...
#6 24.83 Unpacking perl-modules-5.36 (5.36.0-7+deb12u1) ...
#6 26.82 Selecting previously unselected package libgdbm-compat4:amd64.
#6 26.82 Preparing to unpack .../1-libgdbm-compat4_1.23-3_amd64.deb ...
#6 27.17 Unpacking libgdbm-compat4:amd64 (1.23-3) ...
#6 27.48 Selecting previously unselected package libperl5.36:amd64.
#6 27.48 Preparing to unpack .../2-libperl5.36_5.36.0-7+deb12u1_amd64.deb ...
#6 27.52 Unpacking libperl5.36:amd64 (5.36.0-7+deb12u1) ...
#6 28.60 Selecting previously unselected package perl.
#6 28.60 Preparing to unpack .../3-perl_5.36.0-7+deb12u1_amd64.deb ...
#6 28.65 Unpacking perl (5.36.0-7+deb12u1) ...
#6 29.14 Selecting previously unselected package libpython3.11-minimal:amd64.
#6 29.14 Preparing to unpack .../4-libpython3.11-minimal_3.11.2-6_amd64.deb ...
#6 29.17 Unpacking libpython3.11-minimal:amd64 (3.11.2-6) ...
#6 29.51 Selecting previously unselected package python3.11-minimal.
#6 29.52 Preparing to unpack .../5-python3.11-minimal_3.11.2-6_amd64.deb ...
#6 29.55 Unpacking python3.11-minimal (3.11.2-6) ...
#6 30.00 Setting up libpython3.11-minimal:amd64 (3.11.2-6) ...
#6 30.11 Setting up python3.11-minimal (3.11.2-6) ...
#6 31.55 Selecting previously unselected package python3-minimal.
#6 31.55 (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 ... 9011 files and directories currently installed.)
#6 31.55 Preparing to unpack .../python3-minimal_3.11.2-1+b1_amd64.deb ...
#6 31.57 Unpacking python3-minimal (3.11.2-1+b1) ...
#6 31.68 Selecting previously unselected package media-types.
#6 31.69 Preparing to unpack .../media-types_10.0.0_all.deb ...
#6 31.70 Unpacking media-types (10.0.0) ...
#6 31.81 Selecting previously unselected package libpython3.11-stdlib:amd64.
#6 31.81 Preparing to unpack .../libpython3.11-stdlib_3.11.2-6_amd64.deb ...
#6 31.83 Unpacking libpython3.11-stdlib:amd64 (3.11.2-6) ...
#6 32.15 Selecting previously unselected package python3.11.
#6 32.15 Preparing to unpack .../python3.11_3.11.2-6_amd64.deb ...
#6 32.16 Unpacking python3.11 (3.11.2-6) ...
#6 32.26 Selecting previously unselected package libpython3-stdlib:amd64.
#6 32.26 Preparing to unpack .../libpython3-stdlib_3.11.2-1+b1_amd64.deb ...
#6 32.30 Unpacking libpython3-stdlib:amd64 (3.11.2-1+b1) ...
#6 32.41 Setting up python3-minimal (3.11.2-1+b1) ...
#6 32.85 Selecting previously unselected package python3.
#6 32.85 (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 ... 9421 files and directories currently installed.)
#6 32.86 Preparing to unpack .../000-python3_3.11.2-1+b1_amd64.deb ...
#6 32.88 Unpacking python3 (3.11.2-1+b1) ...
#6 32.99 Selecting previously unselected package bzip2.
#6 32.99 Preparing to unpack .../001-bzip2_1.0.8-5+b1_amd64.deb ...
#6 33.00 Unpacking bzip2 (1.0.8-5+b1) ...
#6 33.14 Selecting previously unselected package xz-utils.
#6 33.14 Preparing to unpack .../002-xz-utils_5.4.1-0.2_amd64.deb ...
#6 33.16 Unpacking xz-utils (5.4.1-0.2) ...
#6 33.32 Selecting previously unselected package binutils-common:amd64.
#6 33.32 Preparing to unpack .../003-binutils-common_2.40-2_amd64.deb ...
#6 33.33 Unpacking binutils-common:amd64 (2.40-2) ...
#6 33.74 Selecting previously unselected package libbinutils:amd64.
#6 33.75 Preparing to unpack .../004-libbinutils_2.40-2_amd64.deb ...
#6 33.76 Unpacking libbinutils:amd64 (2.40-2) ...
#6 33.97 Selecting previously unselected package libctf-nobfd0:amd64.
#6 33.97 Preparing to unpack .../005-libctf-nobfd0_2.40-2_amd64.deb ...
#6 33.99 Unpacking libctf-nobfd0:amd64 (2.40-2) ...
#6 34.15 Selecting previously unselected package libctf0:amd64.
#6 34.15 Preparing to unpack .../006-libctf0_2.40-2_amd64.deb ...
#6 34.17 Unpacking libctf0:amd64 (2.40-2) ...
#6 34.33 Selecting previously unselected package libgprofng0:amd64.
#6 34.33 Preparing to unpack .../007-libgprofng0_2.40-2_amd64.deb ...
#6 34.34 Unpacking libgprofng0:amd64 (2.40-2) ...
#6 34.57 Selecting previously unselected package libjansson4:amd64.
#6 34.58 Preparing to unpack .../008-libjansson4_2.14-2_amd64.deb ...
#6 34.59 Unpacking libjansson4:amd64 (2.14-2) ...
#6 34.71 Selecting previously unselected package binutils-x86-64-linux-gnu.
#6 34.71 Preparing to unpack .../009-binutils-x86-64-linux-gnu_2.40-2_amd64.deb ...
#6 34.73 Unpacking binutils-x86-64-linux-gnu (2.40-2) ...
#6 35.13 Selecting previously unselected package binutils.
#6 35.13 Preparing to unpack .../010-binutils_2.40-2_amd64.deb ...
#6 35.16 Unpacking binutils (2.40-2) ...
#6 35.27 Selecting previously unselected package libc-dev-bin.
#6 35.27 Preparing to unpack .../011-libc-dev-bin_2.36-9+deb12u3_amd64.deb ...
#6 35.29 Unpacking libc-dev-bin (2.36-9+deb12u3) ...
#6 35.41 Selecting previously unselected package linux-libc-dev:amd64.
#6 35.41 Preparing to unpack .../012-linux-libc-dev_6.1.67-1_amd64.deb ...
#6 35.43 Unpacking linux-libc-dev:amd64 (6.1.67-1) ...
#6 35.98 Selecting previously unselected package libcrypt-dev:amd64.
#6 35.98 Preparing to unpack .../013-libcrypt-dev_1%3a4.4.33-2_amd64.deb ...
#6 36.03 Unpacking libcrypt-dev:amd64 (1:4.4.33-2) ...
#6 36.15 Selecting previously unselected package libtirpc-dev:amd64.
#6 36.15 Preparing to unpack .../014-libtirpc-dev_1.3.3+ds-1_amd64.deb ...
#6 36.18 Unpacking libtirpc-dev:amd64 (1.3.3+ds-1) ...
#6 36.31 Selecting previously unselected package libnsl-dev:amd64.
#6 36.31 Preparing to unpack .../015-libnsl-dev_1.3.0-2_amd64.deb ...
#6 36.33 Unpacking libnsl-dev:amd64 (1.3.0-2) ...
#6 36.49 Selecting previously unselected package rpcsvc-proto.
#6 36.49 Preparing to unpack .../016-rpcsvc-proto_1.4.3-1_amd64.deb ...
#6 36.51 Unpacking rpcsvc-proto (1.4.3-1) ...
#6 36.63 Selecting previously unselected package libc6-dev:amd64.
#6 36.63 Preparing to unpack .../017-libc6-dev_2.36-9+deb12u3_amd64.deb ...
#6 36.66 Unpacking libc6-dev:amd64 (2.36-9+deb12u3) ...
#6 40.33 Selecting previously unselected package libisl23:amd64.
#6 40.33 Preparing to unpack .../018-libisl23_0.25-1_amd64.deb ...
#6 40.34 Unpacking libisl23:amd64 (0.25-1) ...
#6 40.67 Selecting previously unselected package libmpfr6:amd64.
#6 40.68 Preparing to unpack .../019-libmpfr6_4.2.0-1_amd64.deb ...
#6 40.71 Unpacking libmpfr6:amd64 (4.2.0-1) ...
#6 40.98 Selecting previously unselected package libmpc3:amd64.
#6 40.98 Preparing to unpack .../020-libmpc3_1.3.1-1_amd64.deb ...
#6 41.01 Unpacking libmpc3:amd64 (1.3.1-1) ...
#6 41.23 Selecting previously unselected package cpp-12.
#6 41.23 Preparing to unpack .../021-cpp-12_12.2.0-14_amd64.deb ...
#6 41.25 Unpacking cpp-12 (12.2.0-14) ...
#6 42.32 Selecting previously unselected package cpp.
#6 42.32 Preparing to unpack .../022-cpp_4%3a12.2.0-3_amd64.deb ...
#6 42.35 Unpacking cpp (4:12.2.0-3) ...
#6 42.57 Selecting previously unselected package libcc1-0:amd64.
#6 42.57 Preparing to unpack .../023-libcc1-0_12.2.0-14_amd64.deb ...
#6 42.61 Unpacking libcc1-0:amd64 (12.2.0-14) ...
#6 42.83 Selecting previously unselected package libgomp1:amd64.
#6 42.84 Preparing to unpack .../024-libgomp1_12.2.0-14_amd64.deb ...
#6 42.86 Unpacking libgomp1:amd64 (12.2.0-14) ...
#6 43.11 Selecting previously unselected package libitm1:amd64.
#6 43.11 Preparing to unpack .../025-libitm1_12.2.0-14_amd64.deb ...
#6 43.15 Unpacking libitm1:amd64 (12.2.0-14) ...
#6 43.36 Selecting previously unselected package libatomic1:amd64.
#6 43.36 Preparing to unpack .../026-libatomic1_12.2.0-14_amd64.deb ...
#6 43.38 Unpacking libatomic1:amd64 (12.2.0-14) ...
#6 43.60 Selecting previously unselected package libasan8:amd64.
#6 43.61 Preparing to unpack .../027-libasan8_12.2.0-14_amd64.deb ...
#6 43.62 Unpacking libasan8:amd64 (12.2.0-14) ...
#6 44.10 Selecting previously unselected package liblsan0:amd64.
#6 44.10 Preparing to unpack .../028-liblsan0_12.2.0-14_amd64.deb ...
#6 44.14 Unpacking liblsan0:amd64 (12.2.0-14) ...
#6 44.40 Selecting previously unselected package libtsan2:amd64.
#6 44.40 Preparing to unpack .../029-libtsan2_12.2.0-14_amd64.deb ...
#6 44.41 Unpacking libtsan2:amd64 (12.2.0-14) ...
#6 44.80 Selecting previously unselected package libubsan1:amd64.
#6 44.80 Preparing to unpack .../030-libubsan1_12.2.0-14_amd64.deb ...
#6 44.82 Unpacking libubsan1:amd64 (12.2.0-14) ...
#6 45.11 Selecting previously unselected package libquadmath0:amd64.
#6 45.11 Preparing to unpack .../031-libquadmath0_12.2.0-14_amd64.deb ...
#6 45.13 Unpacking libquadmath0:amd64 (12.2.0-14) ...
#6 45.31 Selecting previously unselected package libgcc-12-dev:amd64.
#6 45.31 Preparing to unpack .../032-libgcc-12-dev_12.2.0-14_amd64.deb ...
#6 45.33 Unpacking libgcc-12-dev:amd64 (12.2.0-14) ...
#6 45.73 Selecting previously unselected package gcc-12.
#6 45.73 Preparing to unpack .../033-gcc-12_12.2.0-14_amd64.deb ...
#6 45.76 Unpacking gcc-12 (12.2.0-14) ...
#6 46.95 Selecting previously unselected package gcc.
#6 46.95 Preparing to unpack .../034-gcc_4%3a12.2.0-3_amd64.deb ...
#6 47.00 Unpacking gcc (4:12.2.0-3) ...
#6 47.16 Selecting previously unselected package libstdc++-12-dev:amd64.
#6 47.16 Preparing to unpack .../035-libstdc++-12-dev_12.2.0-14_amd64.deb ...
#6 47.20 Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ...
#6 47.62 Selecting previously unselected package g++-12.
#6 47.62 Preparing to unpack .../036-g++-12_12.2.0-14_amd64.deb ...
#6 47.64 Unpacking g++-12 (12.2.0-14) ...
#6 48.68 Selecting previously unselected package g++.
#6 48.68 Preparing to unpack .../037-g++_4%3a12.2.0-3_amd64.deb ...
#6 48.71 Unpacking g++ (4:12.2.0-3) ...
#6 48.88 Selecting previously unselected package make.
#6 48.88 Preparing to unpack .../038-make_4.3-4.1_amd64.deb ...
#6 48.91 Unpacking make (4.3-4.1) ...
#6 49.10 Selecting previously unselected package libdpkg-perl.
#6 49.10 Preparing to unpack .../039-libdpkg-perl_1.21.22_all.deb ...
#6 49.13 Unpacking libdpkg-perl (1.21.22) ...
#6 49.28 Selecting previously unselected package patch.
#6 49.28 Preparing to unpack .../040-patch_2.7.6-7_amd64.deb ...
#6 49.30 Unpacking patch (2.7.6-7) ...
#6 49.49 Selecting previously unselected package dpkg-dev.
#6 49.49 Preparing to unpack .../041-dpkg-dev_1.21.22_all.deb ...
#6 49.52 Unpacking dpkg-dev (1.21.22) ...
#6 49.75 Selecting previously unselected package build-essential.
#6 49.75 Preparing to unpack .../042-build-essential_12.9_amd64.deb ...
#6 49.78 Unpacking build-essential (12.9) ...
#6 49.96 Selecting previously unselected package libaom3:amd64.
#6 49.96 Preparing to unpack .../043-libaom3_3.6.0-1_amd64.deb ...
#6 49.98 Unpacking libaom3:amd64 (3.6.0-1) ...
#6 50.28 Selecting previously unselected package libdrm-common.
#6 50.28 Preparing to unpack .../044-libdrm-common_2.4.114-1_all.deb ...
#6 50.30 Unpacking libdrm-common (2.4.114-1) ...
#6 50.40 Selecting previously unselected package libdrm2:amd64.
#6 50.40 Preparing to unpack .../045-libdrm2_2.4.114-1+b1_amd64.deb ...
#6 50.42 Unpacking libdrm2:amd64 (2.4.114-1+b1) ...
#6 50.54 Selecting previously unselected package libva2:amd64.
#6 50.54 Preparing to unpack .../046-libva2_2.17.0-1_amd64.deb ...
#6 50.56 Unpacking libva2:amd64 (2.17.0-1) ...
#6 50.72 Selecting previously unselected package libmfx1:amd64.
#6 50.72 Preparing to unpack .../047-libmfx1_22.5.4-1_amd64.deb ...
#6 50.74 Unpacking libmfx1:amd64 (22.5.4-1) ...
#6 51.18 Selecting previously unselected package libva-drm2:amd64.
#6 51.18 Preparing to unpack .../048-libva-drm2_2.17.0-1_amd64.deb ...
#6 51.20 Unpacking libva-drm2:amd64 (2.17.0-1) ...
#6 51.35 Selecting previously unselected package libxau6:amd64.
#6 51.35 Preparing to unpack .../049-libxau6_1%3a1.0.9-1_amd64.deb ...
#6 51.37 Unpacking libxau6:amd64 (1:1.0.9-1) ...
#6 51.55 Selecting previously unselected package libbsd0:amd64.
#6 51.55 Preparing to unpack .../050-libbsd0_0.11.7-2_amd64.deb ...
#6 51.57 Unpacking libbsd0:amd64 (0.11.7-2) ...
#6 51.74 Selecting previously unselected package libxdmcp6:amd64.
#6 51.74 Preparing to unpack .../051-libxdmcp6_1%3a1.1.2-3_amd64.deb ...
#6 51.76 Unpacking libxdmcp6:amd64 (1:1.1.2-3) ...
#6 51.95 Selecting previously unselected package libxcb1:amd64.
#6 51.96 Preparing to unpack .../052-libxcb1_1.15-1_amd64.deb ...
#6 51.98 Unpacking libxcb1:amd64 (1.15-1) ...
#6 52.16 Selecting previously unselected package libx11-data.
#6 52.16 Preparing to unpack .../053-libx11-data_2%3a1.8.4-2+deb12u2_all.deb ...
#6 52.21 Unpacking libx11-data (2:1.8.4-2+deb12u2) ...
#6 52.44 Selecting previously unselected package libx11-6:amd64.
#6 52.44 Preparing to unpack .../054-libx11-6_2%3a1.8.4-2+deb12u2_amd64.deb ...
#6 52.47 Unpacking libx11-6:amd64 (2:1.8.4-2+deb12u2) ...
#6 52.70 Selecting previously unselected package libx11-xcb1:amd64.
#6 52.70 Preparing to unpack .../055-libx11-xcb1_2%3a1.8.4-2+deb12u2_amd64.deb ...
#6 52.72 Unpacking libx11-xcb1:amd64 (2:1.8.4-2+deb12u2) ...
#6 52.93 Selecting previously unselected package libxcb-dri3-0:amd64.
#6 52.94 Preparing to unpack .../056-libxcb-dri3-0_1.15-1_amd64.deb ...
#6 52.96 Unpacking libxcb-dri3-0:amd64 (1.15-1) ...
#6 53.16 Selecting previously unselected package libxext6:amd64.
#6 53.16 Preparing to unpack .../057-libxext6_2%3a1.3.4-1+b1_amd64.deb ...
#6 53.20 Unpacking libxext6:amd64 (2:1.3.4-1+b1) ...
#6 53.37 Selecting previously unselected package libxfixes3:amd64.
#6 53.37 Preparing to unpack .../058-libxfixes3_1%3a6.0.0-2_amd64.deb ...
#6 53.40 Unpacking libxfixes3:amd64 (1:6.0.0-2) ...
#6 53.61 Selecting previously unselected package libva-x11-2:amd64.
#6 53.61 Preparing to unpack .../059-libva-x11-2_2.17.0-1_amd64.deb ...
#6 53.65 Unpacking libva-x11-2:amd64 (2.17.0-1) ...
#6 53.86 Selecting previously unselected package libvdpau1:amd64.
#6 53.86 Preparing to unpack .../060-libvdpau1_1.5-2_amd64.deb ...
#6 53.88 Unpacking libvdpau1:amd64 (1.5-2) ...
#6 54.04 Selecting previously unselected package ocl-icd-libopencl1:amd64.
#6 54.04 Preparing to unpack .../061-ocl-icd-libopencl1_2.3.1-1_amd64.deb ...
#6 54.07 Unpacking ocl-icd-libopencl1:amd64 (2.3.1-1) ...
#6 54.24 Selecting previously unselected package libavutil57:amd64.
#6 54.25 Preparing to unpack .../062-libavutil57_7%3a5.1.4-0+deb12u1_amd64.deb ...
#6 54.27 Unpacking libavutil57:amd64 (7:5.1.4-0+deb12u1) ...
#6 54.53 Selecting previously unselected package libbrotli1:amd64.
#6 54.53 Preparing to unpack .../063-libbrotli1_1.0.9-2+b6_amd64.deb ...
#6 54.55 Unpacking libbrotli1:amd64 (1.0.9-2+b6) ...
#6 54.74 Selecting previously unselected package libpng16-16:amd64.
#6 54.74 Preparing to unpack .../064-libpng16-16_1.6.39-2_amd64.deb ...
#6 54.77 Unpacking libpng16-16:amd64 (1.6.39-2) ...
#6 54.95 Selecting previously unselected package libfreetype6:amd64.
#6 54.95 Preparing to unpack .../065-libfreetype6_2.12.1+dfsg-5_amd64.deb ...
#6 54.98 Unpacking libfreetype6:amd64 (2.12.1+dfsg-5) ...
#6 55.17 Selecting previously unselected package fonts-dejavu-core.
#6 55.17 Preparing to unpack .../066-fonts-dejavu-core_2.37-6_all.deb ...
#6 55.20 Unpacking fonts-dejavu-core (2.37-6) ...
#6 55.60 Selecting previously unselected package fontconfig-config.
#6 55.61 Preparing to unpack .../067-fontconfig-config_2.14.1-4_amd64.deb ...
#6 55.75 Unpacking fontconfig-config (2.14.1-4) ...
#6 55.90 Selecting previously unselected package libfontconfig1:amd64.
#6 55.90 Preparing to unpack .../068-libfontconfig1_2.14.1-4_amd64.deb ...
#6 55.93 Unpacking libfontconfig1:amd64 (2.14.1-4) ...
#6 56.16 Selecting previously unselected package libpixman-1-0:amd64.
#6 56.16 Preparing to unpack .../069-libpixman-1-0_0.42.2-1_amd64.deb ...
#6 56.19 Unpacking libpixman-1-0:amd64 (0.42.2-1) ...
#6 56.35 Selecting previously unselected package libxcb-render0:amd64.
#6 56.35 Preparing to unpack .../070-libxcb-render0_1.15-1_amd64.deb ...
#6 56.36 Unpacking libxcb-render0:amd64 (1.15-1) ...
#6 56.48 Selecting previously unselected package libxcb-shm0:amd64.
#6 56.48 Preparing to unpack .../071-libxcb-shm0_1.15-1_amd64.deb ...
#6 56.49 Unpacking libxcb-shm0:amd64 (1.15-1) ...
#6 56.61 Selecting previously unselected package libxrender1:amd64.
#6 56.61 Preparing to unpack .../072-libxrender1_1%3a0.9.10-1.1_amd64.deb ...
#6 56.62 Unpacking libxrender1:amd64 (1:0.9.10-1.1) ...
#6 56.72 Selecting previously unselected package libcairo2:amd64.
#6 56.72 Preparing to unpack .../073-libcairo2_1.16.0-7_amd64.deb ...
#6 56.75 Unpacking libcairo2:amd64 (1.16.0-7) ...
#6 56.90 Selecting previously unselected package libcodec2-1.0:amd64.
#6 56.90 Preparing to unpack .../074-libcodec2-1.0_1.0.5-1_amd64.deb ...
#6 56.91 Unpacking libcodec2-1.0:amd64 (1.0.5-1) ...
#6 78.48 Selecting previously unselected package libdav1d6:amd64.
#6 78.48 Preparing to unpack .../075-libdav1d6_1.0.0-2_amd64.deb ...
#6 78.51 Unpacking libdav1d6:amd64 (1.0.0-2) ...
#6 78.83 Selecting previously unselected package libglib2.0-0:amd64.
#6 78.83 Preparing to unpack .../076-libglib2.0-0_2.74.6-2_amd64.deb ...
#6 78.86 Unpacking libglib2.0-0:amd64 (2.74.6-2) ...
#6 79.25 Selecting previously unselected package libgsm1:amd64.
#6 79.25 Preparing to unpack .../077-libgsm1_1.0.22-1_amd64.deb ...
#6 79.29 Unpacking libgsm1:amd64 (1.0.22-1) ...
#6 79.47 Selecting previously unselected package libhwy1:amd64.
#6 79.48 Preparing to unpack .../078-libhwy1_1.0.3-3+deb12u1_amd64.deb ...
#6 79.51 Unpacking libhwy1:amd64 (1.0.3-3+deb12u1) ...
#6 79.76 Selecting previously unselected package liblcms2-2:amd64.
#6 79.77 Preparing to unpack .../079-liblcms2-2_2.14-2_amd64.deb ...
#6 79.79 Unpacking liblcms2-2:amd64 (2.14-2) ...
#6 80.00 Selecting previously unselected package libjxl0.7:amd64.
#6 80.00 Preparing to unpack .../080-libjxl0.7_0.7.0-10_amd64.deb ...
#6 80.03 Unpacking libjxl0.7:amd64 (0.7.0-10) ...
#6 80.26 Selecting previously unselected package libmp3lame0:amd64.
#6 80.27 Preparing to unpack .../081-libmp3lame0_3.100-6_amd64.deb ...
#6 80.28 Unpacking libmp3lame0:amd64 (3.100-6) ...
#6 80.52 Selecting previously unselected package libopenjp2-7:amd64.
#6 80.52 Preparing to unpack .../082-libopenjp2-7_2.5.0-2_amd64.deb ...
#6 80.54 Unpacking libopenjp2-7:amd64 (2.5.0-2) ...
#6 80.80 Selecting previously unselected package libopus0:amd64.
#6 80.80 Preparing to unpack .../083-libopus0_1.3.1-3_amd64.deb ...
#6 80.84 Unpacking libopus0:amd64 (1.3.1-3) ...
#6 81.15 Selecting previously unselected package librav1e0:amd64.
#6 81.16 Preparing to unpack .../084-librav1e0_0.5.1-6_amd64.deb ...
#6 81.19 Unpacking librav1e0:amd64 (0.5.1-6) ...
#6 81.42 Selecting previously unselected package libcairo-gobject2:amd64.
#6 81.42 Preparing to unpack .../085-libcairo-gobject2_1.16.0-7_amd64.deb ...
#6 81.44 Unpacking libcairo-gobject2:amd64 (1.16.0-7) ...
#6 81.64 Selecting previously unselected package libgdk-pixbuf2.0-common.
#6 81.64 Preparing to unpack .../086-libgdk-pixbuf2.0-common_2.42.10+dfsg-1_all.deb ...
#6 81.67 Unpacking libgdk-pixbuf2.0-common (2.42.10+dfsg-1) ...
#6 81.94 Selecting previously unselected package libicu72:amd64.
#6 81.94 Preparing to unpack .../087-libicu72_72.1-3_amd64.deb ...
#6 81.97 Unpacking libicu72:amd64 (72.1-3) ...
#6 82.73 Selecting previously unselected package libxml2:amd64.
#6 82.73 Preparing to unpack .../088-libxml2_2.9.14+dfsg-1.3~deb12u1_amd64.deb ...
#6 82.76 Unpacking libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ...
#6 83.00 Selecting previously unselected package shared-mime-info.
#6 83.00 Preparing to unpack .../089-shared-mime-info_2.2-1_amd64.deb ...
#6 83.02 Unpacking shared-mime-info (2.2-1) ...
#6 83.30 Selecting previously unselected package libjpeg62-turbo:amd64.
#6 83.30 Preparing to unpack .../090-libjpeg62-turbo_1%3a2.1.5-2_amd64.deb ...
#6 83.33 Unpacking libjpeg62-turbo:amd64 (1:2.1.5-2) ...
#6 83.53 Selecting previously unselected package libdeflate0:amd64.
#6 83.53 Preparing to unpack .../091-libdeflate0_1.14-1_amd64.deb ...
#6 83.55 Unpacking libdeflate0:amd64 (1.14-1) ...
#6 83.75 Selecting previously unselected package libjbig0:amd64.
#6 83.75 Preparing to unpack .../092-libjbig0_2.1-6.1_amd64.deb ...
#6 83.79 Unpacking libjbig0:amd64 (2.1-6.1) ...
#6 84.04 Selecting previously unselected package liblerc4:amd64.
#6 84.04 Preparing to unpack .../093-liblerc4_4.0.0+ds-2_amd64.deb ...
#6 84.08 Unpacking liblerc4:amd64 (4.0.0+ds-2) ...
#6 84.24 Selecting previously unselected package libwebp7:amd64.
#6 84.24 Preparing to unpack .../094-libwebp7_1.2.4-0.2+deb12u1_amd64.deb ...
#6 84.28 Unpacking libwebp7:amd64 (1.2.4-0.2+deb12u1) ...
#6 84.51 Selecting previously unselected package libtiff6:amd64.
#6 84.51 Preparing to unpack .../095-libtiff6_4.5.0-6+deb12u1_amd64.deb ...
#6 84.53 Unpacking libtiff6:amd64 (4.5.0-6+deb12u1) ...
#6 84.65 Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64.
#6 84.65 Preparing to unpack .../096-libgdk-pixbuf-2.0-0_2.42.10+dfsg-1+b1_amd64.deb ...
#6 84.66 Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+b1) ...
#6 84.80 Selecting previously unselected package fontconfig.
#6 84.81 Preparing to unpack .../097-fontconfig_2.14.1-4_amd64.deb ...
#6 84.84 Unpacking fontconfig (2.14.1-4) ...
#6 85.05 Selecting previously unselected package libfribidi0:amd64.
#6 85.06 Preparing to unpack .../098-libfribidi0_1.0.8-2.1_amd64.deb ...
#6 85.09 Unpacking libfribidi0:amd64 (1.0.8-2.1) ...
#6 85.27 Selecting previously unselected package libgraphite2-3:amd64.
#6 85.27 Preparing to unpack .../099-libgraphite2-3_1.3.14-1_amd64.deb ...
#6 85.28 Unpacking libgraphite2-3:amd64 (1.3.14-1) ...
#6 85.49 Selecting previously unselected package libharfbuzz0b:amd64.
#6 85.49 Preparing to unpack .../100-libharfbuzz0b_6.0.0+dfsg-3_amd64.deb ...
#6 85.52 Unpacking libharfbuzz0b:amd64 (6.0.0+dfsg-3) ...
#6 85.72 Selecting previously unselected package libthai-data.
#6 85.72 Preparing to unpack .../101-libthai-data_0.1.29-1_all.deb ...
#6 85.78 Unpacking libthai-data (0.1.29-1) ...
#6 85.95 Selecting previously unselected package libdatrie1:amd64.
#6 85.95 Preparing to unpack .../102-libdatrie1_0.2.13-2+b1_amd64.deb ...
#6 85.97 Unpacking libdatrie1:amd64 (0.2.13-2+b1) ...
#6 86.19 Selecting previously unselected package libthai0:amd64.
#6 86.20 Preparing to unpack .../103-libthai0_0.1.29-1_amd64.deb ...
#6 86.22 Unpacking libthai0:amd64 (0.1.29-1) ...
#6 86.41 Selecting previously unselected package libpango-1.0-0:amd64.
#6 86.41 Preparing to unpack .../104-libpango-1.0-0_1.50.12+ds-1_amd64.deb ...
#6 86.45 Unpacking libpango-1.0-0:amd64 (1.50.12+ds-1) ...
#6 86.65 Selecting previously unselected package libpangoft2-1.0-0:amd64.
#6 86.65 Preparing to unpack .../105-libpangoft2-1.0-0_1.50.12+ds-1_amd64.deb ...
#6 86.68 Unpacking libpangoft2-1.0-0:amd64 (1.50.12+ds-1) ...
#6 86.90 Selecting previously unselected package libpangocairo-1.0-0:amd64.
#6 86.90 Preparing to unpack .../106-libpangocairo-1.0-0_1.50.12+ds-1_amd64.deb ...
#6 86.94 Unpacking libpangocairo-1.0-0:amd64 (1.50.12+ds-1) ...
#6 87.11 Selecting previously unselected package librsvg2-2:amd64.
#6 87.11 Preparing to unpack .../107-librsvg2-2_2.54.7+dfsg-1~deb12u1_amd64.deb ...
#6 87.14 Unpacking librsvg2-2:amd64 (2.54.7+dfsg-1~deb12u1) ...
#6 87.60 Selecting previously unselected package libshine3:amd64.
#6 87.60 Preparing to unpack .../108-libshine3_3.1.1-2_amd64.deb ...
#6 87.62 Unpacking libshine3:amd64 (3.1.1-2) ...
#6 87.78 Selecting previously unselected package libsnappy1v5:amd64.
#6 87.78 Preparing to unpack .../109-libsnappy1v5_1.1.9-3_amd64.deb ...
#6 87.81 Unpacking libsnappy1v5:amd64 (1.1.9-3) ...
#6 87.99 Selecting previously unselected package libspeex1:amd64.
#6 87.99 Preparing to unpack .../110-libspeex1_1.2.1-2_amd64.deb ...
#6 88.02 Unpacking libspeex1:amd64 (1.2.1-2) ...
#6 88.21 Selecting previously unselected package libsvtav1enc1:amd64.
#6 88.21 Preparing to unpack .../111-libsvtav1enc1_1.4.1+dfsg-1_amd64.deb ...
#6 88.24 Unpacking libsvtav1enc1:amd64 (1.4.1+dfsg-1) ...
#6 88.59 Selecting previously unselected package libsoxr0:amd64.
#6 88.59 Preparing to unpack .../112-libsoxr0_0.1.3-4_amd64.deb ...
#6 88.62 Unpacking libsoxr0:amd64 (0.1.3-4) ...
#6 88.82 Selecting previously unselected package libswresample4:amd64.
#6 88.82 Preparing to unpack .../113-libswresample4_7%3a5.1.4-0+deb12u1_amd64.deb ...
#6 88.84 Unpacking libswresample4:amd64 (7:5.1.4-0+deb12u1) ...
#6 89.05 Selecting previously unselected package libogg0:amd64.
#6 89.05 Preparing to unpack .../114-libogg0_1.3.5-3_amd64.deb ...
#6 89.06 Unpacking libogg0:amd64 (1.3.5-3) ...
#6 89.30 Selecting previously unselected package libtheora0:amd64.
#6 89.31 Preparing to unpack .../115-libtheora0_1.1.1+dfsg.1-16.1+b1_amd64.deb ...
#6 89.33 Unpacking libtheora0:amd64 (1.1.1+dfsg.1-16.1+b1) ...
#6 89.50 Selecting previously unselected package libtwolame0:amd64.
#6 89.50 Preparing to unpack .../116-libtwolame0_0.4.0-2_amd64.deb ...
#6 89.53 Unpacking libtwolame0:amd64 (0.4.0-2) ...
#6 89.73 Selecting previously unselected package libvorbis0a:amd64.
#6 89.73 Preparing to unpack .../117-libvorbis0a_1.3.7-1_amd64.deb ...
#6 89.74 Unpacking libvorbis0a:amd64 (1.3.7-1) ...
#6 89.88 Selecting previously unselected package libvorbisenc2:amd64.
#6 89.88 Preparing to unpack .../118-libvorbisenc2_1.3.7-1_amd64.deb ...
#6 89.89 Unpacking libvorbisenc2:amd64 (1.3.7-1) ...
#6 90.01 Selecting previously unselected package libvpx7:amd64.
#6 90.02 Preparing to unpack .../119-libvpx7_1.12.0-1+deb12u2_amd64.deb ...
#6 90.03 Unpacking libvpx7:amd64 (1.12.0-1+deb12u2) ...
#6 90.21 Selecting previously unselected package libwebpmux3:amd64.
#6 90.21 Preparing to unpack .../120-libwebpmux3_1.2.4-0.2+deb12u1_amd64.deb ...
#6 90.22 Unpacking libwebpmux3:amd64 (1.2.4-0.2+deb12u1) ...
#6 90.40 Selecting previously unselected package libx264-164:amd64.
#6 90.40 Preparing to unpack .../121-libx264-164_2%3a0.164.3095+gitbaee400-3_amd64.deb ...
#6 90.42 Unpacking libx264-164:amd64 (2:0.164.3095+gitbaee400-3) ...
#6 90.59 Selecting previously unselected package libnuma1:amd64.
#6 90.59 Preparing to unpack .../122-libnuma1_2.0.16-1_amd64.deb ...
#6 90.60 Unpacking libnuma1:amd64 (2.0.16-1) ...
#6 90.77 Selecting previously unselected package libx265-199:amd64.
#6 90.77 Preparing to unpack .../123-libx265-199_3.5-2+b1_amd64.deb ...
#6 90.78 Unpacking libx265-199:amd64 (3.5-2+b1) ...
#6 91.07 Selecting previously unselected package libxvidcore4:amd64.
#6 91.07 Preparing to unpack .../124-libxvidcore4_2%3a1.3.7-1_amd64.deb ...
#6 91.10 Unpacking libxvidcore4:amd64 (2:1.3.7-1) ...
#6 91.21 Selecting previously unselected package libzvbi-common.
#6 91.21 Preparing to unpack .../125-libzvbi-common_0.2.41-1_all.deb ...
#6 91.22 Unpacking libzvbi-common (0.2.41-1) ...
#6 91.37 Selecting previously unselected package libzvbi0:amd64.
#6 91.37 Preparing to unpack .../126-libzvbi0_0.2.41-1_amd64.deb ...
#6 91.40 Unpacking libzvbi0:amd64 (0.2.41-1) ...
#6 91.61 Selecting previously unselected package libavcodec59:amd64.
#6 91.61 Preparing to unpack .../127-libavcodec59_7%3a5.1.4-0+deb12u1_amd64.deb ...
#6 91.64 Unpacking libavcodec59:amd64 (7:5.1.4-0+deb12u1) ...
#6 92.14 Selecting previously unselected package libasound2-data.
#6 92.14 Preparing to unpack .../128-libasound2-data_1.2.8-1_all.deb ...
#6 92.16 Unpacking libasound2-data (1.2.8-1) ...
#6 92.28 Selecting previously unselected package libasound2:amd64.
#6 92.28 Preparing to unpack .../129-libasound2_1.2.8-1+b1_amd64.deb ...
#6 92.30 Unpacking libasound2:amd64 (1.2.8-1+b1) ...
#6 92.45 Selecting previously unselected package libraw1394-11:amd64.
#6 92.45 Preparing to unpack .../130-libraw1394-11_2.1.2-2_amd64.deb ...
#6 92.47 Unpacking libraw1394-11:amd64 (2.1.2-2) ...
#6 92.62 Selecting previously unselected package libavc1394-0:amd64.
#6 92.62 Preparing to unpack .../131-libavc1394-0_0.5.4-5_amd64.deb ...
#6 92.64 Unpacking libavc1394-0:amd64 (0.5.4-5) ...
#6 92.84 Selecting previously unselected package libass9:amd64.
#6 92.84 Preparing to unpack .../132-libass9_1%3a0.17.1-1_amd64.deb ...
#6 92.86 Unpacking libass9:amd64 (1:0.17.1-1) ...
#6 93.09 Selecting previously unselected package libudfread0:amd64.
#6 93.09 Preparing to unpack .../133-libudfread0_1.1.2-1_amd64.deb ...
#6 93.12 Unpacking libudfread0:amd64 (1.1.2-1) ...
#6 93.30 Selecting previously unselected package libbluray2:amd64.
#6 93.30 Preparing to unpack .../134-libbluray2_1%3a1.3.4-1_amd64.deb ...
#6 93.32 Unpacking libbluray2:amd64 (1:1.3.4-1) ...
#6 93.53 Selecting previously unselected package libchromaprint1:amd64.
#6 93.53 Preparing to unpack .../135-libchromaprint1_1.5.1-2+b1_amd64.deb ...
#6 93.56 Unpacking libchromaprint1:amd64 (1.5.1-2+b1) ...
#6 93.70 Selecting previously unselected package libgme0:amd64.
#6 93.70 Preparing to unpack .../136-libgme0_0.6.3-6_amd64.deb ...
#6 93.72 Unpacking libgme0:amd64 (0.6.3-6) ...
#6 93.93 Selecting previously unselected package libmpg123-0:amd64.
#6 93.93 Preparing to unpack .../137-libmpg123-0_1.31.2-1_amd64.deb ...
#6 93.95 Unpacking libmpg123-0:amd64 (1.31.2-1) ...
#6 94.16 Selecting previously unselected package libvorbisfile3:amd64.
#6 94.16 Preparing to unpack .../138-libvorbisfile3_1.3.7-1_amd64.deb ...
#6 94.18 Unpacking libvorbisfile3:amd64 (1.3.7-1) ...
#6 94.40 Selecting previously unselected package libopenmpt0:amd64.
#6 94.40 Preparing to unpack .../139-libopenmpt0_0.6.9-1_amd64.deb ...
#6 94.42 Unpacking libopenmpt0:amd64 (0.6.9-1) ...
#6 94.67 Selecting previously unselected package librabbitmq4:amd64.
#6 94.67 Preparing to unpack .../140-librabbitmq4_0.11.0-1+b1_amd64.deb ...
#6 94.70 Unpacking librabbitmq4:amd64 (0.11.0-1+b1) ...
#6 94.89 Selecting previously unselected package libcjson1:amd64.
#6 94.89 Preparing to unpack .../141-libcjson1_1.7.15-1_amd64.deb ...
#6 94.93 Unpacking libcjson1:amd64 (1.7.15-1) ...
#6 95.13 Selecting previously unselected package libmbedcrypto7:amd64.
#6 95.14 Preparing to unpack .../142-libmbedcrypto7_2.28.3-1_amd64.deb ...
#6 95.16 Unpacking libmbedcrypto7:amd64 (2.28.3-1) ...
#6 95.33 Selecting previously unselected package librist4:amd64.
#6 95.33 Preparing to unpack .../143-librist4_0.2.7+dfsg-1_amd64.deb ...
#6 95.36 Unpacking librist4:amd64 (0.2.7+dfsg-1) ...
#6 95.55 Selecting previously unselected package libsrt1.5-gnutls:amd64.
#6 95.55 Preparing to unpack .../144-libsrt1.5-gnutls_1.5.1-1_amd64.deb ...
#6 95.57 Unpacking libsrt1.5-gnutls:amd64 (1.5.1-1) ...
#6 95.82 Selecting previously unselected package libssh-gcrypt-4:amd64.
#6 95.82 Preparing to unpack .../145-libssh-gcrypt-4_0.10.6-0+deb12u1_amd64.deb ...
#6 95.85 Unpacking libssh-gcrypt-4:amd64 (0.10.6-0+deb12u1) ...
#6 96.03 Selecting previously unselected package libnorm1:amd64.
#6 96.03 Preparing to unpack .../146-libnorm1_1.5.9+dfsg-2_amd64.deb ...
#6 96.06 Unpacking libnorm1:amd64 (1.5.9+dfsg-2) ...
#6 96.29 Selecting previously unselected package libpgm-5.3-0:amd64.
#6 96.29 Preparing to unpack .../147-libpgm-5.3-0_5.3.128~dfsg-2_amd64.deb ...
#6 96.33 Unpacking libpgm-5.3-0:amd64 (5.3.128~dfsg-2) ...
#6 96.51 Selecting previously unselected package libsodium23:amd64.
#6 96.51 Preparing to unpack .../148-libsodium23_1.0.18-1_amd64.deb ...
#6 96.52 Unpacking libsodium23:amd64 (1.0.18-1) ...
#6 96.75 Selecting previously unselected package libzmq5:amd64.
#6 96.75 Preparing to unpack .../149-libzmq5_4.3.4-6_amd64.deb ...
#6 96.76 Unpacking libzmq5:amd64 (4.3.4-6) ...
#6 96.98 Selecting previously unselected package libavformat59:amd64.
#6 96.98 Preparing to unpack .../150-libavformat59_7%3a5.1.4-0+deb12u1_amd64.deb ...
#6 97.00 Unpacking libavformat59:amd64 (7:5.1.4-0+deb12u1) ...
#6 97.25 Selecting previously unselected package libbs2b0:amd64.
#6 97.25 Preparing to unpack .../151-libbs2b0_3.1.0+dfsg-7_amd64.deb ...
#6 97.28 Unpacking libbs2b0:amd64 (3.1.0+dfsg-7) ...
#6 97.47 Selecting previously unselected package libflite1:amd64.
#6 97.48 Preparing to unpack .../152-libflite1_2.2-5_amd64.deb ...
#6 97.51 Unpacking libflite1:amd64 (2.2-5) ...
#6 98.57 Selecting previously unselected package libserd-0-0:amd64.
#6 98.58 Preparing to unpack .../153-libserd-0-0_0.30.16-1_amd64.deb ...
#6 98.59 Unpacking libserd-0-0:amd64 (0.30.16-1) ...
#6 98.77 Selecting previously unselected package libsord-0-0:amd64.
#6 98.77 Preparing to unpack .../154-libsord-0-0_0.16.14+git221008-1_amd64.deb ...
#6 98.79 Unpacking libsord-0-0:amd64 (0.16.14+git221008-1) ...
#6 98.99 Selecting previously unselected package libsratom-0-0:amd64.
#6 99.00 Preparing to unpack .../155-libsratom-0-0_0.6.14-1_amd64.deb ...
#6 99.02 Unpacking libsratom-0-0:amd64 (0.6.14-1) ...
#6 99.19 Selecting previously unselected package liblilv-0-0:amd64.
#6 99.19 Preparing to unpack .../156-liblilv-0-0_0.24.14-1_amd64.deb ...
#6 99.21 Unpacking liblilv-0-0:amd64 (0.24.14-1) ...
#6 99.42 Selecting previously unselected package libmysofa1:amd64.
#6 99.42 Preparing to unpack .../157-libmysofa1_1.3.1~dfsg0-1_amd64.deb ...
#6 99.45 Unpacking libmysofa1:amd64 (1.3.1~dfsg0-1) ...
#6 99.69 Selecting previously unselected package libepoxy0:amd64.
#6 99.69 Preparing to unpack .../158-libepoxy0_1.5.10-1_amd64.deb ...
#6 99.72 Unpacking libepoxy0:amd64 (1.5.10-1) ...
#6 99.95 Selecting previously unselected package libvulkan1:amd64.
#6 99.95 Preparing to unpack .../159-libvulkan1_1.3.239.0-1_amd64.deb ...
#6 99.98 Unpacking libvulkan1:amd64 (1.3.239.0-1) ...
#6 100.2 Selecting previously unselected package libplacebo208:amd64.
#6 100.2 Preparing to unpack .../160-libplacebo208_4.208.0-3_amd64.deb ...
#6 100.2 Unpacking libplacebo208:amd64 (4.208.0-3) ...
#6 100.6 Selecting previously unselected package libblas3:amd64.
#6 100.6 Preparing to unpack .../161-libblas3_3.11.0-2_amd64.deb ...
#6 100.6 Unpacking libblas3:amd64 (3.11.0-2) ...
#6 100.8 Selecting previously unselected package libgfortran5:amd64.
#6 100.8 Preparing to unpack .../162-libgfortran5_12.2.0-14_amd64.deb ...
#6 100.8 Unpacking libgfortran5:amd64 (12.2.0-14) ...
#6 101.2 Selecting previously unselected package liblapack3:amd64.
#6 101.2 Preparing to unpack .../163-liblapack3_3.11.0-2_amd64.deb ...
#6 101.2 Unpacking liblapack3:amd64 (3.11.0-2) ...
#6 101.5 Selecting previously unselected package libasyncns0:amd64.
#6 101.5 Preparing to unpack .../164-libasyncns0_0.8-6+b3_amd64.deb ...
#6 101.6 Unpacking libasyncns0:amd64 (0.8-6+b3) ...
#6 101.8 Selecting previously unselected package libdbus-1-3:amd64.
#6 101.8 Preparing to unpack .../165-libdbus-1-3_1.14.10-1~deb12u1_amd64.deb ...
#6 101.8 Unpacking libdbus-1-3:amd64 (1.14.10-1~deb12u1) ...
#6 102.0 Selecting previously unselected package libflac12:amd64.
#6 102.0 Preparing to unpack .../166-libflac12_1.4.2+ds-2_amd64.deb ...
#6 102.1 Unpacking libflac12:amd64 (1.4.2+ds-2) ...
#6 102.3 Selecting previously unselected package libsndfile1:amd64.
#6 102.3 Preparing to unpack .../167-libsndfile1_1.2.0-1_amd64.deb ...
#6 102.4 Unpacking libsndfile1:amd64 (1.2.0-1) ...
#6 112.8 Selecting previously unselected package libpulse0:amd64.
#6 112.8 Preparing to unpack .../168-libpulse0_16.1+dfsg1-2+b1_amd64.deb ...
#6 112.9 Unpacking libpulse0:amd64 (16.1+dfsg1-2+b1) ...
#6 113.3 Selecting previously unselected package libsphinxbase3:amd64.
#6 113.3 Preparing to unpack .../169-libsphinxbase3_0.8+5prealpha+1-16_amd64.deb ...
#6 113.3 Unpacking libsphinxbase3:amd64 (0.8+5prealpha+1-16) ...
#6 113.5 Selecting previously unselected package libpocketsphinx3:amd64.
#6 113.5 Preparing to unpack .../170-libpocketsphinx3_0.8+5prealpha+1-15_amd64.deb ...
#6 113.6 Unpacking libpocketsphinx3:amd64 (0.8+5prealpha+1-15) ...
#6 113.8 Selecting previously unselected package libpostproc56:amd64.
#6 113.8 Preparing to unpack .../171-libpostproc56_7%3a5.1.4-0+deb12u1_amd64.deb ...
#6 113.8 Unpacking libpostproc56:amd64 (7:5.1.4-0+deb12u1) ...
#6 114.0 Selecting previously unselected package librubberband2:amd64.
#6 114.0 Preparing to unpack .../172-librubberband2_3.1.2+dfsg0-1_amd64.deb ...
#6 114.1 Unpacking librubberband2:amd64 (3.1.2+dfsg0-1) ...
#6 114.3 Selecting previously unselected package libswscale6:amd64.
#6 114.3 Preparing to unpack .../173-libswscale6_7%3a5.1.4-0+deb12u1_amd64.deb ...
#6 114.3 Unpacking libswscale6:amd64 (7:5.1.4-0+deb12u1) ...
#6 114.6 Selecting previously unselected package libvidstab1.1:amd64.
#6 114.6 Preparing to unpack .../174-libvidstab1.1_1.1.0-2+b1_amd64.deb ...
#6 114.7 Unpacking libvidstab1.1:amd64 (1.1.0-2+b1) ...
#6 114.8 Selecting previously unselected package libzimg2:amd64.
#6 114.8 Preparing to unpack .../175-libzimg2_3.0.4+ds1-1_amd64.deb ...
#6 114.9 Unpacking libzimg2:amd64 (3.0.4+ds1-1) ...
#6 115.1 Selecting previously unselected package libavfilter8:amd64.
#6 115.1 Preparing to unpack .../176-libavfilter8_7%3a5.1.4-0+deb12u1_amd64.deb ...
#6 115.1 Unpacking libavfilter8:amd64 (7:5.1.4-0+deb12u1) ...
#6 115.7 Selecting previously unselected package libslang2:amd64.
#6 115.7 Preparing to unpack .../177-libslang2_2.3.3-3_amd64.deb ...
#6 115.7 Unpacking libslang2:amd64 (2.3.3-3) ...
#6 115.9 Selecting previously unselected package libcaca0:amd64.
#6 115.9 Preparing to unpack .../178-libcaca0_0.99.beta20-3_amd64.deb ...
#6 116.0 Unpacking libcaca0:amd64 (0.99.beta20-3) ...
#6 116.2 Selecting previously unselected package libcdio19:amd64.
#6 116.2 Preparing to unpack .../179-libcdio19_2.1.0-4_amd64.deb ...
#6 116.2 Unpacking libcdio19:amd64 (2.1.0-4) ...
#6 116.4 Selecting previously unselected package libcdio-cdda2:amd64.
#6 116.4 Preparing to unpack .../180-libcdio-cdda2_10.2+2.0.1-1_amd64.deb ...
#6 116.4 Unpacking libcdio-cdda2:amd64 (10.2+2.0.1-1) ...
#6 116.7 Selecting previously unselected package libcdio-paranoia2:amd64.
#6 116.7 Preparing to unpack .../181-libcdio-paranoia2_10.2+2.0.1-1_amd64.deb ...
#6 116.8 Unpacking libcdio-paranoia2:amd64 (10.2+2.0.1-1) ...
#6 117.7 Selecting previously unselected package libusb-1.0-0:amd64.
#6 117.7 Preparing to unpack .../182-libusb-1.0-0_2%3a1.0.26-1_amd64.deb ...
#6 117.7 Unpacking libusb-1.0-0:amd64 (2:1.0.26-1) ...
#6 117.9 Selecting previously unselected package libdc1394-25:amd64.
#6 117.9 Preparing to unpack .../183-libdc1394-25_2.2.6-4_amd64.deb ...
#6 118.0 Unpacking libdc1394-25:amd64 (2.2.6-4) ...
#6 118.2 Selecting previously unselected package libglvnd0:amd64.
#6 118.2 Preparing to unpack .../184-libglvnd0_1.6.0-1_amd64.deb ...
#6 118.2 Unpacking libglvnd0:amd64 (1.6.0-1) ...
#6 118.4 Selecting previously unselected package libglapi-mesa:amd64.
#6 118.4 Preparing to unpack .../185-libglapi-mesa_22.3.6-1+deb12u1_amd64.deb ...
#6 118.4 Unpacking libglapi-mesa:amd64 (22.3.6-1+deb12u1) ...
#6 118.7 Selecting previously unselected package libxcb-dri2-0:amd64.
#6 118.7 Preparing to unpack .../186-libxcb-dri2-0_1.15-1_amd64.deb ...
#6 118.7 Unpacking libxcb-dri2-0:amd64 (1.15-1) ...
#6 118.9 Selecting previously unselected package libxcb-glx0:amd64.
#6 118.9 Preparing to unpack .../187-libxcb-glx0_1.15-1_amd64.deb ...
#6 119.0 Unpacking libxcb-glx0:amd64 (1.15-1) ...
#6 119.2 Selecting previously unselected package libxcb-present0:amd64.
#6 119.2 Preparing to unpack .../188-libxcb-present0_1.15-1_amd64.deb ...
#6 119.2 Unpacking libxcb-present0:amd64 (1.15-1) ...
#6 119.4 Selecting previously unselected package libxcb-randr0:amd64.
#6 119.4 Preparing to unpack .../189-libxcb-randr0_1.15-1_amd64.deb ...
#6 119.4 Unpacking libxcb-randr0:amd64 (1.15-1) ...
#6 119.6 Selecting previously unselected package libxcb-sync1:amd64.
#6 119.6 Preparing to unpack .../190-libxcb-sync1_1.15-1_amd64.deb ...
#6 119.6 Unpacking libxcb-sync1:amd64 (1.15-1) ...
#6 119.8 Selecting previously unselected package libxcb-xfixes0:amd64.
#6 119.8 Preparing to unpack .../191-libxcb-xfixes0_1.15-1_amd64.deb ...
#6 119.9 Unpacking libxcb-xfixes0:amd64 (1.15-1) ...
#6 120.1 Selecting previously unselected package libxshmfence1:amd64.
#6 120.1 Preparing to unpack .../192-libxshmfence1_1.3-1_amd64.deb ...
#6 120.1 Unpacking libxshmfence1:amd64 (1.3-1) ...
#6 120.3 Selecting previously unselected package libxxf86vm1:amd64.
#6 120.3 Preparing to unpack .../193-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ...
#6 120.3 Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ...
#6 120.5 Selecting previously unselected package libdrm-amdgpu1:amd64.
#6 120.5 Preparing to unpack .../194-libdrm-amdgpu1_2.4.114-1+b1_amd64.deb ...
#6 120.5 Unpacking libdrm-amdgpu1:amd64 (2.4.114-1+b1) ...
#6 120.7 Selecting previously unselected package libpciaccess0:amd64.
#6 120.7 Preparing to unpack .../195-libpciaccess0_0.17-2_amd64.deb ...
#6 120.8 Unpacking libpciaccess0:amd64 (0.17-2) ...
#6 121.0 Selecting previously unselected package libdrm-intel1:amd64.
#6 121.0 Preparing to unpack .../196-libdrm-intel1_2.4.114-1+b1_amd64.deb ...
#6 121.0 Unpacking libdrm-intel1:amd64 (2.4.114-1+b1) ...
#6 121.2 Selecting previously unselected package libdrm-nouveau2:amd64.
#6 121.2 Preparing to unpack .../197-libdrm-nouveau2_2.4.114-1+b1_amd64.deb ...
#6 121.2 Unpacking libdrm-nouveau2:amd64 (2.4.114-1+b1) ...
#6 121.4 Selecting previously unselected package libdrm-radeon1:amd64.
#6 121.4 Preparing to unpack .../198-libdrm-radeon1_2.4.114-1+b1_amd64.deb ...
#6 121.4 Unpacking libdrm-radeon1:amd64 (2.4.114-1+b1) ...
#6 121.5 Selecting previously unselected package libelf1:amd64.
#6 121.6 Preparing to unpack .../199-libelf1_0.188-2.1_amd64.deb ...
#6 121.6 Unpacking libelf1:amd64 (0.188-2.1) ...
#6 121.8 Selecting previously unselected package libedit2:amd64.
#6 121.8 Preparing to unpack .../200-libedit2_3.1-20221030-2_amd64.deb ...
#6 121.8 Unpacking libedit2:amd64 (3.1-20221030-2) ...
#6 122.0 Selecting previously unselected package libz3-4:amd64.
#6 122.0 Preparing to unpack .../201-libz3-4_4.8.12-3.1_amd64.deb ...
#6 122.0 Unpacking libz3-4:amd64 (4.8.12-3.1) ...
#6 122.7 Selecting previously unselected package libllvm15:amd64.
#6 122.7 Preparing to unpack .../202-libllvm15_1%3a15.0.6-4+b1_amd64.deb ...
#6 122.7 Unpacking libllvm15:amd64 (1:15.0.6-4+b1) ...
#6 123.8 Selecting previously unselected package libsensors-config.
#6 123.8 Preparing to unpack .../203-libsensors-config_1%3a3.6.0-7.1_all.deb ...
#6 123.8 Unpacking libsensors-config (1:3.6.0-7.1) ...
#6 124.1 Selecting previously unselected package libsensors5:amd64.
#6 124.1 Preparing to unpack .../204-libsensors5_1%3a3.6.0-7.1_amd64.deb ...
#6 124.1 Unpacking libsensors5:amd64 (1:3.6.0-7.1) ...
#6 124.3 Selecting previously unselected package libgl1-mesa-dri:amd64.
#6 124.3 Preparing to unpack .../205-libgl1-mesa-dri_22.3.6-1+deb12u1_amd64.deb ...
#6 124.4 Unpacking libgl1-mesa-dri:amd64 (22.3.6-1+deb12u1) ...
#6 125.1 Selecting previously unselected package libglx-mesa0:amd64.
#6 125.1 Preparing to unpack .../206-libglx-mesa0_22.3.6-1+deb12u1_amd64.deb ...
#6 125.1 Unpacking libglx-mesa0:amd64 (22.3.6-1+deb12u1) ...
#6 125.4 Selecting previously unselected package libglx0:amd64.
#6 125.4 Preparing to unpack .../207-libglx0_1.6.0-1_amd64.deb ...
#6 125.4 Unpacking libglx0:amd64 (1.6.0-1) ...
#6 125.6 Selecting previously unselected package libgl1:amd64.
#6 125.6 Preparing to unpack .../208-libgl1_1.6.0-1_amd64.deb ...
#6 125.6 Unpacking libgl1:amd64 (1.6.0-1) ...
#6 125.8 Selecting previously unselected package libiec61883-0:amd64.
#6 125.8 Preparing to unpack .../209-libiec61883-0_1.2.0-6+b1_amd64.deb ...
#6 125.8 Unpacking libiec61883-0:amd64 (1.2.0-6+b1) ...
#6 126.0 Selecting previously unselected package libsamplerate0:amd64.
#6 126.1 Preparing to unpack .../210-libsamplerate0_0.2.2-3_amd64.deb ...
#6 126.1 Unpacking libsamplerate0:amd64 (0.2.2-3) ...
#6 126.4 Selecting previously unselected package libjack-jackd2-0:amd64.
#6 126.4 Preparing to unpack .../211-libjack-jackd2-0_1.9.21~dfsg-3_amd64.deb ...
#6 126.4 Unpacking libjack-jackd2-0:amd64 (1.9.21~dfsg-3) ...
#6 126.5 Selecting previously unselected package libopenal-data.
#6 126.5 Preparing to unpack .../212-libopenal-data_1%3a1.19.1-2_all.deb ...
#6 126.5 Unpacking libopenal-data (1:1.19.1-2) ...
#6 126.6 Selecting previously unselected package libsndio7.0:amd64.
#6 126.6 Preparing to unpack .../213-libsndio7.0_1.9.0-0.3+b2_amd64.deb ...
#6 126.6 Unpacking libsndio7.0:amd64 (1.9.0-0.3+b2) ...
#6 126.7 Selecting previously unselected package libopenal1:amd64.
#6 126.7 Preparing to unpack .../214-libopenal1_1%3a1.19.1-2_amd64.deb ...
#6 126.8 Unpacking libopenal1:amd64 (1:1.19.1-2) ...
#6 126.9 Selecting previously unselected package libwayland-client0:amd64.
#6 126.9 Preparing to unpack .../215-libwayland-client0_1.21.0-1_amd64.deb ...
#6 127.0 Unpacking libwayland-client0:amd64 (1.21.0-1) ...
#6 127.1 Selecting previously unselected package libdecor-0-0:amd64.
#6 127.1 Preparing to unpack .../216-libdecor-0-0_0.1.1-2_amd64.deb ...
#6 127.1 Unpacking libdecor-0-0:amd64 (0.1.1-2) ...
#6 127.2 Selecting previously unselected package libwayland-server0:amd64.
#6 127.2 Preparing to unpack .../217-libwayland-server0_1.21.0-1_amd64.deb ...
#6 127.2 Unpacking libwayland-server0:amd64 (1.21.0-1) ...
#6 127.3 Selecting previously unselected package libgbm1:amd64.
#6 127.3 Preparing to unpack .../218-libgbm1_22.3.6-1+deb12u1_amd64.deb ...
#6 127.4 Unpacking libgbm1:amd64 (22.3.6-1+deb12u1) ...
#6 127.5 Selecting previously unselected package libwayland-cursor0:amd64.
#6 127.5 Preparing to unpack .../219-libwayland-cursor0_1.21.0-1_amd64.deb ...
#6 127.5 Unpacking libwayland-cursor0:amd64 (1.21.0-1) ...
#6 127.6 Selecting previously unselected package libwayland-egl1:amd64.
#6 127.6 Preparing to unpack .../220-libwayland-egl1_1.21.0-1_amd64.deb ...
#6 127.6 Unpacking libwayland-egl1:amd64 (1.21.0-1) ...
#6 127.8 Selecting previously unselected package libxcursor1:amd64.
#6 127.8 Preparing to unpack .../221-libxcursor1_1%3a1.2.1-1_amd64.deb ...
#6 127.8 Unpacking libxcursor1:amd64 (1:1.2.1-1) ...
#6 127.9 Selecting previously unselected package libxi6:amd64.
#6 127.9 Preparing to unpack .../222-libxi6_2%3a1.8-1+b1_amd64.deb ...
#6 127.9 Unpacking libxi6:amd64 (2:1.8-1+b1) ...
#6 128.0 Selecting previously unselected package xkb-data.
#6 128.0 Preparing to unpack .../223-xkb-data_2.35.1-1_all.deb ...
#6 128.1 Unpacking xkb-data (2.35.1-1) ...
#6 128.3 Selecting previously unselected package libxkbcommon0:amd64.
#6 128.3 Preparing to unpack .../224-libxkbcommon0_1.5.0-1_amd64.deb ...
#6 128.3 Unpacking libxkbcommon0:amd64 (1.5.0-1) ...
#6 128.4 Selecting previously unselected package libxrandr2:amd64.
#6 128.4 Preparing to unpack .../225-libxrandr2_2%3a1.5.2-2+b1_amd64.deb ...
#6 128.4 Unpacking libxrandr2:amd64 (2:1.5.2-2+b1) ...
#6 128.6 Selecting previously unselected package x11-common.
#6 128.6 Preparing to unpack .../226-x11-common_1%3a7.7+23_all.deb ...
#6 128.7 Unpacking x11-common (1:7.7+23) ...
#6 128.8 Selecting previously unselected package libxss1:amd64.
#6 128.8 Preparing to unpack .../227-libxss1_1%3a1.2.3-1_amd64.deb ...
#6 128.8 Unpacking libxss1:amd64 (1:1.2.3-1) ...
#6 129.0 Selecting previously unselected package libsdl2-2.0-0:amd64.
#6 129.0 Preparing to unpack .../228-libsdl2-2.0-0_2.26.5+dfsg-1_amd64.deb ...
#6 129.0 Unpacking libsdl2-2.0-0:amd64 (2.26.5+dfsg-1) ...
#6 129.4 Selecting previously unselected package libxcb-shape0:amd64.
#6 129.4 Preparing to unpack .../229-libxcb-shape0_1.15-1_amd64.deb ...
#6 129.5 Unpacking libxcb-shape0:amd64 (1.15-1) ...
#6 129.7 Selecting previously unselected package libxv1:amd64.
#6 129.7 Preparing to unpack .../230-libxv1_2%3a1.0.11-1.1_amd64.deb ...
#6 129.7 Unpacking libxv1:amd64 (2:1.0.11-1.1) ...
#6 130.1 Selecting previously unselected package libavdevice59:amd64.
#6 130.1 Preparing to unpack .../231-libavdevice59_7%3a5.1.4-0+deb12u1_amd64.deb ...
#6 130.1 Unpacking libavdevice59:amd64 (7:5.1.4-0+deb12u1) ...
#6 130.3 Selecting previously unselected package ffmpeg.
#6 130.3 Preparing to unpack .../232-ffmpeg_7%3a5.1.4-0+deb12u1_amd64.deb ...
#6 130.3 Unpacking ffmpeg (7:5.1.4-0+deb12u1) ...
#6 130.6 Selecting previously unselected package libgirepository-1.0-1:amd64.
#6 130.6 Preparing to unpack .../233-libgirepository-1.0-1_1.74.0-3_amd64.deb ...
#6 130.7 Unpacking libgirepository-1.0-1:amd64 (1.74.0-3) ...
#6 130.8 Selecting previously unselected package gir1.2-glib-2.0:amd64.
#6 130.8 Preparing to unpack .../234-gir1.2-glib-2.0_1.74.0-3_amd64.deb ...
#6 130.8 Unpacking gir1.2-glib-2.0:amd64 (1.74.0-3) ...
#6 131.0 Selecting previously unselected package gir1.2-freedesktop:amd64.
#6 131.0 Preparing to unpack .../235-gir1.2-freedesktop_1.74.0-3_amd64.deb ...
#6 131.1 Unpacking gir1.2-freedesktop:amd64 (1.74.0-3) ...
#6 131.2 Selecting previously unselected package gir1.2-gdkpixbuf-2.0:amd64.
#6 131.2 Preparing to unpack .../236-gir1.2-gdkpixbuf-2.0_2.42.10+dfsg-1+b1_amd64.deb ...
#6 131.2 Unpacking gir1.2-gdkpixbuf-2.0:amd64 (2.42.10+dfsg-1+b1) ...
#6 131.5 Selecting previously unselected package libnspr4:amd64.
#6 131.5 Preparing to unpack .../237-libnspr4_2%3a4.35-1_amd64.deb ...
#6 131.5 Unpacking libnspr4:amd64 (2:4.35-1) ...
#6 135.9 Selecting previously unselected package libnss3:amd64.
#6 135.9 Preparing to unpack .../238-libnss3_2%3a3.87.1-1_amd64.deb ...
#6 135.9 Unpacking libnss3:amd64 (2:3.87.1-1) ...
#6 136.2 Selecting previously unselected package libpoppler126:amd64.
#6 136.2 Preparing to unpack .../239-libpoppler126_22.12.0-2+b1_amd64.deb ...
#6 136.3 Unpacking libpoppler126:amd64 (22.12.0-2+b1) ...
#6 136.6 Selecting previously unselected package libpoppler-glib8:amd64.
#6 136.6 Preparing to unpack .../240-libpoppler-glib8_22.12.0-2+b1_amd64.deb ...
#6 136.6 Unpacking libpoppler-glib8:amd64 (22.12.0-2+b1) ...
#6 136.9 Selecting previously unselected package gir1.2-poppler-0.18:amd64.
#6 136.9 Preparing to unpack .../241-gir1.2-poppler-0.18_22.12.0-2+b1_amd64.deb ...
#6 136.9 Unpacking gir1.2-poppler-0.18:amd64 (22.12.0-2+b1) ...
#6 137.1 Selecting previously unselected package gir1.2-rsvg-2.0:amd64.
#6 137.1 Preparing to unpack .../242-gir1.2-rsvg-2.0_2.54.7+dfsg-1~deb12u1_amd64.deb ...
#6 137.1 Unpacking gir1.2-rsvg-2.0:amd64 (2.54.7+dfsg-1~deb12u1) ...
#6 137.3 Selecting previously unselected package libsasl2-modules-db:amd64.
#6 137.3 Preparing to unpack .../243-libsasl2-modules-db_2.1.28+dfsg-10_amd64.deb ...
#6 137.3 Unpacking libsasl2-modules-db:amd64 (2.1.28+dfsg-10) ...
#6 137.5 Selecting previously unselected package libsasl2-2:amd64.
#6 137.5 Preparing to unpack .../244-libsasl2-2_2.1.28+dfsg-10_amd64.deb ...
#6 137.6 Unpacking libsasl2-2:amd64 (2.1.28+dfsg-10) ...
#6 137.8 Selecting previously unselected package libldap-2.5-0:amd64.
#6 137.8 Preparing to unpack .../245-libldap-2.5-0_2.5.13+dfsg-5_amd64.deb ...
#6 137.8 Unpacking libldap-2.5-0:amd64 (2.5.13+dfsg-5) ...
#6 138.0 Selecting previously unselected package libnghttp2-14:amd64.
#6 138.0 Preparing to unpack .../246-libnghttp2-14_1.52.0-1+deb12u1_amd64.deb ...
#6 138.1 Unpacking libnghttp2-14:amd64 (1.52.0-1+deb12u1) ...
#6 138.3 Selecting previously unselected package libpsl5:amd64.
#6 138.3 Preparing to unpack .../247-libpsl5_0.21.2-1_amd64.deb ...
#6 138.4 Unpacking libpsl5:amd64 (0.21.2-1) ...
#6 138.6 Selecting previously unselected package librtmp1:amd64.
#6 138.6 Preparing to unpack .../248-librtmp1_2.4+20151223.gitfa8646d.1-2+b2_amd64.deb ...
#6 138.7 Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ...
#6 138.9 Selecting previously unselected package libssh2-1:amd64.
#6 138.9 Preparing to unpack .../249-libssh2-1_1.10.0-3+b1_amd64.deb ...
#6 138.9 Unpacking libssh2-1:amd64 (1.10.0-3+b1) ...
#6 139.1 Selecting previously unselected package libcurl3-gnutls:amd64.
#6 139.1 Preparing to unpack .../250-libcurl3-gnutls_7.88.1-10+deb12u5_amd64.deb ...
#6 139.1 Unpacking libcurl3-gnutls:amd64 (7.88.1-10+deb12u5) ...
#6 139.3 Selecting previously unselected package liberror-perl.
#6 139.3 Preparing to unpack .../251-liberror-perl_0.17029-2_all.deb ...
#6 139.3 Unpacking liberror-perl (0.17029-2) ...
#6 139.4 Selecting previously unselected package git-man.
#6 139.4 Preparing to unpack .../252-git-man_1%3a2.39.2-1.1_all.deb ...
#6 139.4 Unpacking git-man (1:2.39.2-1.1) ...
#6 139.6 Selecting previously unselected package git.
#6 139.6 Preparing to unpack .../253-git_1%3a2.39.2-1.1_amd64.deb ...
#6 139.6 Unpacking git (1:2.39.2-1.1) ...
#6 140.2 Selecting previously unselected package python3-lib2to3.
#6 140.2 Preparing to unpack .../254-python3-lib2to3_3.11.2-3_all.deb ...
#6 140.2 Unpacking python3-lib2to3 (3.11.2-3) ...
#6 140.3 Selecting previously unselected package python3-distutils.
#6 140.3 Preparing to unpack .../255-python3-distutils_3.11.2-3_all.deb ...
#6 140.3 Unpacking python3-distutils (3.11.2-3) ...
#6 140.4 Selecting previously unselected package python3-pkg-resources.
#6 140.4 Preparing to unpack .../256-python3-pkg-resources_66.1.1-1_all.deb ...
#6 140.5 Unpacking python3-pkg-resources (66.1.1-1) ...
#6 140.6 Selecting previously unselected package python3-markupsafe.
#6 140.6 Preparing to unpack .../257-python3-markupsafe_2.1.2-1+b1_amd64.deb ...
#6 140.6 Unpacking python3-markupsafe (2.1.2-1+b1) ...
#6 140.7 Selecting previously unselected package python3-mako.
#6 140.7 Preparing to unpack .../258-python3-mako_1.2.4+ds-1_all.deb ...
#6 140.8 Unpacking python3-mako (1.2.4+ds-1) ...
#6 140.9 Selecting previously unselected package python3-markdown.
#6 140.9 Preparing to unpack .../259-python3-markdown_3.4.1-2_all.deb ...
#6 140.9 Unpacking python3-markdown (3.4.1-2) ...
#6 141.0 Selecting previously unselected package gobject-introspection.
#6 141.0 Preparing to unpack .../260-gobject-introspection_1.74.0-3_amd64.deb ...
#6 141.0 Unpacking gobject-introspection (1.74.0-3) ...
#6 141.2 Selecting previously unselected package uuid-dev:amd64.
#6 141.2 Preparing to unpack .../261-uuid-dev_2.38.1-5+b1_amd64.deb ...
#6 141.2 Unpacking uuid-dev:amd64 (2.38.1-5+b1) ...
#6 141.3 Selecting previously unselected package libblkid-dev:amd64.
#6 141.3 Preparing to unpack .../262-libblkid-dev_2.38.1-5+b1_amd64.deb ...
#6 141.3 Unpacking libblkid-dev:amd64 (2.38.1-5+b1) ...
#6 141.4 Selecting previously unselected package libffi-dev:amd64.
#6 141.4 Preparing to unpack .../263-libffi-dev_3.4.4-1_amd64.deb ...
#6 141.4 Unpacking libffi-dev:amd64 (3.4.4-1) ...
#6 141.5 Selecting previously unselected package libglib2.0-data.
#6 141.5 Preparing to unpack .../264-libglib2.0-data_2.74.6-2_all.deb ...
#6 141.5 Unpacking libglib2.0-data (2.74.6-2) ...
#6 141.7 Selecting previously unselected package libglib2.0-bin.
#6 141.7 Preparing to unpack .../265-libglib2.0-bin_2.74.6-2_amd64.deb ...
#6 141.8 Unpacking libglib2.0-bin (2.74.6-2) ...
#6 142.2 Selecting previously unselected package libglib2.0-dev-bin.
#6 142.2 Preparing to unpack .../266-libglib2.0-dev-bin_2.74.6-2_amd64.deb ...
#6 142.2 Unpacking libglib2.0-dev-bin (2.74.6-2) ...
#6 142.3 Selecting previously unselected package libsepol-dev:amd64.
#6 142.3 Preparing to unpack .../267-libsepol-dev_3.4-2.1_amd64.deb ...
#6 142.4 Unpacking libsepol-dev:amd64 (3.4-2.1) ...
#6 142.5 Selecting previously unselected package libpcre2-16-0:amd64.
#6 142.5 Preparing to unpack .../268-libpcre2-16-0_10.42-1_amd64.deb ...
#6 142.5 Unpacking libpcre2-16-0:amd64 (10.42-1) ...
#6 142.7 Selecting previously unselected package libpcre2-32-0:amd64.
#6 142.7 Preparing to unpack .../269-libpcre2-32-0_10.42-1_amd64.deb ...
#6 142.7 Unpacking libpcre2-32-0:amd64 (10.42-1) ...
#6 142.8 Selecting previously unselected package libpcre2-posix3:amd64.
#6 142.8 Preparing to unpack .../270-libpcre2-posix3_10.42-1_amd64.deb ...
#6 142.8 Unpacking libpcre2-posix3:amd64 (10.42-1) ...
#6 142.9 Selecting previously unselected package libpcre2-dev:amd64.
#6 142.9 Preparing to unpack .../271-libpcre2-dev_10.42-1_amd64.deb ...
#6 142.9 Unpacking libpcre2-dev:amd64 (10.42-1) ...
#6 143.1 Selecting previously unselected package libselinux1-dev:amd64.
#6 143.1 Preparing to unpack .../272-libselinux1-dev_3.4-1+b6_amd64.deb ...
#6 143.1 Unpacking libselinux1-dev:amd64 (3.4-1+b6) ...
#6 143.3 Selecting previously unselected package libmount-dev:amd64.
#6 143.3 Preparing to unpack .../273-libmount-dev_2.38.1-5+b1_amd64.deb ...
#6 143.3 Unpacking libmount-dev:amd64 (2.38.1-5+b1) ...
#6 143.4 Selecting previously unselected package libpkgconf3:amd64.
#6 143.4 Preparing to unpack .../274-libpkgconf3_1.8.1-1_amd64.deb ...
#6 143.4 Unpacking libpkgconf3:amd64 (1.8.1-1) ...
#6 143.5 Selecting previously unselected package pkgconf-bin.
#6 143.5 Preparing to unpack .../275-pkgconf-bin_1.8.1-1_amd64.deb ...
#6 143.5 Unpacking pkgconf-bin (1.8.1-1) ...
#6 143.7 Selecting previously unselected package pkgconf:amd64.
#6 143.7 Preparing to unpack .../276-pkgconf_1.8.1-1_amd64.deb ...
#6 143.7 Unpacking pkgconf:amd64 (1.8.1-1) ...
#6 143.8 Selecting previously unselected package pkg-config:amd64.
#6 143.8 Preparing to unpack .../277-pkg-config_1.8.1-1_amd64.deb ...
#6 143.8 Unpacking pkg-config:amd64 (1.8.1-1) ...
#6 143.9 Selecting previously unselected package zlib1g-dev:amd64.
#6 143.9 Preparing to unpack .../278-zlib1g-dev_1%3a1.2.13.dfsg-1_amd64.deb ...
#6 143.9 Unpacking zlib1g-dev:amd64 (1:1.2.13.dfsg-1) ...
#6 144.1 Selecting previously unselected package libglib2.0-dev:amd64.
#6 144.1 Preparing to unpack .../279-libglib2.0-dev_2.74.6-2_amd64.deb ...
#6 144.1 Unpacking libglib2.0-dev:amd64 (2.74.6-2) ...
#6 144.4 Selecting previously unselected package libgirepository1.0-dev.
#6 144.4 Preparing to unpack .../280-libgirepository1.0-dev_1.74.0-3_amd64.deb ...
#6 144.4 Unpacking libgirepository1.0-dev (1.74.0-3) ...
#6 144.5 Selecting previously unselected package libimage-exiftool-perl.
#6 144.5 Preparing to unpack .../281-libimage-exiftool-perl_12.70+dfsg-1_all.deb ...
#6 144.6 Unpacking libimage-exiftool-perl (12.70+dfsg-1) ...
#6 145.0 Setting up libgme0:amd64 (0.6.3-6) ...
#6 145.1 Setting up libssh-gcrypt-4:amd64 (0.10.6-0+deb12u1) ...
#6 145.1 Setting up media-types (10.0.0) ...
#6 145.2 Setting up libgraphite2-3:amd64 (1.3.14-1) ...
#6 145.2 Setting up liblcms2-2:amd64 (2.14-2) ...
#6 145.2 Setting up libpixman-1-0:amd64 (0.42.2-1) ...
#6 145.3 Setting up libudfread0:amd64 (1.1.2-1) ...
#6 145.3 Setting up libwayland-server0:amd64 (1.21.0-1) ...
#6 145.4 Setting up libaom3:amd64 (3.6.0-1) ...
#6 145.4 Setting up libpciaccess0:amd64 (0.17-2) ...
#6 145.5 Setting up librabbitmq4:amd64 (0.11.0-1+b1) ...
#6 145.5 Setting up libxau6:amd64 (1:1.0.9-1) ...
#6 145.6 Setting up libraw1394-11:amd64 (2.1.2-2) ...
#6 145.7 Setting up libpsl5:amd64 (0.21.2-1) ...
#6 145.7 Setting up libcodec2-1.0:amd64 (1.0.5-1) ...
#6 145.8 Setting up libsodium23:amd64 (1.0.18-1) ...
#6 145.8 Setting up libicu72:amd64 (72.1-3) ...
#6 145.9 Setting up libmpg123-0:amd64 (1.31.2-1) ...
#6 145.9 Setting up libogg0:amd64 (1.3.5-3) ...
#6 146.0 Setting up liblerc4:amd64 (4.0.0+ds-2) ...
#6 146.0 Setting up libspeex1:amd64 (1.2.1-2) ...
#6 146.1 Setting up libshine3:amd64 (3.1.1-2) ...
#6 146.2 Setting up libx264-164:amd64 (2:0.164.3095+gitbaee400-3) ...
#6 146.2 Setting up libtwolame0:amd64 (0.4.0-2) ...
#6 146.3 Setting up libdatrie1:amd64 (0.2.13-2+b1) ...
#6 146.3 Setting up libgsm1:amd64 (1.0.22-1) ...
#6 146.4 Setting up libglib2.0-0:amd64 (2.74.6-2) ...
#6 146.4 No schema files found: doing nothing.
#6 146.4 Setting up libglvnd0:amd64 (1.6.0-1) ...
#6 146.5 Setting up libpgm-5.3-0:amd64 (5.3.128~dfsg-2) ...
#6 146.5 Setting up libpython3.11-stdlib:amd64 (3.11.2-6) ...
#6 146.6 Setting up libbrotli1:amd64 (1.0.9-2+b6) ...
#6 146.6 Setting up libgdk-pixbuf2.0-common (2.42.10+dfsg-1) ...
#6 146.7 Setting up libnorm1:amd64 (1.5.9+dfsg-2) ...
#6 146.7 Setting up libmysofa1:amd64 (1.3.1~dfsg0-1) ...
#6 146.8 Setting up binutils-common:amd64 (2.40-2) ...
#6 146.8 Setting up x11-common (1:7.7+23) ...
#6 147.2 debconf: unable to initialize frontend: Dialog
#6 147.2 debconf: (TERM is not set, so the dialog frontend is not usable.)
#6 147.2 debconf: falling back to frontend: Readline
#6 147.2 debconf: unable to initialize frontend: Readline
#6 147.2 debconf: (This frontend requires a controlling tty.)
#6 147.2 debconf: falling back to frontend: Teletype
#6 147.2 invoke-rc.d: could not determine current runlevel
#6 147.2 invoke-rc.d: policy-rc.d denied execution of restart.
#6 147.3 Setting up libsensors-config (1:3.6.0-7.1) ...
#6 147.4 Setting up libnghttp2-14:amd64 (1.52.0-1+deb12u1) ...
#6 147.4 Setting up libdeflate0:amd64 (1.14-1) ...
#6 147.5 Setting up linux-libc-dev:amd64 (6.1.67-1) ...
#6 147.5 Setting up libctf-nobfd0:amd64 (2.40-2) ...
#6 147.5 Setting up xkb-data (2.35.1-1) ...
#6 147.6 Setting up libhwy1:amd64 (1.0.3-3+deb12u1) ...
#6 147.7 Setting up libsvtav1enc1:amd64 (1.4.1+dfsg-1) ...
#6 147.7 Setting up libgomp1:amd64 (12.2.0-14) ...
#6 147.8 Setting up libcdio19:amd64 (2.1.0-4) ...
#6 147.8 Setting up libcjson1:amd64 (1.7.15-1) ...
#6 147.9 Setting up libxvidcore4:amd64 (2:1.3.7-1) ...
#6 147.9 Setting up bzip2 (1.0.8-5+b1) ...
#6 148.0 Setting up libffi-dev:amd64 (3.4.4-1) ...
#6 148.0 Setting up libjbig0:amd64 (2.1-6.1) ...
#6 148.1 Setting up librav1e0:amd64 (0.5.1-6) ...
#6 148.1 Setting up libpcre2-16-0:amd64 (10.42-1) ...
#6 148.2 Setting up libjansson4:amd64 (2.14-2) ...
#6 148.3 Setting up libsnappy1v5:amd64 (1.1.9-3) ...
#6 148.3 Setting up libsasl2-modules-db:amd64 (2.1.28+dfsg-10) ...
#6 148.3 Setting up libasound2-data (1.2.8-1) ...
#6 148.4 Setting up perl-modules-5.36 (5.36.0-7+deb12u1) ...
#6 152.4 Setting up libz3-4:amd64 (4.8.12-3.1) ...
#6 152.5 Setting up libpcre2-32-0:amd64 (10.42-1) ...
#6 152.5 Setting up libblas3:amd64 (3.11.0-2) ...
#6 152.6 update-alternatives: using /usr/lib/x86_64-linux-gnu/blas/libblas.so.3 to provide /usr/lib/x86_64-linux-gnu/libblas.so.3 (libblas.so.3-x86_64-linux-gnu) in auto mode
#6 152.6 Setting up libglib2.0-data (2.74.6-2) ...
#6 152.7 Setting up libtirpc-dev:amd64 (1.3.3+ds-1) ...
#6 152.7 Setting up libpkgconf3:amd64 (1.8.1-1) ...
#6 152.8 Setting up libflac12:amd64 (1.4.2+ds-2) ...
#6 152.8 Setting up rpcsvc-proto (1.4.3-1) ...
#6 152.9 Setting up libjpeg62-turbo:amd64 (1:2.1.5-2) ...
#6 152.9 Setting up libslang2:amd64 (2.3.3-3) ...
#6 153.0 Setting up libva2:amd64 (2.17.0-1) ...
#6 153.0 Setting up libmbedcrypto7:amd64 (2.28.3-1) ...
#6 153.1 Setting up libx11-data (2:1.8.4-2+deb12u2) ...
#6 153.1 Setting up make (4.3-4.1) ...
#6 153.2 Setting up libepoxy0:amd64 (1.5.10-1) ...
#6 153.2 Setting up libmpfr6:amd64 (4.2.0-1) ...
#6 153.3 Setting up libnspr4:amd64 (2:4.35-1) ...
#6 153.3 Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ...
#6 153.4 Setting up libdbus-1-3:amd64 (1.14.10-1~deb12u1) ...
#6 153.4 Setting up xz-utils (5.4.1-0.2) ...
#6 153.5 update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in auto mode
#6 153.5 update-alternatives: warning: skip creation of /usr/share/man/man1/lzma.1.gz because associated file /usr/share/man/man1/xz.1.gz (of link group lzma) doesn't exist
#6 153.5 update-alternatives: warning: skip creation of /usr/share/man/man1/unlzma.1.gz because associated file /usr/share/man/man1/unxz.1.gz (of link group lzma) doesn't exist
#6 153.5 update-alternatives: warning: skip creation of /usr/share/man/man1/lzcat.1.gz because associated file /usr/share/man/man1/xzcat.1.gz (of link group lzma) doesn't exist
#6 153.5 update-alternatives: warning: skip creation of /usr/share/man/man1/lzmore.1.gz because associated file /usr/share/man/man1/xzmore.1.gz (of link group lzma) doesn't exist
#6 153.5 update-alternatives: warning: skip creation of /usr/share/man/man1/lzless.1.gz because associated file /usr/share/man/man1/xzless.1.gz (of link group lzma) doesn't exist
#6 153.5 update-alternatives: warning: skip creation of /usr/share/man/man1/lzdiff.1.gz because associated file /usr/share/man/man1/xzdiff.1.gz (of link group lzma) doesn't exist
#6 153.5 update-alternatives: warning: skip creation of /usr/share/man/man1/lzcmp.1.gz because associated file /usr/share/man/man1/xzcmp.1.gz (of link group lzma) doesn't exist
#6 153.5 update-alternatives: warning: skip creation of /usr/share/man/man1/lzgrep.1.gz because associated file /usr/share/man/man1/xzgrep.1.gz (of link group lzma) doesn't exist
#6 153.5 update-alternatives: warning: skip creation of /usr/share/man/man1/lzegrep.1.gz because associated file /usr/share/man/man1/xzegrep.1.gz (of link group lzma) doesn't exist
#6 153.5 update-alternatives: warning: skip creation of /usr/share/man/man1/lzfgrep.1.gz because associated file /usr/share/man/man1/xzfgrep.1.gz (of link group lzma) doesn't exist
#6 153.6 Setting up libfribidi0:amd64 (1.0.8-2.1) ...
#6 153.6 Setting up libopus0:amd64 (1.3.1-3) ...
#6 153.7 Setting up libquadmath0:amd64 (12.2.0-14) ...
#6 153.7 Setting up libpng16-16:amd64 (1.6.39-2) ...
#6 153.8 Setting up libmpc3:amd64 (1.3.1-1) ...
#6 153.8 Setting up libatomic1:amd64 (12.2.0-14) ...
#6 153.9 Setting up libvorbis0a:amd64 (1.3.7-1) ...
#6 153.9 Setting up patch (2.7.6-7) ...
#6 154.0 Setting up fonts-dejavu-core (2.37-6) ...
#6 154.5 Setting up libgdbm-compat4:amd64 (1.23-3) ...
#6 154.6 Setting up libsepol-dev:amd64 (3.4-2.1) ...
#6 154.8 Setting up pkgconf-bin (1.8.1-1) ...
#6 154.9 Setting up libsensors5:amd64 (1:3.6.0-7.1) ...
#6 155.1 Setting up libjxl0.7:amd64 (0.7.0-10) ...
#6 155.1 Setting up libdav1d6:amd64 (1.0.0-2) ...
#6 155.2 Setting up libglapi-mesa:amd64 (22.3.6-1+deb12u1) ...
#6 155.3 Setting up libsasl2-2:amd64 (2.1.28+dfsg-10) ...
#6 155.3 Setting up libgfortran5:amd64 (12.2.0-14) ...
#6 155.4 Setting up libvulkan1:amd64 (1.3.239.0-1) ...
#6 155.4 Setting up libwebp7:amd64 (1.2.4-0.2+deb12u1) ...
#6 155.5 Setting up librubberband2:amd64 (3.1.2+dfsg0-1) ...
#6 155.5 Setting up libubsan1:amd64 (12.2.0-14) ...
#6 155.6 Setting up libnuma1:amd64 (2.0.16-1) ...
#6 155.6 Setting up libpcre2-posix3:amd64 (10.42-1) ...
#6 155.7 Setting up libvidstab1.1:amd64 (1.1.0-2+b1) ...
#6 155.7 Setting up libsrt1.5-gnutls:amd64 (1.5.1-1) ...
#6 155.8 Setting up libnsl-dev:amd64 (1.3.0-2) ...
#6 155.8 Setting up ocl-icd-libopencl1:amd64 (2.3.1-1) ...
#6 155.9 Setting up libasyncns0:amd64 (0.8-6+b3) ...
#6 155.9 Setting up libxshmfence1:amd64 (1.3-1) ...
#6 156.0 Setting up libcrypt-dev:amd64 (1:4.4.33-2) ...
#6 156.0 Setting up libtiff6:amd64 (4.5.0-6+deb12u1) ...
#6 156.1 Setting up libbs2b0:amd64 (3.1.0+dfsg-7) ...
#6 156.1 Setting up libasan8:amd64 (12.2.0-14) ...
#6 156.2 Setting up libasound2:amd64 (1.2.8-1+b1) ...
#6 156.2 Setting up libzimg2:amd64 (3.0.4+ds1-1) ...
#6 156.3 Setting up libopenjp2-7:amd64 (2.5.0-2) ...
#6 156.3 Setting up git-man (1:2.39.2-1.1) ...
#6 156.4 Setting up libopenal-data (1:1.19.1-2) ...
#6 156.4 Setting up libthai-data (0.1.29-1) ...
#6 156.5 Setting up libgirepository-1.0-1:amd64 (1.74.0-3) ...
#6 156.6 Setting up libssh2-1:amd64 (1.10.0-3+b1) ...
#6 156.6 Setting up libvpx7:amd64 (1.12.0-1+deb12u2) ...
#6 156.7 Setting up libwayland-egl1:amd64 (1.21.0-1) ...
#6 156.7 Setting up libusb-1.0-0:amd64 (2:1.0.26-1) ...
#6 156.7 Setting up libtsan2:amd64 (12.2.0-14) ...
#6 156.8 Setting up libbinutils:amd64 (2.40-2) ...
#6 156.8 Setting up libmfx1:amd64 (22.5.4-1) ...
#6 156.9 Setting up libisl23:amd64 (0.25-1) ...
#6 156.9 Setting up libc-dev-bin (2.36-9+deb12u3) ...
#6 157.0 Setting up libsamplerate0:amd64 (0.2.2-3) ...
#6 157.1 Setting up libwebpmux3:amd64 (1.2.4-0.2+deb12u1) ...
#6 157.1 Setting up libbsd0:amd64 (0.11.7-2) ...
#6 157.1 Setting up libdrm-common (2.4.114-1) ...
#6 157.2 Setting up libelf1:amd64 (0.188-2.1) ...
#6 157.3 Setting up libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ...
#6 157.3 Setting up libcc1-0:amd64 (12.2.0-14) ...
#6 157.4 Setting up libperl5.36:amd64 (5.36.0-7+deb12u1) ...
#6 157.4 Setting up libzvbi-common (0.2.41-1) ...
#6 157.5 Setting up liblsan0:amd64 (12.2.0-14) ...
#6 157.5 Setting up libmp3lame0:amd64 (3.100-6) ...
#6 157.6 Setting up libitm1:amd64 (12.2.0-14) ...
#6 157.6 Setting up libvorbisenc2:amd64 (1.3.7-1) ...
#6 157.7 Setting up libpython3-stdlib:amd64 (3.11.2-1+b1) ...
#6 157.7 Setting up libiec61883-0:amd64 (1.2.0-6+b1) ...
#6 157.8 Setting up libserd-0-0:amd64 (0.30.16-1) ...
#6 157.8 Setting up libxkbcommon0:amd64 (1.5.0-1) ...
#6 157.9 Setting up libwayland-client0:amd64 (1.21.0-1) ...
#6 157.9 Setting up libctf0:amd64 (2.40-2) ...
#6 158.0 Setting up libavc1394-0:amd64 (0.5.4-5) ...
#6 158.0 Setting up libzvbi0:amd64 (0.2.41-1) ...
#6 158.1 Setting up python3.11 (3.11.2-6) ...
#6 158.8 Setting up libxdmcp6:amd64 (1:1.1.2-3) ...
#6 158.9 Setting up liblapack3:amd64 (3.11.0-2) ...
#6 158.9 update-alternatives: using /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/x86_64-linux-gnu/liblapack.so.3 (liblapack.so.3-x86_64-linux-gnu) in auto mode
#6 159.0 Setting up cpp-12 (12.2.0-14) ...
#6 159.0 Setting up libxcb1:amd64 (1.15-1) ...
#6 159.0 Setting up libxcb-xfixes0:amd64 (1.15-1) ...
#6 159.1 Setting up libplacebo208:amd64 (4.208.0-3) ...
#6 159.1 Setting up libzmq5:amd64 (4.3.4-6) ...
#6 159.3 Setting up libcaca0:amd64 (0.99.beta20-3) ...
#6 159.3 Setting up libxcb-render0:amd64 (1.15-1) ...
#6 159.3 Setting up libsoxr0:amd64 (0.1.3-4) ...
#6 159.4 Setting up libcdio-cdda2:amd64 (10.2+2.0.1-1) ...
#6 159.4 Setting up fontconfig-config (2.14.1-4) ...
#6 159.6 debconf: unable to initialize frontend: Dialog
#6 159.6 debconf: (TERM is not set, so the dialog frontend is not usable.)
#6 159.6 debconf: falling back to frontend: Readline
#6 159.6 debconf: unable to initialize frontend: Readline
#6 159.6 debconf: (This frontend requires a controlling tty.)
#6 159.6 debconf: falling back to frontend: Teletype
#6 159.8 Setting up libcdio-paranoia2:amd64 (10.2+2.0.1-1) ...
#6 159.8 Setting up libxcb-glx0:amd64 (1.15-1) ...
#6 159.9 Setting up libedit2:amd64 (3.1-20221030-2) ...
#6 160.0 Setting up libxcb-shape0:amd64 (1.15-1) ...
#6 160.0 Setting up libglib2.0-bin (2.74.6-2) ...
#6 160.1 Setting up python3 (3.11.2-1+b1) ...
#6 160.1 running python rtupdate hooks for python3.11...
#6 160.6 running python post-rtupdate hooks for python3.11...
#6 160.7 Setting up libnss3:amd64 (2:3.87.1-1) ...
#6 160.7 Setting up libxcb-shm0:amd64 (1.15-1) ...
#6 160.8 Setting up python3-markupsafe (2.1.2-1+b1) ...
#6 160.9 Setting up libldap-2.5-0:amd64 (2.5.13+dfsg-5) ...
#6 161.0 Setting up pkgconf:amd64 (1.8.1-1) ...
#6 161.0 Setting up librist4:amd64 (0.2.7+dfsg-1) ...
#6 161.1 Setting up libxcb-present0:amd64 (1.15-1) ...
#6 161.1 Setting up libthai0:amd64 (0.1.29-1) ...
#6 161.2 Setting up libvorbisfile3:amd64 (1.3.7-1) ...
#6 161.2 Setting up perl (5.36.0-7+deb12u1) ...
#6 161.3 Setting up libgprofng0:amd64 (2.40-2) ...
#6 161.4 Setting up libfreetype6:amd64 (2.12.1+dfsg-5) ...
#6 161.4 Setting up libxcb-sync1:amd64 (1.15-1) ...
#6 161.4 Setting up libgcc-12-dev:amd64 (12.2.0-14) ...
#6 161.5 Setting up shared-mime-info (2.2-1) ...
#6 169.9 Setting up libdc1394-25:amd64 (2.2.6-4) ...
#6 169.9 Setting up python3-markdown (3.4.1-2) ...
#6 170.2 Setting up pkg-config:amd64 (1.8.1-1) ...
#6 170.3 Setting up gir1.2-glib-2.0:amd64 (1.74.0-3) ...
#6 170.3 Setting up libdpkg-perl (1.21.22) ...
#6 170.4 Setting up libx265-199:amd64 (3.5-2+b1) ...
#6 170.4 Setting up libsndio7.0:amd64 (1.9.0-0.3+b2) ...
#6 170.4 Setting up libxcb-dri2-0:amd64 (1.15-1) ...
#6 170.5 Setting up libjack-jackd2-0:amd64 (1.9.21~dfsg-3) ...
#6 170.5 Setting up libdrm2:amd64 (2.4.114-1+b1) ...
#6 170.6 Setting up libflite1:amd64 (2.2-5) ...
#6 170.6 Setting up libva-drm2:amd64 (2.17.0-1) ...
#6 170.7 Setting up libsord-0-0:amd64 (0.16.14+git221008-1) ...
#6 170.7 Setting up libwayland-cursor0:amd64 (1.21.0-1) ...
#6 170.8 Setting up libxcb-randr0:amd64 (1.15-1) ...
#6 170.8 Setting up cpp (4:12.2.0-3) ...
#6 170.9 Setting up libsratom-0-0:amd64 (0.6.14-1) ...
#6 170.9 Setting up libllvm15:amd64 (1:15.0.6-4+b1) ...
#6 171.0 Setting up libdecor-0-0:amd64 (0.1.1-2) ...
#6 171.0 Setting up libc6-dev:amd64 (2.36-9+deb12u3) ...
#6 171.1 Setting up libx11-6:amd64 (2:1.8.4-2+deb12u2) ...
#6 171.1 Setting up libharfbuzz0b:amd64 (6.0.0+dfsg-3) ...
#6 171.1 Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+b1) ...
#6 171.2 Setting up libfontconfig1:amd64 (2.14.1-4) ...
#6 171.3 Setting up libsndfile1:amd64 (1.2.0-1) ...
#6 171.3 Setting up libbluray2:amd64 (1:1.3.4-1) ...
#6 171.4 Setting up python3-lib2to3 (3.11.2-3) ...
#6 171.6 Setting up liblilv-0-0:amd64 (0.24.14-1) ...
#6 171.7 Setting up libopenmpt0:amd64 (0.6.9-1) ...
#6 171.7 Setting up binutils-x86-64-linux-gnu (2.40-2) ...
#6 171.8 Setting up libdrm-amdgpu1:amd64 (2.4.114-1+b1) ...
#6 171.8 Setting up python3-pkg-resources (66.1.1-1) ...
#6 172.3 Setting up python3-distutils (3.11.2-3) ...
#6 172.5 Setting up libxcb-dri3-0:amd64 (1.15-1) ...
#6 172.6 Setting up libglib2.0-dev-bin (2.74.6-2) ...
#6 172.8 Setting up libx11-xcb1:amd64 (2:1.8.4-2+deb12u2) ...
#6 172.9 Setting up fontconfig (2.14.1-4) ...
#6 172.9 Regenerating fonts cache... done.
#6 175.0 Setting up libdrm-nouveau2:amd64 (2.4.114-1+b1) ...
#6 176.0 Setting up gir1.2-freedesktop:amd64 (1.74.0-3) ...
#6 176.1 Setting up libpcre2-dev:amd64 (10.42-1) ...
#6 176.2 Setting up libxrender1:amd64 (1:0.9.10-1.1) ...
#6 176.2 Setting up gir1.2-gdkpixbuf-2.0:amd64 (2.42.10+dfsg-1+b1) ...
#6 176.3 Setting up libstdc++-12-dev:amd64 (12.2.0-14) ...
#6 176.3 Setting up libgbm1:amd64 (22.3.6-1+deb12u1) ...
#6 176.4 Setting up libpulse0:amd64 (16.1+dfsg1-2+b1) ...
#6 176.4 Setting up libselinux1-dev:amd64 (3.4-1+b6) ...
#6 176.5 Setting up libdrm-radeon1:amd64 (2.4.114-1+b1) ...
#6 176.5 Setting up libpango-1.0-0:amd64 (1.50.12+ds-1) ...
#6 176.6 Setting up libdrm-intel1:amd64 (2.4.114-1+b1) ...
#6 176.7 Setting up libgl1-mesa-dri:amd64 (22.3.6-1+deb12u1) ...
#6 176.7 Setting up libxext6:amd64 (2:1.3.4-1+b1) ...
#6 176.8 Setting up libcurl3-gnutls:amd64 (7.88.1-10+deb12u5) ...
#6 176.9 Setting up libopenal1:amd64 (1:1.19.1-2) ...
#6 177.0 Setting up binutils (2.40-2) ...
#6 177.0 Setting up libcairo2:amd64 (1.16.0-7) ...
#6 177.1 Setting up libimage-exiftool-perl (12.70+dfsg-1) ...
#6 177.1 Setting up dpkg-dev (1.21.22) ...
#6 177.4 Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ...
#6 177.9 Setting up liberror-perl (0.17029-2) ...
#6 178.1 Setting up libass9:amd64 (1:0.17.1-1) ...
#6 178.5 Setting up gcc-12 (12.2.0-14) ...
#6 178.9 Setting up libxfixes3:amd64 (1:6.0.0-2) ...
#6 179.0 Setting up uuid-dev:amd64 (2.38.1-5+b1) ...
#6 179.2 Setting up libxv1:amd64 (2:1.0.11-1.1) ...
#6 179.5 Setting up libxrandr2:amd64 (2:1.5.2-2+b1) ...
#6 179.6 Setting up git (1:2.39.2-1.1) ...
#6 179.7 Setting up libpoppler126:amd64 (22.12.0-2+b1) ...
#6 179.7 Setting up zlib1g-dev:amd64 (1:1.2.13.dfsg-1) ...
#6 179.8 Setting up libvdpau1:amd64 (1.5-2) ...
#6 179.8 Setting up libtheora0:amd64 (1.1.1+dfsg.1-16.1+b1) ...
#6 179.9 Setting up libcairo-gobject2:amd64 (1.16.0-7) ...
#6 180.0 Setting up libxss1:amd64 (1:1.2.3-1) ...
#6 180.0 Setting up libpangoft2-1.0-0:amd64 (1.50.12+ds-1) ...
#6 180.1 Setting up libva-x11-2:amd64 (2.17.0-1) ...
#6 180.1 Setting up python3-mako (1.2.4+ds-1) ...
#6 180.4 Setting up libpangocairo-1.0-0:amd64 (1.50.12+ds-1) ...
#6 180.4 Setting up g++-12 (12.2.0-14) ...
#6 180.5 Setting up libblkid-dev:amd64 (2.38.1-5+b1) ...
#6 180.5 Setting up libglx-mesa0:amd64 (22.3.6-1+deb12u1) ...
#6 180.5 Setting up libpoppler-glib8:amd64 (22.12.0-2+b1) ...
#6 180.6 Setting up libxi6:amd64 (2:1.8-1+b1) ...
#6 180.6 Setting up libglx0:amd64 (1.6.0-1) ...
#6 180.7 Setting up libsphinxbase3:amd64 (0.8+5prealpha+1-16) ...
#6 180.7 Setting up libxcursor1:amd64 (1:1.2.1-1) ...
#6 180.8 Setting up gcc (4:12.2.0-3) ...
#6 180.9 Setting up librsvg2-2:amd64 (2.54.7+dfsg-1~deb12u1) ...
#6 180.9 Setting up libpocketsphinx3:amd64 (0.8+5prealpha+1-15) ...
#6 181.0 Setting up libavutil57:amd64 (7:5.1.4-0+deb12u1) ...
#6 181.0 Setting up libgl1:amd64 (1.6.0-1) ...
#6 181.1 Setting up libswresample4:amd64 (7:5.1.4-0+deb12u1) ...
#6 181.1 Setting up g++ (4:12.2.0-3) ...
#6 181.2 update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode
#6 181.2 Setting up build-essential (12.9) ...
#6 181.3 Setting up libpostproc56:amd64 (7:5.1.4-0+deb12u1) ...
#6 181.3 Setting up gir1.2-poppler-0.18:amd64 (22.12.0-2+b1) ...
#6 181.4 Setting up gir1.2-rsvg-2.0:amd64 (2.54.7+dfsg-1~deb12u1) ...
#6 181.4 Setting up libavcodec59:amd64 (7:5.1.4-0+deb12u1) ...
#6 181.5 Setting up libsdl2-2.0-0:amd64 (2.26.5+dfsg-1) ...
#6 181.5 Setting up libswscale6:amd64 (7:5.1.4-0+deb12u1) ...
#6 181.6 Setting up libmount-dev:amd64 (2.38.1-5+b1) ...
#6 181.6 Setting up libchromaprint1:amd64 (1.5.1-2+b1) ...
#6 181.7 Setting up libavformat59:amd64 (7:5.1.4-0+deb12u1) ...
#6 181.7 Setting up gobject-introspection (1.74.0-3) ...
#6 182.0 Setting up libavfilter8:amd64 (7:5.1.4-0+deb12u1) ...
#6 182.0 Setting up libglib2.0-dev:amd64 (2.74.6-2) ...
#6 182.1 Setting up libgirepository1.0-dev (1.74.0-3) ...
#6 182.1 Setting up libavdevice59:amd64 (7:5.1.4-0+deb12u1) ...
#6 182.2 Setting up ffmpeg (7:5.1.4-0+deb12u1) ...
#6 182.2 Processing triggers for libc-bin (2.36-9+deb12u3) ...
#6 182.4 Reading package lists...
#6 183.6 Building dependency tree...
#6 183.9 Reading state information...
#6 184.0 Calculating upgrade...
#6 184.3 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
#6 184.4 fatal: cannot change to 'mat2': No such file or directory
#6 184.4 Cloning into 'mat2'...
#6 190.9 Using pip 23.2.1 from /usr/local/lib/python3.12/site-packages/pip (python 3.12)
#6 191.1 Processing /mat2
#6 191.1   Installing build dependencies: started
#6 191.1   Running command pip subprocess to install build dependencies
#6 193.1   Collecting setuptools>=40.8.0
#6 193.1     Obtaining dependency information for setuptools>=40.8.0 from https://files.pythonhosted.org/packages/55/3a/5121b58b578a598b269537e09a316ad2a94fdd561a2c6eb75cd68578cc6b/setuptools-69.0.3-py3-none-any.whl.metadata
#6 193.3     Downloading setuptools-69.0.3-py3-none-any.whl.metadata (6.3 kB)
#6 193.5   Collecting wheel
#6 193.5     Obtaining dependency information for wheel from https://files.pythonhosted.org/packages/c7/c3/55076fc728723ef927521abaa1955213d094933dc36d4a2008d5101e1af5/wheel-0.42.0-py3-none-any.whl.metadata
#6 193.5     Downloading wheel-0.42.0-py3-none-any.whl.metadata (2.2 kB)
#6 193.6   Downloading setuptools-69.0.3-py3-none-any.whl (819 kB)
#6 193.8      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 819.5/819.5 kB 5.5 MB/s eta 0:00:00
#6 193.8   Downloading wheel-0.42.0-py3-none-any.whl (65 kB)
#6 193.8      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 65.4/65.4 kB 2.5 MB/s eta 0:00:00
#6 194.0   Installing collected packages: wheel, setuptools
#6 196.6   Successfully installed setuptools-69.0.3 wheel-0.42.0
#6 196.6   WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
#6 196.9 
#6 196.9   [notice] A new release of pip is available: 23.2.1 -> 23.3.2
#6 196.9   [notice] To update, run: pip install --upgrade pip
#6 197.1   Installing build dependencies: finished with status 'done'
#6 197.1   Getting requirements to build wheel: started
#6 197.1   Running command Getting requirements to build wheel
#6 197.3   /tmp/pip-build-env-ied_slen/overlay/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py:75: _MissingDynamic: `description` defined outside of `pyproject.toml` is ignored.
#6 197.3   !!
#6 197.3 
#6 197.3           ********************************************************************************
#6 197.3           The following seems to be defined outside of `pyproject.toml`:
#6 197.3 
#6 197.3           `description = 'A handy tool to trash your metadata'`
#6 197.3 
#6 197.3           According to the spec (see the link below), however, setuptools CANNOT
#6 197.3           consider this value unless `description` is listed as `dynamic`.
#6 197.3 
#6 197.3           https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
#6 197.3 
#6 197.3           To prevent this problem, you can list `description` under `dynamic` or alternatively
#6 197.3           remove the `[project]` table from your file and rely entirely on other means of
#6 197.3           configuration.
#6 197.3           ********************************************************************************
#6 197.3 
#6 197.3   !!
#6 197.3     _handle_missing_dynamic(dist, project_table)
#6 197.3   /tmp/pip-build-env-ied_slen/overlay/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py:75: _MissingDynamic: `authors` defined outside of `pyproject.toml` is ignored.
#6 197.3   !!
#6 197.3 
#6 197.3           ********************************************************************************
#6 197.3           The following seems to be defined outside of `pyproject.toml`:
#6 197.3 
#6 197.3           `authors = 'Julien (jvoisin) Voisin'`
#6 197.3 
#6 197.3           According to the spec (see the link below), however, setuptools CANNOT
#6 197.3           consider this value unless `authors` is listed as `dynamic`.
#6 197.3 
#6 197.3           https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
#6 197.3 
#6 197.3           To prevent this problem, you can list `authors` under `dynamic` or alternatively
#6 197.3           remove the `[project]` table from your file and rely entirely on other means of
#6 197.3           configuration.
#6 197.3           ********************************************************************************
#6 197.3 
#6 197.3   !!
#6 197.3     _handle_missing_dynamic(dist, project_table)
#6 197.3   /tmp/pip-build-env-ied_slen/overlay/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py:75: _MissingDynamic: `classifiers` defined outside of `pyproject.toml` is ignored.
#6 197.3   !!
#6 197.3 
#6 197.3           ********************************************************************************
#6 197.3           The following seems to be defined outside of `pyproject.toml`:
#6 197.3 
#6 197.3           `classifiers = ['Development Status :: 3 - Alpha', 'Environment :: Console', 'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)', 'Operating System :: OS Independent', 'Programming Language :: Python :: 3 :: Only', 'Topic :: Security', 'Intended Audience :: End Users/Desktop']`
#6 197.3 
#6 197.3           According to the spec (see the link below), however, setuptools CANNOT
#6 197.3           consider this value unless `classifiers` is listed as `dynamic`.
#6 197.3 
#6 197.3           https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
#6 197.3 
#6 197.3           To prevent this problem, you can list `classifiers` under `dynamic` or alternatively
#6 197.3           remove the `[project]` table from your file and rely entirely on other means of
#6 197.3           configuration.
#6 197.3           ********************************************************************************
#6 197.3 
#6 197.3   !!
#6 197.3     _handle_missing_dynamic(dist, project_table)
#6 197.3   /tmp/pip-build-env-ied_slen/overlay/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py:75: _MissingDynamic: `urls` defined outside of `pyproject.toml` is ignored.
#6 197.3   !!
#6 197.3 
#6 197.3           ********************************************************************************
#6 197.3           The following seems to be defined outside of `pyproject.toml`:
#6 197.3 
#6 197.3           `urls = {'bugtacker': 'https://0xacab.org/jvoisin/mat2/issues'}`
#6 197.3 
#6 197.3           According to the spec (see the link below), however, setuptools CANNOT
#6 197.3           consider this value unless `urls` is listed as `dynamic`.
#6 197.3 
#6 197.3           https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
#6 197.3 
#6 197.3           To prevent this problem, you can list `urls` under `dynamic` or alternatively
#6 197.3           remove the `[project]` table from your file and rely entirely on other means of
#6 197.3           configuration.
#6 197.3           ********************************************************************************
#6 197.3 
#6 197.3   !!
#6 197.3     _handle_missing_dynamic(dist, project_table)
#6 197.3   /tmp/pip-build-env-ied_slen/overlay/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py:75: _MissingDynamic: `dependencies` defined outside of `pyproject.toml` is ignored.
#6 197.3   !!
#6 197.3 
#6 197.3           ********************************************************************************
#6 197.3           The following seems to be defined outside of `pyproject.toml`:
#6 197.3 
#6 197.3           `dependencies = ['mutagen', 'PyGObject', 'pycairo']`
#6 197.3 
#6 197.3           According to the spec (see the link below), however, setuptools CANNOT
#6 197.3           consider this value unless `dependencies` is listed as `dynamic`.
#6 197.3 
#6 197.3           https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
#6 197.3 
#6 197.3           To prevent this problem, you can list `dependencies` under `dynamic` or alternatively
#6 197.3           remove the `[project]` table from your file and rely entirely on other means of
#6 197.3           configuration.
#6 197.3           ********************************************************************************
#6 197.3 
#6 197.3   !!
#6 197.3     _handle_missing_dynamic(dist, project_table)
#6 197.3   /tmp/pip-build-env-ied_slen/overlay/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py:82: SetuptoolsWarning: `install_requires` overwritten in `pyproject.toml` (dependencies)
#6 197.3     corresp(dist, value, root_dir)
#6 197.5   running egg_info
#6 197.5   creating mat2.egg-info
#6 197.5   writing mat2.egg-info/PKG-INFO
#6 197.5   writing dependency_links to mat2.egg-info/dependency_links.txt
#6 197.5   writing top-level names to mat2.egg-info/top_level.txt
#6 197.5   writing manifest file 'mat2.egg-info/SOURCES.txt'
#6 197.5   reading manifest file 'mat2.egg-info/SOURCES.txt'
#6 197.5   adding license file 'LICENSE'
#6 197.5   writing manifest file 'mat2.egg-info/SOURCES.txt'
#6 197.5   Getting requirements to build wheel: finished with status 'done'
#6 197.5   Preparing metadata (pyproject.toml): started
#6 197.5   Running command Preparing metadata (pyproject.toml)
#6 197.7   /tmp/pip-build-env-ied_slen/overlay/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py:75: _MissingDynamic: `description` defined outside of `pyproject.toml` is ignored.
#6 197.7   !!
#6 197.7 
#6 197.7           ********************************************************************************
#6 197.7           The following seems to be defined outside of `pyproject.toml`:
#6 197.7 
#6 197.7           `description = 'A handy tool to trash your metadata'`
#6 197.7 
#6 197.7           According to the spec (see the link below), however, setuptools CANNOT
#6 197.7           consider this value unless `description` is listed as `dynamic`.
#6 197.7 
#6 197.7           https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
#6 197.7 
#6 197.7           To prevent this problem, you can list `description` under `dynamic` or alternatively
#6 197.7           remove the `[project]` table from your file and rely entirely on other means of
#6 197.7           configuration.
#6 197.7           ********************************************************************************
#6 197.7 
#6 197.7   !!
#6 197.7     _handle_missing_dynamic(dist, project_table)
#6 197.7   /tmp/pip-build-env-ied_slen/overlay/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py:75: _MissingDynamic: `authors` defined outside of `pyproject.toml` is ignored.
#6 197.7   !!
#6 197.7 
#6 197.7           ********************************************************************************
#6 197.7           The following seems to be defined outside of `pyproject.toml`:
#6 197.7 
#6 197.7           `authors = 'Julien (jvoisin) Voisin'`
#6 197.7 
#6 197.7           According to the spec (see the link below), however, setuptools CANNOT
#6 197.7           consider this value unless `authors` is listed as `dynamic`.
#6 197.7 
#6 197.7           https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
#6 197.7 
#6 197.7           To prevent this problem, you can list `authors` under `dynamic` or alternatively
#6 197.7           remove the `[project]` table from your file and rely entirely on other means of
#6 197.7           configuration.
#6 197.7           ********************************************************************************
#6 197.7 
#6 197.7   !!
#6 197.7     _handle_missing_dynamic(dist, project_table)
#6 197.7   /tmp/pip-build-env-ied_slen/overlay/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py:75: _MissingDynamic: `classifiers` defined outside of `pyproject.toml` is ignored.
#6 197.7   !!
#6 197.7 
#6 197.7           ********************************************************************************
#6 197.7           The following seems to be defined outside of `pyproject.toml`:
#6 197.7 
#6 197.7           `classifiers = ['Development Status :: 3 - Alpha', 'Environment :: Console', 'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)', 'Operating System :: OS Independent', 'Programming Language :: Python :: 3 :: Only', 'Topic :: Security', 'Intended Audience :: End Users/Desktop']`
#6 197.7 
#6 197.7           According to the spec (see the link below), however, setuptools CANNOT
#6 197.7           consider this value unless `classifiers` is listed as `dynamic`.
#6 197.7 
#6 197.7           https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
#6 197.7 
#6 197.7           To prevent this problem, you can list `classifiers` under `dynamic` or alternatively
#6 197.7           remove the `[project]` table from your file and rely entirely on other means of
#6 197.7           configuration.
#6 197.7           ********************************************************************************
#6 197.7 
#6 197.7   !!
#6 197.7     _handle_missing_dynamic(dist, project_table)
#6 197.7   /tmp/pip-build-env-ied_slen/overlay/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py:75: _MissingDynamic: `urls` defined outside of `pyproject.toml` is ignored.
#6 197.7   !!
#6 197.7 
#6 197.7           ********************************************************************************
#6 197.7           The following seems to be defined outside of `pyproject.toml`:
#6 197.7 
#6 197.7           `urls = {'bugtacker': 'https://0xacab.org/jvoisin/mat2/issues'}`
#6 197.7 
#6 197.7           According to the spec (see the link below), however, setuptools CANNOT
#6 197.7           consider this value unless `urls` is listed as `dynamic`.
#6 197.7 
#6 197.7           https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
#6 197.7 
#6 197.7           To prevent this problem, you can list `urls` under `dynamic` or alternatively
#6 197.7           remove the `[project]` table from your file and rely entirely on other means of
#6 197.7           configuration.
#6 197.7           ********************************************************************************
#6 197.7 
#6 197.7   !!
#6 197.7     _handle_missing_dynamic(dist, project_table)
#6 197.7   /tmp/pip-build-env-ied_slen/overlay/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py:75: _MissingDynamic: `dependencies` defined outside of `pyproject.toml` is ignored.
#6 197.7   !!
#6 197.7 
#6 197.7           ********************************************************************************
#6 197.7           The following seems to be defined outside of `pyproject.toml`:
#6 197.7 
#6 197.7           `dependencies = ['mutagen', 'PyGObject', 'pycairo']`
#6 197.7 
#6 197.7           According to the spec (see the link below), however, setuptools CANNOT
#6 197.7           consider this value unless `dependencies` is listed as `dynamic`.
#6 197.7 
#6 197.7           https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
#6 197.7 
#6 197.7           To prevent this problem, you can list `dependencies` under `dynamic` or alternatively
#6 197.7           remove the `[project]` table from your file and rely entirely on other means of
#6 197.7           configuration.
#6 197.7           ********************************************************************************
#6 197.7 
#6 197.7   !!
#6 197.7     _handle_missing_dynamic(dist, project_table)
#6 197.7   /tmp/pip-build-env-ied_slen/overlay/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py:82: SetuptoolsWarning: `install_requires` overwritten in `pyproject.toml` (dependencies)
#6 197.7     corresp(dist, value, root_dir)
#6 197.8   running dist_info
#6 197.8   creating /tmp/pip-modern-metadata-jy377b0t/mat2.egg-info
#6 197.8   writing /tmp/pip-modern-metadata-jy377b0t/mat2.egg-info/PKG-INFO
#6 197.8   writing dependency_links to /tmp/pip-modern-metadata-jy377b0t/mat2.egg-info/dependency_links.txt
#6 197.8   writing top-level names to /tmp/pip-modern-metadata-jy377b0t/mat2.egg-info/top_level.txt
#6 197.8   writing manifest file '/tmp/pip-modern-metadata-jy377b0t/mat2.egg-info/SOURCES.txt'
#6 197.8   reading manifest file '/tmp/pip-modern-metadata-jy377b0t/mat2.egg-info/SOURCES.txt'
#6 197.8   adding license file 'LICENSE'
#6 197.8   writing manifest file '/tmp/pip-modern-metadata-jy377b0t/mat2.egg-info/SOURCES.txt'
#6 197.8   creating '/tmp/pip-modern-metadata-jy377b0t/mat2-0.13.4.dist-info'
#6 197.9   Preparing metadata (pyproject.toml): finished with status 'done'
#6 197.9 Building wheels for collected packages: mat2
#6 197.9   Building wheel for mat2 (pyproject.toml): started
#6 197.9   Running command Building wheel for mat2 (pyproject.toml)
#6 198.0   /tmp/pip-build-env-ied_slen/overlay/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py:75: _MissingDynamic: `description` defined outside of `pyproject.toml` is ignored.
#6 198.0   !!
#6 198.0 
#6 198.0           ********************************************************************************
#6 198.0           The following seems to be defined outside of `pyproject.toml`:
#6 198.0 
#6 198.0           `description = 'A handy tool to trash your metadata'`
#6 198.0 
#6 198.0           According to the spec (see the link below), however, setuptools CANNOT
#6 198.0           consider this value unless `description` is listed as `dynamic`.
#6 198.0 
#6 198.0           https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
#6 198.0 
#6 198.0           To prevent this problem, you can list `description` under `dynamic` or alternatively
#6 198.0           remove the `[project]` table from your file and rely entirely on other means of
#6 198.0           configuration.
#6 198.0           ********************************************************************************
#6 198.0 
#6 198.0   !!
#6 198.0     _handle_missing_dynamic(dist, project_table)
#6 198.0   /tmp/pip-build-env-ied_slen/overlay/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py:75: _MissingDynamic: `authors` defined outside of `pyproject.toml` is ignored.
#6 198.0   !!
#6 198.0 
#6 198.0           ********************************************************************************
#6 198.0           The following seems to be defined outside of `pyproject.toml`:
#6 198.0 
#6 198.0           `authors = 'Julien (jvoisin) Voisin'`
#6 198.0 
#6 198.0           According to the spec (see the link below), however, setuptools CANNOT
#6 198.0           consider this value unless `authors` is listed as `dynamic`.
#6 198.0 
#6 198.0           https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
#6 198.0 
#6 198.0           To prevent this problem, you can list `authors` under `dynamic` or alternatively
#6 198.0           remove the `[project]` table from your file and rely entirely on other means of
#6 198.0           configuration.
#6 198.0           ********************************************************************************
#6 198.0 
#6 198.0   !!
#6 198.0     _handle_missing_dynamic(dist, project_table)
#6 198.0   /tmp/pip-build-env-ied_slen/overlay/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py:75: _MissingDynamic: `classifiers` defined outside of `pyproject.toml` is ignored.
#6 198.0   !!
#6 198.0 
#6 198.0           ********************************************************************************
#6 198.0           The following seems to be defined outside of `pyproject.toml`:
#6 198.0 
#6 198.0           `classifiers = ['Development Status :: 3 - Alpha', 'Environment :: Console', 'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)', 'Operating System :: OS Independent', 'Programming Language :: Python :: 3 :: Only', 'Topic :: Security', 'Intended Audience :: End Users/Desktop']`
#6 198.0 
#6 198.0           According to the spec (see the link below), however, setuptools CANNOT
#6 198.0           consider this value unless `classifiers` is listed as `dynamic`.
#6 198.0 
#6 198.0           https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
#6 198.0 
#6 198.0           To prevent this problem, you can list `classifiers` under `dynamic` or alternatively
#6 198.0           remove the `[project]` table from your file and rely entirely on other means of
#6 198.0           configuration.
#6 198.0           ********************************************************************************
#6 198.0 
#6 198.0   !!
#6 198.0     _handle_missing_dynamic(dist, project_table)
#6 198.0   /tmp/pip-build-env-ied_slen/overlay/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py:75: _MissingDynamic: `urls` defined outside of `pyproject.toml` is ignored.
#6 198.0   !!
#6 198.0 
#6 198.0           ********************************************************************************
#6 198.0           The following seems to be defined outside of `pyproject.toml`:
#6 198.1 
#6 198.1           `urls = {'bugtacker': 'https://0xacab.org/jvoisin/mat2/issues'}`
#6 198.1 
#6 198.1           According to the spec (see the link below), however, setuptools CANNOT
#6 198.1           consider this value unless `urls` is listed as `dynamic`.
#6 198.1 
#6 198.1           https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
#6 198.1 
#6 198.1           To prevent this problem, you can list `urls` under `dynamic` or alternatively
#6 198.1           remove the `[project]` table from your file and rely entirely on other means of
#6 198.1           configuration.
#6 198.1           ********************************************************************************
#6 198.1 
#6 198.1   !!
#6 198.1     _handle_missing_dynamic(dist, project_table)
#6 198.1   /tmp/pip-build-env-ied_slen/overlay/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py:75: _MissingDynamic: `dependencies` defined outside of `pyproject.toml` is ignored.
#6 198.1   !!
#6 198.1 
#6 198.1           ********************************************************************************
#6 198.1           The following seems to be defined outside of `pyproject.toml`:
#6 198.1 
#6 198.1           `dependencies = ['mutagen', 'PyGObject', 'pycairo']`
#6 198.1 
#6 198.1           According to the spec (see the link below), however, setuptools CANNOT
#6 198.1           consider this value unless `dependencies` is listed as `dynamic`.
#6 198.1 
#6 198.1           https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
#6 198.1 
#6 198.1           To prevent this problem, you can list `dependencies` under `dynamic` or alternatively
#6 198.1           remove the `[project]` table from your file and rely entirely on other means of
#6 198.1           configuration.
#6 198.1           ********************************************************************************
#6 198.1 
#6 198.1   !!
#6 198.1     _handle_missing_dynamic(dist, project_table)
#6 198.1   /tmp/pip-build-env-ied_slen/overlay/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py:82: SetuptoolsWarning: `install_requires` overwritten in `pyproject.toml` (dependencies)
#6 198.1     corresp(dist, value, root_dir)
#6 198.1   running bdist_wheel
#6 198.1   running build
#6 198.1   running build_py
#6 198.1   creating build
#6 198.1   creating build/lib
#6 198.1   creating build/lib/libmat2
#6 198.1   copying libmat2/images.py -> build/lib/libmat2
#6 198.1   copying libmat2/bubblewrap.py -> build/lib/libmat2
#6 198.1   copying libmat2/abstract.py -> build/lib/libmat2
#6 198.1   copying libmat2/audio.py -> build/lib/libmat2
#6 198.1   copying libmat2/web.py -> build/lib/libmat2
#6 198.1   copying libmat2/epub.py -> build/lib/libmat2
#6 198.1   copying libmat2/torrent.py -> build/lib/libmat2
#6 198.1   copying libmat2/pdf.py -> build/lib/libmat2
#6 198.1   copying libmat2/archive.py -> build/lib/libmat2
#6 198.1   copying libmat2/harmless.py -> build/lib/libmat2
#6 198.1   copying libmat2/parser_factory.py -> build/lib/libmat2
#6 198.1   copying libmat2/exiftool.py -> build/lib/libmat2
#6 198.1   copying libmat2/video.py -> build/lib/libmat2
#6 198.1   copying libmat2/office.py -> build/lib/libmat2
#6 198.1   copying libmat2/__init__.py -> build/lib/libmat2
#6 198.1   running egg_info
#6 198.1   writing mat2.egg-info/PKG-INFO
#6 198.1   writing dependency_links to mat2.egg-info/dependency_links.txt
#6 198.1   writing top-level names to mat2.egg-info/top_level.txt
#6 198.1   reading manifest file 'mat2.egg-info/SOURCES.txt'
#6 198.1   adding license file 'LICENSE'
#6 198.1   writing manifest file 'mat2.egg-info/SOURCES.txt'
#6 198.1   running build_scripts
#6 198.1   creating build/scripts-3.12
#6 198.1   copying and adjusting mat2 -> build/scripts-3.12
#6 198.1   changing mode of build/scripts-3.12/mat2 from 644 to 755
#6 198.1   installing to build/bdist.linux-x86_64/wheel
#6 198.1   running install
#6 198.2   running install_lib
#6 198.2   creating build/bdist.linux-x86_64
#6 198.2   creating build/bdist.linux-x86_64/wheel
#6 198.2   creating build/bdist.linux-x86_64/wheel/libmat2
#6 198.2   copying build/lib/libmat2/images.py -> build/bdist.linux-x86_64/wheel/libmat2
#6 198.2   copying build/lib/libmat2/bubblewrap.py -> build/bdist.linux-x86_64/wheel/libmat2
#6 198.2   copying build/lib/libmat2/abstract.py -> build/bdist.linux-x86_64/wheel/libmat2
#6 198.2   copying build/lib/libmat2/audio.py -> build/bdist.linux-x86_64/wheel/libmat2
#6 198.2   copying build/lib/libmat2/web.py -> build/bdist.linux-x86_64/wheel/libmat2
#6 198.2   copying build/lib/libmat2/epub.py -> build/bdist.linux-x86_64/wheel/libmat2
#6 198.2   copying build/lib/libmat2/torrent.py -> build/bdist.linux-x86_64/wheel/libmat2
#6 198.2   copying build/lib/libmat2/pdf.py -> build/bdist.linux-x86_64/wheel/libmat2
#6 198.2   copying build/lib/libmat2/archive.py -> build/bdist.linux-x86_64/wheel/libmat2
#6 198.2   copying build/lib/libmat2/harmless.py -> build/bdist.linux-x86_64/wheel/libmat2
#6 198.2   copying build/lib/libmat2/parser_factory.py -> build/bdist.linux-x86_64/wheel/libmat2
#6 198.2   copying build/lib/libmat2/exiftool.py -> build/bdist.linux-x86_64/wheel/libmat2
#6 198.2   copying build/lib/libmat2/video.py -> build/bdist.linux-x86_64/wheel/libmat2
#6 198.2   copying build/lib/libmat2/office.py -> build/bdist.linux-x86_64/wheel/libmat2
#6 198.2   copying build/lib/libmat2/__init__.py -> build/bdist.linux-x86_64/wheel/libmat2
#6 198.2   running install_data
#6 198.2   creating build/bdist.linux-x86_64/wheel/mat2-0.13.4.data
#6 198.2   creating build/bdist.linux-x86_64/wheel/mat2-0.13.4.data/data
#6 198.2   creating build/bdist.linux-x86_64/wheel/mat2-0.13.4.data/data/share
#6 198.2   creating build/bdist.linux-x86_64/wheel/mat2-0.13.4.data/data/share/man
#6 198.2   creating build/bdist.linux-x86_64/wheel/mat2-0.13.4.data/data/share/man/man1
#6 198.2   copying doc/mat2.1 -> build/bdist.linux-x86_64/wheel/mat2-0.13.4.data/data/share/man/man1
#6 198.2   running install_egg_info
#6 198.2   Copying mat2.egg-info to build/bdist.linux-x86_64/wheel/mat2-0.13.4-py3.12.egg-info
#6 198.2   running install_scripts
#6 198.2   creating build/bdist.linux-x86_64/wheel/mat2-0.13.4.data/scripts
#6 198.2   copying build/scripts-3.12/mat2 -> build/bdist.linux-x86_64/wheel/mat2-0.13.4.data/scripts
#6 198.2   changing mode of build/bdist.linux-x86_64/wheel/mat2-0.13.4.data/scripts/mat2 to 755
#6 198.2   creating build/bdist.linux-x86_64/wheel/mat2-0.13.4.dist-info/WHEEL
#6 198.2   creating '/tmp/pip-wheel-yt6lt20p/.tmp-km2w_2zs/mat2-0.13.4-py3-none-any.whl' and adding 'build/bdist.linux-x86_64/wheel' to it
#6 198.2   adding 'libmat2/__init__.py'
#6 198.2   adding 'libmat2/abstract.py'
#6 198.2   adding 'libmat2/archive.py'
#6 198.2   adding 'libmat2/audio.py'
#6 198.2   adding 'libmat2/bubblewrap.py'
#6 198.2   adding 'libmat2/epub.py'
#6 198.2   adding 'libmat2/exiftool.py'
#6 198.2   adding 'libmat2/harmless.py'
#6 198.2   adding 'libmat2/images.py'
#6 198.2   adding 'libmat2/office.py'
#6 198.2   adding 'libmat2/parser_factory.py'
#6 198.2   adding 'libmat2/pdf.py'
#6 198.2   adding 'libmat2/torrent.py'
#6 198.2   adding 'libmat2/video.py'
#6 198.2   adding 'libmat2/web.py'
#6 198.2   adding 'mat2-0.13.4.data/data/share/man/man1/mat2.1'
#6 198.2   adding 'mat2-0.13.4.data/scripts/mat2'
#6 198.2   adding 'mat2-0.13.4.dist-info/LICENSE'
#6 198.2   adding 'mat2-0.13.4.dist-info/METADATA'
#6 198.2   adding 'mat2-0.13.4.dist-info/WHEEL'
#6 198.2   adding 'mat2-0.13.4.dist-info/top_level.txt'
#6 198.2   adding 'mat2-0.13.4.dist-info/RECORD'
#6 198.2   removing build/bdist.linux-x86_64/wheel
#6 198.2   Building wheel for mat2 (pyproject.toml): finished with status 'done'
#6 198.2   Created wheel for mat2: filename=mat2-0.13.4-py3-none-any.whl size=40846 sha256=5fe1a652aa8f8f508886d207df5f059b9b088cb97d5d807f37dc0a2cde453c9c
#6 198.2   Stored in directory: /tmp/pip-ephem-wheel-cache-m4vglnkf/wheels/ea/c8/a2/c9f88b43505da1579f29bcb47ced7cdeb33bac08574281c023
#6 198.2 Successfully built mat2
#6 198.3 Installing collected packages: mat2
#6 198.4 Successfully installed mat2-0.13.4
#6 198.4 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
#6 DONE 198.9s

#7 exporting to image
#7 exporting layers
#7 exporting layers 5.7s done
#7 writing image sha256:0aecfd5feaf08ab25a7329d9d4180d3d87e76815b28d9775a173760aa49f672c 0.0s done
#7 naming to registry.0xacab.org/georg/mat2-ci-images:python3.12 0.0s done
#7 DONE 5.7s
WARNING: current commit information was not captured by the build: git was not found in the system: exec: "git": executable file not found in $PATH
$ for i in {1..5}; do docker push $IMAGE_TAG && break || sleep 15; done
The push refers to repository [registry.0xacab.org/georg/mat2-ci-images]
7a3cd22a4d1a: Preparing
ead0c8ed9040: Preparing
de50e8f5da60: Preparing
572cf6d94d6f: Preparing
384858ccd7ef: Preparing
7292cf786aa8: Preparing
7292cf786aa8: Waiting
ead0c8ed9040: Layer already exists
384858ccd7ef: Layer already exists
572cf6d94d6f: Layer already exists
de50e8f5da60: Layer already exists
7292cf786aa8: Layer already exists
7a3cd22a4d1a: Pushed
python3.12: digest: sha256:163ee4d817810415122cb665ae2a46f1a29e0c5550d7771d7fc939e5ec411543 size: 1583
$ rm /root/.docker/config.json
section_end:1703792477:step_script
section_start:1703792477:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1703792478:cleanup_file_variables
Job succeeded