(for PR #24267)

2025-11-10 11:02.17: New job: test orrandomForest.3.0.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/24267/head (41de505ec8ff3637ab3cb06a41ccbc29683f566c)
                              on ubuntu-22.04-ocaml-4.14/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/24267/head" && git reset --hard 41de505e
git fetch origin master
git merge --no-edit 21f97b2e6d7c617fc0a79cc8e59b2e10690960e1
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-22.04-ocaml-4.14@sha256:0bcf693184f804927347e020ee322d6b9d855f9f8c034b79da741eb91856a650
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn orrandomForest.3.0.0 3.0.0
RUN opam reinstall orrandomForest.3.0.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"ubuntu-22.04\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'orrandomForest.3.0.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test orrandomForest.3.0.0) || true
RUN opam reinstall --with-test --verbose orrandomForest.3.0.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"ubuntu-22.04\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'orrandomForest.3.0.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2025-11-10 11:02.17: Using cache hint "ocaml/opam:ubuntu-22.04-ocaml-4.14@sha256:0bcf693184f804927347e020ee322d6b9d855f9f8c034b79da741eb91856a650-orrandomForest.3.0.0-41de505ec8ff3637ab3cb06a41ccbc29683f566c"
2025-11-10 11:02.17: Using OBuilder spec:
((from ocaml/opam:ubuntu-22.04-ocaml-4.14@sha256:0bcf693184f804927347e020ee322d6b9d855f9f8c034b79da741eb91856a650)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn orrandomForest.3.0.0 3.0.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall orrandomForest.3.0.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"ubuntu-22.04\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'orrandomForest.3.0.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test orrandomForest.3.0.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose orrandomForest.3.0.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"ubuntu-22.04\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'orrandomForest.3.0.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-11-10 11:02.17: Waiting for resource in pool OCluster
2025-11-10 12:37.57: Waiting for worker…
2025-11-10 12:43.27: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at 21f97b2e6d Merge pull request #28836 from dbuenzli/b0-publish-bytesrw.0.3.0
Merge made by the 'ort' strategy.
 packages/odnnr/odnnr.2.0.0/opam                   | 4 +---
 packages/oplsr/oplsr.8.0.1/opam                   | 3 +--
 packages/orrandomForest/orrandomForest.1.0.0/opam | 5 +----
 packages/orrandomForest/orrandomForest.2.0.1/opam | 7 +------
 packages/orrandomForest/orrandomForest.3.0.0/opam | 7 +------
 packages/orsvm_e1071/orsvm_e1071.2.0.0/opam       | 3 ---
 packages/orsvm_e1071/orsvm_e1071.3.0.0/opam       | 5 +----
 packages/orsvm_e1071/orsvm_e1071.3.0.1/opam       | 2 +-
 packages/orsvm_e1071/orsvm_e1071.3.0.2/opam       | 2 +-
 packages/orsvm_e1071/orsvm_e1071.4.0.0/opam       | 2 +-
 packages/orxgboost/orxgboost.1.0.1/opam           | 5 +----
 packages/orxgboost/orxgboost.1.1.0/opam           | 5 +----
 packages/orxgboost/orxgboost.1.2.0/opam           | 5 +----
 13 files changed, 12 insertions(+), 43 deletions(-)

(from ocaml/opam:ubuntu-22.04-ocaml-4.14@sha256:0bcf693184f804927347e020ee322d6b9d855f9f8c034b79da741eb91856a650)
Unable to find image 'ocaml/opam:ubuntu-22.04-ocaml-4.14@sha256:0bcf693184f804927347e020ee322d6b9d855f9f8c034b79da741eb91856a650' locally
docker.io/ocaml/opam@sha256:0bcf693184f804927347e020ee322d6b9d855f9f8c034b79da741eb91856a650: Pulling from ocaml/opam
d90256f9c652: Pulling fs layer
d90256f9c652: Verifying Checksum
d90256f9c652: Download complete
d90256f9c652: Pull complete
Digest: sha256:0bcf693184f804927347e020ee322d6b9d855f9f8c034b79da741eb91856a650
Status: Downloaded newer image for ocaml/opam@sha256:0bcf693184f804927347e020ee322d6b9d855f9f8c034b79da741eb91856a650
2025-11-10 12:43.35 ---> using "dac6fc7b6b61231375ffe3497eb9288520f07ec57e98d2015d7657483c96e0ad" from cache

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-11-10 12:43.35 ---> using "3ada9f307ef4a756872eb97d8a66be22abea00d4cdd0b72c72e11bd7abfa6dbc" from cache

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
  - you won't be able to use mercurial repositories unless you install the hg command on your system.
  - you won't be able to use darcs repositories unless you install the darcs command on your system.

This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [Y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-11-10 12:43.35 ---> using "2168acca31cef55837009a9c3eb926cbb995b6f151b21ed8fe13f6d16e7ff35d" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0~alpha1
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=ubuntu os-version=22.04
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2025-11-10 12:43.35 ---> using "65eb563df0510c568d2c81756ca0ffc2ac2fe18553ac41293a71479c86f17944" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2025-11-10 12:43.35 ---> using "c64df24b3b390dcf047d423288b441fd8469102e86c3583eb31b97f1da7eddd9" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-11-10 12:43.36 ---> using "bc7d3cc6c1e9e585145a96482e0c6cb961cdcba1234abcd2be02cc2531e1d34b" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-10 12:43.41 ---> saved as "ac2ea9946f1839eea40fd477f53f477567fc830d90c34eee71ba6cfb4f6b20ea"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB]
- Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease
- Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB]
- Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB]
- Fetched 384 kB in 6s (61.3 kB/s)
- Reading package lists...
- 
2025-11-10 12:43.49 ---> saved as "1c74a0716a1b6cf2507a745876d5378f7077f7b98645d972e9b91803657bf346"

/home/opam: (run (shell "opam pin add -k version -yn orrandomForest.3.0.0 3.0.0"))
orrandomForest is now pinned to version 3.0.0
2025-11-10 12:43.50 ---> saved as "3f6b0c411cf0cd4e5fd77fc8dad1cf37157669de7447bea098e0a24fba454c11"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall orrandomForest.3.0.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"ubuntu-22.04\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'orrandomForest.3.0.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
orrandomForest.3.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 14 packages
  - install batteries      3.10.0         [required by orrandomForest]
  - install camlp-streams  5.0.1          [required by batteries]
  - install conf-autoconf  0.2            [required by cpu]
  - install conf-r         1.0.0          [required by orrandomForest]
  - install cpm            12.2.0         [required by orrandomForest]
  - install cpu            2.0.0          [required by parany]
  - install dolog          6.0.0          [required by orrandomForest]
  - install dune           3.20.2         [required by orrandomForest]
  - install line_oriented  1.3.0          [required by orrandomForest]
  - install minicli        5.0.2          [required by orrandomForest]
  - install num            1.6            [required by batteries]
  - install ocamlfind      1.9.8          [required by batteries]
  - install orrandomForest 3.0.0 (pinned)
  - install parany         14.0.1         [required by orrandomForest]

The following system packages will first need to be installed:
    autoconf r-base-core

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "autoconf" "r-base-core"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libpython3.10-minimal:amd64.
- (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 ... 15645 files and directories currently installed.)
- Preparing to unpack .../libpython3.10-minimal_3.10.12-1~22.04.11_amd64.deb ...
- Unpacking libpython3.10-minimal:amd64 (3.10.12-1~22.04.11) ...
- Selecting previously unselected package python3.10-minimal.
- Preparing to unpack .../python3.10-minimal_3.10.12-1~22.04.11_amd64.deb ...
- Unpacking python3.10-minimal (3.10.12-1~22.04.11) ...
- Setting up libpython3.10-minimal:amd64 (3.10.12-1~22.04.11) ...
- Setting up python3.10-minimal (3.10.12-1~22.04.11) ...
- Selecting previously unselected package python3-minimal.
- (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 ... 15941 files and directories currently installed.)
- Preparing to unpack .../0-python3-minimal_3.10.6-1~22.04.1_amd64.deb ...
- Unpacking python3-minimal (3.10.6-1~22.04.1) ...
- Selecting previously unselected package media-types.
- Preparing to unpack .../1-media-types_7.0.0_all.deb ...
- Unpacking media-types (7.0.0) ...
- Selecting previously unselected package libmpdec3:amd64.
- Preparing to unpack .../2-libmpdec3_2.5.1-2build2_amd64.deb ...
- Unpacking libmpdec3:amd64 (2.5.1-2build2) ...
- Selecting previously unselected package libpython3.10-stdlib:amd64.
- Preparing to unpack .../3-libpython3.10-stdlib_3.10.12-1~22.04.11_amd64.deb ...
- Unpacking libpython3.10-stdlib:amd64 (3.10.12-1~22.04.11) ...
- Selecting previously unselected package python3.10.
- Preparing to unpack .../4-python3.10_3.10.12-1~22.04.11_amd64.deb ...
- Unpacking python3.10 (3.10.12-1~22.04.11) ...
- Selecting previously unselected package libpython3-stdlib:amd64.
- Preparing to unpack .../5-libpython3-stdlib_3.10.6-1~22.04.1_amd64.deb ...
- Unpacking libpython3-stdlib:amd64 (3.10.6-1~22.04.1) ...
- Setting up python3-minimal (3.10.6-1~22.04.1) ...
- Selecting previously unselected package python3.
- (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 ... 16343 files and directories currently installed.)
- Preparing to unpack .../0-python3_3.10.6-1~22.04.1_amd64.deb ...
- Unpacking python3 (3.10.6-1~22.04.1) ...
- Selecting previously unselected package libapparmor1:amd64.
- Preparing to unpack .../1-libapparmor1_3.0.4-2ubuntu2.4_amd64.deb ...
- Unpacking libapparmor1:amd64 (3.0.4-2ubuntu2.4) ...
- Selecting previously unselected package libargon2-1:amd64.
- Preparing to unpack .../2-libargon2-1_0~20171227-0.3_amd64.deb ...
- Unpacking libargon2-1:amd64 (0~20171227-0.3) ...
- Selecting previously unselected package libdevmapper1.02.1:amd64.
- Preparing to unpack .../3-libdevmapper1.02.1_2%3a1.02.175-2.1ubuntu5_amd64.deb ...
- Unpacking libdevmapper1.02.1:amd64 (2:1.02.175-2.1ubuntu5) ...
- Selecting previously unselected package libjson-c5:amd64.
- Preparing to unpack .../4-libjson-c5_0.15-3~ubuntu1.22.04.2_amd64.deb ...
- Unpacking libjson-c5:amd64 (0.15-3~ubuntu1.22.04.2) ...
- Selecting previously unselected package libcryptsetup12:amd64.
- Preparing to unpack .../5-libcryptsetup12_2%3a2.4.3-1ubuntu1.3_amd64.deb ...
- Unpacking libcryptsetup12:amd64 (2:2.4.3-1ubuntu1.3) ...
- Selecting previously unselected package libip4tc2:amd64.
- Preparing to unpack .../6-libip4tc2_1.8.7-1ubuntu5.2_amd64.deb ...
- Unpacking libip4tc2:amd64 (1.8.7-1ubuntu5.2) ...
- Selecting previously unselected package libkmod2:amd64.
- Preparing to unpack .../7-libkmod2_29-1ubuntu1_amd64.deb ...
- Unpacking libkmod2:amd64 (29-1ubuntu1) ...
- Selecting previously unselected package systemd.
- Preparing to unpack .../8-systemd_249.11-0ubuntu3.17_amd64.deb ...
- Unpacking systemd (249.11-0ubuntu3.17) ...
- Setting up libapparmor1:amd64 (3.0.4-2ubuntu2.4) ...
- Setting up libargon2-1:amd64 (0~20171227-0.3) ...
- Setting up libdevmapper1.02.1:amd64 (2:1.02.175-2.1ubuntu5) ...
- Setting up libjson-c5:amd64 (0.15-3~ubuntu1.22.04.2) ...
- Setting up libcryptsetup12:amd64 (2:2.4.3-1ubuntu1.3) ...
- Setting up libip4tc2:amd64 (1.8.7-1ubuntu5.2) ...
- Setting up libkmod2:amd64 (29-1ubuntu1) ...
- Setting up systemd (249.11-0ubuntu3.17) ...
- Created symlink /etc/systemd/system/getty.target.wants/getty@tty1.service → /lib/systemd/system/getty@.service.
- Created symlink /etc/systemd/system/multi-user.target.wants/remote-fs.target → /lib/systemd/system/remote-fs.target.
- Created symlink /etc/systemd/system/dbus-org.freedesktop.resolve1.service → /lib/systemd/system/systemd-resolved.service.
- Created symlink /etc/systemd/system/multi-user.target.wants/systemd-resolved.service → /lib/systemd/system/systemd-resolved.service.
- ln: failed to create symbolic link '/etc/resolv.conf': Device or resource busy
- Created symlink /etc/systemd/system/sysinit.target.wants/systemd-pstore.service → /lib/systemd/system/systemd-pstore.service.
- Initializing machine ID from random generator.
- Selecting previously unselected package systemd-sysv.
- (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 ... 17176 files and directories currently installed.)
- Preparing to unpack .../000-systemd-sysv_249.11-0ubuntu3.17_amd64.deb ...
- Unpacking systemd-sysv (249.11-0ubuntu3.17) ...
- Selecting previously unselected package libdbus-1-3:amd64.
- Preparing to unpack .../001-libdbus-1-3_1.12.20-2ubuntu4.1_amd64.deb ...
- Unpacking libdbus-1-3:amd64 (1.12.20-2ubuntu4.1) ...
- Selecting previously unselected package dbus.
- Preparing to unpack .../002-dbus_1.12.20-2ubuntu4.1_amd64.deb ...
- Unpacking dbus (1.12.20-2ubuntu4.1) ...
- Selecting previously unselected package dmsetup.
- Preparing to unpack .../003-dmsetup_2%3a1.02.175-2.1ubuntu5_amd64.deb ...
- Unpacking dmsetup (2:1.02.175-2.1ubuntu5) ...
- Selecting previously unselected package libglib2.0-0:amd64.
- Preparing to unpack .../004-libglib2.0-0_2.72.4-0ubuntu2.6_amd64.deb ...
- Unpacking libglib2.0-0:amd64 (2.72.4-0ubuntu2.6) ...
- Selecting previously unselected package libgirepository-1.0-1:amd64.
- Preparing to unpack .../005-libgirepository-1.0-1_1.72.0-1_amd64.deb ...
- Unpacking libgirepository-1.0-1:amd64 (1.72.0-1) ...
- Selecting previously unselected package gir1.2-glib-2.0:amd64.
- Preparing to unpack .../006-gir1.2-glib-2.0_1.72.0-1_amd64.deb ...
- Unpacking gir1.2-glib-2.0:amd64 (1.72.0-1) ...
- Selecting previously unselected package libelf1:amd64.
- Preparing to unpack .../007-libelf1_0.186-1ubuntu0.1_amd64.deb ...
- Unpacking libelf1:amd64 (0.186-1ubuntu0.1) ...
- Selecting previously unselected package libfribidi0:amd64.
- Preparing to unpack .../008-libfribidi0_1.0.8-2ubuntu3.1_amd64.deb ...
- Unpacking libfribidi0:amd64 (1.0.8-2ubuntu3.1) ...
- Selecting previously unselected package libglib2.0-data.
- Preparing to unpack .../009-libglib2.0-data_2.72.4-0ubuntu2.6_all.deb ...
- Unpacking libglib2.0-data (2.72.4-0ubuntu2.6) ...
- Selecting previously unselected package libicu70:amd64.
- Preparing to unpack .../010-libicu70_70.1-2_amd64.deb ...
- Unpacking libicu70:amd64 (70.1-2) ...
- Selecting previously unselected package libnss-systemd:amd64.
- Preparing to unpack .../011-libnss-systemd_249.11-0ubuntu3.17_amd64.deb ...
- Unpacking libnss-systemd:amd64 (249.11-0ubuntu3.17) ...
- Selecting previously unselected package libpam-systemd:amd64.
- Preparing to unpack .../012-libpam-systemd_249.11-0ubuntu3.17_amd64.deb ...
- Unpacking libpam-systemd:amd64 (249.11-0ubuntu3.17) ...
- Selecting previously unselected package libtext-iconv-perl.
- Preparing to unpack .../013-libtext-iconv-perl_1.7-7build3_amd64.deb ...
- Unpacking libtext-iconv-perl (1.7-7build3) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../014-libxml2_2.9.13+dfsg-1ubuntu0.10_amd64.deb ...
- Unpacking libxml2:amd64 (2.9.13+dfsg-1ubuntu0.10) ...
- Selecting previously unselected package python3-dbus.
- Preparing to unpack .../015-python3-dbus_1.2.18-3build1_amd64.deb ...
- Unpacking python3-dbus (1.2.18-3build1) ...
- Selecting previously unselected package python3-gi.
- Preparing to unpack .../016-python3-gi_3.42.1-0ubuntu1_amd64.deb ...
- Unpacking python3-gi (3.42.1-0ubuntu1) ...
- Selecting previously unselected package networkd-dispatcher.
- Preparing to unpack .../017-networkd-dispatcher_2.1-2ubuntu0.22.04.2_all.deb ...
- Unpacking networkd-dispatcher (2.1-2ubuntu0.22.04.2) ...
- Selecting previously unselected package shared-mime-info.
- Preparing to unpack .../018-shared-mime-info_2.1-2_amd64.deb ...
- Unpacking shared-mime-info (2.1-2) ...
- Selecting previously unselected package systemd-timesyncd.
- Preparing to unpack .../019-systemd-timesyncd_249.11-0ubuntu3.17_amd64.deb ...
- Unpacking systemd-timesyncd (249.11-0ubuntu3.17) ...
- Selecting previously unselected package tzdata.
- Preparing to unpack .../020-tzdata_2025b-0ubuntu0.22.04.1_all.deb ...
- Unpacking tzdata (2025b-0ubuntu0.22.04.1) ...
- Selecting previously unselected package xdg-user-dirs.
- Preparing to unpack .../021-xdg-user-dirs_0.17-2ubuntu4_amd64.deb ...
- Unpacking xdg-user-dirs (0.17-2ubuntu4) ...
- Selecting previously unselected package xkb-data.
- Preparing to unpack .../022-xkb-data_2.33-1_all.deb ...
- Unpacking xkb-data (2.33-1) ...
- Selecting previously unselected package libdrm-common.
- Preparing to unpack .../023-libdrm-common_2.4.113-2~ubuntu0.22.04.1_all.deb ...
- Unpacking libdrm-common (2.4.113-2~ubuntu0.22.04.1) ...
- Selecting previously unselected package libdrm2:amd64.
- Preparing to unpack .../024-libdrm2_2.4.113-2~ubuntu0.22.04.1_amd64.deb ...
- Unpacking libdrm2:amd64 (2.4.113-2~ubuntu0.22.04.1) ...
- Selecting previously unselected package hicolor-icon-theme.
- Preparing to unpack .../025-hicolor-icon-theme_0.17-2_all.deb ...
- Unpacking hicolor-icon-theme (0.17-2) ...
- Selecting previously unselected package libgdk-pixbuf2.0-common.
- Preparing to unpack .../026-libgdk-pixbuf2.0-common_2.42.8+dfsg-1ubuntu0.4_all.deb ...
- Unpacking libgdk-pixbuf2.0-common (2.42.8+dfsg-1ubuntu0.4) ...
- Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64.
- Preparing to unpack .../027-libgdk-pixbuf-2.0-0_2.42.8+dfsg-1ubuntu0.4_amd64.deb ...
- Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.8+dfsg-1ubuntu0.4) ...
- Selecting previously unselected package gtk-update-icon-cache.
- Preparing to unpack .../028-gtk-update-icon-cache_3.24.33-1ubuntu2.2_amd64.deb ...
- Unpacking gtk-update-icon-cache (3.24.33-1ubuntu2.2) ...
- Selecting previously unselected package humanity-icon-theme.
- Preparing to unpack .../029-humanity-icon-theme_0.6.16_all.deb ...
- Unpacking humanity-icon-theme (0.6.16) ...
- Selecting previously unselected package ubuntu-mono.
- Preparing to unpack .../030-ubuntu-mono_20.10-0ubuntu2_all.deb ...
- Unpacking ubuntu-mono (20.10-0ubuntu2) ...
- Selecting previously unselected package adwaita-icon-theme.
- Preparing to unpack .../031-adwaita-icon-theme_41.0-1ubuntu1_all.deb ...
- Unpacking adwaita-icon-theme (41.0-1ubuntu1) ...
- Selecting previously unselected package libxi6:amd64.
- Preparing to unpack .../032-libxi6_2%3a1.8-1build1_amd64.deb ...
- Unpacking libxi6:amd64 (2:1.8-1build1) ...
- Selecting previously unselected package libatspi2.0-0:amd64.
- Preparing to unpack .../033-libatspi2.0-0_2.44.0-3_amd64.deb ...
- Unpacking libatspi2.0-0:amd64 (2.44.0-3) ...
- Selecting previously unselected package x11-common.
- Preparing to unpack .../034-x11-common_1%3a7.7+23ubuntu2_all.deb ...
- Unpacking x11-common (1:7.7+23ubuntu2) ...
- Selecting previously unselected package libxtst6:amd64.
- Preparing to unpack .../035-libxtst6_2%3a1.2.3-1build4_amd64.deb ...
- Unpacking libxtst6:amd64 (2:1.2.3-1build4) ...
- Selecting previously unselected package dbus-user-session.
- Preparing to unpack .../036-dbus-user-session_1.12.20-2ubuntu4.1_amd64.deb ...
- Unpacking dbus-user-session (1.12.20-2ubuntu4.1) ...
- Selecting previously unselected package libdconf1:amd64.
- Preparing to unpack .../037-libdconf1_0.40.0-3ubuntu0.1_amd64.deb ...
- Unpacking libdconf1:amd64 (0.40.0-3ubuntu0.1) ...
- Selecting previously unselected package dconf-service.
- Preparing to unpack .../038-dconf-service_0.40.0-3ubuntu0.1_amd64.deb ...
- Unpacking dconf-service (0.40.0-3ubuntu0.1) ...
- Selecting previously unselected package dconf-gsettings-backend:amd64.
- Preparing to unpack .../039-dconf-gsettings-backend_0.40.0-3ubuntu0.1_amd64.deb ...
- Unpacking dconf-gsettings-backend:amd64 (0.40.0-3ubuntu0.1) ...
- Selecting previously unselected package session-migration.
- Preparing to unpack .../040-session-migration_0.3.6_amd64.deb ...
- Unpacking session-migration (0.3.6) ...
- Selecting previously unselected package gsettings-desktop-schemas.
- Preparing to unpack .../041-gsettings-desktop-schemas_42.0-1ubuntu1_all.deb ...
- Unpacking gsettings-desktop-schemas (42.0-1ubuntu1) ...
- Selecting previously unselected package at-spi2-core.
- Preparing to unpack .../042-at-spi2-core_2.44.0-3_amd64.deb ...
- Unpacking at-spi2-core (2.44.0-3) ...
- Selecting previously unselected package libsigsegv2:amd64.
- Preparing to unpack .../043-libsigsegv2_2.13-1ubuntu3_amd64.deb ...
- Unpacking libsigsegv2:amd64 (2.13-1ubuntu3) ...
- Selecting previously unselected package m4.
- Preparing to unpack .../044-m4_1.4.18-5ubuntu2_amd64.deb ...
- Unpacking m4 (1.4.18-5ubuntu2) ...
- Selecting previously unselected package autoconf.
- Preparing to unpack .../045-autoconf_2.71-2_all.deb ...
- Unpacking autoconf (2.71-2) ...
- Selecting previously unselected package autotools-dev.
- Preparing to unpack .../046-autotools-dev_20220109.1_all.deb ...
- Unpacking autotools-dev (20220109.1) ...
- Selecting previously unselected package automake.
- Preparing to unpack .../047-automake_1%3a1.16.5-1.3_all.deb ...
- Unpacking automake (1:1.16.5-1.3) ...
- Selecting previously unselected package bzip2-doc.
- Preparing to unpack .../048-bzip2-doc_1.0.8-5build1_all.deb ...
- Unpacking bzip2-doc (1.0.8-5build1) ...
- Selecting previously unselected package fontconfig.
- Preparing to unpack .../049-fontconfig_2.13.1-4.2ubuntu5_amd64.deb ...
- Unpacking fontconfig (2.13.1-4.2ubuntu5) ...
- Selecting previously unselected package libgfortran5:amd64.
- Preparing to unpack .../050-libgfortran5_12.3.0-1ubuntu1~22.04.2_amd64.deb ...
- Unpacking libgfortran5:amd64 (12.3.0-1ubuntu1~22.04.2) ...
- Selecting previously unselected package libgfortran-11-dev:amd64.
- Preparing to unpack .../051-libgfortran-11-dev_11.4.0-1ubuntu1~22.04.2_amd64.deb ...
- Unpacking libgfortran-11-dev:amd64 (11.4.0-1ubuntu1~22.04.2) ...
- Selecting previously unselected package gfortran-11.
- Preparing to unpack .../052-gfortran-11_11.4.0-1ubuntu1~22.04.2_amd64.deb ...
- Unpacking gfortran-11 (11.4.0-1ubuntu1~22.04.2) ...
- Selecting previously unselected package gfortran.
- Preparing to unpack .../053-gfortran_4%3a11.2.0-1ubuntu1_amd64.deb ...
- Unpacking gfortran (4:11.2.0-1ubuntu1) ...
- Selecting previously unselected package icu-devtools.
- Preparing to unpack .../054-icu-devtools_70.1-2_amd64.deb ...
- Unpacking icu-devtools (70.1-2) ...
- Selecting previously unselected package libatk1.0-data.
- Preparing to unpack .../055-libatk1.0-data_2.36.0-3build1_all.deb ...
- Unpacking libatk1.0-data (2.36.0-3build1) ...
- Selecting previously unselected package libatk1.0-0:amd64.
- Preparing to unpack .../056-libatk1.0-0_2.36.0-3build1_amd64.deb ...
- Unpacking libatk1.0-0:amd64 (2.36.0-3build1) ...
- Selecting previously unselected package libatk-bridge2.0-0:amd64.
- Preparing to unpack .../057-libatk-bridge2.0-0_2.38.0-3_amd64.deb ...
- Unpacking libatk-bridge2.0-0:amd64 (2.38.0-3) ...
- Selecting previously unselected package libavahi-common-data:amd64.
- Preparing to unpack .../058-libavahi-common-data_0.8-5ubuntu5.2_amd64.deb ...
- Unpacking libavahi-common-data:amd64 (0.8-5ubuntu5.2) ...
- Selecting previously unselected package libavahi-common3:amd64.
- Preparing to unpack .../059-libavahi-common3_0.8-5ubuntu5.2_amd64.deb ...
- Unpacking libavahi-common3:amd64 (0.8-5ubuntu5.2) ...
- Selecting previously unselected package libavahi-client3:amd64.
- Preparing to unpack .../060-libavahi-client3_0.8-5ubuntu5.2_amd64.deb ...
- Unpacking libavahi-client3:amd64 (0.8-5ubuntu5.2) ...
- Selecting previously unselected package libblas3:amd64.
- Preparing to unpack .../061-libblas3_3.10.0-2ubuntu1_amd64.deb ...
- Unpacking libblas3:amd64 (3.10.0-2ubuntu1) ...
- Selecting previously unselected package libblas-dev:amd64.
- Preparing to unpack .../062-libblas-dev_3.10.0-2ubuntu1_amd64.deb ...
- Unpacking libblas-dev:amd64 (3.10.0-2ubuntu1) ...
- Selecting previously unselected package libbz2-dev:amd64.
- Preparing to unpack .../063-libbz2-dev_1.0.8-5build1_amd64.deb ...
- Unpacking libbz2-dev:amd64 (1.0.8-5build1) ...
- Selecting previously unselected package libpixman-1-0:amd64.
- Preparing to unpack .../064-libpixman-1-0_0.40.0-1ubuntu0.22.04.1_amd64.deb ...
- Unpacking libpixman-1-0:amd64 (0.40.0-1ubuntu0.22.04.1) ...
- Selecting previously unselected package libxcb-render0:amd64.
- Preparing to unpack .../065-libxcb-render0_1.14-3ubuntu3_amd64.deb ...
- Unpacking libxcb-render0:amd64 (1.14-3ubuntu3) ...
- Selecting previously unselected package libxcb-shm0:amd64.
- Preparing to unpack .../066-libxcb-shm0_1.14-3ubuntu3_amd64.deb ...
- Unpacking libxcb-shm0:amd64 (1.14-3ubuntu3) ...
- Selecting previously unselected package libxrender1:amd64.
- Preparing to unpack .../067-libxrender1_1%3a0.9.10-1build4_amd64.deb ...
- Unpacking libxrender1:amd64 (1:0.9.10-1build4) ...
- Selecting previously unselected package libcairo2:amd64.
- Preparing to unpack .../068-libcairo2_1.16.0-5ubuntu2_amd64.deb ...
- Unpacking libcairo2:amd64 (1.16.0-5ubuntu2) ...
- Selecting previously unselected package libcairo-gobject2:amd64.
- Preparing to unpack .../069-libcairo-gobject2_1.16.0-5ubuntu2_amd64.deb ...
- Unpacking libcairo-gobject2:amd64 (1.16.0-5ubuntu2) ...
- Selecting previously unselected package libclone-perl.
- Preparing to unpack .../070-libclone-perl_0.45-1build3_amd64.deb ...
- Unpacking libclone-perl (0.45-1build3) ...
- Selecting previously unselected package liblcms2-2:amd64.
- Preparing to unpack .../071-liblcms2-2_2.12~rc1-2build2_amd64.deb ...
- Unpacking liblcms2-2:amd64 (2.12~rc1-2build2) ...
- Selecting previously unselected package libcolord2:amd64.
- Preparing to unpack .../072-libcolord2_1.4.6-1_amd64.deb ...
- Unpacking libcolord2:amd64 (1.4.6-1) ...
- Selecting previously unselected package libcups2:amd64.
- Preparing to unpack .../073-libcups2_2.4.1op1-1ubuntu4.12_amd64.deb ...
- Unpacking libcups2:amd64 (2.4.1op1-1ubuntu4.12) ...
- Selecting previously unselected package libdata-dump-perl.
- Preparing to unpack .../074-libdata-dump-perl_1.25-1_all.deb ...
- Unpacking libdata-dump-perl (1.25-1) ...
- Selecting previously unselected package libdatrie1:amd64.
- Preparing to unpack .../075-libdatrie1_0.2.13-2_amd64.deb ...
- Unpacking libdatrie1:amd64 (0.2.13-2) ...
- Selecting previously unselected package libdrm-amdgpu1:amd64.
- Preparing to unpack .../076-libdrm-amdgpu1_2.4.113-2~ubuntu0.22.04.1_amd64.deb ...
- Unpacking libdrm-amdgpu1:amd64 (2.4.113-2~ubuntu0.22.04.1) ...
- Selecting previously unselected package libpciaccess0:amd64.
- Preparing to unpack .../077-libpciaccess0_0.16-3_amd64.deb ...
- Unpacking libpciaccess0:amd64 (0.16-3) ...
- Selecting previously unselected package libdrm-intel1:amd64.
- Preparing to unpack .../078-libdrm-intel1_2.4.113-2~ubuntu0.22.04.1_amd64.deb ...
- Unpacking libdrm-intel1:amd64 (2.4.113-2~ubuntu0.22.04.1) ...
- Selecting previously unselected package libdrm-nouveau2:amd64.
- Preparing to unpack .../079-libdrm-nouveau2_2.4.113-2~ubuntu0.22.04.1_amd64.deb ...
- Unpacking libdrm-nouveau2:amd64 (2.4.113-2~ubuntu0.22.04.1) ...
- Selecting previously unselected package libdrm-radeon1:amd64.
- Preparing to unpack .../080-libdrm-radeon1_2.4.113-2~ubuntu0.22.04.1_amd64.deb ...
- Unpacking libdrm-radeon1:amd64 (2.4.113-2~ubuntu0.22.04.1) ...
- Selecting previously unselected package libencode-locale-perl.
- Preparing to unpack .../081-libencode-locale-perl_1.05-1.1_all.deb ...
- Unpacking libencode-locale-perl (1.05-1.1) ...
- Selecting previously unselected package libepoxy0:amd64.
- Preparing to unpack .../082-libepoxy0_1.5.10-1_amd64.deb ...
- Unpacking libepoxy0:amd64 (1.5.10-1) ...
- Selecting previously unselected package libipc-system-simple-perl.
- Preparing to unpack .../083-libipc-system-simple-perl_1.30-1_all.deb ...
- Unpacking libipc-system-simple-perl (1.30-1) ...
- Selecting previously unselected package libfile-basedir-perl.
- Preparing to unpack .../084-libfile-basedir-perl_0.09-1_all.deb ...
- Unpacking libfile-basedir-perl (0.09-1) ...
- Selecting previously unselected package liburi-perl.
- Preparing to unpack .../085-liburi-perl_5.10-1_all.deb ...
- Unpacking liburi-perl (5.10-1) ...
- Selecting previously unselected package libfile-desktopentry-perl.
- Preparing to unpack .../086-libfile-desktopentry-perl_0.22-2_all.deb ...
- Unpacking libfile-desktopentry-perl (0.22-2) ...
- Selecting previously unselected package libtimedate-perl.
- Preparing to unpack .../087-libtimedate-perl_2.3300-2_all.deb ...
- Unpacking libtimedate-perl (2.3300-2) ...
- Selecting previously unselected package libhttp-date-perl.
- Preparing to unpack .../088-libhttp-date-perl_6.05-1_all.deb ...
- Unpacking libhttp-date-perl (6.05-1) ...
- Selecting previously unselected package libfile-listing-perl.
- Preparing to unpack .../089-libfile-listing-perl_6.14-1_all.deb ...
- Unpacking libfile-listing-perl (6.14-1) ...
- Selecting previously unselected package libfile-mimeinfo-perl.
- Preparing to unpack .../090-libfile-mimeinfo-perl_0.31-1_all.deb ...
- Unpacking libfile-mimeinfo-perl (0.31-1) ...
- Selecting previously unselected package libfont-afm-perl.
- Preparing to unpack .../091-libfont-afm-perl_1.20-3_all.deb ...
- Unpacking libfont-afm-perl (1.20-3) ...
- Selecting previously unselected package libfontenc1:amd64.
- Preparing to unpack .../092-libfontenc1_1%3a1.1.4-1build3_amd64.deb ...
- Unpacking libfontenc1:amd64 (1:1.1.4-1build3) ...
- Selecting previously unselected package libgdk-pixbuf2.0-bin.
- Preparing to unpack .../093-libgdk-pixbuf2.0-bin_2.42.8+dfsg-1ubuntu0.4_amd64.deb ...
- Unpacking libgdk-pixbuf2.0-bin (2.42.8+dfsg-1ubuntu0.4) ...
- Selecting previously unselected package libglapi-mesa:amd64.
- Preparing to unpack .../094-libglapi-mesa_23.2.1-1ubuntu3.1~22.04.3_amd64.deb ...
- Unpacking libglapi-mesa:amd64 (23.2.1-1ubuntu3.1~22.04.3) ...
- Selecting previously unselected package libgl1-amber-dri:amd64.
- Preparing to unpack .../095-libgl1-amber-dri_21.3.9-0ubuntu1~22.04.1_amd64.deb ...
- Unpacking libgl1-amber-dri:amd64 (21.3.9-0ubuntu1~22.04.1) ...
- Selecting previously unselected package libllvm15:amd64.
- Preparing to unpack .../096-libllvm15_1%3a15.0.7-0ubuntu0.22.04.3_amd64.deb ...
- Unpacking libllvm15:amd64 (1:15.0.7-0ubuntu0.22.04.3) ...
- Selecting previously unselected package libsensors-config.
- Preparing to unpack .../097-libsensors-config_1%3a3.6.0-7ubuntu1_all.deb ...
- Unpacking libsensors-config (1:3.6.0-7ubuntu1) ...
- Selecting previously unselected package libsensors5:amd64.
- Preparing to unpack .../098-libsensors5_1%3a3.6.0-7ubuntu1_amd64.deb ...
- Unpacking libsensors5:amd64 (1:3.6.0-7ubuntu1) ...
- Selecting previously unselected package libxcb-dri3-0:amd64.
- Preparing to unpack .../099-libxcb-dri3-0_1.14-3ubuntu3_amd64.deb ...
- Unpacking libxcb-dri3-0:amd64 (1.14-3ubuntu3) ...
- Selecting previously unselected package libgl1-mesa-dri:amd64.
- Preparing to unpack .../100-libgl1-mesa-dri_23.2.1-1ubuntu3.1~22.04.3_amd64.deb ...
- Unpacking libgl1-mesa-dri:amd64 (23.2.1-1ubuntu3.1~22.04.3) ...
- Selecting previously unselected package libx11-xcb1:amd64.
- Preparing to unpack .../101-libx11-xcb1_2%3a1.7.5-1ubuntu0.3_amd64.deb ...
- Unpacking libx11-xcb1:amd64 (2:1.7.5-1ubuntu0.3) ...
- Selecting previously unselected package libxcb-dri2-0:amd64.
- Preparing to unpack .../102-libxcb-dri2-0_1.14-3ubuntu3_amd64.deb ...
- Unpacking libxcb-dri2-0:amd64 (1.14-3ubuntu3) ...
- Selecting previously unselected package libxcb-glx0:amd64.
- Preparing to unpack .../103-libxcb-glx0_1.14-3ubuntu3_amd64.deb ...
- Unpacking libxcb-glx0:amd64 (1.14-3ubuntu3) ...
- Selecting previously unselected package libxcb-present0:amd64.
- Preparing to unpack .../104-libxcb-present0_1.14-3ubuntu3_amd64.deb ...
- Unpacking libxcb-present0:amd64 (1.14-3ubuntu3) ...
- Selecting previously unselected package libxcb-randr0:amd64.
- Preparing to unpack .../105-libxcb-randr0_1.14-3ubuntu3_amd64.deb ...
- Unpacking libxcb-randr0:amd64 (1.14-3ubuntu3) ...
- Selecting previously unselected package libxcb-sync1:amd64.
- Preparing to unpack .../106-libxcb-sync1_1.14-3ubuntu3_amd64.deb ...
- Unpacking libxcb-sync1:amd64 (1.14-3ubuntu3) ...
- Selecting previously unselected package libxcb-xfixes0:amd64.
- Preparing to unpack .../107-libxcb-xfixes0_1.14-3ubuntu3_amd64.deb ...
- Unpacking libxcb-xfixes0:amd64 (1.14-3ubuntu3) ...
- Selecting previously unselected package libxfixes3:amd64.
- Preparing to unpack .../108-libxfixes3_1%3a6.0.0-1_amd64.deb ...
- Unpacking libxfixes3:amd64 (1:6.0.0-1) ...
- Selecting previously unselected package libxshmfence1:amd64.
- Preparing to unpack .../109-libxshmfence1_1.3-1build4_amd64.deb ...
- Unpacking libxshmfence1:amd64 (1.3-1build4) ...
- Selecting previously unselected package libxxf86vm1:amd64.
- Preparing to unpack .../110-libxxf86vm1_1%3a1.1.4-1build3_amd64.deb ...
- Unpacking libxxf86vm1:amd64 (1:1.1.4-1build3) ...
- Selecting previously unselected package libglx-mesa0:amd64.
- Preparing to unpack .../111-libglx-mesa0_23.2.1-1ubuntu3.1~22.04.3_amd64.deb ...
- Unpacking libglx-mesa0:amd64 (23.2.1-1ubuntu3.1~22.04.3) ...
- Selecting previously unselected package libgraphite2-3:amd64.
- Preparing to unpack .../112-libgraphite2-3_1.3.14-1build2_amd64.deb ...
- Unpacking libgraphite2-3:amd64 (1.3.14-1build2) ...
- Selecting previously unselected package libharfbuzz0b:amd64.
- Preparing to unpack .../113-libharfbuzz0b_2.7.4-1ubuntu3.2_amd64.deb ...
- Unpacking libharfbuzz0b:amd64 (2.7.4-1ubuntu3.2) ...
- Selecting previously unselected package libthai-data.
- Preparing to unpack .../114-libthai-data_0.1.29-1build1_all.deb ...
- Unpacking libthai-data (0.1.29-1build1) ...
- Selecting previously unselected package libthai0:amd64.
- Preparing to unpack .../115-libthai0_0.1.29-1build1_amd64.deb ...
- Unpacking libthai0:amd64 (0.1.29-1build1) ...
- Selecting previously unselected package libpango-1.0-0:amd64.
- Preparing to unpack .../116-libpango-1.0-0_1.50.6+ds-2ubuntu1_amd64.deb ...
- Unpacking libpango-1.0-0:amd64 (1.50.6+ds-2ubuntu1) ...
- Selecting previously unselected package libpangoft2-1.0-0:amd64.
- Preparing to unpack .../117-libpangoft2-1.0-0_1.50.6+ds-2ubuntu1_amd64.deb ...
- Unpacking libpangoft2-1.0-0:amd64 (1.50.6+ds-2ubuntu1) ...
- Selecting previously unselected package libpangocairo-1.0-0:amd64.
- Preparing to unpack .../118-libpangocairo-1.0-0_1.50.6+ds-2ubuntu1_amd64.deb ...
- Unpacking libpangocairo-1.0-0:amd64 (1.50.6+ds-2ubuntu1) ...
- Selecting previously unselected package libwayland-client0:amd64.
- Preparing to unpack .../119-libwayland-client0_1.20.0-1ubuntu0.1_amd64.deb ...
- Unpacking libwayland-client0:amd64 (1.20.0-1ubuntu0.1) ...
- Selecting previously unselected package libwayland-cursor0:amd64.
- Preparing to unpack .../120-libwayland-cursor0_1.20.0-1ubuntu0.1_amd64.deb ...
- Unpacking libwayland-cursor0:amd64 (1.20.0-1ubuntu0.1) ...
- Selecting previously unselected package libwayland-egl1:amd64.
- Preparing to unpack .../121-libwayland-egl1_1.20.0-1ubuntu0.1_amd64.deb ...
- Unpacking libwayland-egl1:amd64 (1.20.0-1ubuntu0.1) ...
- Selecting previously unselected package libxcomposite1:amd64.
- Preparing to unpack .../122-libxcomposite1_1%3a0.4.5-1build2_amd64.deb ...
- Unpacking libxcomposite1:amd64 (1:0.4.5-1build2) ...
- Selecting previously unselected package libxcursor1:amd64.
- Preparing to unpack .../123-libxcursor1_1%3a1.2.0-2build4_amd64.deb ...
- Unpacking libxcursor1:amd64 (1:1.2.0-2build4) ...
- Selecting previously unselected package libxdamage1:amd64.
- Preparing to unpack .../124-libxdamage1_1%3a1.1.5-2build2_amd64.deb ...
- Unpacking libxdamage1:amd64 (1:1.1.5-2build2) ...
- Selecting previously unselected package libxinerama1:amd64.
- Preparing to unpack .../125-libxinerama1_2%3a1.1.4-3_amd64.deb ...
- Unpacking libxinerama1:amd64 (2:1.1.4-3) ...
- Selecting previously unselected package libxkbcommon0:amd64.
- Preparing to unpack .../126-libxkbcommon0_1.4.0-1_amd64.deb ...
- Unpacking libxkbcommon0:amd64 (1.4.0-1) ...
- Selecting previously unselected package libxrandr2:amd64.
- Preparing to unpack .../127-libxrandr2_2%3a1.5.2-1build1_amd64.deb ...
- Unpacking libxrandr2:amd64 (2:1.5.2-1build1) ...
- Selecting previously unselected package libgtk-3-common.
- Preparing to unpack .../128-libgtk-3-common_3.24.33-1ubuntu2.2_all.deb ...
- Unpacking libgtk-3-common (3.24.33-1ubuntu2.2) ...
- Selecting previously unselected package libgtk-3-0:amd64.
- Preparing to unpack .../129-libgtk-3-0_3.24.33-1ubuntu2.2_amd64.deb ...
- Unpacking libgtk-3-0:amd64 (3.24.33-1ubuntu2.2) ...
- Selecting previously unselected package libgtk-3-bin.
- Preparing to unpack .../130-libgtk-3-bin_3.24.33-1ubuntu2.2_amd64.deb ...
- Unpacking libgtk-3-bin (3.24.33-1ubuntu2.2) ...
- Selecting previously unselected package librsvg2-2:amd64.
- Preparing to unpack .../131-librsvg2-2_2.52.5+dfsg-3ubuntu0.2_amd64.deb ...
- Unpacking librsvg2-2:amd64 (2.52.5+dfsg-3ubuntu0.2) ...
- Selecting previously unselected package libllvm11:amd64.
- Preparing to unpack .../132-libllvm11_1%3a11.1.0-6_amd64.deb ...
- Unpacking libllvm11:amd64 (1:11.1.0-6) ...
- Selecting previously unselected package libphobos2-ldc-shared98:amd64.
- Preparing to unpack .../133-libphobos2-ldc-shared98_1%3a1.28.0-1ubuntu1_amd64.deb ...
- Unpacking libphobos2-ldc-shared98:amd64 (1:1.28.0-1ubuntu1) ...
- Selecting previously unselected package libgtkd-3-0:amd64.
- Preparing to unpack .../134-libgtkd-3-0_3.10.0-1ubuntu1_amd64.deb ...
- Unpacking libgtkd-3-0:amd64 (3.10.0-1ubuntu1) ...
- Selecting previously unselected package libhtml-tagset-perl.
- Preparing to unpack .../135-libhtml-tagset-perl_3.20-4_all.deb ...
- Unpacking libhtml-tagset-perl (3.20-4) ...
- Selecting previously unselected package libhtml-parser-perl:amd64.
- Preparing to unpack .../136-libhtml-parser-perl_3.76-1build2_amd64.deb ...
- Unpacking libhtml-parser-perl:amd64 (3.76-1build2) ...
- Selecting previously unselected package libio-html-perl.
- Preparing to unpack .../137-libio-html-perl_1.004-2_all.deb ...
- Unpacking libio-html-perl (1.004-2) ...
- Selecting previously unselected package liblwp-mediatypes-perl.
- Preparing to unpack .../138-liblwp-mediatypes-perl_6.04-1_all.deb ...
- Unpacking liblwp-mediatypes-perl (6.04-1) ...
- Selecting previously unselected package libhttp-message-perl.
- Preparing to unpack .../139-libhttp-message-perl_6.36-1_all.deb ...
- Unpacking libhttp-message-perl (6.36-1) ...
- Selecting previously unselected package libhtml-form-perl.
- Preparing to unpack .../140-libhtml-form-perl_6.07-1_all.deb ...
- Unpacking libhtml-form-perl (6.07-1) ...
- Selecting previously unselected package libhtml-tree-perl.
- Preparing to unpack .../141-libhtml-tree-perl_5.07-2_all.deb ...
- Unpacking libhtml-tree-perl (5.07-2) ...
- Selecting previously unselected package libhtml-format-perl.
- Preparing to unpack .../142-libhtml-format-perl_2.12-1.1_all.deb ...
- Unpacking libhtml-format-perl (2.12-1.1) ...
- Selecting previously unselected package libhttp-cookies-perl.
- Preparing to unpack .../143-libhttp-cookies-perl_6.10-1_all.deb ...
- Unpacking libhttp-cookies-perl (6.10-1) ...
- Selecting previously unselected package libhttp-daemon-perl.
- Preparing to unpack .../144-libhttp-daemon-perl_6.13-1ubuntu0.1_all.deb ...
- Unpacking libhttp-daemon-perl (6.13-1ubuntu0.1) ...
- Selecting previously unselected package libhttp-negotiate-perl.
- Preparing to unpack .../145-libhttp-negotiate-perl_6.01-1_all.deb ...
- Unpacking libhttp-negotiate-perl (6.01-1) ...
- Selecting previously unselected package libice6:amd64.
- Preparing to unpack .../146-libice6_2%3a1.0.10-1build2_amd64.deb ...
- Unpacking libice6:amd64 (2:1.0.10-1build2) ...
- Selecting previously unselected package libicu-dev:amd64.
- Preparing to unpack .../147-libicu-dev_70.1-2_amd64.deb ...
- Unpacking libicu-dev:amd64 (70.1-2) ...
- Selecting previously unselected package perl-openssl-defaults:amd64.
- Preparing to unpack .../148-perl-openssl-defaults_5build2_amd64.deb ...
- Unpacking perl-openssl-defaults:amd64 (5build2) ...
- Selecting previously unselected package libnet-ssleay-perl:amd64.
- Preparing to unpack .../149-libnet-ssleay-perl_1.92-1build2_amd64.deb ...
- Unpacking libnet-ssleay-perl:amd64 (1.92-1build2) ...
- Selecting previously unselected package libio-socket-ssl-perl.
- Preparing to unpack .../150-libio-socket-ssl-perl_2.074-2_all.deb ...
- Unpacking libio-socket-ssl-perl (2.074-2) ...
- Selecting previously unselected package libio-stringy-perl.
- Preparing to unpack .../151-libio-stringy-perl_2.111-3_all.deb ...
- Unpacking libio-stringy-perl (2.111-3) ...
- Selecting previously unselected package libjpeg-turbo8-dev:amd64.
- Preparing to unpack .../152-libjpeg-turbo8-dev_2.1.2-0ubuntu1_amd64.deb ...
- Unpacking libjpeg-turbo8-dev:amd64 (2.1.2-0ubuntu1) ...
- Selecting previously unselected package libjpeg8-dev:amd64.
- Preparing to unpack .../153-libjpeg8-dev_8c-2ubuntu10_amd64.deb ...
- Unpacking libjpeg8-dev:amd64 (8c-2ubuntu10) ...
- Selecting previously unselected package libjpeg-dev:amd64.
- Preparing to unpack .../154-libjpeg-dev_8c-2ubuntu10_amd64.deb ...
- Unpacking libjpeg-dev:amd64 (8c-2ubuntu10) ...
- Selecting previously unselected package liblapack3:amd64.
- Preparing to unpack .../155-liblapack3_3.10.0-2ubuntu1_amd64.deb ...
- Unpacking liblapack3:amd64 (3.10.0-2ubuntu1) ...
- Selecting previously unselected package liblapack-dev:amd64.
- Preparing to unpack .../156-liblapack-dev_3.10.0-2ubuntu1_amd64.deb ...
- Unpacking liblapack-dev:amd64 (3.10.0-2ubuntu1) ...
- Selecting previously unselected package libnet-http-perl.
- Preparing to unpack .../157-libnet-http-perl_6.22-1_all.deb ...
- Unpacking libnet-http-perl (6.22-1) ...
- Selecting previously unselected package libtry-tiny-perl.
- Preparing to unpack .../158-libtry-tiny-perl_0.31-1_all.deb ...
- Unpacking libtry-tiny-perl (0.31-1) ...
- Selecting previously unselected package libwww-robotrules-perl.
- Preparing to unpack .../159-libwww-robotrules-perl_6.02-1_all.deb ...
- Unpacking libwww-robotrules-perl (6.02-1) ...
- Selecting previously unselected package libwww-perl.
- Preparing to unpack .../160-libwww-perl_6.61-1_all.deb ...
- Unpacking libwww-perl (6.61-1) ...
- Selecting previously unselected package liblwp-protocol-https-perl.
- Preparing to unpack .../161-liblwp-protocol-https-perl_6.10-1_all.deb ...
- Unpacking liblwp-protocol-https-perl (6.10-1) ...
- Selecting previously unselected package libnet-smtp-ssl-perl.
- Preparing to unpack .../162-libnet-smtp-ssl-perl_1.04-1_all.deb ...
- Unpacking libnet-smtp-ssl-perl (1.04-1) ...
- Selecting previously unselected package libmailtools-perl.
- Preparing to unpack .../163-libmailtools-perl_2.21-1_all.deb ...
- Unpacking libmailtools-perl (2.21-1) ...
- Selecting previously unselected package libncurses-dev:amd64.
- Preparing to unpack .../164-libncurses-dev_6.3-2ubuntu0.1_amd64.deb ...
- Unpacking libncurses-dev:amd64 (6.3-2ubuntu0.1) ...
- Selecting previously unselected package libncurses5-dev:amd64.
- Preparing to unpack .../165-libncurses5-dev_6.3-2ubuntu0.1_amd64.deb ...
- Unpacking libncurses5-dev:amd64 (6.3-2ubuntu0.1) ...
- Selecting previously unselected package libxml-parser-perl:amd64.
- Preparing to unpack .../166-libxml-parser-perl_2.46-3build1_amd64.deb ...
- Unpacking libxml-parser-perl:amd64 (2.46-3build1) ...
- Selecting previously unselected package libxml-twig-perl.
- Preparing to unpack .../167-libxml-twig-perl_1%3a3.52-1_all.deb ...
- Unpacking libxml-twig-perl (1:3.52-1) ...
- Selecting previously unselected package libnet-dbus-perl.
- Preparing to unpack .../168-libnet-dbus-perl_1.2.0-1build3_amd64.deb ...
- Unpacking libnet-dbus-perl (1.2.0-1build3) ...
- Selecting previously unselected package libpaper1:amd64.
- Preparing to unpack .../169-libpaper1_1.1.28build2_amd64.deb ...
- Unpacking libpaper1:amd64 (1.1.28build2) ...
- Selecting previously unselected package libpaper-utils.
- Preparing to unpack .../170-libpaper-utils_1.1.28build2_amd64.deb ...
- Unpacking libpaper-utils (1.1.28build2) ...
- Selecting previously unselected package libpcre16-3:amd64.
- Preparing to unpack .../171-libpcre16-3_2%3a8.39-13ubuntu0.22.04.1_amd64.deb ...
- Unpacking libpcre16-3:amd64 (2:8.39-13ubuntu0.22.04.1) ...
- Selecting previously unselected package libpcre2-16-0:amd64.
- Preparing to unpack .../172-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ...
- Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ...
- Selecting previously unselected package libpcre2-32-0:amd64.
- Preparing to unpack .../173-libpcre2-32-0_10.39-3ubuntu0.1_amd64.deb ...
- Unpacking libpcre2-32-0:amd64 (10.39-3ubuntu0.1) ...
- Selecting previously unselected package libpcre2-posix3:amd64.
- Preparing to unpack .../174-libpcre2-posix3_10.39-3ubuntu0.1_amd64.deb ...
- Unpacking libpcre2-posix3:amd64 (10.39-3ubuntu0.1) ...
- Selecting previously unselected package libpcre2-dev:amd64.
- Preparing to unpack .../175-libpcre2-dev_10.39-3ubuntu0.1_amd64.deb ...
- Unpacking libpcre2-dev:amd64 (10.39-3ubuntu0.1) ...
- Selecting previously unselected package libpcre32-3:amd64.
- Preparing to unpack .../176-libpcre32-3_2%3a8.39-13ubuntu0.22.04.1_amd64.deb ...
- Unpacking libpcre32-3:amd64 (2:8.39-13ubuntu0.22.04.1) ...
- Selecting previously unselected package libpcrecpp0v5:amd64.
- Preparing to unpack .../177-libpcrecpp0v5_2%3a8.39-13ubuntu0.22.04.1_amd64.deb ...
- Unpacking libpcrecpp0v5:amd64 (2:8.39-13ubuntu0.22.04.1) ...
- Selecting previously unselected package libpcre3-dev:amd64.
- Preparing to unpack .../178-libpcre3-dev_2%3a8.39-13ubuntu0.22.04.1_amd64.deb ...
- Unpacking libpcre3-dev:amd64 (2:8.39-13ubuntu0.22.04.1) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../179-zlib1g-dev_1%3a1.2.11.dfsg-2ubuntu9.2_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.2.11.dfsg-2ubuntu9.2) ...
- Selecting previously unselected package libpng-dev:amd64.
- Preparing to unpack .../180-libpng-dev_1.6.37-3build5_amd64.deb ...
- Unpacking libpng-dev:amd64 (1.6.37-3build5) ...
- Selecting previously unselected package libpng-tools.
- Preparing to unpack .../181-libpng-tools_1.6.37-3build5_amd64.deb ...
- Unpacking libpng-tools (1.6.37-3build5) ...
- Selecting previously unselected package libreadline-dev:amd64.
- Preparing to unpack .../182-libreadline-dev_8.1.2-1_amd64.deb ...
- Unpacking libreadline-dev:amd64 (8.1.2-1) ...
- Selecting previously unselected package librsvg2-common:amd64.
- Preparing to unpack .../183-librsvg2-common_2.52.5+dfsg-3ubuntu0.2_amd64.deb ...
- Unpacking librsvg2-common:amd64 (2.52.5+dfsg-3ubuntu0.2) ...
- Selecting previously unselected package libsm6:amd64.
- Preparing to unpack .../184-libsm6_2%3a1.2.3-1build2_amd64.deb ...
- Unpacking libsm6:amd64 (2:1.2.3-1build2) ...
- Selecting previously unselected package libtcl8.6:amd64.
- Preparing to unpack .../185-libtcl8.6_8.6.12+dfsg-1build1_amd64.deb ...
- Unpacking libtcl8.6:amd64 (8.6.12+dfsg-1build1) ...
- Selecting previously unselected package libtie-ixhash-perl.
- Preparing to unpack .../186-libtie-ixhash-perl_1.23-2.1_all.deb ...
- Unpacking libtie-ixhash-perl (1.23-2.1) ...
- Selecting previously unselected package libxft2:amd64.
- Preparing to unpack .../187-libxft2_2.3.4-1_amd64.deb ...
- Unpacking libxft2:amd64 (2.3.4-1) ...
- Selecting previously unselected package libxss1:amd64.
- Preparing to unpack .../188-libxss1_1%3a1.2.3-1build2_amd64.deb ...
- Unpacking libxss1:amd64 (1:1.2.3-1build2) ...
- Selecting previously unselected package libtk8.6:amd64.
- Preparing to unpack .../189-libtk8.6_8.6.12-1build1_amd64.deb ...
- Unpacking libtk8.6:amd64 (8.6.12-1build1) ...
- Selecting previously unselected package libunwind8:amd64.
- Preparing to unpack .../190-libunwind8_1.3.2-2build2.1_amd64.deb ...
- Unpacking libunwind8:amd64 (1.3.2-2build2.1) ...
- Selecting previously unselected package libvte-2.91-common.
- Preparing to unpack .../191-libvte-2.91-common_0.68.0-1ubuntu0.1_amd64.deb ...
- Unpacking libvte-2.91-common (0.68.0-1ubuntu0.1) ...
- Selecting previously unselected package libvte-2.91-0:amd64.
- Preparing to unpack .../192-libvte-2.91-0_0.68.0-1ubuntu0.1_amd64.deb ...
- Unpacking libvte-2.91-0:amd64 (0.68.0-1ubuntu0.1) ...
- Selecting previously unselected package libvted-3-0:amd64.
- Preparing to unpack .../193-libvted-3-0_3.10.0-1ubuntu1_amd64.deb ...
- Unpacking libvted-3-0:amd64 (3.10.0-1ubuntu1) ...
- Selecting previously unselected package libx11-protocol-perl.
- Preparing to unpack .../194-libx11-protocol-perl_0.56-7.1_all.deb ...
- Unpacking libx11-protocol-perl (0.56-7.1) ...
- Selecting previously unselected package libxt6:amd64.
- Preparing to unpack .../195-libxt6_1%3a1.2.1-1_amd64.deb ...
- Unpacking libxt6:amd64 (1:1.2.1-1) ...
- Selecting previously unselected package libxmu6:amd64.
- Preparing to unpack .../196-libxmu6_2%3a1.1.3-3_amd64.deb ...
- Unpacking libxmu6:amd64 (2:1.1.3-3) ...
- Selecting previously unselected package libxaw7:amd64.
- Preparing to unpack .../197-libxaw7_2%3a1.0.14-1_amd64.deb ...
- Unpacking libxaw7:amd64 (2:1.0.14-1) ...
- Selecting previously unselected package libxcb-shape0:amd64.
- Preparing to unpack .../198-libxcb-shape0_1.14-3ubuntu3_amd64.deb ...
- Unpacking libxcb-shape0:amd64 (1.14-3ubuntu3) ...
- Selecting previously unselected package libxkbfile1:amd64.
- Preparing to unpack .../199-libxkbfile1_1%3a1.1.0-1build3_amd64.deb ...
- Unpacking libxkbfile1:amd64 (1:1.1.0-1build3) ...
- Selecting previously unselected package libxml-xpathengine-perl.
- Preparing to unpack .../200-libxml-xpathengine-perl_0.14-1_all.deb ...
- Unpacking libxml-xpathengine-perl (0.14-1) ...
- Selecting previously unselected package libxv1:amd64.
- Preparing to unpack .../201-libxv1_2%3a1.0.11-1build2_amd64.deb ...
- Unpacking libxv1:amd64 (2:1.0.11-1build2) ...
- Selecting previously unselected package libxxf86dga1:amd64.
- Preparing to unpack .../202-libxxf86dga1_2%3a1.1.5-0ubuntu3_amd64.deb ...
- Unpacking libxxf86dga1:amd64 (2:1.1.5-0ubuntu3) ...
- Selecting previously unselected package pkg-config.
- Preparing to unpack .../203-pkg-config_0.29.2-1ubuntu3_amd64.deb ...
- Unpacking pkg-config (0.29.2-1ubuntu3) ...
- Selecting previously unselected package zip.
- Preparing to unpack .../204-zip_3.0-12build2_amd64.deb ...
- Unpacking zip (3.0-12build2) ...
- Selecting previously unselected package xdg-utils.
- Preparing to unpack .../205-xdg-utils_1.1.3-4.1ubuntu3~22.04.1_all.deb ...
- Unpacking xdg-utils (1.1.3-4.1ubuntu3~22.04.1) ...
- Selecting previously unselected package r-base-core.
- Preparing to unpack .../206-r-base-core_4.1.2-1ubuntu2_amd64.deb ...
- Unpacking r-base-core (4.1.2-1ubuntu2) ...
- Selecting previously unselected package liblzma-dev:amd64.
- Preparing to unpack .../207-liblzma-dev_5.2.5-2ubuntu1_amd64.deb ...
- Unpacking liblzma-dev:amd64 (5.2.5-2ubuntu1) ...
- Selecting previously unselected package r-base-dev.
- Preparing to unpack .../208-r-base-dev_4.1.2-1ubuntu2_all.deb ...
- Unpacking r-base-dev (4.1.2-1ubuntu2) ...
- Selecting previously unselected package r-cran-boot.
- Preparing to unpack .../209-r-cran-boot_1.3-28-2_all.deb ...
- Unpacking r-cran-boot (1.3-28-2) ...
- Selecting previously unselected package r-cran-mass.
- Preparing to unpack .../210-r-cran-mass_7.3-55-1_amd64.deb ...
- Unpacking r-cran-mass (7.3-55-1) ...
- Selecting previously unselected package r-cran-class.
- Preparing to unpack .../211-r-cran-class_7.3-20-1_amd64.deb ...
- Unpacking r-cran-class (7.3-20-1) ...
- Selecting previously unselected package r-cran-cluster.
- Preparing to unpack .../212-r-cran-cluster_2.1.2-2_amd64.deb ...
- Unpacking r-cran-cluster (2.1.2-2) ...
- Selecting previously unselected package r-cran-codetools.
- Preparing to unpack .../213-r-cran-codetools_0.2-18-1_all.deb ...
- Unpacking r-cran-codetools (0.2-18-1) ...
- Selecting previously unselected package r-cran-foreign.
- Preparing to unpack .../214-r-cran-foreign_0.8.82-1_amd64.deb ...
- Unpacking r-cran-foreign (0.8.82-1) ...
- Selecting previously unselected package r-cran-kernsmooth.
- Preparing to unpack .../215-r-cran-kernsmooth_2.23-20-1_amd64.deb ...
- Unpacking r-cran-kernsmooth (2.23-20-1) ...
- Selecting previously unselected package r-cran-lattice.
- Preparing to unpack .../216-r-cran-lattice_0.20-45-1_amd64.deb ...
- Unpacking r-cran-lattice (0.20-45-1) ...
- Selecting previously unselected package r-cran-matrix.
- Preparing to unpack .../217-r-cran-matrix_1.4-0-1_amd64.deb ...
- Unpacking r-cran-matrix (1.4-0-1) ...
- Selecting previously unselected package r-cran-nlme.
- Preparing to unpack .../218-r-cran-nlme_3.1.155-1_amd64.deb ...
- Unpacking r-cran-nlme (3.1.155-1) ...
- Selecting previously unselected package r-cran-mgcv.
- Preparing to unpack .../219-r-cran-mgcv_1.8-39-1_amd64.deb ...
- Unpacking r-cran-mgcv (1.8-39-1) ...
- Selecting previously unselected package r-cran-nnet.
- Preparing to unpack .../220-r-cran-nnet_7.3-17-1_amd64.deb ...
- Unpacking r-cran-nnet (7.3-17-1) ...
- Selecting previously unselected package r-cran-survival.
- Preparing to unpack .../221-r-cran-survival_3.2-13-1_amd64.deb ...
- Unpacking r-cran-survival (3.2-13-1) ...
- Selecting previously unselected package r-cran-rpart.
- Preparing to unpack .../222-r-cran-rpart_4.1.16-1_amd64.deb ...
- Unpacking r-cran-rpart (4.1.16-1) ...
- Selecting previously unselected package r-cran-spatial.
- Preparing to unpack .../223-r-cran-spatial_7.3-15-1_amd64.deb ...
- Unpacking r-cran-spatial (7.3-15-1) ...
- Selecting previously unselected package r-doc-html.
- Preparing to unpack .../224-r-doc-html_4.1.2-1ubuntu2_all.deb ...
- Unpacking r-doc-html (4.1.2-1ubuntu2) ...
- Selecting previously unselected package r-recommended.
- Preparing to unpack .../225-r-recommended_4.1.2-1ubuntu2_all.deb ...
- Unpacking r-recommended (4.1.2-1ubuntu2) ...
- Selecting previously unselected package tilix-common.
- Preparing to unpack .../226-tilix-common_1.9.4-2build1_all.deb ...
- Unpacking tilix-common (1.9.4-2build1) ...
- Selecting previously unselected package tilix.
- Preparing to unpack .../227-tilix_1.9.4-2build1_amd64.deb ...
- Unpacking tilix (1.9.4-2build1) ...
- Selecting previously unselected package libglvnd0:amd64.
- Preparing to unpack .../228-libglvnd0_1.4.0-1_amd64.deb ...
- Unpacking libglvnd0:amd64 (1.4.0-1) ...
- Selecting previously unselected package libglx0:amd64.
- Preparing to unpack .../229-libglx0_1.4.0-1_amd64.deb ...
- Unpacking libglx0:amd64 (1.4.0-1) ...
- Selecting previously unselected package libgl1:amd64.
- Preparing to unpack .../230-libgl1_1.4.0-1_amd64.deb ...
- Unpacking libgl1:amd64 (1.4.0-1) ...
- Selecting previously unselected package x11-utils.
- Preparing to unpack .../231-x11-utils_7.7+5build2_amd64.deb ...
- Unpacking x11-utils (7.7+5build2) ...
- Selecting previously unselected package x11-xserver-utils.
- Preparing to unpack .../232-x11-xserver-utils_7.7+9build1_amd64.deb ...
- Unpacking x11-xserver-utils (7.7+9build1) ...
- Selecting previously unselected package libauthen-sasl-perl.
- Preparing to unpack .../233-libauthen-sasl-perl_2.1600-1.1_all.deb ...
- Unpacking libauthen-sasl-perl (2.1600-1.1) ...
- Setting up media-types (7.0.0) ...
- Setting up libpcrecpp0v5:amd64 (2:8.39-13ubuntu0.22.04.1) ...
- Setting up libtext-iconv-perl (1.7-7build3) ...
- Setting up libgraphite2-3:amd64 (1.3.14-1build2) ...
- Setting up libxcb-dri3-0:amd64 (1.14-3ubuntu3) ...
- Setting up liblcms2-2:amd64 (2.12~rc1-2build2) ...
- Setting up libpixman-1-0:amd64 (0.40.0-1ubuntu0.22.04.1) ...
- Setting up bzip2-doc (1.0.8-5build1) ...
- Setting up libpaper1:amd64 (1.1.28build2) ...
- 
- Creating config file /etc/papersize with new version
- Setting up libx11-xcb1:amd64 (2:1.7.5-1ubuntu0.3) ...
- Setting up libpciaccess0:amd64 (0.16-3) ...
- Setting up fontconfig (2.13.1-4.2ubuntu5) ...
- Regenerating fonts cache... 
- done.
- Setting up libjpeg-turbo8-dev:amd64 (2.1.2-0ubuntu1) ...
- Setting up systemd-sysv (249.11-0ubuntu3.17) ...
- Setting up libncurses-dev:amd64 (6.3-2ubuntu0.1) ...
- Setting up libtie-ixhash-perl (1.23-2.1) ...
- Setting up libxdamage1:amd64 (1:1.1.5-2build2) ...
- Setting up libxcb-xfixes0:amd64 (1.14-3ubuntu3) ...
- Setting up r-doc-html (4.1.2-1ubuntu2) ...
- Setting up libpcre16-3:amd64 (2:8.39-13ubuntu0.22.04.1) ...
- Setting up hicolor-icon-theme (0.17-2) ...
- Setting up libxi6:amd64 (2:1.8-1build1) ...
- Setting up tilix-common (1.9.4-2build1) ...
- Setting up libfont-afm-perl (1.20-3) ...
- Setting up libxrender1:amd64 (1:0.9.10-1build4) ...
- Setting up libvte-2.91-common (0.68.0-1ubuntu0.1) ...
- Setting up libdatrie1:amd64 (0.2.13-2) ...
- Setting up xdg-user-dirs (0.17-2ubuntu4) ...
- Setting up libpng-tools (1.6.37-3build5) ...
- Setting up libxcb-render0:amd64 (1.14-3ubuntu3) ...
- Setting up libclone-perl (0.45-1build3) ...
- Setting up libglib2.0-0:amd64 (2.72.4-0ubuntu2.6) ...
- Setting up libglvnd0:amd64 (1.4.0-1) ...
- Setting up libio-stringy-perl (2.111-3) ...
- Setting up libhtml-tagset-perl (3.20-4) ...
- Setting up libauthen-sasl-perl (2.1600-1.1) ...
- Setting up libxcb-glx0:amd64 (1.14-3ubuntu3) ...
- Setting up liblwp-mediatypes-perl (6.04-1) ...
- Setting up libgdk-pixbuf2.0-common (2.42.8+dfsg-1ubuntu0.4) ...
- Setting up libxcb-shape0:amd64 (1.14-3ubuntu3) ...
- Setting up x11-common (1:7.7+23ubuntu2) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up libtry-tiny-perl (0.31-1) ...
- Setting up libsensors-config (1:3.6.0-7ubuntu1) ...
- Setting up libxxf86dga1:amd64 (2:1.1.5-0ubuntu3) ...
- Setting up perl-openssl-defaults:amd64 (5build2) ...
- Setting up libnss-systemd:amd64 (249.11-0ubuntu3.17) ...
- First installation detected...
- Checking NSS setup...
- Setting up xkb-data (2.33-1) ...
- Setting up libencode-locale-perl (1.05-1.1) ...
- Setting up libxcb-shm0:amd64 (1.14-3ubuntu3) ...
- Setting up libpaper-utils (1.1.28build2) ...
- Setting up libreadline-dev:amd64 (8.1.2-1) ...
- Setting up libunwind8:amd64 (1.3.2-2build2.1) ...
- Setting up libcairo2:amd64 (1.16.0-5ubuntu2) ...
- Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ...
- Setting up libcolord2:amd64 (1.4.6-1) ...
- Setting up libxxf86vm1:amd64 (1:1.1.4-1build3) ...
- Setting up tzdata (2025b-0ubuntu0.22.04.1) ...
- 
- Current default time zone: 'Europe/London'
- Local time is now:      Mon Nov 10 12:46:42 GMT 2025.
- Universal Time is now:  Mon Nov 10 12:46:42 UTC 2025.
- Run 'dpkg-reconfigure tzdata' if you wish to change it.
- 
- Setting up libxcb-present0:amd64 (1.14-3ubuntu3) ...
- Setting up libdconf1:amd64 (0.40.0-3ubuntu0.1) ...
- Setting up zip (3.0-12build2) ...
- Setting up libfontenc1:amd64 (1:1.1.4-1build3) ...
- Setting up autotools-dev (20220109.1) ...
- Setting up libpcre2-32-0:amd64 (10.39-3ubuntu0.1) ...
- Setting up libblas3:amd64 (3.10.0-2ubuntu1) ...
- 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
- Setting up libglib2.0-data (2.72.4-0ubuntu2.6) ...
- Setting up libdata-dump-perl (1.25-1) ...
- Setting up libepoxy0:amd64 (1.5.10-1) ...
- Setting up libxfixes3:amd64 (1:6.0.0-1) ...
- Setting up libxcb-sync1:amd64 (1.14-3ubuntu3) ...
- Setting up libipc-system-simple-perl (1.30-1) ...
- Setting up libxml-xpathengine-perl (0.14-1) ...
- Setting up libavahi-common-data:amd64 (0.8-5ubuntu5.2) ...
- Setting up libdbus-1-3:amd64 (1.12.20-2ubuntu4.1) ...
- Setting up dbus (1.12.20-2ubuntu4.1) ...
- Setting up libsigsegv2:amd64 (2.13-1ubuntu3) ...
- Setting up libfribidi0:amd64 (1.0.8-2ubuntu3.1) ...
- Setting up libxinerama1:amd64 (2:1.1.4-3) ...
- Setting up libxv1:amd64 (2:1.0.11-1build2) ...
- Setting up libpcre32-3:amd64 (2:8.39-13ubuntu0.22.04.1) ...
- Setting up systemd-timesyncd (249.11-0ubuntu3.17) ...
- Created symlink /etc/systemd/system/dbus-org.freedesktop.timesync1.service → /lib/systemd/system/systemd-timesyncd.service.
- Created symlink /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service → /lib/systemd/system/systemd-timesyncd.service.
- Setting up libio-html-perl (1.004-2) ...
- Setting up libxrandr2:amd64 (2:1.5.2-1build1) ...
- Setting up libtcl8.6:amd64 (8.6.12+dfsg-1build1) ...
- Setting up pkg-config (0.29.2-1ubuntu3) ...
- Setting up libsensors5:amd64 (1:3.6.0-7ubuntu1) ...
- Setting up libglapi-mesa:amd64 (23.2.1-1ubuntu3.1~22.04.3) ...
- Setting up libgfortran5:amd64 (12.3.0-1ubuntu1~22.04.2) ...
- Setting up libtimedate-perl (2.3300-2) ...
- Setting up liblzma-dev:amd64 (5.2.5-2ubuntu1) ...
- Setting up libxcb-dri2-0:amd64 (1.14-3ubuntu3) ...
- Setting up zlib1g-dev:amd64 (1:1.2.11.dfsg-2ubuntu9.2) ...
- Setting up libatk1.0-data (2.36.0-3build1) ...
- Setting up libpcre2-posix3:amd64 (10.39-3ubuntu0.1) ...
- Setting up dmsetup (2:1.02.175-2.1ubuntu5) ...
- Setting up libxshmfence1:amd64 (1.3-1build4) ...
- Setting up libxcb-randr0:amd64 (1.14-3ubuntu3) ...
- Setting up libncurses5-dev:amd64 (6.3-2ubuntu0.1) ...
- Setting up libmpdec3:amd64 (2.5.1-2build2) ...
- Setting up libpam-systemd:amd64 (249.11-0ubuntu3.17) ...
- Setting up libharfbuzz0b:amd64 (2.7.4-1ubuntu3.2) ...
- Setting up libthai-data (0.1.29-1build1) ...
- Setting up libgirepository-1.0-1:amd64 (1.72.0-1) ...
- Setting up libcairo-gobject2:amd64 (1.16.0-5ubuntu2) ...
- Setting up libatk1.0-0:amd64 (2.36.0-3build1) ...
- Setting up libwayland-egl1:amd64 (1.20.0-1ubuntu0.1) ...
- Setting up libxss1:amd64 (1:1.2.3-1build2) ...
- Setting up libxkbfile1:amd64 (1:1.1.0-1build3) ...
- Setting up libjpeg8-dev:amd64 (8c-2ubuntu10) ...
- Setting up libdrm-common (2.4.113-2~ubuntu0.22.04.1) ...
- Setting up libelf1:amd64 (0.186-1ubuntu0.1) ...
- Setting up libxcomposite1:amd64 (1:0.4.5-1build2) ...
- Setting up xdg-utils (1.1.3-4.1ubuntu3~22.04.1) ...
- update-alternatives: using /usr/bin/xdg-open to provide /usr/bin/open (open) in auto mode
- update-alternatives: warning: skip creation of /usr/share/man/man1/open.1.gz because associated file /usr/share/man/man1/xdg-open.1.gz (of link group open) doesn't exist
- Setting up liburi-perl (5.10-1) ...
- Setting up libx11-protocol-perl (0.56-7.1) ...
- Setting up libblas-dev:amd64 (3.10.0-2ubuntu1) ...
- update-alternatives: using /usr/lib/x86_64-linux-gnu/blas/libblas.so to provide /usr/lib/x86_64-linux-gnu/libblas.so (libblas.so-x86_64-linux-gnu) in auto mode
- Setting up libicu70:amd64 (70.1-2) ...
- Setting up libbz2-dev:amd64 (1.0.8-5build1) ...
- Setting up libxkbcommon0:amd64 (1.4.0-1) ...
- Setting up libwayland-client0:amd64 (1.20.0-1ubuntu0.1) ...
- Setting up libnet-ssleay-perl:amd64 (1.92-1build2) ...
- Setting up libice6:amd64 (2:1.0.10-1build2) ...
- Setting up libhttp-date-perl (6.05-1) ...
- Setting up session-migration (0.3.6) ...
- Created symlink /etc/systemd/user/graphical-session-pre.target.wants/session-migration.service → /usr/lib/systemd/user/session-migration.service.
- Setting up liblapack3:amd64 (3.10.0-2ubuntu1) ...
- 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
- Setting up libxft2:amd64 (2.3.4-1) ...
- Setting up libfile-basedir-perl (0.09-1) ...
- Setting up libfile-listing-perl (6.14-1) ...
- Setting up libpcre2-dev:amd64 (10.39-3ubuntu0.1) ...
- Setting up libpcre3-dev:amd64 (2:8.39-13ubuntu0.22.04.1) ...
- Setting up libgfortran-11-dev:amd64 (11.4.0-1ubuntu1~22.04.2) ...
- Setting up libxtst6:amd64 (2:1.2.3-1build4) ...
- Setting up libtk8.6:amd64 (8.6.12-1build1) ...
- Setting up libxcursor1:amd64 (1:1.2.0-2build4) ...
- Setting up libpng-dev:amd64 (1.6.37-3build5) ...
- Setting up libavahi-common3:amd64 (0.8-5ubuntu5.2) ...
- Setting up libjpeg-dev:amd64 (8c-2ubuntu10) ...
- Setting up libnet-http-perl (6.22-1) ...
- Setting up m4 (1.4.18-5ubuntu2) ...
- Setting up libatspi2.0-0:amd64 (2.44.0-3) ...
- Setting up libpython3.10-stdlib:amd64 (3.10.12-1~22.04.11) ...
- Setting up libatk-bridge2.0-0:amd64 (2.38.0-3) ...
- Setting up libthai0:amd64 (0.1.29-1build1) ...
- Setting up dbus-user-session (1.12.20-2ubuntu4.1) ...
- Setting up liblapack-dev:amd64 (3.10.0-2ubuntu1) ...
- update-alternatives: using /usr/lib/x86_64-linux-gnu/lapack/liblapack.so to provide /usr/lib/x86_64-linux-gnu/liblapack.so (liblapack.so-x86_64-linux-gnu) in auto mode
- Setting up icu-devtools (70.1-2) ...
- Setting up gir1.2-glib-2.0:amd64 (1.72.0-1) ...
- Setting up libfile-desktopentry-perl (0.22-2) ...
- Setting up gfortran-11 (11.4.0-1ubuntu1~22.04.2) ...
- Setting up autoconf (2.71-2) ...
- Setting up libwww-robotrules-perl (6.02-1) ...
- Setting up libdrm2:amd64 (2.4.113-2~ubuntu0.22.04.1) ...
- Setting up libwayland-cursor0:amd64 (1.20.0-1ubuntu0.1) ...
- Setting up libhtml-parser-perl:amd64 (3.76-1build2) ...
- Setting up libsm6:amd64 (2:1.2.3-1build2) ...
- Setting up libicu-dev:amd64 (70.1-2) ...
- Setting up libxml2:amd64 (2.9.13+dfsg-1ubuntu0.10) ...
- Setting up libavahi-client3:amd64 (0.8-5ubuntu5.2) ...
- Setting up libio-socket-ssl-perl (2.074-2) ...
- Setting up libpython3-stdlib:amd64 (3.10.6-1~22.04.1) ...
- Setting up libhttp-message-perl (6.36-1) ...
- Setting up libdrm-amdgpu1:amd64 (2.4.113-2~ubuntu0.22.04.1) ...
- Setting up libhtml-form-perl (6.07-1) ...
- Setting up automake (1:1.16.5-1.3) ...
- update-alternatives: using /usr/bin/automake-1.16 to provide /usr/bin/automake (automake) in auto mode
- update-alternatives: warning: skip creation of /usr/share/man/man1/automake.1.gz because associated file /usr/share/man/man1/automake-1.16.1.gz (of link group automake) doesn't exist
- update-alternatives: warning: skip creation of /usr/share/man/man1/aclocal.1.gz because associated file /usr/share/man/man1/aclocal-1.16.1.gz (of link group automake) doesn't exist
- Setting up libhttp-negotiate-perl (6.01-1) ...
- Setting up libdrm-nouveau2:amd64 (2.4.113-2~ubuntu0.22.04.1) ...
- Setting up python3.10 (3.10.12-1~22.04.11) ...
- Setting up libhttp-cookies-perl (6.10-1) ...
- Setting up libdrm-radeon1:amd64 (2.4.113-2~ubuntu0.22.04.1) ...
- Setting up libhtml-tree-perl (5.07-2) ...
- Setting up libpango-1.0-0:amd64 (1.50.6+ds-2ubuntu1) ...
- Setting up libdrm-intel1:amd64 (2.4.113-2~ubuntu0.22.04.1) ...
- Setting up dconf-service (0.40.0-3ubuntu0.1) ...
- Setting up python3 (3.10.6-1~22.04.1) ...
- running python rtupdate hooks for python3.10...
- running python post-rtupdate hooks for python3.10...
- Setting up libhtml-format-perl (2.12-1.1) ...
- Setting up gfortran (4:11.2.0-1ubuntu1) ...
- update-alternatives: using /usr/bin/gfortran to provide /usr/bin/f95 (f95) in auto mode
- update-alternatives: warning: skip creation of /usr/share/man/man1/f95.1.gz because associated file /usr/share/man/man1/gfortran.1.gz (of link group f95) doesn't exist
- update-alternatives: using /usr/bin/gfortran to provide /usr/bin/f77 (f77) in auto mode
- update-alternatives: warning: skip creation of /usr/share/man/man1/f77.1.gz because associated file /usr/share/man/man1/gfortran.1.gz (of link group f77) doesn't exist
- Setting up libllvm11:amd64 (1:11.1.0-6) ...
- Setting up libnet-smtp-ssl-perl (1.04-1) ...
- Setting up libmailtools-perl (2.21-1) ...
- Setting up python3-gi (3.42.1-0ubuntu1) ...
- Setting up shared-mime-info (2.1-2) ...
- Setting up libxt6:amd64 (1:1.2.1-1) ...
- Setting up libcups2:amd64 (2.4.1op1-1ubuntu4.12) ...
- Setting up libhttp-daemon-perl (6.13-1ubuntu0.1) ...
- Setting up libllvm15:amd64 (1:15.0.7-0ubuntu0.22.04.3) ...
- Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.8+dfsg-1ubuntu0.4) ...
- Setting up libpangoft2-1.0-0:amd64 (1.50.6+ds-2ubuntu1) ...
- Setting up libpangocairo-1.0-0:amd64 (1.50.6+ds-2ubuntu1) ...
- Setting up libgl1-amber-dri:amd64 (21.3.9-0ubuntu1~22.04.1) ...
- Setting up libfile-mimeinfo-perl (0.31-1) ...
- Setting up gtk-update-icon-cache (3.24.33-1ubuntu2.2) ...
- Setting up python3-dbus (1.2.18-3build1) ...
- Setting up libxmu6:amd64 (2:1.1.3-3) ...
- Setting up libphobos2-ldc-shared98:amd64 (1:1.28.0-1ubuntu1) ...
- Setting up dconf-gsettings-backend:amd64 (0.40.0-3ubuntu0.1) ...
- Setting up libgl1-mesa-dri:amd64 (23.2.1-1ubuntu3.1~22.04.3) ...
- Setting up libxaw7:amd64 (2:1.0.14-1) ...
- Setting up x11-xserver-utils (7.7+9build1) ...
- Setting up librsvg2-2:amd64 (2.52.5+dfsg-3ubuntu0.2) ...
- Setting up r-base-core (4.1.2-1ubuntu2) ...
- 
- Creating config file /etc/R/Renviron with new version
- Setting up librsvg2-common:amd64 (2.52.5+dfsg-3ubuntu0.2) ...
- Setting up r-cran-lattice (0.20-45-1) ...
- Setting up r-cran-nlme (3.1.155-1) ...
- Setting up libgdk-pixbuf2.0-bin (2.42.8+dfsg-1ubuntu0.4) ...
- Setting up r-cran-cluster (2.1.2-2) ...
- Setting up r-cran-nnet (7.3-17-1) ...
- Setting up libgtk-3-common (3.24.33-1ubuntu2.2) ...
- Setting up networkd-dispatcher (2.1-2ubuntu0.22.04.2) ...
- Created symlink /etc/systemd/system/multi-user.target.wants/networkd-dispatcher.service → /lib/systemd/system/networkd-dispatcher.service.
- Setting up gsettings-desktop-schemas (42.0-1ubuntu1) ...
- Setting up r-cran-codetools (0.2-18-1) ...
- Setting up r-cran-boot (1.3-28-2) ...
- Setting up libglx-mesa0:amd64 (23.2.1-1ubuntu3.1~22.04.3) ...
- Setting up r-base-dev (4.1.2-1ubuntu2) ...
- Setting up libglx0:amd64 (1.4.0-1) ...
- Setting up r-cran-spatial (7.3-15-1) ...
- Setting up r-cran-mass (7.3-55-1) ...
- Setting up r-cran-foreign (0.8.82-1) ...
- Setting up libgl1:amd64 (1.4.0-1) ...
- Setting up r-cran-matrix (1.4-0-1) ...
- Setting up r-cran-kernsmooth (2.23-20-1) ...
- Setting up r-cran-mgcv (1.8-39-1) ...
- Setting up at-spi2-core (2.44.0-3) ...
- Setting up x11-utils (7.7+5build2) ...
- Setting up r-cran-class (7.3-20-1) ...
- Setting up r-cran-survival (3.2-13-1) ...
- Setting up r-cran-rpart (4.1.16-1) ...
- Setting up r-recommended (4.1.2-1ubuntu2) ...
- Setting up adwaita-icon-theme (41.0-1ubuntu1) ...
- update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode
- Setting up liblwp-protocol-https-perl (6.10-1) ...
- Setting up libwww-perl (6.61-1) ...
- Setting up libgtk-3-0:amd64 (3.24.33-1ubuntu2.2) ...
- Setting up libgtk-3-bin (3.24.33-1ubuntu2.2) ...
- Setting up libvte-2.91-0:amd64 (0.68.0-1ubuntu0.1) ...
- Setting up humanity-icon-theme (0.6.16) ...
- Setting up libvted-3-0:amd64 (3.10.0-1ubuntu1) ...
- Setting up libgtkd-3-0:amd64 (3.10.0-1ubuntu1) ...
- Setting up tilix (1.9.4-2build1) ...
- update-alternatives: using /usr/bin/tilix.wrapper to provide /usr/bin/x-terminal-emulator (x-terminal-emulator) in auto mode
- update-alternatives: warning: skip creation of /usr/share/man/man1/x-terminal-emulator.1.gz because associated file /usr/share/man/man1/tilix.1.gz (of link group x-terminal-emulator) doesn't exist
- Setting up libxml-parser-perl:amd64 (2.46-3build1) ...
- Setting up ubuntu-mono (20.10-0ubuntu2) ...
- Setting up libxml-twig-perl (1:3.52-1) ...
- Setting up libnet-dbus-perl (1.2.0-1build3) ...
- Processing triggers for libc-bin (2.35-0ubuntu3.11) ...
- Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.8+dfsg-1ubuntu0.4) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved batteries.3.10.0  (cached)
-> retrieved camlp-streams.5.0.1  (cached)
-> retrieved conf-r.1.0.0  (cached)
-> retrieved cpm.12.2.0  (cached)
-> retrieved cpu.2.0.0  (cached)
-> retrieved dolog.6.0.0  (cached)
-> installed conf-autoconf.0.2
-> installed conf-r.1.0.0
-> retrieved dune.3.20.2  (cached)
-> retrieved line_oriented.1.3.0  (cached)
-> retrieved minicli.5.0.2  (cached)
-> retrieved num.1.6  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved orrandomForest.3.0.0  (cached)
-> retrieved parany.14.0.1  (cached)
-> installed num.1.6
-> installed ocamlfind.1.9.8
-> installed dune.3.20.2
-> installed dolog.6.0.0
-> installed minicli.5.0.2
-> installed camlp-streams.5.0.1
-> installed cpu.2.0.0
-> installed parany.14.0.1
-> installed batteries.3.10.0
-> installed line_oriented.1.3.0
-> installed cpm.12.2.0
-> installed orrandomForest.3.0.0
Done.

<><> orrandomForest.3.0.0 installed successfully ><><><><><><><><><><><><><><><>
=> Please interact with R to install needed things in user-space:
   R
   install.packages('Marix', repos='http://cran.r-project.org')
   install.packages('randomForest', repos='http://cran.r-project.org')
# To update the current shell environment, run: eval $(opam env)
2025-11-10 12:47.11 ---> saved as "176573356718e46786e0faf6be4758e7b1ca4efa2ff483df459ef12676096603"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test orrandomForest.3.0.0) || true"))
The following actions will be performed:
=== recompile 2 packages
  - recompile cpm            12.2.0         [uses conf-gnuplot]
  - recompile orrandomForest 3.0.0 (pinned)
=== install 1 package
  - install   conf-gnuplot   0.1            [required by orrandomForest]

The following system packages will first need to be installed:
    gnuplot-x11

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "gnuplot-x11"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package aglfn.
- (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 ... 39410 files and directories currently installed.)
- Preparing to unpack .../0-aglfn_1.7+git20191031.4036a9c-2_all.deb ...
- Unpacking aglfn (1.7+git20191031.4036a9c-2) ...
- Selecting previously unselected package gnuplot-data.
- Preparing to unpack .../1-gnuplot-data_5.4.2+dfsg2-2_all.deb ...
- Unpacking gnuplot-data (5.4.2+dfsg2-2) ...
- Selecting previously unselected package liblua5.4-0:amd64.
- Preparing to unpack .../2-liblua5.4-0_5.4.4-1_amd64.deb ...
- Unpacking liblua5.4-0:amd64 (5.4.4-1) ...
- Selecting previously unselected package libwxbase3.0-0v5:amd64.
- Preparing to unpack .../3-libwxbase3.0-0v5_3.0.5.1+dfsg-4_amd64.deb ...
- Unpacking libwxbase3.0-0v5:amd64 (3.0.5.1+dfsg-4) ...
- Selecting previously unselected package libnotify4:amd64.
- Preparing to unpack .../4-libnotify4_0.7.9-3ubuntu5.22.04.1_amd64.deb ...
- Unpacking libnotify4:amd64 (0.7.9-3ubuntu5.22.04.1) ...
- Selecting previously unselected package libwxgtk3.0-gtk3-0v5:amd64.
- Preparing to unpack .../5-libwxgtk3.0-gtk3-0v5_3.0.5.1+dfsg-4_amd64.deb ...
- Unpacking libwxgtk3.0-gtk3-0v5:amd64 (3.0.5.1+dfsg-4) ...
- Selecting previously unselected package gnuplot-x11.
- Preparing to unpack .../6-gnuplot-x11_5.4.2+dfsg2-2_amd64.deb ...
- Unpacking gnuplot-x11 (5.4.2+dfsg2-2) ...
- Setting up libnotify4:amd64 (0.7.9-3ubuntu5.22.04.1) ...
- Setting up aglfn (1.7+git20191031.4036a9c-2) ...
- Setting up liblua5.4-0:amd64 (5.4.4-1) ...
- Setting up libwxbase3.0-0v5:amd64 (3.0.5.1+dfsg-4) ...
- Setting up gnuplot-data (5.4.2+dfsg2-2) ...
- Setting up libwxgtk3.0-gtk3-0v5:amd64 (3.0.5.1+dfsg-4) ...
- Setting up gnuplot-x11 (5.4.2+dfsg2-2) ...
- update-alternatives: using /usr/bin/gnuplot-x11 to provide /usr/bin/gnuplot (gnuplot) in auto mode
- update-alternatives: warning: skip creation of /usr/share/man/man1/gnuplot.1.gz because associated file /usr/share/man/man1/gnuplot-x11.1.gz (of link group gnuplot) doesn't exist
- Processing triggers for libc-bin (2.35-0ubuntu3.11) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed conf-gnuplot.0.1
-> retrieved cpm.12.2.0  (https://opam.ocaml.org/cache)
-> retrieved orrandomForest.3.0.0  (https://opam.ocaml.org/cache)
-> removed   orrandomForest.3.0.0
-> removed   cpm.12.2.0
-> installed cpm.12.2.0
-> installed orrandomForest.3.0.0
Done.

<><> orrandomForest.3.0.0 installed successfully ><><><><><><><><><><><><><><><>
=> Please interact with R to install needed things in user-space:
   R
   install.packages('Marix', repos='http://cran.r-project.org')
   install.packages('randomForest', repos='http://cran.r-project.org')
# To update the current shell environment, run: eval $(opam env)
2025-11-10 12:47.19 ---> saved as "bacdbfee15ceccea7f77f44cd1320936aad39535b52f7015e00158572780215b"

/home/opam: (run (shell  "opam reinstall --with-test --verbose orrandomForest.3.0.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"ubuntu-22.04\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'orrandomForest.3.0.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile orrandomForest 3.0.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [orrandomForest.3.0.0: extract]
-> retrieved orrandomForest.3.0.0  (cached)
Processing  2/4: [orrandomForest: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "orrandomForest" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/orrandomForest.3.0.0)
-> compiled  orrandomForest.3.0.0
-> removed   orrandomForest.3.0.0
-> installed orrandomForest.3.0.0
Done.

<><> orrandomForest.3.0.0 installed successfully ><><><><><><><><><><><><><><><>
=> Please interact with R to install needed things in user-space:
   R
   install.packages('Marix', repos='http://cran.r-project.org')
   install.packages('randomForest', repos='http://cran.r-project.org')
# To update the current shell environment, run: eval $(opam env)
2025-11-10 12:47.24 ---> saved as "620e2e0e8b67e33fc4138406a242dcf3b4f51e0a20e96d36c14124a52941f0a1"
Job succeeded
2025-11-10 12:47.38: Job succeeded