(for PR #22844)

2024-02-08 11:39.18: New job: build omlr.1.0.3, lower-bounds, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/22844/head (1422b2efcc494c918618085f92b1ab8da330121f)
                              on debian-12-ocaml-4.09/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/22844/head" && git reset --hard 1422b2ef
git fetch origin master
git merge --no-edit d87a1eb8c3d0e6228e3f957b25aa87f49e397d03
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.09@sha256:2175020731d760b901db2debdd92662123f57004e5304c27c7258f16a4489d47
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMSOLVERTIMEOUT="500"
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
ENV OPAMCRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
ENV OPAMFIXUPCRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
ENV OPAMUPGRADECRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
RUN opam pin add -k version -yn omlr.1.0.3 1.0.3
RUN opam reinstall omlr.1.0.3; \
    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 "\"debian-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'omlr.1.0.3' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
ENV OPAMCRITERIA="+removed,+count[version-lag,solution]"
ENV OPAMFIXUPCRITERIA="+removed,+count[version-lag,solution]"
ENV OPAMUPGRADECRITERIA="+removed,+count[version-lag,solution]"
ENV OPAMEXTERNALSOLVER="builtin-0install"
RUN opam reinstall omlr.1.0.3; \
    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 "\"debian-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'omlr.1.0.3' && 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 .

2024-02-08 11:39.18: Using cache hint "ocaml/opam:debian-12-ocaml-4.09@sha256:2175020731d760b901db2debdd92662123f57004e5304c27c7258f16a4489d47-omlr.1.0.3-1422b2efcc494c918618085f92b1ab8da330121f"
2024-02-08 11:39.18: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.09@sha256:2175020731d760b901db2debdd92662123f57004e5304c27c7258f16a4489d47)
 (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"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMSOLVERTIMEOUT 500)
 (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"))
 (env OPAMCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (env OPAMFIXUPCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (env OPAMUPGRADECRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (run (shell "opam pin add -k version -yn omlr.1.0.3 1.0.3"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall omlr.1.0.3;\
             \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 \"\\\"debian-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'omlr.1.0.3' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (env OPAMCRITERIA +removed,+count[version-lag,solution])
 (env OPAMFIXUPCRITERIA +removed,+count[version-lag,solution])
 (env OPAMUPGRADECRITERIA +removed,+count[version-lag,solution])
 (env OPAMEXTERNALSOLVER builtin-0install)
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall omlr.1.0.3;\
             \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 \"\\\"debian-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'omlr.1.0.3' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2024-02-08 11:39.18: Connecting to build cluster…
2024-02-08 11:39.18: Waiting for resource in pool OCluster
2024-02-08 11:48.50: Waiting for worker…
2024-02-08 11:53.59: Got resource from pool OCluster
Building on x86-bm-c5.sw.ocaml.org
All commits already cached
Updating files:  39% (13036/32901)
Updating files:  40% (13161/32901)
Updating files:  41% (13490/32901)
Updating files:  42% (13819/32901)
Updating files:  43% (14148/32901)
Updating files:  44% (14477/32901)
Updating files:  45% (14806/32901)
Updating files:  46% (15135/32901)
Updating files:  47% (15464/32901)
Updating files:  48% (15793/32901)
Updating files:  49% (16122/32901)
Updating files:  50% (16451/32901)
Updating files:  51% (16780/32901)
Updating files:  52% (17109/32901)
Updating files:  53% (17438/32901)
Updating files:  54% (17767/32901)
Updating files:  55% (18096/32901)
Updating files:  56% (18425/32901)
Updating files:  57% (18754/32901)
Updating files:  58% (19083/32901)
Updating files:  59% (19412/32901)
Updating files:  60% (19741/32901)
Updating files:  61% (20070/32901)
Updating files:  62% (20399/32901)
Updating files:  63% (20728/32901)
Updating files:  64% (21057/32901)
Updating files:  65% (21386/32901)
Updating files:  66% (21715/32901)
Updating files:  67% (22044/32901)
Updating files:  68% (22373/32901)
Updating files:  69% (22702/32901)
Updating files:  70% (23031/32901)
Updating files:  71% (23360/32901)
Updating files:  72% (23689/32901)
Updating files:  73% (24018/32901)
Updating files:  74% (24347/32901)
Updating files:  75% (24676/32901)
Updating files:  76% (25005/32901)
Updating files:  77% (25334/32901)
Updating files:  78% (25663/32901)
Updating files:  79% (25992/32901)
Updating files:  80% (26321/32901)
Updating files:  81% (26650/32901)
Updating files:  81% (26842/32901)
Updating files:  82% (26979/32901)
Updating files:  83% (27308/32901)
Updating files:  84% (27637/32901)
Updating files:  85% (27966/32901)
Updating files:  86% (28295/32901)
Updating files:  87% (28624/32901)
Updating files:  88% (28953/32901)
Updating files:  89% (29282/32901)
Updating files:  90% (29611/32901)
Updating files:  91% (29940/32901)
Updating files:  92% (30269/32901)
Updating files:  93% (30598/32901)
Updating files:  94% (30927/32901)
Updating files:  95% (31256/32901)
Updating files:  96% (31585/32901)
Updating files:  97% (31914/32901)
Updating files:  98% (32243/32901)
Updating files:  99% (32572/32901)
Updating files: 100% (32901/32901)
Updating files: 100% (32901/32901), done.
HEAD is now at d87a1eb8c3 Merge pull request #25204 from toots/opam-publish-tls-liquidsoap.1-prometheus-liquidsoap.2-liquidsoap.2.2.4-sdl-liquidsoap.3
Merge made by the 'ort' strategy.
 packages/omlr/omlr.1.0.3/opam | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)
 create mode 100644 packages/omlr/omlr.1.0.3/opam

(from ocaml/opam:debian-12-ocaml-4.09@sha256:2175020731d760b901db2debdd92662123f57004e5304c27c7258f16a4489d47)
Unable to find image 'ocaml/opam:debian-12-ocaml-4.09@sha256:2175020731d760b901db2debdd92662123f57004e5304c27c7258f16a4489d47' locally
docker.io/ocaml/opam@sha256:2175020731d760b901db2debdd92662123f57004e5304c27c7258f16a4489d47: Pulling from ocaml/opam
49a4c998c373: Pulling fs layer
49a4c998c373: Verifying Checksum
49a4c998c373: Download complete
49a4c998c373: Pull complete
Digest: sha256:2175020731d760b901db2debdd92662123f57004e5304c27c7258f16a4489d47
Status: Downloaded newer image for ocaml/opam@sha256:2175020731d760b901db2debdd92662123f57004e5304c27c7258f16a4489d47
2024-02-08 11:54.32 ---> using "25d88d1b626857f051462cc772d40857fce9f76abc6e3ad3fdfb36beaa5e174f" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2024-02-08 11:54.32 ---> using "0568d169fcdcbec9e9014b8df2f1ebd0f36bb51f0010faf3e495bf39c93e35c9" 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 development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2~alpha, which can't be reverted.
You may want to back it up before going further.

Continue? [y/n] y
[NOTE] The 'jobs' option was reset, its value was 255 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=255 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from file:///home/opam/opam-repository
2024-02-08 11:54.32 ---> using "7cc02f8de2b2c0ff1de35177296f738350de0996dbaef4a1385b64f42ada472e" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMSOLVERTIMEOUT 500)

/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/"))
2024-02-08 11:54.32 ---> using "be2cb76ad2d22dbc56f6f732a584c305c40aa9375448da7ca8cdf6b0100b8c35" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2024-02-08 11:54.33 ---> using "cd9a484ad28d2a1972b29c66bc57fb4b097de7b784c931cedb5295e314137a70" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2024-02-08 11:54.52 ---> saved as "5dc65fe072b78809993ea3c1e833501c77c4b50f9298b95b0e8bdf44995cd94c"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian bookworm InRelease
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [52.1 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [137 kB]
- Fetched 237 kB in 0s (786 kB/s)
- Reading package lists...
- 
2024-02-08 11:54.53 ---> saved as "37c481d68f619976c5aa04deaec5747b0f04a0da8320e02e1466cdbe6be954b3"

/home/opam: (env OPAMCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (env OPAMFIXUPCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (env OPAMUPGRADECRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (run (shell "opam pin add -k version -yn omlr.1.0.3 1.0.3"))
omlr is now pinned to version 1.0.3
2024-02-08 11:54.54 ---> saved as "bd5c1ddec3995838d9e841f05cfc2ade8da8b1c674e153768f6d5924c79f6cdd"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall omlr.1.0.3;\
                        \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 \"\\\"debian-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'omlr.1.0.3' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
omlr.1.0.3 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 11 packages
  - install batteries     3.7.2          [required by omlr]
  - install camlp-streams 5.0.1          [required by batteries]
  - install conf-gnuplot  0.1            [required by omlr]
  - install conf-r        1.0.0          [required by omlr]
  - install cpm           12.2.0         [required by omlr]
  - install dolog         6.0.0          [required by omlr]
  - install dune          3.13.1         [required by omlr]
  - install minicli       5.0.2          [required by omlr]
  - install num           1.5            [required by batteries]
  - install ocamlfind     1.9.6          [required by batteries]
  - install omlr          1.0.3 (pinned)

The following system packages will first need to be installed:
    gnuplot-x11 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" "gnuplot-x11" "r-base-core"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libargon2-1: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 ... 18743 files and directories currently installed.)
- Preparing to unpack .../00-libargon2-1_0~20171227-0.3+deb12u1_amd64.deb ...
- Unpacking libargon2-1:amd64 (0~20171227-0.3+deb12u1) ...
- Selecting previously unselected package dmsetup.
- Preparing to unpack .../01-dmsetup_2%3a1.02.185-2_amd64.deb ...
- Unpacking dmsetup (2:1.02.185-2) ...
- Selecting previously unselected package libdevmapper1.02.1:amd64.
- Preparing to unpack .../02-libdevmapper1.02.1_2%3a1.02.185-2_amd64.deb ...
- Unpacking libdevmapper1.02.1:amd64 (2:1.02.185-2) ...
- Selecting previously unselected package libjson-c5:amd64.
- Preparing to unpack .../03-libjson-c5_0.16-2_amd64.deb ...
- Unpacking libjson-c5:amd64 (0.16-2) ...
- Selecting previously unselected package libcryptsetup12:amd64.
- Preparing to unpack .../04-libcryptsetup12_2%3a2.6.1-4~deb12u1_amd64.deb ...
- Unpacking libcryptsetup12:amd64 (2:2.6.1-4~deb12u1) ...
- Selecting previously unselected package libfdisk1:amd64.
- Preparing to unpack .../05-libfdisk1_2.38.1-5+b1_amd64.deb ...
- Unpacking libfdisk1:amd64 (2.38.1-5+b1) ...
- Selecting previously unselected package libkmod2:amd64.
- Preparing to unpack .../06-libkmod2_30+20221128-1_amd64.deb ...
- Unpacking libkmod2:amd64 (30+20221128-1) ...
- Selecting previously unselected package libapparmor1:amd64.
- Preparing to unpack .../07-libapparmor1_3.0.8-3_amd64.deb ...
- Unpacking libapparmor1:amd64 (3.0.8-3) ...
- Selecting previously unselected package libip4tc2:amd64.
- Preparing to unpack .../08-libip4tc2_1.8.9-2_amd64.deb ...
- Unpacking libip4tc2:amd64 (1.8.9-2) ...
- Selecting previously unselected package libsystemd-shared:amd64.
- Preparing to unpack .../09-libsystemd-shared_252.19-1~deb12u1_amd64.deb ...
- Unpacking libsystemd-shared:amd64 (252.19-1~deb12u1) ...
- Selecting previously unselected package systemd.
- Preparing to unpack .../10-systemd_252.19-1~deb12u1_amd64.deb ...
- Unpacking systemd (252.19-1~deb12u1) ...
- Setting up libargon2-1:amd64 (0~20171227-0.3+deb12u1) ...
- Setting up libjson-c5:amd64 (0.16-2) ...
- Setting up libfdisk1:amd64 (2.38.1-5+b1) ...
- Setting up libkmod2:amd64 (30+20221128-1) ...
- Setting up libapparmor1:amd64 (3.0.8-3) ...
- Setting up libip4tc2:amd64 (1.8.9-2) ...
- Setting up libsystemd-shared:amd64 (252.19-1~deb12u1) ...
- Setting up libdevmapper1.02.1:amd64 (2:1.02.185-2) ...
- Setting up libcryptsetup12:amd64 (2:2.6.1-4~deb12u1) ...
- Setting up systemd (252.19-1~deb12u1) ...
- 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/sysinit.target.wants/systemd-pstore.service → /lib/systemd/system/systemd-pstore.service.
- Initializing machine ID from random generator.
- Creating group 'systemd-journal' with GID 999.
- Creating group 'systemd-network' with GID 998.
- Creating user 'systemd-network' (systemd Network Management) with UID 998 and GID 998.
- Setting up dmsetup (2:1.02.185-2) ...
- 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 ... 19659 files and directories currently installed.)
- Preparing to unpack .../000-systemd-sysv_252.19-1~deb12u1_amd64.deb ...
- Unpacking systemd-sysv (252.19-1~deb12u1) ...
- Selecting previously unselected package libdbus-1-3:amd64.
- Preparing to unpack .../001-libdbus-1-3_1.14.10-1~deb12u1_amd64.deb ...
- Unpacking libdbus-1-3:amd64 (1.14.10-1~deb12u1) ...
- Selecting previously unselected package dbus-bin.
- Preparing to unpack .../002-dbus-bin_1.14.10-1~deb12u1_amd64.deb ...
- Unpacking dbus-bin (1.14.10-1~deb12u1) ...
- Selecting previously unselected package dbus-session-bus-common.
- Preparing to unpack .../003-dbus-session-bus-common_1.14.10-1~deb12u1_all.deb ...
- Unpacking dbus-session-bus-common (1.14.10-1~deb12u1) ...
- Selecting previously unselected package dbus-daemon.
- Preparing to unpack .../004-dbus-daemon_1.14.10-1~deb12u1_amd64.deb ...
- Unpacking dbus-daemon (1.14.10-1~deb12u1) ...
- Selecting previously unselected package dbus-system-bus-common.
- Preparing to unpack .../005-dbus-system-bus-common_1.14.10-1~deb12u1_all.deb ...
- Unpacking dbus-system-bus-common (1.14.10-1~deb12u1) ...
- Selecting previously unselected package dbus.
- Preparing to unpack .../006-dbus_1.14.10-1~deb12u1_amd64.deb ...
- Unpacking dbus (1.14.10-1~deb12u1) ...
- Selecting previously unselected package sensible-utils.
- Preparing to unpack .../007-sensible-utils_0.0.17+nmu1_all.deb ...
- Unpacking sensible-utils (0.0.17+nmu1) ...
- Selecting previously unselected package libnss-systemd:amd64.
- Preparing to unpack .../008-libnss-systemd_252.19-1~deb12u1_amd64.deb ...
- Unpacking libnss-systemd:amd64 (252.19-1~deb12u1) ...
- Selecting previously unselected package libpam-systemd:amd64.
- Preparing to unpack .../009-libpam-systemd_252.19-1~deb12u1_amd64.deb ...
- Unpacking libpam-systemd:amd64 (252.19-1~deb12u1) ...
- Selecting previously unselected package systemd-timesyncd.
- Preparing to unpack .../010-systemd-timesyncd_252.19-1~deb12u1_amd64.deb ...
- Unpacking systemd-timesyncd (252.19-1~deb12u1) ...
- Selecting previously unselected package ucf.
- Preparing to unpack .../011-ucf_3.0043+nmu1_all.deb ...
- Moving old data out of the way
- Unpacking ucf (3.0043+nmu1) ...
- Selecting previously unselected package hicolor-icon-theme.
- Preparing to unpack .../012-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 .../013-libgdk-pixbuf2.0-common_2.42.10+dfsg-1_all.deb ...
- Unpacking libgdk-pixbuf2.0-common (2.42.10+dfsg-1) ...
- Selecting previously unselected package libglib2.0-0:amd64.
- Preparing to unpack .../014-libglib2.0-0_2.74.6-2_amd64.deb ...
- Unpacking libglib2.0-0:amd64 (2.74.6-2) ...
- Selecting previously unselected package libicu72:amd64.
- Preparing to unpack .../015-libicu72_72.1-3_amd64.deb ...
- Unpacking libicu72:amd64 (72.1-3) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../016-libxml2_2.9.14+dfsg-1.3~deb12u1_amd64.deb ...
- Unpacking libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ...
- Selecting previously unselected package shared-mime-info.
- Preparing to unpack .../017-shared-mime-info_2.2-1_amd64.deb ...
- Unpacking shared-mime-info (2.2-1) ...
- Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64.
- Preparing to unpack .../018-libgdk-pixbuf-2.0-0_2.42.10+dfsg-1+b1_amd64.deb ...
- Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+b1) ...
- Selecting previously unselected package gtk-update-icon-cache.
- Preparing to unpack .../019-gtk-update-icon-cache_3.24.38-2~deb12u1_amd64.deb ...
- Unpacking gtk-update-icon-cache (3.24.38-2~deb12u1) ...
- Selecting previously unselected package adwaita-icon-theme.
- Preparing to unpack .../020-adwaita-icon-theme_43-1_all.deb ...
- Unpacking adwaita-icon-theme (43-1) ...
- Selecting previously unselected package aglfn.
- Preparing to unpack .../021-aglfn_1.7+git20191031.4036a9c-2_all.deb ...
- Unpacking aglfn (1.7+git20191031.4036a9c-2) ...
- Selecting previously unselected package at-spi2-common.
- Preparing to unpack .../022-at-spi2-common_2.46.0-5_all.deb ...
- Unpacking at-spi2-common (2.46.0-5) ...
- Selecting previously unselected package libxi6:amd64.
- Preparing to unpack .../023-libxi6_2%3a1.8-1+b1_amd64.deb ...
- Unpacking libxi6:amd64 (2:1.8-1+b1) ...
- Selecting previously unselected package libatspi2.0-0:amd64.
- Preparing to unpack .../024-libatspi2.0-0_2.46.0-5_amd64.deb ...
- Unpacking libatspi2.0-0:amd64 (2.46.0-5) ...
- Selecting previously unselected package x11-common.
- Preparing to unpack .../025-x11-common_1%3a7.7+23_all.deb ...
- Unpacking x11-common (1:7.7+23) ...
- Selecting previously unselected package libxtst6:amd64.
- Preparing to unpack .../026-libxtst6_2%3a1.2.3-1.1_amd64.deb ...
- Unpacking libxtst6:amd64 (2:1.2.3-1.1) ...
- Selecting previously unselected package dbus-user-session.
- Preparing to unpack .../027-dbus-user-session_1.14.10-1~deb12u1_amd64.deb ...
- Unpacking dbus-user-session (1.14.10-1~deb12u1) ...
- Selecting previously unselected package libdconf1:amd64.
- Preparing to unpack .../028-libdconf1_0.40.0-4_amd64.deb ...
- Unpacking libdconf1:amd64 (0.40.0-4) ...
- Selecting previously unselected package dconf-service.
- Preparing to unpack .../029-dconf-service_0.40.0-4_amd64.deb ...
- Unpacking dconf-service (0.40.0-4) ...
- Selecting previously unselected package dconf-gsettings-backend:amd64.
- Preparing to unpack .../030-dconf-gsettings-backend_0.40.0-4_amd64.deb ...
- Unpacking dconf-gsettings-backend:amd64 (0.40.0-4) ...
- Selecting previously unselected package gsettings-desktop-schemas.
- Preparing to unpack .../031-gsettings-desktop-schemas_43.0-1_all.deb ...
- Unpacking gsettings-desktop-schemas (43.0-1) ...
- Selecting previously unselected package at-spi2-core.
- Preparing to unpack .../032-at-spi2-core_2.46.0-5_amd64.deb ...
- Unpacking at-spi2-core (2.46.0-5) ...
- Selecting previously unselected package bzip2-doc.
- Preparing to unpack .../033-bzip2-doc_1.0.8-5_all.deb ...
- Unpacking bzip2-doc (1.0.8-5) ...
- Selecting previously unselected package fontconfig.
- Preparing to unpack .../034-fontconfig_2.14.1-4_amd64.deb ...
- Unpacking fontconfig (2.14.1-4) ...
- Selecting previously unselected package libgfortran5:amd64.
- Preparing to unpack .../035-libgfortran5_12.2.0-14_amd64.deb ...
- Unpacking libgfortran5:amd64 (12.2.0-14) ...
- Selecting previously unselected package libgfortran-12-dev:amd64.
- Preparing to unpack .../036-libgfortran-12-dev_12.2.0-14_amd64.deb ...
- Unpacking libgfortran-12-dev:amd64 (12.2.0-14) ...
- Selecting previously unselected package gfortran-12.
- Preparing to unpack .../037-gfortran-12_12.2.0-14_amd64.deb ...
- Unpacking gfortran-12 (12.2.0-14) ...
- Selecting previously unselected package gfortran.
- Preparing to unpack .../038-gfortran_4%3a12.2.0-3_amd64.deb ...
- Unpacking gfortran (4:12.2.0-3) ...
- Selecting previously unselected package gnuplot-data.
- Preparing to unpack .../039-gnuplot-data_5.4.4+dfsg1-2_all.deb ...
- Unpacking gnuplot-data (5.4.4+dfsg1-2) ...
- Selecting previously unselected package libpixman-1-0:amd64.
- Preparing to unpack .../040-libpixman-1-0_0.42.2-1_amd64.deb ...
- Unpacking libpixman-1-0:amd64 (0.42.2-1) ...
- Selecting previously unselected package libxcb-render0:amd64.
- Preparing to unpack .../041-libxcb-render0_1.15-1_amd64.deb ...
- Unpacking libxcb-render0:amd64 (1.15-1) ...
- Selecting previously unselected package libxcb-shm0:amd64.
- Preparing to unpack .../042-libxcb-shm0_1.15-1_amd64.deb ...
- Unpacking libxcb-shm0:amd64 (1.15-1) ...
- Selecting previously unselected package libxrender1:amd64.
- Preparing to unpack .../043-libxrender1_1%3a0.9.10-1.1_amd64.deb ...
- Unpacking libxrender1:amd64 (1:0.9.10-1.1) ...
- Selecting previously unselected package libcairo2:amd64.
- Preparing to unpack .../044-libcairo2_1.16.0-7_amd64.deb ...
- Unpacking libcairo2:amd64 (1.16.0-7) ...
- Selecting previously unselected package liblua5.4-0:amd64.
- Preparing to unpack .../045-liblua5.4-0_5.4.4-3_amd64.deb ...
- Unpacking liblua5.4-0:amd64 (5.4.4-3) ...
- Selecting previously unselected package libfribidi0:amd64.
- Preparing to unpack .../046-libfribidi0_1.0.8-2.1_amd64.deb ...
- Unpacking libfribidi0:amd64 (1.0.8-2.1) ...
- Selecting previously unselected package libgraphite2-3:amd64.
- Preparing to unpack .../047-libgraphite2-3_1.3.14-1_amd64.deb ...
- Unpacking libgraphite2-3:amd64 (1.3.14-1) ...
- Selecting previously unselected package libharfbuzz0b:amd64.
- Preparing to unpack .../048-libharfbuzz0b_6.0.0+dfsg-3_amd64.deb ...
- Unpacking libharfbuzz0b:amd64 (6.0.0+dfsg-3) ...
- Selecting previously unselected package libthai-data.
- Preparing to unpack .../049-libthai-data_0.1.29-1_all.deb ...
- Unpacking libthai-data (0.1.29-1) ...
- Selecting previously unselected package libdatrie1:amd64.
- Preparing to unpack .../050-libdatrie1_0.2.13-2+b1_amd64.deb ...
- Unpacking libdatrie1:amd64 (0.2.13-2+b1) ...
- Selecting previously unselected package libthai0:amd64.
- Preparing to unpack .../051-libthai0_0.1.29-1_amd64.deb ...
- Unpacking libthai0:amd64 (0.1.29-1) ...
- Selecting previously unselected package libpango-1.0-0:amd64.
- Preparing to unpack .../052-libpango-1.0-0_1.50.12+ds-1_amd64.deb ...
- Unpacking libpango-1.0-0:amd64 (1.50.12+ds-1) ...
- Selecting previously unselected package libpangoft2-1.0-0:amd64.
- Preparing to unpack .../053-libpangoft2-1.0-0_1.50.12+ds-1_amd64.deb ...
- Unpacking libpangoft2-1.0-0:amd64 (1.50.12+ds-1) ...
- Selecting previously unselected package libpangocairo-1.0-0:amd64.
- Preparing to unpack .../054-libpangocairo-1.0-0_1.50.12+ds-1_amd64.deb ...
- Unpacking libpangocairo-1.0-0:amd64 (1.50.12+ds-1) ...
- Selecting previously unselected package libpcre2-32-0:amd64.
- Preparing to unpack .../055-libpcre2-32-0_10.42-1_amd64.deb ...
- Unpacking libpcre2-32-0:amd64 (10.42-1) ...
- Selecting previously unselected package libwxbase3.2-1:amd64.
- Preparing to unpack .../056-libwxbase3.2-1_3.2.2+dfsg-2_amd64.deb ...
- Unpacking libwxbase3.2-1:amd64 (3.2.2+dfsg-2) ...
- Selecting previously unselected package libatk1.0-0:amd64.
- Preparing to unpack .../057-libatk1.0-0_2.46.0-5_amd64.deb ...
- Unpacking libatk1.0-0:amd64 (2.46.0-5) ...
- Selecting previously unselected package libatk-bridge2.0-0:amd64.
- Preparing to unpack .../058-libatk-bridge2.0-0_2.46.0-5_amd64.deb ...
- Unpacking libatk-bridge2.0-0:amd64 (2.46.0-5) ...
- Selecting previously unselected package libcairo-gobject2:amd64.
- Preparing to unpack .../059-libcairo-gobject2_1.16.0-7_amd64.deb ...
- Unpacking libcairo-gobject2:amd64 (1.16.0-7) ...
- Selecting previously unselected package liblcms2-2:amd64.
- Preparing to unpack .../060-liblcms2-2_2.14-2_amd64.deb ...
- Unpacking liblcms2-2:amd64 (2.14-2) ...
- Selecting previously unselected package libcolord2:amd64.
- Preparing to unpack .../061-libcolord2_1.4.6-2.2_amd64.deb ...
- Unpacking libcolord2:amd64 (1.4.6-2.2) ...
- Selecting previously unselected package libavahi-common-data:amd64.
- Preparing to unpack .../062-libavahi-common-data_0.8-10_amd64.deb ...
- Unpacking libavahi-common-data:amd64 (0.8-10) ...
- Selecting previously unselected package libavahi-common3:amd64.
- Preparing to unpack .../063-libavahi-common3_0.8-10_amd64.deb ...
- Unpacking libavahi-common3:amd64 (0.8-10) ...
- Selecting previously unselected package libavahi-client3:amd64.
- Preparing to unpack .../064-libavahi-client3_0.8-10_amd64.deb ...
- Unpacking libavahi-client3:amd64 (0.8-10) ...
- Selecting previously unselected package libcups2:amd64.
- Preparing to unpack .../065-libcups2_2.4.2-3+deb12u5_amd64.deb ...
- Unpacking libcups2:amd64 (2.4.2-3+deb12u5) ...
- Selecting previously unselected package libepoxy0:amd64.
- Preparing to unpack .../066-libepoxy0_1.5.10-1_amd64.deb ...
- Unpacking libepoxy0:amd64 (1.5.10-1) ...
- Selecting previously unselected package libwayland-client0:amd64.
- Preparing to unpack .../067-libwayland-client0_1.21.0-1_amd64.deb ...
- Unpacking libwayland-client0:amd64 (1.21.0-1) ...
- Selecting previously unselected package libwayland-cursor0:amd64.
- Preparing to unpack .../068-libwayland-cursor0_1.21.0-1_amd64.deb ...
- Unpacking libwayland-cursor0:amd64 (1.21.0-1) ...
- Selecting previously unselected package libwayland-egl1:amd64.
- Preparing to unpack .../069-libwayland-egl1_1.21.0-1_amd64.deb ...
- Unpacking libwayland-egl1:amd64 (1.21.0-1) ...
- Selecting previously unselected package libxcomposite1:amd64.
- Preparing to unpack .../070-libxcomposite1_1%3a0.4.5-1_amd64.deb ...
- Unpacking libxcomposite1:amd64 (1:0.4.5-1) ...
- Selecting previously unselected package libxfixes3:amd64.
- Preparing to unpack .../071-libxfixes3_1%3a6.0.0-2_amd64.deb ...
- Unpacking libxfixes3:amd64 (1:6.0.0-2) ...
- Selecting previously unselected package libxcursor1:amd64.
- Preparing to unpack .../072-libxcursor1_1%3a1.2.1-1_amd64.deb ...
- Unpacking libxcursor1:amd64 (1:1.2.1-1) ...
- Selecting previously unselected package libxdamage1:amd64.
- Preparing to unpack .../073-libxdamage1_1%3a1.1.6-1_amd64.deb ...
- Unpacking libxdamage1:amd64 (1:1.1.6-1) ...
- Selecting previously unselected package libxinerama1:amd64.
- Preparing to unpack .../074-libxinerama1_2%3a1.1.4-3_amd64.deb ...
- Unpacking libxinerama1:amd64 (2:1.1.4-3) ...
- Selecting previously unselected package xkb-data.
- Preparing to unpack .../075-xkb-data_2.35.1-1_all.deb ...
- Unpacking xkb-data (2.35.1-1) ...
- Selecting previously unselected package libxkbcommon0:amd64.
- Preparing to unpack .../076-libxkbcommon0_1.5.0-1_amd64.deb ...
- Unpacking libxkbcommon0:amd64 (1.5.0-1) ...
- Selecting previously unselected package libxrandr2:amd64.
- Preparing to unpack .../077-libxrandr2_2%3a1.5.2-2+b1_amd64.deb ...
- Unpacking libxrandr2:amd64 (2:1.5.2-2+b1) ...
- Selecting previously unselected package libgtk-3-common.
- Preparing to unpack .../078-libgtk-3-common_3.24.38-2~deb12u1_all.deb ...
- Unpacking libgtk-3-common (3.24.38-2~deb12u1) ...
- Selecting previously unselected package libgtk-3-0:amd64.
- Preparing to unpack .../079-libgtk-3-0_3.24.38-2~deb12u1_amd64.deb ...
- Unpacking libgtk-3-0:amd64 (3.24.38-2~deb12u1) ...
- Selecting previously unselected package libnotify4:amd64.
- Preparing to unpack .../080-libnotify4_0.8.1-1_amd64.deb ...
- Unpacking libnotify4:amd64 (0.8.1-1) ...
- Selecting previously unselected package libice6:amd64.
- Preparing to unpack .../081-libice6_2%3a1.0.10-1_amd64.deb ...
- Unpacking libice6:amd64 (2:1.0.10-1) ...
- Selecting previously unselected package libsm6:amd64.
- Preparing to unpack .../082-libsm6_2%3a1.2.3-1_amd64.deb ...
- Unpacking libsm6:amd64 (2:1.2.3-1) ...
- Selecting previously unselected package libwxgtk3.2-1:amd64.
- Preparing to unpack .../083-libwxgtk3.2-1_3.2.2+dfsg-2_amd64.deb ...
- Unpacking libwxgtk3.2-1:amd64 (3.2.2+dfsg-2) ...
- Selecting previously unselected package gnuplot-x11.
- Preparing to unpack .../084-gnuplot-x11_5.4.4+dfsg1-2+b2_amd64.deb ...
- Unpacking gnuplot-x11 (5.4.4+dfsg1-2+b2) ...
- Selecting previously unselected package icu-devtools.
- Preparing to unpack .../085-icu-devtools_72.1-3_amd64.deb ...
- Unpacking icu-devtools (72.1-3) ...
- Selecting previously unselected package libauthen-sasl-perl.
- Preparing to unpack .../086-libauthen-sasl-perl_2.1600-3_all.deb ...
- Unpacking libauthen-sasl-perl (2.1600-3) ...
- Selecting previously unselected package libblas3:amd64.
- Preparing to unpack .../087-libblas3_3.11.0-2_amd64.deb ...
- Unpacking libblas3:amd64 (3.11.0-2) ...
- Selecting previously unselected package libblas-dev:amd64.
- Preparing to unpack .../088-libblas-dev_3.11.0-2_amd64.deb ...
- Unpacking libblas-dev:amd64 (3.11.0-2) ...
- Selecting previously unselected package libbz2-dev:amd64.
- Preparing to unpack .../089-libbz2-dev_1.0.8-5+b1_amd64.deb ...
- Unpacking libbz2-dev:amd64 (1.0.8-5+b1) ...
- Selecting previously unselected package libclone-perl:amd64.
- Preparing to unpack .../090-libclone-perl_0.46-1_amd64.deb ...
- Unpacking libclone-perl:amd64 (0.46-1) ...
- Selecting previously unselected package libdata-dump-perl.
- Preparing to unpack .../091-libdata-dump-perl_1.25-1_all.deb ...
- Unpacking libdata-dump-perl (1.25-1) ...
- Selecting previously unselected package libdrm-common.
- Preparing to unpack .../092-libdrm-common_2.4.114-1_all.deb ...
- Unpacking libdrm-common (2.4.114-1) ...
- Selecting previously unselected package libdrm2:amd64.
- Preparing to unpack .../093-libdrm2_2.4.114-1+b1_amd64.deb ...
- Unpacking libdrm2:amd64 (2.4.114-1+b1) ...
- Selecting previously unselected package libdrm-amdgpu1:amd64.
- Preparing to unpack .../094-libdrm-amdgpu1_2.4.114-1+b1_amd64.deb ...
- Unpacking libdrm-amdgpu1:amd64 (2.4.114-1+b1) ...
- Selecting previously unselected package libpciaccess0:amd64.
- Preparing to unpack .../095-libpciaccess0_0.17-2_amd64.deb ...
- Unpacking libpciaccess0:amd64 (0.17-2) ...
- Selecting previously unselected package libdrm-intel1:amd64.
- Preparing to unpack .../096-libdrm-intel1_2.4.114-1+b1_amd64.deb ...
- Unpacking libdrm-intel1:amd64 (2.4.114-1+b1) ...
- Selecting previously unselected package libdrm-nouveau2:amd64.
- Preparing to unpack .../097-libdrm-nouveau2_2.4.114-1+b1_amd64.deb ...
- Unpacking libdrm-nouveau2:amd64 (2.4.114-1+b1) ...
- Selecting previously unselected package libdrm-radeon1:amd64.
- Preparing to unpack .../098-libdrm-radeon1_2.4.114-1+b1_amd64.deb ...
- Unpacking libdrm-radeon1:amd64 (2.4.114-1+b1) ...
- Selecting previously unselected package libwayland-server0:amd64.
- Preparing to unpack .../099-libwayland-server0_1.21.0-1_amd64.deb ...
- Unpacking libwayland-server0:amd64 (1.21.0-1) ...
- Selecting previously unselected package libgbm1:amd64.
- Preparing to unpack .../100-libgbm1_22.3.6-1+deb12u1_amd64.deb ...
- Unpacking libgbm1:amd64 (22.3.6-1+deb12u1) ...
- Selecting previously unselected package libglapi-mesa:amd64.
- Preparing to unpack .../101-libglapi-mesa_22.3.6-1+deb12u1_amd64.deb ...
- Unpacking libglapi-mesa:amd64 (22.3.6-1+deb12u1) ...
- Selecting previously unselected package libx11-xcb1:amd64.
- Preparing to unpack .../102-libx11-xcb1_2%3a1.8.4-2+deb12u2_amd64.deb ...
- Unpacking libx11-xcb1:amd64 (2:1.8.4-2+deb12u2) ...
- Selecting previously unselected package libxcb-dri2-0:amd64.
- Preparing to unpack .../103-libxcb-dri2-0_1.15-1_amd64.deb ...
- Unpacking libxcb-dri2-0:amd64 (1.15-1) ...
- Selecting previously unselected package libxcb-dri3-0:amd64.
- Preparing to unpack .../104-libxcb-dri3-0_1.15-1_amd64.deb ...
- Unpacking libxcb-dri3-0:amd64 (1.15-1) ...
- Selecting previously unselected package libxcb-present0:amd64.
- Preparing to unpack .../105-libxcb-present0_1.15-1_amd64.deb ...
- Unpacking libxcb-present0:amd64 (1.15-1) ...
- Selecting previously unselected package libxcb-randr0:amd64.
- Preparing to unpack .../106-libxcb-randr0_1.15-1_amd64.deb ...
- Unpacking libxcb-randr0:amd64 (1.15-1) ...
- Selecting previously unselected package libxcb-sync1:amd64.
- Preparing to unpack .../107-libxcb-sync1_1.15-1_amd64.deb ...
- Unpacking libxcb-sync1:amd64 (1.15-1) ...
- Selecting previously unselected package libxcb-xfixes0:amd64.
- Preparing to unpack .../108-libxcb-xfixes0_1.15-1_amd64.deb ...
- Unpacking libxcb-xfixes0:amd64 (1.15-1) ...
- Selecting previously unselected package libxshmfence1:amd64.
- Preparing to unpack .../109-libxshmfence1_1.3-1_amd64.deb ...
- Unpacking libxshmfence1:amd64 (1.3-1) ...
- Selecting previously unselected package libegl-mesa0:amd64.
- Preparing to unpack .../110-libegl-mesa0_22.3.6-1+deb12u1_amd64.deb ...
- Unpacking libegl-mesa0:amd64 (22.3.6-1+deb12u1) ...
- Selecting previously unselected package libelf1:amd64.
- Preparing to unpack .../111-libelf1_0.188-2.1_amd64.deb ...
- Unpacking libelf1:amd64 (0.188-2.1) ...
- Selecting previously unselected package libencode-locale-perl.
- Preparing to unpack .../112-libencode-locale-perl_1.05-3_all.deb ...
- Unpacking libencode-locale-perl (1.05-3) ...
- Selecting previously unselected package libipc-system-simple-perl.
- Preparing to unpack .../113-libipc-system-simple-perl_1.30-2_all.deb ...
- Unpacking libipc-system-simple-perl (1.30-2) ...
- Selecting previously unselected package libfile-basedir-perl.
- Preparing to unpack .../114-libfile-basedir-perl_0.09-2_all.deb ...
- Unpacking libfile-basedir-perl (0.09-2) ...
- Selecting previously unselected package libregexp-ipv6-perl.
- Preparing to unpack .../115-libregexp-ipv6-perl_0.03-3_all.deb ...
- Unpacking libregexp-ipv6-perl (0.03-3) ...
- Selecting previously unselected package liburi-perl.
- Preparing to unpack .../116-liburi-perl_5.17-1_all.deb ...
- Unpacking liburi-perl (5.17-1) ...
- Selecting previously unselected package libfile-desktopentry-perl.
- Preparing to unpack .../117-libfile-desktopentry-perl_0.22-3_all.deb ...
- Unpacking libfile-desktopentry-perl (0.22-3) ...
- Selecting previously unselected package libtimedate-perl.
- Preparing to unpack .../118-libtimedate-perl_2.3300-2_all.deb ...
- Unpacking libtimedate-perl (2.3300-2) ...
- Selecting previously unselected package libhttp-date-perl.
- Preparing to unpack .../119-libhttp-date-perl_6.05-2_all.deb ...
- Unpacking libhttp-date-perl (6.05-2) ...
- Selecting previously unselected package libfile-listing-perl.
- Preparing to unpack .../120-libfile-listing-perl_6.15-1_all.deb ...
- Unpacking libfile-listing-perl (6.15-1) ...
- Selecting previously unselected package libfile-mimeinfo-perl.
- Preparing to unpack .../121-libfile-mimeinfo-perl_0.33-1_all.deb ...
- Unpacking libfile-mimeinfo-perl (0.33-1) ...
- Selecting previously unselected package libfont-afm-perl.
- Preparing to unpack .../122-libfont-afm-perl_1.20-4_all.deb ...
- Unpacking libfont-afm-perl (1.20-4) ...
- Selecting previously unselected package libfontenc1:amd64.
- Preparing to unpack .../123-libfontenc1_1%3a1.1.4-1_amd64.deb ...
- Unpacking libfontenc1:amd64 (1:1.1.4-1) ...
- Selecting previously unselected package libgdk-pixbuf2.0-bin.
- Preparing to unpack .../124-libgdk-pixbuf2.0-bin_2.42.10+dfsg-1+b1_amd64.deb ...
- Unpacking libgdk-pixbuf2.0-bin (2.42.10+dfsg-1+b1) ...
- Selecting previously unselected package libglvnd0:amd64.
- Preparing to unpack .../125-libglvnd0_1.6.0-1_amd64.deb ...
- Unpacking libglvnd0:amd64 (1.6.0-1) ...
- Selecting previously unselected package libxcb-glx0:amd64.
- Preparing to unpack .../126-libxcb-glx0_1.15-1_amd64.deb ...
- Unpacking libxcb-glx0:amd64 (1.15-1) ...
- Selecting previously unselected package libxxf86vm1:amd64.
- Preparing to unpack .../127-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ...
- Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ...
- Selecting previously unselected package libz3-4:amd64.
- Preparing to unpack .../128-libz3-4_4.8.12-3.1_amd64.deb ...
- Unpacking libz3-4:amd64 (4.8.12-3.1) ...
- Selecting previously unselected package libllvm15:amd64.
- Preparing to unpack .../129-libllvm15_1%3a15.0.6-4+b1_amd64.deb ...
- Unpacking libllvm15:amd64 (1:15.0.6-4+b1) ...
- Selecting previously unselected package libsensors-config.
- Preparing to unpack .../130-libsensors-config_1%3a3.6.0-7.1_all.deb ...
- Unpacking libsensors-config (1:3.6.0-7.1) ...
- Selecting previously unselected package libsensors5:amd64.
- Preparing to unpack .../131-libsensors5_1%3a3.6.0-7.1_amd64.deb ...
- Unpacking libsensors5:amd64 (1:3.6.0-7.1) ...
- Selecting previously unselected package libgl1-mesa-dri:amd64.
- Preparing to unpack .../132-libgl1-mesa-dri_22.3.6-1+deb12u1_amd64.deb ...
- Unpacking libgl1-mesa-dri:amd64 (22.3.6-1+deb12u1) ...
- Selecting previously unselected package libglx-mesa0:amd64.
- Preparing to unpack .../133-libglx-mesa0_22.3.6-1+deb12u1_amd64.deb ...
- Unpacking libglx-mesa0:amd64 (22.3.6-1+deb12u1) ...
- Selecting previously unselected package libglx0:amd64.
- Preparing to unpack .../134-libglx0_1.6.0-1_amd64.deb ...
- Unpacking libglx0:amd64 (1.6.0-1) ...
- Selecting previously unselected package libgl1:amd64.
- Preparing to unpack .../135-libgl1_1.6.0-1_amd64.deb ...
- Unpacking libgl1:amd64 (1.6.0-1) ...
- Selecting previously unselected package libgles2:amd64.
- Preparing to unpack .../136-libgles2_1.6.0-1_amd64.deb ...
- Unpacking libgles2:amd64 (1.6.0-1) ...
- Selecting previously unselected package libglib2.0-data.
- Preparing to unpack .../137-libglib2.0-data_2.74.6-2_all.deb ...
- Unpacking libglib2.0-data (2.74.6-2) ...
- Selecting previously unselected package libgtk-3-bin.
- Preparing to unpack .../138-libgtk-3-bin_3.24.38-2~deb12u1_amd64.deb ...
- Unpacking libgtk-3-bin (3.24.38-2~deb12u1) ...
- Selecting previously unselected package libhtml-tagset-perl.
- Preparing to unpack .../139-libhtml-tagset-perl_3.20-6_all.deb ...
- Unpacking libhtml-tagset-perl (3.20-6) ...
- Selecting previously unselected package libhtml-parser-perl:amd64.
- Preparing to unpack .../140-libhtml-parser-perl_3.81-1_amd64.deb ...
- Unpacking libhtml-parser-perl:amd64 (3.81-1) ...
- Selecting previously unselected package libio-html-perl.
- Preparing to unpack .../141-libio-html-perl_1.004-3_all.deb ...
- Unpacking libio-html-perl (1.004-3) ...
- Selecting previously unselected package liblwp-mediatypes-perl.
- Preparing to unpack .../142-liblwp-mediatypes-perl_6.04-2_all.deb ...
- Unpacking liblwp-mediatypes-perl (6.04-2) ...
- Selecting previously unselected package libhttp-message-perl.
- Preparing to unpack .../143-libhttp-message-perl_6.44-1_all.deb ...
- Unpacking libhttp-message-perl (6.44-1) ...
- Selecting previously unselected package libhtml-form-perl.
- Preparing to unpack .../144-libhtml-form-perl_6.11-1_all.deb ...
- Unpacking libhtml-form-perl (6.11-1) ...
- Selecting previously unselected package libhtml-tree-perl.
- Preparing to unpack .../145-libhtml-tree-perl_5.07-3_all.deb ...
- Unpacking libhtml-tree-perl (5.07-3) ...
- Selecting previously unselected package libhtml-format-perl.
- Preparing to unpack .../146-libhtml-format-perl_2.16-2_all.deb ...
- Unpacking libhtml-format-perl (2.16-2) ...
- Selecting previously unselected package libhttp-cookies-perl.
- Preparing to unpack .../147-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 .../148-libhttp-daemon-perl_6.16-1_all.deb ...
- Unpacking libhttp-daemon-perl (6.16-1) ...
- Selecting previously unselected package libhttp-negotiate-perl.
- Preparing to unpack .../149-libhttp-negotiate-perl_6.01-2_all.deb ...
- Unpacking libhttp-negotiate-perl (6.01-2) ...
- Selecting previously unselected package libicu-dev:amd64.
- Preparing to unpack .../150-libicu-dev_72.1-3_amd64.deb ...
- Unpacking libicu-dev:amd64 (72.1-3) ...
- Selecting previously unselected package perl-openssl-defaults:amd64.
- Preparing to unpack .../151-perl-openssl-defaults_7+b1_amd64.deb ...
- Unpacking perl-openssl-defaults:amd64 (7+b1) ...
- Selecting previously unselected package libnet-ssleay-perl:amd64.
- Preparing to unpack .../152-libnet-ssleay-perl_1.92-2+b1_amd64.deb ...
- Unpacking libnet-ssleay-perl:amd64 (1.92-2+b1) ...
- Selecting previously unselected package libio-socket-ssl-perl.
- Preparing to unpack .../153-libio-socket-ssl-perl_2.081-2_all.deb ...
- Unpacking libio-socket-ssl-perl (2.081-2) ...
- Selecting previously unselected package libio-stringy-perl.
- Preparing to unpack .../154-libio-stringy-perl_2.111-3_all.deb ...
- Unpacking libio-stringy-perl (2.111-3) ...
- Selecting previously unselected package libjpeg62-turbo-dev:amd64.
- Preparing to unpack .../155-libjpeg62-turbo-dev_1%3a2.1.5-2_amd64.deb ...
- Unpacking libjpeg62-turbo-dev:amd64 (1:2.1.5-2) ...
- Selecting previously unselected package libjpeg-dev:amd64.
- Preparing to unpack .../156-libjpeg-dev_1%3a2.1.5-2_amd64.deb ...
- Unpacking libjpeg-dev:amd64 (1:2.1.5-2) ...
- Selecting previously unselected package liblapack3:amd64.
- Preparing to unpack .../157-liblapack3_3.11.0-2_amd64.deb ...
- Unpacking liblapack3:amd64 (3.11.0-2) ...
- Selecting previously unselected package liblapack-dev:amd64.
- Preparing to unpack .../158-liblapack-dev_3.11.0-2_amd64.deb ...
- Unpacking liblapack-dev:amd64 (3.11.0-2) ...
- Selecting previously unselected package libnet-http-perl.
- Preparing to unpack .../159-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 .../160-libtry-tiny-perl_0.31-2_all.deb ...
- Unpacking libtry-tiny-perl (0.31-2) ...
- Selecting previously unselected package libwww-robotrules-perl.
- Preparing to unpack .../161-libwww-robotrules-perl_6.02-1_all.deb ...
- Unpacking libwww-robotrules-perl (6.02-1) ...
- Selecting previously unselected package libwww-perl.
- Preparing to unpack .../162-libwww-perl_6.68-1_all.deb ...
- Unpacking libwww-perl (6.68-1) ...
- Selecting previously unselected package liblwp-protocol-https-perl.
- Preparing to unpack .../163-liblwp-protocol-https-perl_6.10-1_all.deb ...
- Unpacking liblwp-protocol-https-perl (6.10-1) ...
- Selecting previously unselected package liblzma-dev:amd64.
- Preparing to unpack .../164-liblzma-dev_5.4.1-0.2_amd64.deb ...
- Unpacking liblzma-dev:amd64 (5.4.1-0.2) ...
- Selecting previously unselected package libnet-smtp-ssl-perl.
- Preparing to unpack .../165-libnet-smtp-ssl-perl_1.04-2_all.deb ...
- Unpacking libnet-smtp-ssl-perl (1.04-2) ...
- Selecting previously unselected package libmailtools-perl.
- Preparing to unpack .../166-libmailtools-perl_2.21-2_all.deb ...
- Unpacking libmailtools-perl (2.21-2) ...
- Selecting previously unselected package libncurses6:amd64.
- Preparing to unpack .../167-libncurses6_6.4-4_amd64.deb ...
- Unpacking libncurses6:amd64 (6.4-4) ...
- Selecting previously unselected package libncurses-dev:amd64.
- Preparing to unpack .../168-libncurses-dev_6.4-4_amd64.deb ...
- Unpacking libncurses-dev:amd64 (6.4-4) ...
- Selecting previously unselected package libncurses5-dev:amd64.
- Preparing to unpack .../169-libncurses5-dev_6.4-4_amd64.deb ...
- Unpacking libncurses5-dev:amd64 (6.4-4) ...
- Selecting previously unselected package libxml-parser-perl.
- Preparing to unpack .../170-libxml-parser-perl_2.46-4_amd64.deb ...
- Unpacking libxml-parser-perl (2.46-4) ...
- Selecting previously unselected package libxml-twig-perl.
- Preparing to unpack .../171-libxml-twig-perl_1%3a3.52-2_all.deb ...
- Unpacking libxml-twig-perl (1:3.52-2) ...
- Selecting previously unselected package libnet-dbus-perl.
- Preparing to unpack .../172-libnet-dbus-perl_1.2.0-2_amd64.deb ...
- Unpacking libnet-dbus-perl (1.2.0-2) ...
- Selecting previously unselected package libpaper1:amd64.
- Preparing to unpack .../173-libpaper1_1.1.29_amd64.deb ...
- Unpacking libpaper1:amd64 (1.1.29) ...
- Selecting previously unselected package libpaper-utils.
- Preparing to unpack .../174-libpaper-utils_1.1.29_amd64.deb ...
- Unpacking libpaper-utils (1.1.29) ...
- Selecting previously unselected package libpcre16-3:amd64.
- Preparing to unpack .../175-libpcre16-3_2%3a8.39-15_amd64.deb ...
- Unpacking libpcre16-3:amd64 (2:8.39-15) ...
- Selecting previously unselected package libpcre2-16-0:amd64.
- Preparing to unpack .../176-libpcre2-16-0_10.42-1_amd64.deb ...
- Unpacking libpcre2-16-0:amd64 (10.42-1) ...
- Selecting previously unselected package libpcre2-posix3:amd64.
- Preparing to unpack .../177-libpcre2-posix3_10.42-1_amd64.deb ...
- Unpacking libpcre2-posix3:amd64 (10.42-1) ...
- Selecting previously unselected package libpcre2-dev:amd64.
- Preparing to unpack .../178-libpcre2-dev_10.42-1_amd64.deb ...
- Unpacking libpcre2-dev:amd64 (10.42-1) ...
- Selecting previously unselected package libpcre3:amd64.
- Preparing to unpack .../179-libpcre3_2%3a8.39-15_amd64.deb ...
- Unpacking libpcre3:amd64 (2:8.39-15) ...
- Selecting previously unselected package libpcre32-3:amd64.
- Preparing to unpack .../180-libpcre32-3_2%3a8.39-15_amd64.deb ...
- Unpacking libpcre32-3:amd64 (2:8.39-15) ...
- Selecting previously unselected package libpcrecpp0v5:amd64.
- Preparing to unpack .../181-libpcrecpp0v5_2%3a8.39-15_amd64.deb ...
- Unpacking libpcrecpp0v5:amd64 (2:8.39-15) ...
- Selecting previously unselected package libpcre3-dev:amd64.
- Preparing to unpack .../182-libpcre3-dev_2%3a8.39-15_amd64.deb ...
- Unpacking libpcre3-dev:amd64 (2:8.39-15) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../183-libpkgconf3_1.8.1-1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-1) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../184-zlib1g-dev_1%3a1.2.13.dfsg-1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.2.13.dfsg-1) ...
- Selecting previously unselected package libpng-dev:amd64.
- Preparing to unpack .../185-libpng-dev_1.6.39-2_amd64.deb ...
- Unpacking libpng-dev:amd64 (1.6.39-2) ...
- Selecting previously unselected package libpng-tools.
- Preparing to unpack .../186-libpng-tools_1.6.39-2_amd64.deb ...
- Unpacking libpng-tools (1.6.39-2) ...
- Selecting previously unselected package libreadline-dev:amd64.
- Preparing to unpack .../187-libreadline-dev_8.2-1.3_amd64.deb ...
- Unpacking libreadline-dev:amd64 (8.2-1.3) ...
- Selecting previously unselected package librsvg2-2:amd64.
- Preparing to unpack .../188-librsvg2-2_2.54.7+dfsg-1~deb12u1_amd64.deb ...
- Unpacking librsvg2-2:amd64 (2.54.7+dfsg-1~deb12u1) ...
- Selecting previously unselected package librsvg2-common:amd64.
- Preparing to unpack .../189-librsvg2-common_2.54.7+dfsg-1~deb12u1_amd64.deb ...
- Unpacking librsvg2-common:amd64 (2.54.7+dfsg-1~deb12u1) ...
- Selecting previously unselected package libtcl8.6:amd64.
- Preparing to unpack .../190-libtcl8.6_8.6.13+dfsg-2_amd64.deb ...
- Unpacking libtcl8.6:amd64 (8.6.13+dfsg-2) ...
- Selecting previously unselected package libtext-iconv-perl:amd64.
- Preparing to unpack .../191-libtext-iconv-perl_1.7-8_amd64.deb ...
- Unpacking libtext-iconv-perl:amd64 (1.7-8) ...
- Selecting previously unselected package libtie-ixhash-perl.
- Preparing to unpack .../192-libtie-ixhash-perl_1.23-4_all.deb ...
- Unpacking libtie-ixhash-perl (1.23-4) ...
- Selecting previously unselected package libxft2:amd64.
- Preparing to unpack .../193-libxft2_2.3.6-1_amd64.deb ...
- Unpacking libxft2:amd64 (2.3.6-1) ...
- Selecting previously unselected package libxss1:amd64.
- Preparing to unpack .../194-libxss1_1%3a1.2.3-1_amd64.deb ...
- Unpacking libxss1:amd64 (1:1.2.3-1) ...
- Selecting previously unselected package libtk8.6:amd64.
- Preparing to unpack .../195-libtk8.6_8.6.13-2_amd64.deb ...
- Unpacking libtk8.6:amd64 (8.6.13-2) ...
- Selecting previously unselected package libx11-protocol-perl.
- Preparing to unpack .../196-libx11-protocol-perl_0.56-9_all.deb ...
- Unpacking libx11-protocol-perl (0.56-9) ...
- Selecting previously unselected package libxt6:amd64.
- Preparing to unpack .../197-libxt6_1%3a1.2.1-1.1_amd64.deb ...
- Unpacking libxt6:amd64 (1:1.2.1-1.1) ...
- Selecting previously unselected package libxmu6:amd64.
- Preparing to unpack .../198-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 .../199-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 .../200-libxcb-shape0_1.15-1_amd64.deb ...
- Unpacking libxcb-shape0:amd64 (1.15-1) ...
- Selecting previously unselected package libxkbfile1:amd64.
- Preparing to unpack .../201-libxkbfile1_1%3a1.1.0-1_amd64.deb ...
- Unpacking libxkbfile1:amd64 (1:1.1.0-1) ...
- Selecting previously unselected package libxml-xpathengine-perl.
- Preparing to unpack .../202-libxml-xpathengine-perl_0.14-2_all.deb ...
- Unpacking libxml-xpathengine-perl (0.14-2) ...
- Selecting previously unselected package libxv1:amd64.
- Preparing to unpack .../203-libxv1_2%3a1.0.11-1.1_amd64.deb ...
- Unpacking libxv1:amd64 (2:1.0.11-1.1) ...
- Selecting previously unselected package libxxf86dga1:amd64.
- Preparing to unpack .../204-libxxf86dga1_2%3a1.1.5-1_amd64.deb ...
- Unpacking libxxf86dga1:amd64 (2:1.1.5-1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../205-pkgconf-bin_1.8.1-1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../206-pkgconf_1.8.1-1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../207-pkg-config_1.8.1-1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-1) ...
- Selecting previously unselected package zip.
- Preparing to unpack .../208-zip_3.0-13_amd64.deb ...
- Unpacking zip (3.0-13) ...
- Selecting previously unselected package xdg-utils.
- Preparing to unpack .../209-xdg-utils_1.1.3-4.1_all.deb ...
- Unpacking xdg-utils (1.1.3-4.1) ...
- Selecting previously unselected package r-base-core.
- Preparing to unpack .../210-r-base-core_4.2.2.20221110-2_amd64.deb ...
- Unpacking r-base-core (4.2.2.20221110-2) ...
- Selecting previously unselected package r-base-dev.
- Preparing to unpack .../211-r-base-dev_4.2.2.20221110-2_all.deb ...
- Unpacking r-base-dev (4.2.2.20221110-2) ...
- Selecting previously unselected package r-cran-boot.
- Preparing to unpack .../212-r-cran-boot_1.3-28.1-1_all.deb ...
- Unpacking r-cran-boot (1.3-28.1-1) ...
- Selecting previously unselected package r-cran-mass.
- Preparing to unpack .../213-r-cran-mass_7.3-58.2-1_amd64.deb ...
- Unpacking r-cran-mass (7.3-58.2-1) ...
- Selecting previously unselected package r-cran-class.
- Preparing to unpack .../214-r-cran-class_7.3-21-1_amd64.deb ...
- Unpacking r-cran-class (7.3-21-1) ...
- Selecting previously unselected package r-cran-cluster.
- Preparing to unpack .../215-r-cran-cluster_2.1.4-1_amd64.deb ...
- Unpacking r-cran-cluster (2.1.4-1) ...
- Selecting previously unselected package r-cran-codetools.
- Preparing to unpack .../216-r-cran-codetools_0.2-19-1_all.deb ...
- Unpacking r-cran-codetools (0.2-19-1) ...
- Selecting previously unselected package r-cran-foreign.
- Preparing to unpack .../217-r-cran-foreign_0.8.84-1_amd64.deb ...
- Unpacking r-cran-foreign (0.8.84-1) ...
- Selecting previously unselected package r-cran-kernsmooth.
- Preparing to unpack .../218-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 .../219-r-cran-lattice_0.20-45-3_amd64.deb ...
- Unpacking r-cran-lattice (0.20-45-3) ...
- Selecting previously unselected package r-cran-matrix.
- Preparing to unpack .../220-r-cran-matrix_1.5-3-1_amd64.deb ...
- Unpacking r-cran-matrix (1.5-3-1) ...
- Selecting previously unselected package r-cran-nlme.
- Preparing to unpack .../221-r-cran-nlme_3.1.162-1_amd64.deb ...
- Unpacking r-cran-nlme (3.1.162-1) ...
- Selecting previously unselected package r-cran-mgcv.
- Preparing to unpack .../222-r-cran-mgcv_1.8-41-1_amd64.deb ...
- Unpacking r-cran-mgcv (1.8-41-1) ...
- Selecting previously unselected package r-cran-nnet.
- Preparing to unpack .../223-r-cran-nnet_7.3-18-1_amd64.deb ...
- Unpacking r-cran-nnet (7.3-18-1) ...
- Selecting previously unselected package r-cran-survival.
- Preparing to unpack .../224-r-cran-survival_3.5-3-1_amd64.deb ...
- Unpacking r-cran-survival (3.5-3-1) ...
- Selecting previously unselected package r-cran-rpart.
- Preparing to unpack .../225-r-cran-rpart_4.1.19-1_amd64.deb ...
- Unpacking r-cran-rpart (4.1.19-1) ...
- Selecting previously unselected package r-cran-spatial.
- Preparing to unpack .../226-r-cran-spatial_7.3-16-1_amd64.deb ...
- Unpacking r-cran-spatial (7.3-16-1) ...
- Selecting previously unselected package r-doc-html.
- Preparing to unpack .../227-r-doc-html_4.2.2.20221110-2_all.deb ...
- Unpacking r-doc-html (4.2.2.20221110-2) ...
- Selecting previously unselected package r-recommended.
- Preparing to unpack .../228-r-recommended_4.2.2.20221110-2_all.deb ...
- Unpacking r-recommended (4.2.2.20221110-2) ...
- Selecting previously unselected package x11-utils.
- Preparing to unpack .../229-x11-utils_7.7+5_amd64.deb ...
- Unpacking x11-utils (7.7+5) ...
- Selecting previously unselected package x11-xserver-utils.
- Preparing to unpack .../230-x11-xserver-utils_7.7+9+b1_amd64.deb ...
- Unpacking x11-xserver-utils (7.7+9+b1) ...
- Selecting previously unselected package xdg-user-dirs.
- Preparing to unpack .../231-xdg-user-dirs_0.18-1_amd64.deb ...
- Unpacking xdg-user-dirs (0.18-1) ...
- Selecting previously unselected package libegl1:amd64.
- Preparing to unpack .../232-libegl1_1.6.0-1_amd64.deb ...
- Unpacking libegl1:amd64 (1.6.0-1) ...
- Selecting previously unselected package zutty.
- Preparing to unpack .../233-zutty_0.14.0.20230218+dfsg1-1_amd64.deb ...
- Unpacking zutty (0.14.0.20230218+dfsg1-1) ...
- Setting up libtext-iconv-perl:amd64 (1.7-8) ...
- Setting up libgraphite2-3:amd64 (1.3.14-1) ...
- Setting up libxcb-dri3-0:amd64 (1.15-1) ...
- Setting up liblcms2-2:amd64 (2.14-2) ...
- Setting up libpixman-1-0:amd64 (0.42.2-1) ...
- Setting up bzip2-doc (1.0.8-5) ...
- Setting up libwayland-server0:amd64 (1.21.0-1) ...
- Setting up libx11-xcb1:amd64 (2:1.8.4-2+deb12u2) ...
- Setting up libpciaccess0:amd64 (0.17-2) ...
- Setting up fontconfig (2.14.1-4) ...
- Regenerating fonts cache... 
- done.
- Setting up systemd-sysv (252.19-1~deb12u1) ...
- Setting up libtie-ixhash-perl (1.23-4) ...
- Setting up libxdamage1:amd64 (1:1.1.6-1) ...
- Setting up libicu72:amd64 (72.1-3) ...
- Setting up libxcb-xfixes0:amd64 (1.15-1) ...
- Setting up r-doc-html (4.2.2.20221110-2) ...
- Setting up libpcre16-3:amd64 (2:8.39-15) ...
- Setting up hicolor-icon-theme (0.17-2) ...
- Setting up libxi6:amd64 (2:1.8-1+b1) ...
- Setting up libfont-afm-perl (1.20-4) ...
- Setting up libxrender1:amd64 (1:0.9.10-1.1) ...
- Setting up libdatrie1:amd64 (0.2.13-2+b1) ...
- Setting up xdg-user-dirs (0.18-1) ...
- Setting up libpng-tools (1.6.39-2) ...
- Setting up libxcb-render0:amd64 (1.15-1) ...
- Setting up libclone-perl:amd64 (0.46-1) ...
- Setting up libglib2.0-0:amd64 (2.74.6-2) ...
- Setting up libglvnd0:amd64 (1.6.0-1) ...
- Setting up libio-stringy-perl (2.111-3) ...
- Setting up libhtml-tagset-perl (3.20-6) ...
- Setting up libauthen-sasl-perl (2.1600-3) ...
- Setting up libxcb-glx0:amd64 (1.15-1) ...
- Setting up liblwp-mediatypes-perl (6.04-2) ...
- Setting up libgdk-pixbuf2.0-common (2.42.10+dfsg-1) ...
- Setting up libxcb-shape0:amd64 (1.15-1) ...
- Setting up x11-common (1:7.7+23) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of restart.
- Setting up libtry-tiny-perl (0.31-2) ...
- Setting up libsensors-config (1:3.6.0-7.1) ...
- Setting up libxxf86dga1:amd64 (2:1.1.5-1) ...
- Setting up perl-openssl-defaults:amd64 (7+b1) ...
- Setting up libnss-systemd:amd64 (252.19-1~deb12u1) ...
- Setting up xkb-data (2.35.1-1) ...
- Setting up libencode-locale-perl (1.05-3) ...
- Setting up libxcb-shm0:amd64 (1.15-1) ...
- Setting up libcairo2:amd64 (1.16.0-7) ...
- Setting up libpcre2-16-0:amd64 (10.42-1) ...
- Setting up libcolord2:amd64 (1.4.6-2.2) ...
- Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ...
- Setting up libxcb-present0:amd64 (1.15-1) ...
- Setting up libdconf1:amd64 (0.40.0-4) ...
- Setting up libpcre3:amd64 (2:8.39-15) ...
- Setting up zip (3.0-13) ...
- Setting up libfontenc1:amd64 (1:1.1.4-1) ...
- Setting up libz3-4:amd64 (4.8.12-3.1) ...
- Setting up libpcre2-32-0:amd64 (10.42-1) ...
- Setting up libblas3:amd64 (3.11.0-2) ...
- 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.74.6-2) ...
- Setting up libpkgconf3:amd64 (1.8.1-1) ...
- Setting up libgles2:amd64 (1.6.0-1) ...
- Setting up libdata-dump-perl (1.25-1) ...
- Setting up libjpeg62-turbo-dev:amd64 (1:2.1.5-2) ...
- Setting up libepoxy0:amd64 (1.5.10-1) ...
- Setting up libxfixes3:amd64 (1:6.0.0-2) ...
- Setting up libxcb-sync1:amd64 (1.15-1) ...
- Setting up libipc-system-simple-perl (1.30-2) ...
- Setting up libxml-xpathengine-perl (0.14-2) ...
- Setting up aglfn (1.7+git20191031.4036a9c-2) ...
- Setting up libavahi-common-data:amd64 (0.8-10) ...
- Setting up libncurses6:amd64 (6.4-4) ...
- Setting up libdbus-1-3:amd64 (1.14.10-1~deb12u1) ...
- Setting up libfribidi0:amd64 (1.0.8-2.1) ...
- Setting up libxinerama1:amd64 (2:1.1.4-3) ...
- Setting up libxv1:amd64 (2:1.0.11-1.1) ...
- Setting up libpcre32-3:amd64 (2:8.39-15) ...
- Setting up systemd-timesyncd (252.19-1~deb12u1) ...
- Creating group 'systemd-timesync' with GID 997.
- Creating user 'systemd-timesync' (systemd Time Synchronization) with UID 997 and GID 997.
- 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-3) ...
- Setting up libxrandr2:amd64 (2:1.5.2-2+b1) ...
- Setting up libtcl8.6:amd64 (8.6.13+dfsg-2) ...
- Setting up icu-devtools (72.1-3) ...
- Setting up pkgconf-bin (1.8.1-1) ...
- Setting up libsensors5:amd64 (1:3.6.0-7.1) ...
- Setting up libglapi-mesa:amd64 (22.3.6-1+deb12u1) ...
- Setting up libgfortran5:amd64 (12.2.0-14) ...
- Setting up libtimedate-perl (2.3300-2) ...
- Setting up libregexp-ipv6-perl (0.03-3) ...
- Setting up liblzma-dev:amd64 (5.4.1-0.2) ...
- Setting up libxcb-dri2-0:amd64 (1.15-1) ...
- Setting up zlib1g-dev:amd64 (1:1.2.13.dfsg-1) ...
- Setting up libpcre2-posix3:amd64 (10.42-1) ...
- Setting up sensible-utils (0.0.17+nmu1) ...
- Setting up libxshmfence1:amd64 (1.3-1) ...
- Setting up at-spi2-common (2.46.0-5) ...
- Setting up libxcb-randr0:amd64 (1.15-1) ...
- Setting up dbus-session-bus-common (1.14.10-1~deb12u1) ...
- Setting up liblua5.4-0:amd64 (5.4.4-3) ...
- Setting up libharfbuzz0b:amd64 (6.0.0+dfsg-3) ...
- Setting up libthai-data (0.1.29-1) ...
- Setting up libcairo-gobject2:amd64 (1.16.0-7) ...
- Setting up libatk1.0-0:amd64 (2.46.0-5) ...
- Setting up libwayland-egl1:amd64 (1.21.0-1) ...
- Setting up libxss1:amd64 (1:1.2.3-1) ...
- Setting up libxkbfile1:amd64 (1:1.1.0-1) ...
- Setting up dbus-system-bus-common (1.14.10-1~deb12u1) ...
- Setting up libdrm-common (2.4.114-1) ...
- Setting up libelf1:amd64 (0.188-2.1) ...
- Setting up libxcomposite1:amd64 (1:0.4.5-1) ...
- Setting up libicu-dev:amd64 (72.1-3) ...
- Setting up libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ...
- Setting up xdg-utils (1.1.3-4.1) ...
- update-alternatives: using /usr/bin/xdg-open to provide /usr/bin/open (open) in auto mode
- Setting up liburi-perl (5.17-1) ...
- Setting up dbus-bin (1.14.10-1~deb12u1) ...
- Setting up libx11-protocol-perl (0.56-9) ...
- Setting up libblas-dev:amd64 (3.11.0-2) ...
- 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 libbz2-dev:amd64 (1.0.8-5+b1) ...
- Setting up libxkbcommon0:amd64 (1.5.0-1) ...
- Setting up libwayland-client0:amd64 (1.21.0-1) ...
- Setting up libnet-ssleay-perl:amd64 (1.92-2+b1) ...
- Setting up libpcrecpp0v5:amd64 (2:8.39-15) ...
- Setting up gnuplot-data (5.4.4+dfsg1-2) ...
- Setting up libice6:amd64 (2:1.0.10-1) ...
- Setting up libhttp-date-perl (6.05-2) ...
- Setting up liblapack3:amd64 (3.11.0-2) ...
- 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.6-1) ...
- Setting up libncurses-dev:amd64 (6.4-4) ...
- Setting up libfile-basedir-perl (0.09-2) ...
- Setting up libfile-listing-perl (6.15-1) ...
- Setting up libpcre2-dev:amd64 (10.42-1) ...
- Setting up libpcre3-dev:amd64 (2:8.39-15) ...
- Setting up libxtst6:amd64 (2:1.2.3-1.1) ...
- Setting up libtk8.6:amd64 (8.6.13-2) ...
- Setting up libxcursor1:amd64 (1:1.2.1-1) ...
- Setting up libpng-dev:amd64 (1.6.39-2) ...
- Setting up libavahi-common3:amd64 (0.8-10) ...
- Setting up libjpeg-dev:amd64 (1:2.1.5-2) ...
- Setting up libnet-http-perl (6.22-1) ...
- Setting up libgfortran-12-dev:amd64 (12.2.0-14) ...
- Setting up dbus-daemon (1.14.10-1~deb12u1) ...
- Setting up libatspi2.0-0:amd64 (2.46.0-5) ...
- Setting up libreadline-dev:amd64 (8.2-1.3) ...
- Setting up libwxbase3.2-1:amd64 (3.2.2+dfsg-2) ...
- Setting up pkgconf:amd64 (1.8.1-1) ...
- Setting up libatk-bridge2.0-0:amd64 (2.46.0-5) ...
- Setting up libthai0:amd64 (0.1.29-1) ...
- Setting up gfortran-12 (12.2.0-14) ...
- Setting up dbus (1.14.10-1~deb12u1) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up shared-mime-info (2.2-1) ...
- Setting up liblapack-dev:amd64 (3.11.0-2) ...
- 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 pkg-config:amd64 (1.8.1-1) ...
- Setting up ucf (3.0043+nmu1) ...
- Setting up libfile-desktopentry-perl (0.22-3) ...
- Setting up libwww-robotrules-perl (6.02-1) ...
- Setting up libdrm2:amd64 (2.4.114-1+b1) ...
- Setting up libwayland-cursor0:amd64 (1.21.0-1) ...
- Setting up libhtml-parser-perl:amd64 (3.81-1) ...
- Setting up libllvm15:amd64 (1:15.0.6-4+b1) ...
- Setting up libncurses5-dev:amd64 (6.4-4) ...
- Setting up libpam-systemd:amd64 (252.19-1~deb12u1) ...
- Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+b1) ...
- Setting up libsm6:amd64 (2:1.2.3-1) ...
- Setting up libavahi-client3:amd64 (0.8-10) ...
- Setting up libio-socket-ssl-perl (2.081-2) ...
- Setting up libhttp-message-perl (6.44-1) ...
- Setting up libdrm-amdgpu1:amd64 (2.4.114-1+b1) ...
- Setting up libhtml-form-perl (6.11-1) ...
- Setting up libfile-mimeinfo-perl (0.33-1) ...
- Setting up libpaper1:amd64 (1.1.29) ...
- 
- Creating config file /etc/papersize with new version
- Setting up gtk-update-icon-cache (3.24.38-2~deb12u1) ...
- Setting up libhttp-negotiate-perl (6.01-2) ...
- Setting up libdrm-nouveau2:amd64 (2.4.114-1+b1) ...
- Setting up libgbm1:amd64 (22.3.6-1+deb12u1) ...
- Setting up libhttp-cookies-perl (6.10-1) ...
- Setting up libdrm-radeon1:amd64 (2.4.114-1+b1) ...
- Setting up libhtml-tree-perl (5.07-3) ...
- Setting up libpango-1.0-0:amd64 (1.50.12+ds-1) ...
- Setting up libdrm-intel1:amd64 (2.4.114-1+b1) ...
- Setting up libgl1-mesa-dri:amd64 (22.3.6-1+deb12u1) ...
- Setting up libhtml-format-perl (2.16-2) ...
- Setting up libpaper-utils (1.1.29) ...
- Setting up gfortran (4:12.2.0-3) ...
- update-alternatives: using /usr/bin/gfortran to provide /usr/bin/f95 (f95) in auto mode
- update-alternatives: using /usr/bin/gfortran to provide /usr/bin/f77 (f77) in auto mode
- Setting up dbus-user-session (1.14.10-1~deb12u1) ...
- Setting up libegl-mesa0:amd64 (22.3.6-1+deb12u1) ...
- Setting up libnet-smtp-ssl-perl (1.04-2) ...
- Setting up adwaita-icon-theme (43-1) ...
- 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 libmailtools-perl (2.21-2) ...
- Setting up libnotify4:amd64 (0.8.1-1) ...
- Setting up libxt6:amd64 (1:1.2.1-1.1) ...
- Setting up libcups2:amd64 (2.4.2-3+deb12u5) ...
- Setting up libhttp-daemon-perl (6.16-1) ...
- Setting up libgdk-pixbuf2.0-bin (2.42.10+dfsg-1+b1) ...
- Setting up libegl1:amd64 (1.6.0-1) ...
- Setting up libpangoft2-1.0-0:amd64 (1.50.12+ds-1) ...
- Setting up libpangocairo-1.0-0:amd64 (1.50.12+ds-1) ...
- Setting up libxmu6:amd64 (2:1.1.3-3) ...
- Setting up libglx-mesa0:amd64 (22.3.6-1+deb12u1) ...
- Setting up libglx0:amd64 (1.6.0-1) ...
- Setting up dconf-service (0.40.0-4) ...
- Setting up libxaw7:amd64 (2:1.0.14-1) ...
- Setting up x11-xserver-utils (7.7+9+b1) ...
- Setting up librsvg2-2:amd64 (2.54.7+dfsg-1~deb12u1) ...
- Setting up libgl1:amd64 (1.6.0-1) ...
- Setting up r-base-core (4.2.2.20221110-2) ...
- 
- Creating config file /etc/R/Renviron with new version
- Setting up librsvg2-common:amd64 (2.54.7+dfsg-1~deb12u1) ...
- Setting up r-cran-lattice (0.20-45-3) ...
- Setting up r-cran-nlme (3.1.162-1) ...
- Setting up zutty (0.14.0.20230218+dfsg1-1) ...
- update-alternatives: using /usr/bin/zutty to provide /usr/bin/x-terminal-emulator (x-terminal-emulator) in auto mode
- Setting up r-cran-cluster (2.1.4-1) ...
- Setting up x11-utils (7.7+5) ...
- Setting up r-cran-nnet (7.3-18-1) ...
- Setting up r-cran-codetools (0.2-19-1) ...
- Setting up r-cran-boot (1.3-28.1-1) ...
- Setting up r-base-dev (4.2.2.20221110-2) ...
- Setting up dconf-gsettings-backend:amd64 (0.40.0-4) ...
- Setting up r-cran-spatial (7.3-16-1) ...
- Setting up r-cran-mass (7.3-58.2-1) ...
- Setting up r-cran-foreign (0.8.84-1) ...
- Setting up r-cran-matrix (1.5-3-1) ...
- Setting up r-cran-kernsmooth (2.23-20-1) ...
- Setting up r-cran-mgcv (1.8-41-1) ...
- Setting up libgtk-3-common (3.24.38-2~deb12u1) ...
- Setting up gsettings-desktop-schemas (43.0-1) ...
- Setting up r-cran-class (7.3-21-1) ...
- Setting up libgtk-3-0:amd64 (3.24.38-2~deb12u1) ...
- Setting up r-cran-survival (3.5-3-1) ...
- Setting up libgtk-3-bin (3.24.38-2~deb12u1) ...
- Setting up at-spi2-core (2.46.0-5) ...
- Setting up libwxgtk3.2-1:amd64 (3.2.2+dfsg-2) ...
- Setting up r-cran-rpart (4.1.19-1) ...
- Setting up r-recommended (4.2.2.20221110-2) ...
- Setting up gnuplot-x11 (5.4.4+dfsg1-2+b2) ...
- update-alternatives: using /usr/bin/gnuplot-x11 to provide /usr/bin/gnuplot (gnuplot) in auto mode
- Setting up liblwp-protocol-https-perl (6.10-1) ...
- Setting up libwww-perl (6.68-1) ...
- Setting up libxml-parser-perl (2.46-4) ...
- Setting up libxml-twig-perl (1:3.52-2) ...
- Setting up libnet-dbus-perl (1.2.0-2) ...
- Processing triggers for libc-bin (2.36-9+deb12u3) ...
- Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+b1) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved batteries.3.7.2  (cached)
-> retrieved camlp-streams.5.0.1  (cached)
-> retrieved cpm.12.2.0  (cached)
-> retrieved dolog.6.0.0  (cached)
-> installed conf-gnuplot.0.1
-> installed conf-r.1.0.0
-> retrieved dune.3.13.1  (cached)
-> retrieved minicli.5.0.2  (cached)
-> retrieved num.1.5  (cached)
-> retrieved ocamlfind.1.9.6  (cached)
-> retrieved omlr.1.0.3  (cached)
-> installed num.1.5
-> installed ocamlfind.1.9.6
-> installed dune.3.13.1
-> installed minicli.5.0.2
-> installed dolog.6.0.0
-> installed camlp-streams.5.0.1
-> installed batteries.3.7.2
-> installed cpm.12.2.0
-> installed omlr.1.0.3
Done.
# Run eval $(opam env) to update the current shell environment
2024-02-08 11:56.08 ---> saved as "bbbb275aa8926b2fcb7e6aabbd9528d5ec9379a301cd495f009ff3d912464b9e"

/home/opam: (env OPAMCRITERIA +removed,+count[version-lag,solution])

/home/opam: (env OPAMFIXUPCRITERIA +removed,+count[version-lag,solution])

/home/opam: (env OPAMUPGRADECRITERIA +removed,+count[version-lag,solution])

/home/opam: (env OPAMEXTERNALSOLVER builtin-0install)

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall omlr.1.0.3;\
                        \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 \"\\\"debian-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'omlr.1.0.3' && 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:
=== remove 1 package
  - remove    camlp-streams 5.0.1            [conflicts with dune]
=== downgrade 7 packages
  - downgrade batteries     3.7.2 to 2.10.0  [required by omlr]
  - downgrade cpm           12.2.0 to 10.2.1 [required by omlr]
  - downgrade dolog         6.0.0 to 4.0.0   [required by omlr]
  - downgrade dune          3.13.1 to 1.11.0 [required by omlr]
  - downgrade minicli       5.0.2 to 5.0.0   [required by omlr]
  - downgrade num           1.5 to 1.0       [required by batteries]
  - downgrade ocamlfind     1.9.6 to 1.8.1   [required by batteries]
=== recompile 1 package
  - recompile omlr          1.0.3 (pinned)
=== install 2 packages
  - install   conf-m4       1                [required by ocamlfind]
  - install   ocamlbuild    0.14.0           [required by batteries]

The following system packages will first need to be installed:
    m4

<><> 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" "m4"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package m4.
- (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 ... 32981 files and directories currently installed.)
- Preparing to unpack .../archives/m4_1.4.19-3_amd64.deb ...
- Unpacking m4 (1.4.19-3) ...
- Setting up m4 (1.4.19-3) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved batteries.2.10.0  (https://github.com/ocaml-batteries-team/batteries-included/archive/v2.10.0.tar.gz)
-> installed conf-m4.1
-> retrieved cpm.10.2.1  (https://github.com/UnixJunkie/cpmlib/archive/v10.2.1.tar.gz)
-> retrieved dolog.4.0.0  (cached)
-> retrieved dune.1.11.0  (https://github.com/ocaml/dune/releases/download/1.11.0/dune-build-info-1.11.0.tbz)
-> retrieved minicli.5.0.0  (https://github.com/UnixJunkie/minicli/archive/v5.0.0.tar.gz)
-> retrieved num.1.0  (cached)
-> retrieved ocamlbuild.0.14.0  (cached)
-> retrieved ocamlfind.1.8.1  (cached)
-> retrieved omlr.1.0.3  (cached)
-> installed ocamlbuild.0.14.0
-> removed   omlr.1.0.3
-> removed   cpm.12.2.0
-> removed   batteries.3.7.2
-> removed   camlp-streams.5.0.1
-> removed   dolog.6.0.0
-> removed   minicli.5.0.2
-> removed   dune.3.13.1
-> removed   num.1.5
-> removed   ocamlfind.1.9.6
-> installed dune.1.11.0
-> installed ocamlfind.1.8.1
-> installed dolog.4.0.0
-> installed minicli.5.0.0
-> installed num.1.0
-> installed batteries.2.10.0
-> installed cpm.10.2.1
-> installed omlr.1.0.3
Done.
# Run eval $(opam env) to update the current shell environment
2024-02-08 11:57.19 ---> saved as "6a4b71ad808dc9e850f5178ff7588e801bbddd1c03cc8fa26ae9aadc2fa7d13b"
Job succeeded
2024-02-08 11:57.26: Job succeeded