(for PR #24267)
2025-11-10 11:02.18: New job: test orrandomForest.2.0.1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/24267/head (41de505ec8ff3637ab3cb06a41ccbc29683f566c)
on ubuntu-24.04-ocaml-4.14/riscv64
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-24.04-ocaml-4.14@sha256:a4b0f03526a93faaa43334fd9da2b4b9d7cf267f7ac19a086c086710a2ea0a35
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.2.0.1 2.0.1
RUN opam reinstall orrandomForest.2.0.1; \
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-24.04\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'orrandomForest.2.0.1' && 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.2.0.1) || true
RUN opam reinstall --with-test --verbose orrandomForest.2.0.1; \
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-24.04\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'orrandomForest.2.0.1' && 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.18: Using cache hint "ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:a4b0f03526a93faaa43334fd9da2b4b9d7cf267f7ac19a086c086710a2ea0a35-orrandomForest.2.0.1-41de505ec8ff3637ab3cb06a41ccbc29683f566c"
2025-11-10 11:02.18: Using OBuilder spec:
((from ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:a4b0f03526a93faaa43334fd9da2b4b9d7cf267f7ac19a086c086710a2ea0a35)
(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.2.0.1 2.0.1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall orrandomForest.2.0.1;\
\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-24.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.2.0.1' && 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.2.0.1) || true"))
(run (shell "opam reinstall --with-test --verbose orrandomForest.2.0.1;\
\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-24.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.2.0.1' && 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.18: Waiting for resource in pool OCluster
2025-11-10 11:02.19: Waiting for worker…
2025-11-10 20:21.25: Got resource from pool OCluster
Building on riscv-bm-04.sw.ci.dev
All commits already cached
Updating files: 14% (2646/18702)
Updating files: 15% (2806/18702)
Updating files: 16% (2993/18702)
Updating files: 17% (3180/18702)
Updating files: 18% (3367/18702)
Updating files: 19% (3554/18702)
Updating files: 20% (3741/18702)
Updating files: 21% (3928/18702)
Updating files: 22% (4115/18702)
Updating files: 23% (4302/18702)
Updating files: 24% (4489/18702)
Updating files: 25% (4676/18702)
Updating files: 26% (4863/18702)
Updating files: 26% (4873/18702)
Updating files: 27% (5050/18702)
Updating files: 28% (5237/18702)
Updating files: 29% (5424/18702)
Updating files: 30% (5611/18702)
Updating files: 31% (5798/18702)
Updating files: 32% (5985/18702)
Updating files: 33% (6172/18702)
Updating files: 34% (6359/18702)
Updating files: 35% (6546/18702)
Updating files: 36% (6733/18702)
Updating files: 37% (6920/18702)
Updating files: 38% (7107/18702)
Updating files: 38% (7146/18702)
Updating files: 39% (7294/18702)
Updating files: 40% (7481/18702)
Updating files: 41% (7668/18702)
Updating files: 42% (7855/18702)
Updating files: 43% (8042/18702)
Updating files: 44% (8229/18702)
Updating files: 45% (8416/18702)
Updating files: 46% (8603/18702)
Updating files: 47% (8790/18702)
Updating files: 48% (8977/18702)
Updating files: 49% (9164/18702)
Updating files: 49% (9296/18702)
Updating files: 50% (9351/18702)
Updating files: 51% (9539/18702)
Updating files: 52% (9726/18702)
Updating files: 53% (9913/18702)
Updating files: 54% (10100/18702)
Updating files: 55% (10287/18702)
Updating files: 56% (10474/18702)
Updating files: 57% (10661/18702)
Updating files: 58% (10848/18702)
Updating files: 59% (11035/18702)
Updating files: 60% (11222/18702)
Updating files: 60% (11377/18702)
Updating files: 61% (11409/18702)
Updating files: 62% (11596/18702)
Updating files: 63% (11783/18702)
Updating files: 64% (11970/18702)
Updating files: 65% (12157/18702)
Updating files: 66% (12344/18702)
Updating files: 67% (12531/18702)
Updating files: 68% (12718/18702)
Updating files: 69% (12905/18702)
Updating files: 70% (13092/18702)
Updating files: 71% (13279/18702)
Updating files: 72% (13466/18702)
Updating files: 73% (13653/18702)
Updating files: 73% (13690/18702)
Updating files: 74% (13840/18702)
Updating files: 75% (14027/18702)
Updating files: 76% (14214/18702)
Updating files: 77% (14401/18702)
Updating files: 78% (14588/18702)
Updating files: 79% (14775/18702)
Updating files: 80% (14962/18702)
Updating files: 81% (15149/18702)
Updating files: 82% (15336/18702)
Updating files: 83% (15523/18702)
Updating files: 84% (15710/18702)
Updating files: 85% (15897/18702)
Updating files: 85% (15935/18702)
Updating files: 86% (16084/18702)
Updating files: 87% (16271/18702)
Updating files: 88% (16458/18702)
Updating files: 89% (16645/18702)
Updating files: 90% (16832/18702)
Updating files: 91% (17019/18702)
Updating files: 92% (17206/18702)
Updating files: 93% (17393/18702)
Updating files: 94% (17580/18702)
Updating files: 95% (17767/18702)
Updating files: 96% (17954/18702)
Updating files: 97% (18141/18702)
Updating files: 97% (18269/18702)
Updating files: 98% (18328/18702)
Updating files: 99% (18515/18702)
Updating files: 100% (18702/18702)
Updating files: 100% (18702/18702), done.
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-24.04-ocaml-4.14@sha256:a4b0f03526a93faaa43334fd9da2b4b9d7cf267f7ac19a086c086710a2ea0a35)
Unable to find image 'ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:a4b0f03526a93faaa43334fd9da2b4b9d7cf267f7ac19a086c086710a2ea0a35' locally
docker.io/ocaml/opam@sha256:a4b0f03526a93faaa43334fd9da2b4b9d7cf267f7ac19a086c086710a2ea0a35: Pulling from ocaml/opam
ff47a256ba51: Already exists
07f865b4eced: Already exists
e5a6a81924d1: Already exists
d2993474f6c4: Already exists
be37240cea2e: Already exists
4c7a4c780d69: Already exists
949ffaae844f: Already exists
65007da87cd6: Already exists
376b4433eeaf: Already exists
e4c73e6a1fc1: Already exists
0f0889c64018: Already exists
436990646fd8: Already exists
cb9bd38ee801: Already exists
448d2014f999: Already exists
ea72d1803671: Already exists
3f795e13b111: Already exists
3f795e13b111: Already exists
2137184b4e70: Already exists
ab9789196f84: Already exists
dbbe96a6bdee: Already exists
fb6f4e997127: Already exists
4f4fb700ef54: Already exists
78488e87ab1d: Already exists
1a2baa16ab41: Already exists
52441bed4375: Already exists
58cb70dff4c6: Already exists
43e3d939c3f3: Already exists
5ce97af1f60e: Already exists
8ffc91fd116a: Already exists
ff8c038c8028: Already exists
d57176bef7d7: Already exists
89b975f1d5f3: Already exists
921cd587cd96: Already exists
ae8ab1c95bad: Already exists
1fe2a75aa09d: Already exists
831d70711341: Already exists
07812c06f386: Already exists
859e3a9917cd: Already exists
25a638362d2e: Already exists
e81b913ad5a4: Already exists
91b5ea018c62: Pulling fs layer
fc1c54249f4d: Pulling fs layer
3530f0adc451: Pulling fs layer
bc237df4bbe3: Pulling fs layer
bc237df4bbe3: Waiting
3530f0adc451: Verifying Checksum
3530f0adc451: Download complete
fc1c54249f4d: Verifying Checksum
fc1c54249f4d: Download complete
bc237df4bbe3: Verifying Checksum
bc237df4bbe3: Download complete
91b5ea018c62: Verifying Checksum
91b5ea018c62: Download complete
91b5ea018c62: Pull complete
fc1c54249f4d: Pull complete
3530f0adc451: Pull complete
bc237df4bbe3: Pull complete
Digest: sha256:a4b0f03526a93faaa43334fd9da2b4b9d7cf267f7ac19a086c086710a2ea0a35
Status: Downloaded newer image for ocaml/opam@sha256:a4b0f03526a93faaa43334fd9da2b4b9d7cf267f7ac19a086c086710a2ea0a35
2025-11-10 20:21.39 ---> using "dc7796d32c406e97924e871350dc298f7be232a86ff5c28a159f9350d060021c" 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 20:21.39 ---> using "037ce974ac72ee5f9c8344ace179b7f65b68e76d95845855df35df81e4ede315" 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 20:21.39 ---> using "4c30fffaa4bde6bf8370499b5854940ea0efe0048ff8c6c4246d52871702c6d9" 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=riscv64 os=linux os-distribution=ubuntu os-version=24.04
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 3
# 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 20:21.39 ---> using "272d9cb94d92ef110026429807c036170de8ce8b85763b50ca5c89b9c884db32" 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 20:21.39 ---> using "56981ccf6b5038ab6b94817b31b9196c0b943550a3ff0a96338ea302a3b93c4b" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-11-10 20:21.44 ---> using "36aabe8ca62828ef87af0fae193672c49a588e68fcfee067b6c634f5fe3108a5" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-10 20:21.44 ---> using "0cd564baa5edec7faddf4500e54783bdfa5386eb1e3cc90edad5b623a6f775f0" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://ports.ubuntu.com/ubuntu-ports noble InRelease
- Get:2 http://ports.ubuntu.com/ubuntu-ports noble-updates InRelease [126 kB]
- Get:3 http://ports.ubuntu.com/ubuntu-ports noble-backports InRelease [126 kB]
- Get:4 http://ports.ubuntu.com/ubuntu-ports noble-security InRelease [126 kB]
- Fetched 378 kB in 2s (247 kB/s)
- Reading package lists...
-
2025-11-10 20:21.44 ---> using "500df4ffb40722bf0527526f4becbf84f4d3fae41a1e3ce23362f5edac7561d5" from cache
/home/opam: (run (shell "opam pin add -k version -yn orrandomForest.2.0.1 2.0.1"))
orrandomForest is now pinned to version 2.0.1
2025-11-10 20:21.44 ---> using "85441e712775d041a191f00881db6902eabb85d1010a18bfb6448f8f37837a72" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall orrandomForest.2.0.1;\
\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-24.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.2.0.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
orrandomForest.2.0.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 4 packages
- install conf-r 1.0.0 [required by orrandomForest]
- install dolog 6.0.0 [required by orrandomForest]
- install dune 3.20.2 [required by orrandomForest]
- install orrandomForest 2.0.1 (pinned)
The following system packages will first need to be installed:
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" "r-base-core"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libdbus-1-3:riscv64.
- (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 ... 16249 files and directories currently installed.)
- Preparing to unpack .../000-libdbus-1-3_1.14.10-4ubuntu4.1_riscv64.deb ...
- Unpacking libdbus-1-3:riscv64 (1.14.10-4ubuntu4.1) ...
- Selecting previously unselected package dbus-bin.
- Preparing to unpack .../001-dbus-bin_1.14.10-4ubuntu4.1_riscv64.deb ...
- Unpacking dbus-bin (1.14.10-4ubuntu4.1) ...
- Selecting previously unselected package dbus-session-bus-common.
- Preparing to unpack .../002-dbus-session-bus-common_1.14.10-4ubuntu4.1_all.deb ...
- Unpacking dbus-session-bus-common (1.14.10-4ubuntu4.1) ...
- Selecting previously unselected package dbus-daemon.
- Preparing to unpack .../003-dbus-daemon_1.14.10-4ubuntu4.1_riscv64.deb ...
- Unpacking dbus-daemon (1.14.10-4ubuntu4.1) ...
- Selecting previously unselected package dbus-system-bus-common.
- Preparing to unpack .../004-dbus-system-bus-common_1.14.10-4ubuntu4.1_all.deb ...
- Unpacking dbus-system-bus-common (1.14.10-4ubuntu4.1) ...
- Selecting previously unselected package dbus.
- Preparing to unpack .../005-dbus_1.14.10-4ubuntu4.1_riscv64.deb ...
- Unpacking dbus (1.14.10-4ubuntu4.1) ...
- Selecting previously unselected package libelf1t64:riscv64.
- Preparing to unpack .../006-libelf1t64_0.190-1.1ubuntu0.1_riscv64.deb ...
- Unpacking libelf1t64:riscv64 (0.190-1.1ubuntu0.1) ...
- Selecting previously unselected package libfribidi0:riscv64.
- Preparing to unpack .../007-libfribidi0_1.0.13-3build1_riscv64.deb ...
- Unpacking libfribidi0:riscv64 (1.0.13-3build1) ...
- Selecting previously unselected package libglib2.0-0t64:riscv64.
- Preparing to unpack .../008-libglib2.0-0t64_2.80.0-6ubuntu3.4_riscv64.deb ...
- Unpacking libglib2.0-0t64:riscv64 (2.80.0-6ubuntu3.4) ...
- Selecting previously unselected package libglib2.0-data.
- Preparing to unpack .../009-libglib2.0-data_2.80.0-6ubuntu3.4_all.deb ...
- Unpacking libglib2.0-data (2.80.0-6ubuntu3.4) ...
- Selecting previously unselected package libicu74:riscv64.
- Preparing to unpack .../010-libicu74_74.2-1ubuntu3.1_riscv64.deb ...
- Unpacking libicu74:riscv64 (74.2-1ubuntu3.1) ...
- Selecting previously unselected package libtext-iconv-perl:riscv64.
- Preparing to unpack .../011-libtext-iconv-perl_1.7-8build3_riscv64.deb ...
- Unpacking libtext-iconv-perl:riscv64 (1.7-8build3) ...
- Selecting previously unselected package libtirpc-common.
- Preparing to unpack .../012-libtirpc-common_1.3.4+ds-1.1build1_all.deb ...
- Unpacking libtirpc-common (1.3.4+ds-1.1build1) ...
- Selecting previously unselected package libtirpc3t64:riscv64.
- Preparing to unpack .../013-libtirpc3t64_1.3.4+ds-1.1build1_riscv64.deb ...
- Adding 'diversion of /lib/riscv64-linux-gnu/libtirpc.so.3 to /lib/riscv64-linux-gnu/libtirpc.so.3.usr-is-merged by libtirpc3t64'
- Adding 'diversion of /lib/riscv64-linux-gnu/libtirpc.so.3.0.0 to /lib/riscv64-linux-gnu/libtirpc.so.3.0.0.usr-is-merged by libtirpc3t64'
- Unpacking libtirpc3t64:riscv64 (1.3.4+ds-1.1build1) ...
- Selecting previously unselected package libxml2:riscv64.
- Preparing to unpack .../014-libxml2_2.9.14+dfsg-1.3ubuntu3.6_riscv64.deb ...
- Unpacking libxml2:riscv64 (2.9.14+dfsg-1.3ubuntu3.6) ...
- Selecting previously unselected package shared-mime-info.
- Preparing to unpack .../015-shared-mime-info_2.4-4_riscv64.deb ...
- Unpacking shared-mime-info (2.4-4) ...
- Selecting previously unselected package tzdata.
- Preparing to unpack .../016-tzdata_2025b-0ubuntu0.24.04.1_all.deb ...
- Unpacking tzdata (2025b-0ubuntu0.24.04.1) ...
- Selecting previously unselected package ucf.
- Preparing to unpack .../017-ucf_3.0043+nmu1_all.deb ...
- Moving old data out of the way
- Unpacking ucf (3.0043+nmu1) ...
- Selecting previously unselected package xdg-user-dirs.
- Preparing to unpack .../018-xdg-user-dirs_0.18-1build1_riscv64.deb ...
- Unpacking xdg-user-dirs (0.18-1build1) ...
- Selecting previously unselected package libdrm-common.
- Preparing to unpack .../019-libdrm-common_2.4.122-1~ubuntu0.24.04.1_all.deb ...
- Unpacking libdrm-common (2.4.122-1~ubuntu0.24.04.1) ...
- Selecting previously unselected package libdrm2:riscv64.
- Preparing to unpack .../020-libdrm2_2.4.122-1~ubuntu0.24.04.1_riscv64.deb ...
- Unpacking libdrm2:riscv64 (2.4.122-1~ubuntu0.24.04.1) ...
- Selecting previously unselected package libgpm2:riscv64.
- Preparing to unpack .../021-libgpm2_1.20.7-11_riscv64.deb ...
- Unpacking libgpm2:riscv64 (1.20.7-11) ...
- Selecting previously unselected package libncurses6:riscv64.
- Preparing to unpack .../022-libncurses6_6.4+20240113-1ubuntu2_riscv64.deb ...
- Unpacking libncurses6:riscv64 (6.4+20240113-1ubuntu2) ...
- Selecting previously unselected package libsensors-config.
- Preparing to unpack .../023-libsensors-config_1%3a3.6.0-9build1_all.deb ...
- Unpacking libsensors-config (1:3.6.0-9build1) ...
- Selecting previously unselected package libsensors5:riscv64.
- Preparing to unpack .../024-libsensors5_1%3a3.6.0-9build1_riscv64.deb ...
- Unpacking libsensors5:riscv64 (1:3.6.0-9build1) ...
- Selecting previously unselected package bzip2-doc.
- Preparing to unpack .../025-bzip2-doc_1.0.8-5.1build0.1_all.deb ...
- Unpacking bzip2-doc (1.0.8-5.1build0.1) ...
- Selecting previously unselected package fontconfig.
- Preparing to unpack .../026-fontconfig_2.15.0-1.1ubuntu2_riscv64.deb ...
- Unpacking fontconfig (2.15.0-1.1ubuntu2) ...
- Selecting previously unselected package libgfortran5:riscv64.
- Preparing to unpack .../027-libgfortran5_14.2.0-4ubuntu2~24.04_riscv64.deb ...
- Unpacking libgfortran5:riscv64 (14.2.0-4ubuntu2~24.04) ...
- Selecting previously unselected package libgfortran-13-dev:riscv64.
- Preparing to unpack .../028-libgfortran-13-dev_13.3.0-6ubuntu2~24.04_riscv64.deb ...
- Unpacking libgfortran-13-dev:riscv64 (13.3.0-6ubuntu2~24.04) ...
- Selecting previously unselected package gfortran-13-riscv64-linux-gnu.
- Preparing to unpack .../029-gfortran-13-riscv64-linux-gnu_13.3.0-6ubuntu2~24.04_riscv64.deb ...
- Unpacking gfortran-13-riscv64-linux-gnu (13.3.0-6ubuntu2~24.04) ...
- Selecting previously unselected package gfortran-13.
- Preparing to unpack .../030-gfortran-13_13.3.0-6ubuntu2~24.04_riscv64.deb ...
- Unpacking gfortran-13 (13.3.0-6ubuntu2~24.04) ...
- Selecting previously unselected package gfortran-riscv64-linux-gnu.
- Preparing to unpack .../031-gfortran-riscv64-linux-gnu_4%3a13.2.0-7ubuntu1_riscv64.deb ...
- Unpacking gfortran-riscv64-linux-gnu (4:13.2.0-7ubuntu1) ...
- Selecting previously unselected package gfortran.
- Preparing to unpack .../032-gfortran_4%3a13.2.0-7ubuntu1_riscv64.deb ...
- Unpacking gfortran (4:13.2.0-7ubuntu1) ...
- Selecting previously unselected package icu-devtools.
- Preparing to unpack .../033-icu-devtools_74.2-1ubuntu3.1_riscv64.deb ...
- Unpacking icu-devtools (74.2-1ubuntu3.1) ...
- Selecting previously unselected package libblas3:riscv64.
- Preparing to unpack .../034-libblas3_3.12.0-3build1.1_riscv64.deb ...
- Unpacking libblas3:riscv64 (3.12.0-3build1.1) ...
- Selecting previously unselected package libblas-dev:riscv64.
- Preparing to unpack .../035-libblas-dev_3.12.0-3build1.1_riscv64.deb ...
- Unpacking libblas-dev:riscv64 (3.12.0-3build1.1) ...
- Selecting previously unselected package libbz2-dev:riscv64.
- Preparing to unpack .../036-libbz2-dev_1.0.8-5.1build0.1_riscv64.deb ...
- Unpacking libbz2-dev:riscv64 (1.0.8-5.1build0.1) ...
- Selecting previously unselected package libpixman-1-0:riscv64.
- Preparing to unpack .../037-libpixman-1-0_0.42.2-1build1_riscv64.deb ...
- Unpacking libpixman-1-0:riscv64 (0.42.2-1build1) ...
- Selecting previously unselected package libxcb-render0:riscv64.
- Preparing to unpack .../038-libxcb-render0_1.15-1ubuntu2_riscv64.deb ...
- Unpacking libxcb-render0:riscv64 (1.15-1ubuntu2) ...
- Selecting previously unselected package libxcb-shm0:riscv64.
- Preparing to unpack .../039-libxcb-shm0_1.15-1ubuntu2_riscv64.deb ...
- Unpacking libxcb-shm0:riscv64 (1.15-1ubuntu2) ...
- Selecting previously unselected package libxrender1:riscv64.
- Preparing to unpack .../040-libxrender1_1%3a0.9.10-1.1build1_riscv64.deb ...
- Unpacking libxrender1:riscv64 (1:0.9.10-1.1build1) ...
- Selecting previously unselected package libcairo2:riscv64.
- Preparing to unpack .../041-libcairo2_1.18.0-3build1_riscv64.deb ...
- Unpacking libcairo2:riscv64 (1.18.0-3build1) ...
- Selecting previously unselected package libclone-perl:riscv64.
- Preparing to unpack .../042-libclone-perl_0.46-1build3_riscv64.deb ...
- Unpacking libclone-perl:riscv64 (0.46-1build3) ...
- Selecting previously unselected package libdata-dump-perl.
- Preparing to unpack .../043-libdata-dump-perl_1.25-1_all.deb ...
- Unpacking libdata-dump-perl (1.25-1) ...
- Selecting previously unselected package libdatrie1:riscv64.
- Preparing to unpack .../044-libdatrie1_0.2.13-3build1_riscv64.deb ...
- Unpacking libdatrie1:riscv64 (0.2.13-3build1) ...
- Selecting previously unselected package libdrm-amdgpu1:riscv64.
- Preparing to unpack .../045-libdrm-amdgpu1_2.4.122-1~ubuntu0.24.04.1_riscv64.deb ...
- Unpacking libdrm-amdgpu1:riscv64 (2.4.122-1~ubuntu0.24.04.1) ...
- Selecting previously unselected package libwayland-server0:riscv64.
- Preparing to unpack .../046-libwayland-server0_1.22.0-2.1build1_riscv64.deb ...
- Unpacking libwayland-server0:riscv64 (1.22.0-2.1build1) ...
- Selecting previously unselected package libllvm20:riscv64.
- Preparing to unpack .../047-libllvm20_1%3a20.1.2-0ubuntu1~24.04.2_riscv64.deb ...
- Unpacking libllvm20:riscv64 (1:20.1.2-0ubuntu1~24.04.2) ...
- Selecting previously unselected package libx11-xcb1:riscv64.
- Preparing to unpack .../048-libx11-xcb1_2%3a1.8.7-1build1_riscv64.deb ...
- Unpacking libx11-xcb1:riscv64 (2:1.8.7-1build1) ...
- Selecting previously unselected package libxcb-dri3-0:riscv64.
- Preparing to unpack .../049-libxcb-dri3-0_1.15-1ubuntu2_riscv64.deb ...
- Unpacking libxcb-dri3-0:riscv64 (1.15-1ubuntu2) ...
- Selecting previously unselected package libxcb-present0:riscv64.
- Preparing to unpack .../050-libxcb-present0_1.15-1ubuntu2_riscv64.deb ...
- Unpacking libxcb-present0:riscv64 (1.15-1ubuntu2) ...
- Selecting previously unselected package libxcb-randr0:riscv64.
- Preparing to unpack .../051-libxcb-randr0_1.15-1ubuntu2_riscv64.deb ...
- Unpacking libxcb-randr0:riscv64 (1.15-1ubuntu2) ...
- Selecting previously unselected package libxcb-sync1:riscv64.
- Preparing to unpack .../052-libxcb-sync1_1.15-1ubuntu2_riscv64.deb ...
- Unpacking libxcb-sync1:riscv64 (1.15-1ubuntu2) ...
- Selecting previously unselected package libxcb-xfixes0:riscv64.
- Preparing to unpack .../053-libxcb-xfixes0_1.15-1ubuntu2_riscv64.deb ...
- Unpacking libxcb-xfixes0:riscv64 (1.15-1ubuntu2) ...
- Selecting previously unselected package libxshmfence1:riscv64.
- Preparing to unpack .../054-libxshmfence1_1.3-1build5_riscv64.deb ...
- Unpacking libxshmfence1:riscv64 (1.3-1build5) ...
- Selecting previously unselected package mesa-libgallium:riscv64.
- Preparing to unpack .../055-mesa-libgallium_25.0.7-0ubuntu0.24.04.2_riscv64.deb ...
- Unpacking mesa-libgallium:riscv64 (25.0.7-0ubuntu0.24.04.2) ...
- Selecting previously unselected package libgbm1:riscv64.
- Preparing to unpack .../056-libgbm1_25.0.7-0ubuntu0.24.04.2_riscv64.deb ...
- Unpacking libgbm1:riscv64 (25.0.7-0ubuntu0.24.04.2) ...
- Selecting previously unselected package libwayland-client0:riscv64.
- Preparing to unpack .../057-libwayland-client0_1.22.0-2.1build1_riscv64.deb ...
- Unpacking libwayland-client0:riscv64 (1.22.0-2.1build1) ...
- Selecting previously unselected package libegl-mesa0:riscv64.
- Preparing to unpack .../058-libegl-mesa0_25.0.7-0ubuntu0.24.04.2_riscv64.deb ...
- Unpacking libegl-mesa0:riscv64 (25.0.7-0ubuntu0.24.04.2) ...
- Selecting previously unselected package libencode-locale-perl.
- Preparing to unpack .../059-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 .../060-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 .../061-libfile-basedir-perl_0.09-2_all.deb ...
- Unpacking libfile-basedir-perl (0.09-2) ...
- Selecting previously unselected package liburi-perl.
- Preparing to unpack .../062-liburi-perl_5.27-1_all.deb ...
- Unpacking liburi-perl (5.27-1) ...
- Selecting previously unselected package libfile-desktopentry-perl.
- Preparing to unpack .../063-libfile-desktopentry-perl_0.22-3_all.deb ...
- Unpacking libfile-desktopentry-perl (0.22-3) ...
- Selecting previously unselected package libtimedate-perl.
- Preparing to unpack .../064-libtimedate-perl_2.3300-2_all.deb ...
- Unpacking libtimedate-perl (2.3300-2) ...
- Selecting previously unselected package libhttp-date-perl.
- Preparing to unpack .../065-libhttp-date-perl_6.06-1_all.deb ...
- Unpacking libhttp-date-perl (6.06-1) ...
- Selecting previously unselected package libfile-listing-perl.
- Preparing to unpack .../066-libfile-listing-perl_6.16-1_all.deb ...
- Unpacking libfile-listing-perl (6.16-1) ...
- Selecting previously unselected package libfile-mimeinfo-perl.
- Preparing to unpack .../067-libfile-mimeinfo-perl_0.34-1_all.deb ...
- Unpacking libfile-mimeinfo-perl (0.34-1) ...
- Selecting previously unselected package libfont-afm-perl.
- Preparing to unpack .../068-libfont-afm-perl_1.20-4_all.deb ...
- Unpacking libfont-afm-perl (1.20-4) ...
- Selecting previously unselected package libvulkan1:riscv64.
- Preparing to unpack .../069-libvulkan1_1.3.275.0-1build1_riscv64.deb ...
- Unpacking libvulkan1:riscv64 (1.3.275.0-1build1) ...
- Selecting previously unselected package libgl1-mesa-dri:riscv64.
- Preparing to unpack .../070-libgl1-mesa-dri_25.0.7-0ubuntu0.24.04.2_riscv64.deb ...
- Unpacking libgl1-mesa-dri:riscv64 (25.0.7-0ubuntu0.24.04.2) ...
- Selecting previously unselected package libxcb-glx0:riscv64.
- Preparing to unpack .../071-libxcb-glx0_1.15-1ubuntu2_riscv64.deb ...
- Unpacking libxcb-glx0:riscv64 (1.15-1ubuntu2) ...
- Selecting previously unselected package libxxf86vm1:riscv64.
- Preparing to unpack .../072-libxxf86vm1_1%3a1.1.4-1build4_riscv64.deb ...
- Unpacking libxxf86vm1:riscv64 (1:1.1.4-1build4) ...
- Selecting previously unselected package libglx-mesa0:riscv64.
- Preparing to unpack .../073-libglx-mesa0_25.0.7-0ubuntu0.24.04.2_riscv64.deb ...
- Unpacking libglx-mesa0:riscv64 (25.0.7-0ubuntu0.24.04.2) ...
- Selecting previously unselected package libgraphite2-3:riscv64.
- Preparing to unpack .../074-libgraphite2-3_1.3.14-2build1_riscv64.deb ...
- Unpacking libgraphite2-3:riscv64 (1.3.14-2build1) ...
- Selecting previously unselected package libharfbuzz0b:riscv64.
- Preparing to unpack .../075-libharfbuzz0b_8.3.0-2build2_riscv64.deb ...
- Unpacking libharfbuzz0b:riscv64 (8.3.0-2build2) ...
- Selecting previously unselected package libhtml-tagset-perl.
- Preparing to unpack .../076-libhtml-tagset-perl_3.20-6_all.deb ...
- Unpacking libhtml-tagset-perl (3.20-6) ...
- Selecting previously unselected package libhtml-parser-perl:riscv64.
- Preparing to unpack .../077-libhtml-parser-perl_3.81-1build3_riscv64.deb ...
- Unpacking libhtml-parser-perl:riscv64 (3.81-1build3) ...
- Selecting previously unselected package libio-html-perl.
- Preparing to unpack .../078-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 .../079-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 .../080-libhttp-message-perl_6.45-1ubuntu1_all.deb ...
- Unpacking libhttp-message-perl (6.45-1ubuntu1) ...
- Selecting previously unselected package libhtml-form-perl.
- Preparing to unpack .../081-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 .../082-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 .../083-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 .../084-libhttp-cookies-perl_6.11-1_all.deb ...
- Unpacking libhttp-cookies-perl (6.11-1) ...
- Selecting previously unselected package libhttp-daemon-perl.
- Preparing to unpack .../085-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 .../086-libhttp-negotiate-perl_6.01-2_all.deb ...
- Unpacking libhttp-negotiate-perl (6.01-2) ...
- Selecting previously unselected package x11-common.
- Preparing to unpack .../087-x11-common_1%3a7.7+23ubuntu3_all.deb ...
- Unpacking x11-common (1:7.7+23ubuntu3) ...
- Selecting previously unselected package libice6:riscv64.
- Preparing to unpack .../088-libice6_2%3a1.0.10-1build3_riscv64.deb ...
- Unpacking libice6:riscv64 (2:1.0.10-1build3) ...
- Selecting previously unselected package libicu-dev:riscv64.
- Preparing to unpack .../089-libicu-dev_74.2-1ubuntu3.1_riscv64.deb ...
- Unpacking libicu-dev:riscv64 (74.2-1ubuntu3.1) ...
- Selecting previously unselected package perl-openssl-defaults:riscv64.
- Preparing to unpack .../090-perl-openssl-defaults_7build3_riscv64.deb ...
- Unpacking perl-openssl-defaults:riscv64 (7build3) ...
- Selecting previously unselected package libnet-ssleay-perl:riscv64.
- Preparing to unpack .../091-libnet-ssleay-perl_1.94-1build4_riscv64.deb ...
- Unpacking libnet-ssleay-perl:riscv64 (1.94-1build4) ...
- Selecting previously unselected package libio-socket-ssl-perl.
- Preparing to unpack .../092-libio-socket-ssl-perl_2.085-1_all.deb ...
- Unpacking libio-socket-ssl-perl (2.085-1) ...
- Selecting previously unselected package libio-stringy-perl.
- Preparing to unpack .../093-libio-stringy-perl_2.111-3_all.deb ...
- Unpacking libio-stringy-perl (2.111-3) ...
- Selecting previously unselected package libjpeg-turbo8-dev:riscv64.
- Preparing to unpack .../094-libjpeg-turbo8-dev_2.1.5-2ubuntu2_riscv64.deb ...
- Unpacking libjpeg-turbo8-dev:riscv64 (2.1.5-2ubuntu2) ...
- Selecting previously unselected package libjpeg8-dev:riscv64.
- Preparing to unpack .../095-libjpeg8-dev_8c-2ubuntu11_riscv64.deb ...
- Unpacking libjpeg8-dev:riscv64 (8c-2ubuntu11) ...
- Selecting previously unselected package libjpeg-dev:riscv64.
- Preparing to unpack .../096-libjpeg-dev_8c-2ubuntu11_riscv64.deb ...
- Unpacking libjpeg-dev:riscv64 (8c-2ubuntu11) ...
- Selecting previously unselected package liblapack3:riscv64.
- Preparing to unpack .../097-liblapack3_3.12.0-3build1.1_riscv64.deb ...
- Unpacking liblapack3:riscv64 (3.12.0-3build1.1) ...
- Selecting previously unselected package liblapack-dev:riscv64.
- Preparing to unpack .../098-liblapack-dev_3.12.0-3build1.1_riscv64.deb ...
- Unpacking liblapack-dev:riscv64 (3.12.0-3build1.1) ...
- Selecting previously unselected package libnet-http-perl.
- Preparing to unpack .../099-libnet-http-perl_6.23-1_all.deb ...
- Unpacking libnet-http-perl (6.23-1) ...
- Selecting previously unselected package libtry-tiny-perl.
- Preparing to unpack .../100-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 .../101-libwww-robotrules-perl_6.02-1_all.deb ...
- Unpacking libwww-robotrules-perl (6.02-1) ...
- Selecting previously unselected package libwww-perl.
- Preparing to unpack .../102-libwww-perl_6.76-1_all.deb ...
- Unpacking libwww-perl (6.76-1) ...
- Selecting previously unselected package liblwp-protocol-https-perl.
- Preparing to unpack .../103-liblwp-protocol-https-perl_6.13-1_all.deb ...
- Unpacking liblwp-protocol-https-perl (6.13-1) ...
- Selecting previously unselected package libnet-smtp-ssl-perl.
- Preparing to unpack .../104-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 .../105-libmailtools-perl_2.21-2_all.deb ...
- Unpacking libmailtools-perl (2.21-2) ...
- Selecting previously unselected package libncurses-dev:riscv64.
- Preparing to unpack .../106-libncurses-dev_6.4+20240113-1ubuntu2_riscv64.deb ...
- Unpacking libncurses-dev:riscv64 (6.4+20240113-1ubuntu2) ...
- Selecting previously unselected package libxml-parser-perl.
- Preparing to unpack .../107-libxml-parser-perl_2.47-1build3_riscv64.deb ...
- Unpacking libxml-parser-perl (2.47-1build3) ...
- Selecting previously unselected package libxml-twig-perl.
- Preparing to unpack .../108-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 .../109-libnet-dbus-perl_1.2.0-2build3_riscv64.deb ...
- Unpacking libnet-dbus-perl (1.2.0-2build3) ...
- Selecting previously unselected package libthai-data.
- Preparing to unpack .../110-libthai-data_0.1.29-2build1_all.deb ...
- Unpacking libthai-data (0.1.29-2build1) ...
- Selecting previously unselected package libthai0:riscv64.
- Preparing to unpack .../111-libthai0_0.1.29-2build1_riscv64.deb ...
- Unpacking libthai0:riscv64 (0.1.29-2build1) ...
- Selecting previously unselected package libpango-1.0-0:riscv64.
- Preparing to unpack .../112-libpango-1.0-0_1.52.1+ds-1build1_riscv64.deb ...
- Unpacking libpango-1.0-0:riscv64 (1.52.1+ds-1build1) ...
- Selecting previously unselected package libpangoft2-1.0-0:riscv64.
- Preparing to unpack .../113-libpangoft2-1.0-0_1.52.1+ds-1build1_riscv64.deb ...
- Unpacking libpangoft2-1.0-0:riscv64 (1.52.1+ds-1build1) ...
- Selecting previously unselected package libpangocairo-1.0-0:riscv64.
- Preparing to unpack .../114-libpangocairo-1.0-0_1.52.1+ds-1build1_riscv64.deb ...
- Unpacking libpangocairo-1.0-0:riscv64 (1.52.1+ds-1build1) ...
- Selecting previously unselected package libpaper1:riscv64.
- Preparing to unpack .../115-libpaper1_1.1.29build1_riscv64.deb ...
- Unpacking libpaper1:riscv64 (1.1.29build1) ...
- Selecting previously unselected package libpaper-utils.
- Preparing to unpack .../116-libpaper-utils_1.1.29build1_riscv64.deb ...
- Unpacking libpaper-utils (1.1.29build1) ...
- Selecting previously unselected package libpcre2-16-0:riscv64.
- Preparing to unpack .../117-libpcre2-16-0_10.42-4ubuntu2.1_riscv64.deb ...
- Unpacking libpcre2-16-0:riscv64 (10.42-4ubuntu2.1) ...
- Selecting previously unselected package libpcre2-32-0:riscv64.
- Preparing to unpack .../118-libpcre2-32-0_10.42-4ubuntu2.1_riscv64.deb ...
- Unpacking libpcre2-32-0:riscv64 (10.42-4ubuntu2.1) ...
- Selecting previously unselected package libpcre2-posix3:riscv64.
- Preparing to unpack .../119-libpcre2-posix3_10.42-4ubuntu2.1_riscv64.deb ...
- Unpacking libpcre2-posix3:riscv64 (10.42-4ubuntu2.1) ...
- Selecting previously unselected package libpcre2-dev:riscv64.
- Preparing to unpack .../120-libpcre2-dev_10.42-4ubuntu2.1_riscv64.deb ...
- Unpacking libpcre2-dev:riscv64 (10.42-4ubuntu2.1) ...
- Selecting previously unselected package libpkgconf3:riscv64.
- Preparing to unpack .../121-libpkgconf3_1.8.1-2build1_riscv64.deb ...
- Unpacking libpkgconf3:riscv64 (1.8.1-2build1) ...
- Selecting previously unselected package zlib1g-dev:riscv64.
- Preparing to unpack .../122-zlib1g-dev_1%3a1.3.dfsg-3.1ubuntu2.1_riscv64.deb ...
- Unpacking zlib1g-dev:riscv64 (1:1.3.dfsg-3.1ubuntu2.1) ...
- Selecting previously unselected package libpng-dev:riscv64.
- Preparing to unpack .../123-libpng-dev_1.6.43-5build1_riscv64.deb ...
- Unpacking libpng-dev:riscv64 (1.6.43-5build1) ...
- Selecting previously unselected package libpng-tools.
- Preparing to unpack .../124-libpng-tools_1.6.43-5build1_riscv64.deb ...
- Unpacking libpng-tools (1.6.43-5build1) ...
- Selecting previously unselected package libreadline-dev:riscv64.
- Preparing to unpack .../125-libreadline-dev_8.2-4build1_riscv64.deb ...
- Unpacking libreadline-dev:riscv64 (8.2-4build1) ...
- Selecting previously unselected package libsm6:riscv64.
- Preparing to unpack .../126-libsm6_2%3a1.2.3-1build3_riscv64.deb ...
- Unpacking libsm6:riscv64 (2:1.2.3-1build3) ...
- Selecting previously unselected package libtcl8.6:riscv64.
- Preparing to unpack .../127-libtcl8.6_8.6.14+dfsg-1build1_riscv64.deb ...
- Unpacking libtcl8.6:riscv64 (8.6.14+dfsg-1build1) ...
- Selecting previously unselected package libtie-ixhash-perl.
- Preparing to unpack .../128-libtie-ixhash-perl_1.23-4_all.deb ...
- Unpacking libtie-ixhash-perl (1.23-4) ...
- Selecting previously unselected package libxft2:riscv64.
- Preparing to unpack .../129-libxft2_2.3.6-1build1_riscv64.deb ...
- Unpacking libxft2:riscv64 (2.3.6-1build1) ...
- Selecting previously unselected package libxss1:riscv64.
- Preparing to unpack .../130-libxss1_1%3a1.2.3-1build3_riscv64.deb ...
- Unpacking libxss1:riscv64 (1:1.2.3-1build3) ...
- Selecting previously unselected package libtk8.6:riscv64.
- Preparing to unpack .../131-libtk8.6_8.6.14-1build1_riscv64.deb ...
- Unpacking libtk8.6:riscv64 (8.6.14-1build1) ...
- Selecting previously unselected package libx11-protocol-perl.
- Preparing to unpack .../132-libx11-protocol-perl_0.56-9_all.deb ...
- Unpacking libx11-protocol-perl (0.56-9) ...
- Selecting previously unselected package libxt6t64:riscv64.
- Preparing to unpack .../133-libxt6t64_1%3a1.2.1-1.2build1_riscv64.deb ...
- Unpacking libxt6t64:riscv64 (1:1.2.1-1.2build1) ...
- Selecting previously unselected package libxmu6:riscv64.
- Preparing to unpack .../134-libxmu6_2%3a1.1.3-3build2_riscv64.deb ...
- Unpacking libxmu6:riscv64 (2:1.1.3-3build2) ...
- Selecting previously unselected package libxaw7:riscv64.
- Preparing to unpack .../135-libxaw7_2%3a1.0.14-1build2_riscv64.deb ...
- Unpacking libxaw7:riscv64 (2:1.0.14-1build2) ...
- Selecting previously unselected package libxcb-shape0:riscv64.
- Preparing to unpack .../136-libxcb-shape0_1.15-1ubuntu2_riscv64.deb ...
- Unpacking libxcb-shape0:riscv64 (1.15-1ubuntu2) ...
- Selecting previously unselected package libxcomposite1:riscv64.
- Preparing to unpack .../137-libxcomposite1_1%3a0.4.5-1build3_riscv64.deb ...
- Unpacking libxcomposite1:riscv64 (1:0.4.5-1build3) ...
- Selecting previously unselected package libxfixes3:riscv64.
- Preparing to unpack .../138-libxfixes3_1%3a6.0.0-2build1_riscv64.deb ...
- Unpacking libxfixes3:riscv64 (1:6.0.0-2build1) ...
- Selecting previously unselected package libxcursor1:riscv64.
- Preparing to unpack .../139-libxcursor1_1%3a1.2.1-1build1_riscv64.deb ...
- Unpacking libxcursor1:riscv64 (1:1.2.1-1build1) ...
- Selecting previously unselected package libxi6:riscv64.
- Preparing to unpack .../140-libxi6_2%3a1.8.1-1build1_riscv64.deb ...
- Unpacking libxi6:riscv64 (2:1.8.1-1build1) ...
- Selecting previously unselected package libxinerama1:riscv64.
- Preparing to unpack .../141-libxinerama1_2%3a1.1.4-3build1_riscv64.deb ...
- Unpacking libxinerama1:riscv64 (2:1.1.4-3build1) ...
- Selecting previously unselected package libxkbfile1:riscv64.
- Preparing to unpack .../142-libxkbfile1_1%3a1.1.0-1build4_riscv64.deb ...
- Unpacking libxkbfile1:riscv64 (1:1.1.0-1build4) ...
- Selecting previously unselected package libxml-xpathengine-perl.
- Preparing to unpack .../143-libxml-xpathengine-perl_0.14-2_all.deb ...
- Unpacking libxml-xpathengine-perl (0.14-2) ...
- Selecting previously unselected package libxrandr2:riscv64.
- Preparing to unpack .../144-libxrandr2_2%3a1.5.2-2build1_riscv64.deb ...
- Unpacking libxrandr2:riscv64 (2:1.5.2-2build1) ...
- Selecting previously unselected package libxtst6:riscv64.
- Preparing to unpack .../145-libxtst6_2%3a1.2.3-1.1build1_riscv64.deb ...
- Unpacking libxtst6:riscv64 (2:1.2.3-1.1build1) ...
- Selecting previously unselected package libxv1:riscv64.
- Preparing to unpack .../146-libxv1_2%3a1.0.11-1.1build1_riscv64.deb ...
- Unpacking libxv1:riscv64 (2:1.0.11-1.1build1) ...
- Selecting previously unselected package libxxf86dga1:riscv64.
- Preparing to unpack .../147-libxxf86dga1_2%3a1.1.5-1build1_riscv64.deb ...
- Unpacking libxxf86dga1:riscv64 (2:1.1.5-1build1) ...
- Selecting previously unselected package mesa-vulkan-drivers:riscv64.
- Preparing to unpack .../148-mesa-vulkan-drivers_25.0.7-0ubuntu0.24.04.2_riscv64.deb ...
- Unpacking mesa-vulkan-drivers:riscv64 (25.0.7-0ubuntu0.24.04.2) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../149-pkgconf-bin_1.8.1-2build1_riscv64.deb ...
- Unpacking pkgconf-bin (1.8.1-2build1) ...
- Selecting previously unselected package pkgconf:riscv64.
- Preparing to unpack .../150-pkgconf_1.8.1-2build1_riscv64.deb ...
- Unpacking pkgconf:riscv64 (1.8.1-2build1) ...
- Selecting previously unselected package pkg-config:riscv64.
- Preparing to unpack .../151-pkg-config_1.8.1-2build1_riscv64.deb ...
- Unpacking pkg-config:riscv64 (1.8.1-2build1) ...
- Selecting previously unselected package zip.
- Preparing to unpack .../152-zip_3.0-13ubuntu0.2_riscv64.deb ...
- Unpacking zip (3.0-13ubuntu0.2) ...
- Selecting previously unselected package xdg-utils.
- Preparing to unpack .../153-xdg-utils_1.1.3-4.1ubuntu3_all.deb ...
- Unpacking xdg-utils (1.1.3-4.1ubuntu3) ...
- Selecting previously unselected package r-base-core.
- Preparing to unpack .../154-r-base-core_4.3.3-2build2_riscv64.deb ...
- Unpacking r-base-core (4.3.3-2build2) ...
- Selecting previously unselected package liblzma-dev:riscv64.
- Preparing to unpack .../155-liblzma-dev_5.6.1+really5.4.5-1ubuntu0.2_riscv64.deb ...
- Unpacking liblzma-dev:riscv64 (5.6.1+really5.4.5-1ubuntu0.2) ...
- Selecting previously unselected package r-base-dev.
- Preparing to unpack .../156-r-base-dev_4.3.3-2build2_all.deb ...
- Unpacking r-base-dev (4.3.3-2build2) ...
- Selecting previously unselected package r-cran-boot.
- Preparing to unpack .../157-r-cran-boot_1.3-30-1_all.deb ...
- Unpacking r-cran-boot (1.3-30-1) ...
- Selecting previously unselected package r-cran-mass.
- Preparing to unpack .../158-r-cran-mass_7.3-60.0.1-1_riscv64.deb ...
- Unpacking r-cran-mass (7.3-60.0.1-1) ...
- Selecting previously unselected package r-cran-class.
- Preparing to unpack .../159-r-cran-class_7.3-22-2build1_riscv64.deb ...
- Unpacking r-cran-class (7.3-22-2build1) ...
- Selecting previously unselected package r-cran-cluster.
- Preparing to unpack .../160-r-cran-cluster_2.1.6-1build1_riscv64.deb ...
- Unpacking r-cran-cluster (2.1.6-1build1) ...
- Selecting previously unselected package r-cran-codetools.
- Preparing to unpack .../161-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 .../162-r-cran-foreign_0.8.86-1build1_riscv64.deb ...
- Unpacking r-cran-foreign (0.8.86-1build1) ...
- Selecting previously unselected package r-cran-kernsmooth.
- Preparing to unpack .../163-r-cran-kernsmooth_2.23-22-1build1_riscv64.deb ...
- Unpacking r-cran-kernsmooth (2.23-22-1build1) ...
- Selecting previously unselected package r-cran-lattice.
- Preparing to unpack .../164-r-cran-lattice_0.22-5-1build1_riscv64.deb ...
- Unpacking r-cran-lattice (0.22-5-1build1) ...
- Selecting previously unselected package r-cran-matrix.
- Preparing to unpack .../165-r-cran-matrix_1.6-5-1_riscv64.deb ...
- Unpacking r-cran-matrix (1.6-5-1) ...
- Selecting previously unselected package r-cran-nlme.
- Preparing to unpack .../166-r-cran-nlme_3.1.164-1build1_riscv64.deb ...
- Unpacking r-cran-nlme (3.1.164-1build1) ...
- Selecting previously unselected package r-cran-mgcv.
- Preparing to unpack .../167-r-cran-mgcv_1.9-1-1_riscv64.deb ...
- Unpacking r-cran-mgcv (1.9-1-1) ...
- Selecting previously unselected package r-cran-nnet.
- Preparing to unpack .../168-r-cran-nnet_7.3-19-2build1_riscv64.deb ...
- Unpacking r-cran-nnet (7.3-19-2build1) ...
- Selecting previously unselected package r-cran-survival.
- Preparing to unpack .../169-r-cran-survival_3.5-8-1_riscv64.deb ...
- Unpacking r-cran-survival (3.5-8-1) ...
- Selecting previously unselected package r-cran-rpart.
- Preparing to unpack .../170-r-cran-rpart_4.1.23-1build1_riscv64.deb ...
- Unpacking r-cran-rpart (4.1.23-1build1) ...
- Selecting previously unselected package r-cran-spatial.
- Preparing to unpack .../171-r-cran-spatial_7.3-17-1build1_riscv64.deb ...
- Unpacking r-cran-spatial (7.3-17-1build1) ...
- Selecting previously unselected package r-doc-html.
- Preparing to unpack .../172-r-doc-html_4.3.3-2build2_all.deb ...
- Unpacking r-doc-html (4.3.3-2build2) ...
- Selecting previously unselected package r-recommended.
- Preparing to unpack .../173-r-recommended_4.3.3-2build2_all.deb ...
- Unpacking r-recommended (4.3.3-2build2) ...
- Selecting previously unselected package libglvnd0:riscv64.
- Preparing to unpack .../174-libglvnd0_1.7.0-1build1_riscv64.deb ...
- Unpacking libglvnd0:riscv64 (1.7.0-1build1) ...
- Selecting previously unselected package libglx0:riscv64.
- Preparing to unpack .../175-libglx0_1.7.0-1build1_riscv64.deb ...
- Unpacking libglx0:riscv64 (1.7.0-1build1) ...
- Selecting previously unselected package libgl1:riscv64.
- Preparing to unpack .../176-libgl1_1.7.0-1build1_riscv64.deb ...
- Unpacking libgl1:riscv64 (1.7.0-1build1) ...
- Selecting previously unselected package x11-utils.
- Preparing to unpack .../177-x11-utils_7.7+6build2_riscv64.deb ...
- Unpacking x11-utils (7.7+6build2) ...
- Selecting previously unselected package x11-xserver-utils.
- Preparing to unpack .../178-x11-xserver-utils_7.7+10build2_riscv64.deb ...
- Unpacking x11-xserver-utils (7.7+10build2) ...
- Selecting previously unselected package libegl1:riscv64.
- Preparing to unpack .../179-libegl1_1.7.0-1build1_riscv64.deb ...
- Unpacking libegl1:riscv64 (1.7.0-1build1) ...
- Selecting previously unselected package libgles2:riscv64.
- Preparing to unpack .../180-libgles2_1.7.0-1build1_riscv64.deb ...
- Unpacking libgles2:riscv64 (1.7.0-1build1) ...
- Selecting previously unselected package zutty.
- Preparing to unpack .../181-zutty_0.14.8.20231210+dfsg1-1_riscv64.deb ...
- Unpacking zutty (0.14.8.20231210+dfsg1-1) ...
- Selecting previously unselected package libauthen-sasl-perl.
- Preparing to unpack .../182-libauthen-sasl-perl_2.1700-1_all.deb ...
- Unpacking libauthen-sasl-perl (2.1700-1) ...
- Setting up libtext-iconv-perl:riscv64 (1.7-8build3) ...
- Setting up libgraphite2-3:riscv64 (1.3.14-2build1) ...
- Setting up libxcb-dri3-0:riscv64 (1.15-1ubuntu2) ...
- Setting up libpixman-1-0:riscv64 (0.42.2-1build1) ...
- Setting up bzip2-doc (1.0.8-5.1build0.1) ...
- Setting up libwayland-server0:riscv64 (1.22.0-2.1build1) ...
- Setting up libx11-xcb1:riscv64 (2:1.8.7-1build1) ...
- Setting up fontconfig (2.15.0-1.1ubuntu2) ...
- Regenerating fonts cache...
- done.
- Setting up libjpeg-turbo8-dev:riscv64 (2.1.5-2ubuntu2) ...
- Setting up libtie-ixhash-perl (1.23-4) ...
- Setting up libgpm2:riscv64 (1.20.7-11) ...
- Setting up libxcb-xfixes0:riscv64 (1.15-1ubuntu2) ...
- Setting up r-doc-html (4.3.3-2build2) ...
- Setting up libxi6:riscv64 (2:1.8.1-1build1) ...
- Setting up libfont-afm-perl (1.20-4) ...
- Setting up libxrender1:riscv64 (1:0.9.10-1.1build1) ...
- Setting up libdatrie1:riscv64 (0.2.13-3build1) ...
- Setting up xdg-user-dirs (0.18-1build1) ...
- Setting up libpng-tools (1.6.43-5build1) ...
- Setting up libxcb-render0:riscv64 (1.15-1ubuntu2) ...
- Setting up libclone-perl:riscv64 (0.46-1build3) ...
- Setting up libglvnd0:riscv64 (1.7.0-1build1) ...
- Setting up libio-stringy-perl (2.111-3) ...
- Setting up libtirpc-common (1.3.4+ds-1.1build1) ...
- Setting up libhtml-tagset-perl (3.20-6) ...
- Setting up libauthen-sasl-perl (2.1700-1) ...
- Setting up libxcb-glx0:riscv64 (1.15-1ubuntu2) ...
- Setting up liblwp-mediatypes-perl (6.04-2) ...
- Setting up libxcb-shape0:riscv64 (1.15-1ubuntu2) ...
- Setting up x11-common (1:7.7+23ubuntu3) ...
- 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-2) ...
- Setting up libsensors-config (1:3.6.0-9build1) ...
- Setting up libxxf86dga1:riscv64 (2:1.1.5-1build1) ...
- Setting up perl-openssl-defaults:riscv64 (7build3) ...
- Setting up libencode-locale-perl (1.05-3) ...
- Setting up libxcb-shm0:riscv64 (1.15-1ubuntu2) ...
- Setting up libcairo2:riscv64 (1.18.0-3build1) ...
- Setting up libpcre2-16-0:riscv64 (10.42-4ubuntu2.1) ...
- Setting up libelf1t64:riscv64 (0.190-1.1ubuntu0.1) ...
- Setting up libxxf86vm1:riscv64 (1:1.1.4-1build4) ...
- Setting up tzdata (2025b-0ubuntu0.24.04.1) ...
-
- Current default time zone: 'Europe/London'
- Local time is now: Mon Nov 10 20:17:16 GMT 2025.
- Universal Time is now: Mon Nov 10 20:17:16 UTC 2025.
- Run 'dpkg-reconfigure tzdata' if you wish to change it.
-
- Setting up libxcb-present0:riscv64 (1.15-1ubuntu2) ...
- Setting up zip (3.0-13ubuntu0.2) ...
- Setting up libpcre2-32-0:riscv64 (10.42-4ubuntu2.1) ...
- Setting up libglib2.0-0t64:riscv64 (2.80.0-6ubuntu3.4) ...
- No schema files found: doing nothing.
- Setting up libblas3:riscv64 (3.12.0-3build1.1) ...
- update-alternatives: using /usr/lib/riscv64-linux-gnu/blas/libblas.so.3 to provide /usr/lib/riscv64-linux-gnu/libblas.so.3 (libblas.so.3-riscv64-linux-gnu) in auto mode
- Setting up libglib2.0-data (2.80.0-6ubuntu3.4) ...
- Setting up libpkgconf3:riscv64 (1.8.1-2build1) ...
- Setting up libgles2:riscv64 (1.7.0-1build1) ...
- Setting up libdata-dump-perl (1.25-1) ...
- Setting up libxfixes3:riscv64 (1:6.0.0-2build1) ...
- Setting up libxcb-sync1:riscv64 (1.15-1ubuntu2) ...
- Setting up libipc-system-simple-perl (1.30-2) ...
- Setting up libxml-xpathengine-perl (0.14-2) ...
- Setting up libncurses6:riscv64 (6.4+20240113-1ubuntu2) ...
- Setting up libdbus-1-3:riscv64 (1.14.10-4ubuntu4.1) ...
- Setting up libfribidi0:riscv64 (1.0.13-3build1) ...
- Setting up libxinerama1:riscv64 (2:1.1.4-3build1) ...
- Setting up libxv1:riscv64 (2:1.0.11-1.1build1) ...
- Setting up libio-html-perl (1.004-3) ...
- Setting up libxrandr2:riscv64 (2:1.5.2-2build1) ...
- Setting up libtcl8.6:riscv64 (8.6.14+dfsg-1build1) ...
- Setting up ucf (3.0043+nmu1) ...
- Setting up pkgconf-bin (1.8.1-2build1) ...
- Setting up libsensors5:riscv64 (1:3.6.0-9build1) ...
- Setting up libgfortran5:riscv64 (14.2.0-4ubuntu2~24.04) ...
- Setting up libvulkan1:riscv64 (1.3.275.0-1build1) ...
- Setting up libtimedate-perl (2.3300-2) ...
- Setting up liblzma-dev:riscv64 (5.6.1+really5.4.5-1ubuntu0.2) ...
- Setting up libicu74:riscv64 (74.2-1ubuntu3.1) ...
- Setting up zlib1g-dev:riscv64 (1:1.3.dfsg-3.1ubuntu2.1) ...
- Setting up libpcre2-posix3:riscv64 (10.42-4ubuntu2.1) ...
- Setting up libxshmfence1:riscv64 (1.3-1build5) ...
- Setting up libxcb-randr0:riscv64 (1.15-1ubuntu2) ...
- Setting up dbus-session-bus-common (1.14.10-4ubuntu4.1) ...
- Setting up libharfbuzz0b:riscv64 (8.3.0-2build2) ...
- Setting up libthai-data (0.1.29-2build1) ...
- Setting up libxss1:riscv64 (1:1.2.3-1build3) ...
- Setting up libxkbfile1:riscv64 (1:1.1.0-1build4) ...
- Setting up libjpeg8-dev:riscv64 (8c-2ubuntu11) ...
- Setting up dbus-system-bus-common (1.14.10-4ubuntu4.1) ...
- Setting up libgfortran-13-dev:riscv64 (13.3.0-6ubuntu2~24.04) ...
- Setting up libdrm-common (2.4.122-1~ubuntu0.24.04.1) ...
- Setting up libxcomposite1:riscv64 (1:0.4.5-1build3) ...
- Setting up libxml2:riscv64 (2.9.14+dfsg-1.3ubuntu3.6) ...
- Setting up xdg-utils (1.1.3-4.1ubuntu3) ...
- 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.27-1) ...
- Setting up dbus-bin (1.14.10-4ubuntu4.1) ...
- Setting up gfortran-13-riscv64-linux-gnu (13.3.0-6ubuntu2~24.04) ...
- Setting up libx11-protocol-perl (0.56-9) ...
- Setting up libblas-dev:riscv64 (3.12.0-3build1.1) ...
- update-alternatives: using /usr/lib/riscv64-linux-gnu/blas/libblas.so to provide /usr/lib/riscv64-linux-gnu/libblas.so (libblas.so-riscv64-linux-gnu) in auto mode
- Setting up libbz2-dev:riscv64 (1.0.8-5.1build0.1) ...
- Setting up libwayland-client0:riscv64 (1.22.0-2.1build1) ...
- Setting up libnet-ssleay-perl:riscv64 (1.94-1build4) ...
- Setting up libpaper1:riscv64 (1.1.29build1) ...
-
- Creating config file /etc/papersize with new version
- Setting up libice6:riscv64 (2:1.0.10-1build3) ...
- Setting up libhttp-date-perl (6.06-1) ...
- Setting up liblapack3:riscv64 (3.12.0-3build1.1) ...
- update-alternatives: using /usr/lib/riscv64-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/riscv64-linux-gnu/liblapack.so.3 (liblapack.so.3-riscv64-linux-gnu) in auto mode
- Setting up libxft2:riscv64 (2.3.6-1build1) ...
- Setting up libncurses-dev:riscv64 (6.4+20240113-1ubuntu2) ...
- Setting up libfile-basedir-perl (0.09-2) ...
- Setting up libfile-listing-perl (6.16-1) ...
- Setting up libpcre2-dev:riscv64 (10.42-4ubuntu2.1) ...
- Setting up libtirpc3t64:riscv64 (1.3.4+ds-1.1build1) ...
- Setting up libxtst6:riscv64 (2:1.2.3-1.1build1) ...
- Setting up libtk8.6:riscv64 (8.6.14-1build1) ...
- Setting up libxcursor1:riscv64 (1:1.2.1-1build1) ...
- Setting up libpng-dev:riscv64 (1.6.43-5build1) ...
- Setting up libjpeg-dev:riscv64 (8c-2ubuntu11) ...
- Setting up libnet-http-perl (6.23-1) ...
- Setting up dbus-daemon (1.14.10-4ubuntu4.1) ...
- Setting up libpaper-utils (1.1.29build1) ...
- Setting up libreadline-dev:riscv64 (8.2-4build1) ...
- Setting up gfortran-riscv64-linux-gnu (4:13.2.0-7ubuntu1) ...
- Setting up pkgconf:riscv64 (1.8.1-2build1) ...
- Setting up libthai0:riscv64 (0.1.29-2build1) ...
- Setting up gfortran-13 (13.3.0-6ubuntu2~24.04) ...
- Setting up dbus (1.14.10-4ubuntu4.1) ...
- Setting up shared-mime-info (2.4-4) ...
- Setting up liblapack-dev:riscv64 (3.12.0-3build1.1) ...
- update-alternatives: using /usr/lib/riscv64-linux-gnu/lapack/liblapack.so to provide /usr/lib/riscv64-linux-gnu/liblapack.so (liblapack.so-riscv64-linux-gnu) in auto mode
- Setting up libllvm20:riscv64 (1:20.1.2-0ubuntu1~24.04.2) ...
- Setting up icu-devtools (74.2-1ubuntu3.1) ...
- Setting up pkg-config:riscv64 (1.8.1-2build1) ...
- Setting up libfile-desktopentry-perl (0.22-3) ...
- Setting up libwww-robotrules-perl (6.02-1) ...
- Setting up libdrm2:riscv64 (2.4.122-1~ubuntu0.24.04.1) ...
- Setting up libhtml-parser-perl:riscv64 (3.81-1build3) ...
- Setting up libsm6:riscv64 (2:1.2.3-1build3) ...
- Setting up libicu-dev:riscv64 (74.2-1ubuntu3.1) ...
- Setting up libio-socket-ssl-perl (2.085-1) ...
- Setting up libhttp-message-perl (6.45-1ubuntu1) ...
- Setting up libdrm-amdgpu1:riscv64 (2.4.122-1~ubuntu0.24.04.1) ...
- Setting up libhtml-form-perl (6.11-1) ...
- Setting up mesa-vulkan-drivers:riscv64 (25.0.7-0ubuntu0.24.04.2) ...
- Setting up libfile-mimeinfo-perl (0.34-1) ...
- Setting up libhttp-negotiate-perl (6.01-2) ...
- Setting up mesa-libgallium:riscv64 (25.0.7-0ubuntu0.24.04.2) ...
- Setting up libgbm1:riscv64 (25.0.7-0ubuntu0.24.04.2) ...
- Setting up libhttp-cookies-perl (6.11-1) ...
- Setting up libhtml-tree-perl (5.07-3) ...
- Setting up libpango-1.0-0:riscv64 (1.52.1+ds-1build1) ...
- Setting up libgl1-mesa-dri:riscv64 (25.0.7-0ubuntu0.24.04.2) ...
- Setting up libhtml-format-perl (2.16-2) ...
- Setting up gfortran (4:13.2.0-7ubuntu1) ...
- 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 libegl-mesa0:riscv64 (25.0.7-0ubuntu0.24.04.2) ...
- Setting up libnet-smtp-ssl-perl (1.04-2) ...
- Setting up libmailtools-perl (2.21-2) ...
- Setting up libxt6t64:riscv64 (1:1.2.1-1.2build1) ...
- Setting up libhttp-daemon-perl (6.16-1) ...
- Setting up libegl1:riscv64 (1.7.0-1build1) ...
- Setting up libpangoft2-1.0-0:riscv64 (1.52.1+ds-1build1) ...
- Setting up libpangocairo-1.0-0:riscv64 (1.52.1+ds-1build1) ...
- Setting up libxmu6:riscv64 (2:1.1.3-3build2) ...
- Setting up libglx-mesa0:riscv64 (25.0.7-0ubuntu0.24.04.2) ...
- Setting up libglx0:riscv64 (1.7.0-1build1) ...
- Setting up libxaw7:riscv64 (2:1.0.14-1build2) ...
- Setting up x11-xserver-utils (7.7+10build2) ...
- Setting up libgl1:riscv64 (1.7.0-1build1) ...
- Setting up r-base-core (4.3.3-2build2) ...
-
- Creating config file /etc/R/Renviron with new version
- Setting up r-cran-lattice (0.22-5-1build1) ...
- Setting up r-cran-nlme (3.1.164-1build1) ...
- Setting up zutty (0.14.8.20231210+dfsg1-1) ...
- update-alternatives: using /usr/bin/zutty 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/zutty.1.gz (of link group x-terminal-emulator) doesn't exist
- Setting up r-cran-cluster (2.1.6-1build1) ...
- Setting up x11-utils (7.7+6build2) ...
- Setting up r-cran-nnet (7.3-19-2build1) ...
- Setting up r-cran-codetools (0.2-19-1) ...
- Setting up r-cran-boot (1.3-30-1) ...
- Setting up r-base-dev (4.3.3-2build2) ...
- Setting up r-cran-spatial (7.3-17-1build1) ...
- Setting up r-cran-mass (7.3-60.0.1-1) ...
- Setting up r-cran-foreign (0.8.86-1build1) ...
- Setting up r-cran-matrix (1.6-5-1) ...
- Setting up r-cran-kernsmooth (2.23-22-1build1) ...
- Setting up r-cran-mgcv (1.9-1-1) ...
- Setting up r-cran-class (7.3-22-2build1) ...
- Setting up r-cran-survival (3.5-8-1) ...
- Setting up r-cran-rpart (4.1.23-1build1) ...
- Setting up r-recommended (4.3.3-2build2) ...
- Setting up liblwp-protocol-https-perl (6.13-1) ...
- Setting up libwww-perl (6.76-1) ...
- Setting up libxml-parser-perl (2.47-1build3) ...
- Setting up libxml-twig-perl (1:3.52-2) ...
- Setting up libnet-dbus-perl (1.2.0-2build3) ...
- Processing triggers for libc-bin (2.39-0ubuntu8.6) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved conf-r.1.0.0 (cached)
-> retrieved dolog.6.0.0 (cached)
-> installed conf-r.1.0.0
-> retrieved dune.3.20.2 (cached)
-> retrieved orrandomForest.2.0.1 (cached)
-> installed dune.3.20.2
-> installed dolog.6.0.0
-> installed orrandomForest.2.0.1
Done.
<><> orrandomForest.2.0.1 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 20:21.44 ---> using "0fa89915dadf535c466de11913858850e7c32d0d21a4f25ddd28ae51a66d8920" from cache
/home/opam: (run (network host)
(shell "(opam reinstall --with-test orrandomForest.2.0.1) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile orrandomForest 2.0.1 (pinned)
=== install 6 packages
- install batteries 3.10.0 [required by cpm]
- install camlp-streams 5.0.1 [required by batteries]
- install conf-gnuplot 0.1 [required by orrandomForest]
- install cpm 12.2.0 [required by orrandomForest]
- install num 1.6 [required by batteries]
- install ocamlfind 1.9.8 [required by batteries]
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 libpython3.12-minimal:riscv64.
- (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 ... 22019 files and directories currently installed.)
- Preparing to unpack .../libpython3.12-minimal_3.12.3-1ubuntu0.8_riscv64.deb ...
- Unpacking libpython3.12-minimal:riscv64 (3.12.3-1ubuntu0.8) ...
- Selecting previously unselected package python3.12-minimal.
- Preparing to unpack .../python3.12-minimal_3.12.3-1ubuntu0.8_riscv64.deb ...
- Unpacking python3.12-minimal (3.12.3-1ubuntu0.8) ...
- Setting up libpython3.12-minimal:riscv64 (3.12.3-1ubuntu0.8) ...
- Setting up python3.12-minimal (3.12.3-1ubuntu0.8) ...
- 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 ... 22330 files and directories currently installed.)
- Preparing to unpack .../python3-minimal_3.12.3-0ubuntu2_riscv64.deb ...
- Unpacking python3-minimal (3.12.3-0ubuntu2) ...
- Selecting previously unselected package media-types.
- Preparing to unpack .../media-types_10.1.0_all.deb ...
- Unpacking media-types (10.1.0) ...
- Selecting previously unselected package libpython3.12-stdlib:riscv64.
- Preparing to unpack .../libpython3.12-stdlib_3.12.3-1ubuntu0.8_riscv64.deb ...
- Unpacking libpython3.12-stdlib:riscv64 (3.12.3-1ubuntu0.8) ...
- Selecting previously unselected package python3.12.
- Preparing to unpack .../python3.12_3.12.3-1ubuntu0.8_riscv64.deb ...
- Unpacking python3.12 (3.12.3-1ubuntu0.8) ...
- Selecting previously unselected package libpython3-stdlib:riscv64.
- Preparing to unpack .../libpython3-stdlib_3.12.3-0ubuntu2_riscv64.deb ...
- Unpacking libpython3-stdlib:riscv64 (3.12.3-0ubuntu2) ...
- Setting up python3-minimal (3.12.3-0ubuntu2) ...
- 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 ... 22763 files and directories currently installed.)
- Preparing to unpack .../00-python3_3.12.3-0ubuntu2_riscv64.deb ...
- Unpacking python3 (3.12.3-0ubuntu2) ...
- Selecting previously unselected package libargon2-1:riscv64.
- Preparing to unpack .../01-libargon2-1_0~20190702+dfsg-4build1_riscv64.deb ...
- Unpacking libargon2-1:riscv64 (0~20190702+dfsg-4build1) ...
- Selecting previously unselected package libdevmapper1.02.1:riscv64.
- Preparing to unpack .../02-libdevmapper1.02.1_2%3a1.02.185-3ubuntu3.2_riscv64.deb ...
- Unpacking libdevmapper1.02.1:riscv64 (2:1.02.185-3ubuntu3.2) ...
- Selecting previously unselected package libjson-c5:riscv64.
- Preparing to unpack .../03-libjson-c5_0.17-1build1_riscv64.deb ...
- Unpacking libjson-c5:riscv64 (0.17-1build1) ...
- Selecting previously unselected package libcryptsetup12:riscv64.
- Preparing to unpack .../04-libcryptsetup12_2%3a2.7.0-1ubuntu4.2_riscv64.deb ...
- Unpacking libcryptsetup12:riscv64 (2:2.7.0-1ubuntu4.2) ...
- Selecting previously unselected package libfdisk1:riscv64.
- Preparing to unpack .../05-libfdisk1_2.39.3-9ubuntu6.3_riscv64.deb ...
- Unpacking libfdisk1:riscv64 (2.39.3-9ubuntu6.3) ...
- Selecting previously unselected package libkmod2:riscv64.
- Preparing to unpack .../06-libkmod2_31+20240202-2ubuntu7.1_riscv64.deb ...
- Unpacking libkmod2:riscv64 (31+20240202-2ubuntu7.1) ...
- Selecting previously unselected package libseccomp2:riscv64.
- Preparing to unpack .../07-libseccomp2_2.5.5-1ubuntu3.1_riscv64.deb ...
- Unpacking libseccomp2:riscv64 (2.5.5-1ubuntu3.1) ...
- Selecting previously unselected package libsystemd-shared:riscv64.
- Preparing to unpack .../08-libsystemd-shared_255.4-1ubuntu8.11_riscv64.deb ...
- Unpacking libsystemd-shared:riscv64 (255.4-1ubuntu8.11) ...
- Selecting previously unselected package systemd-dev.
- Preparing to unpack .../09-systemd-dev_255.4-1ubuntu8.11_all.deb ...
- Unpacking systemd-dev (255.4-1ubuntu8.11) ...
- Selecting previously unselected package systemd.
- Preparing to unpack .../10-systemd_255.4-1ubuntu8.11_riscv64.deb ...
- Unpacking systemd (255.4-1ubuntu8.11) ...
- Setting up libargon2-1:riscv64 (0~20190702+dfsg-4build1) ...
- Setting up libdevmapper1.02.1:riscv64 (2:1.02.185-3ubuntu3.2) ...
- Setting up libjson-c5:riscv64 (0.17-1build1) ...
- Setting up libcryptsetup12:riscv64 (2:2.7.0-1ubuntu4.2) ...
- Setting up libfdisk1:riscv64 (2.39.3-9ubuntu6.3) ...
- Setting up libkmod2:riscv64 (31+20240202-2ubuntu7.1) ...
- Setting up libseccomp2:riscv64 (2.5.5-1ubuntu3.1) ...
- Setting up libsystemd-shared:riscv64 (255.4-1ubuntu8.11) ...
- Setting up systemd-dev (255.4-1ubuntu8.11) ...
- Setting up systemd (255.4-1ubuntu8.11) ...
- Created symlink /etc/systemd/system/getty.target.wants/getty@tty1.service → /usr/lib/systemd/system/getty@.service.
- Created symlink /etc/systemd/system/multi-user.target.wants/remote-fs.target → /usr/lib/systemd/system/remote-fs.target.
- Created symlink /etc/systemd/system/sysinit.target.wants/systemd-pstore.service → /usr/lib/systemd/system/systemd-pstore.service.
- Initializing machine ID from D-Bus machine ID.
- /usr/lib/tmpfiles.d/systemd-network.conf:10: Failed to resolve user 'systemd-network': No such process
- /usr/lib/tmpfiles.d/systemd-network.conf:11: Failed to resolve user 'systemd-network': No such process
- /usr/lib/tmpfiles.d/systemd-network.conf:12: Failed to resolve user 'systemd-network': No such process
- /usr/lib/tmpfiles.d/systemd-network.conf:13: Failed to resolve user 'systemd-network': No such process
- /usr/lib/tmpfiles.d/systemd.conf:22: Failed to resolve group 'systemd-journal': No such process
- /usr/lib/tmpfiles.d/systemd.conf:23: Failed to resolve group 'systemd-journal': No such process
- /usr/lib/tmpfiles.d/systemd.conf:28: Failed to resolve group 'systemd-journal': No such process
- /usr/lib/tmpfiles.d/systemd.conf:29: Failed to resolve group 'systemd-journal': No such process
- /usr/lib/tmpfiles.d/systemd.conf:30: Failed to resolve group 'systemd-journal': No such process
- 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.
- 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 ... 23800 files and directories currently installed.)
- Preparing to unpack .../00-systemd-sysv_255.4-1ubuntu8.11_riscv64.deb ...
- Unpacking systemd-sysv (255.4-1ubuntu8.11) ...
- Selecting previously unselected package libpam-systemd:riscv64.
- Preparing to unpack .../01-libpam-systemd_255.4-1ubuntu8.11_riscv64.deb ...
- Unpacking libpam-systemd:riscv64 (255.4-1ubuntu8.11) ...
- Selecting previously unselected package dbus-user-session.
- Preparing to unpack .../02-dbus-user-session_1.14.10-4ubuntu4.1_riscv64.deb ...
- Unpacking dbus-user-session (1.14.10-4ubuntu4.1) ...
- Selecting previously unselected package dmsetup.
- Preparing to unpack .../03-dmsetup_2%3a1.02.185-3ubuntu3.2_riscv64.deb ...
- Unpacking dmsetup (2:1.02.185-3ubuntu3.2) ...
- Selecting previously unselected package gir1.2-glib-2.0:riscv64.
- Preparing to unpack .../04-gir1.2-glib-2.0_2.80.0-6ubuntu3.4_riscv64.deb ...
- Unpacking gir1.2-glib-2.0:riscv64 (2.80.0-6ubuntu3.4) ...
- Selecting previously unselected package libgirepository-1.0-1:riscv64.
- Preparing to unpack .../05-libgirepository-1.0-1_1.80.1-1_riscv64.deb ...
- Unpacking libgirepository-1.0-1:riscv64 (1.80.1-1) ...
- Selecting previously unselected package gir1.2-girepository-2.0:riscv64.
- Preparing to unpack .../06-gir1.2-girepository-2.0_1.80.1-1_riscv64.deb ...
- Unpacking gir1.2-girepository-2.0:riscv64 (1.80.1-1) ...
- Selecting previously unselected package libnss-systemd:riscv64.
- Preparing to unpack .../07-libnss-systemd_255.4-1ubuntu8.11_riscv64.deb ...
- Unpacking libnss-systemd:riscv64 (255.4-1ubuntu8.11) ...
- Selecting previously unselected package python3-dbus.
- Preparing to unpack .../08-python3-dbus_1.3.2-5build3_riscv64.deb ...
- Unpacking python3-dbus (1.3.2-5build3) ...
- Selecting previously unselected package python3-gi.
- Preparing to unpack .../09-python3-gi_3.48.2-1_riscv64.deb ...
- Unpacking python3-gi (3.48.2-1) ...
- Selecting previously unselected package networkd-dispatcher.
- Preparing to unpack .../10-networkd-dispatcher_2.2.4-1_all.deb ...
- Unpacking networkd-dispatcher (2.2.4-1) ...
- Selecting previously unselected package systemd-resolved.
- Preparing to unpack .../11-systemd-resolved_255.4-1ubuntu8.11_riscv64.deb ...
- Unpacking systemd-resolved (255.4-1ubuntu8.11) ...
- Selecting previously unselected package systemd-timesyncd.
- Preparing to unpack .../12-systemd-timesyncd_255.4-1ubuntu8.11_riscv64.deb ...
- Unpacking systemd-timesyncd (255.4-1ubuntu8.11) ...
- Selecting previously unselected package xkb-data.
- Preparing to unpack .../13-xkb-data_2.41-2ubuntu1.1_all.deb ...
- Unpacking xkb-data (2.41-2ubuntu1.1) ...
- Selecting previously unselected package libxkbcommon0:riscv64.
- Preparing to unpack .../14-libxkbcommon0_1.6.0-1build1_riscv64.deb ...
- Unpacking libxkbcommon0:riscv64 (1.6.0-1build1) ...
- Selecting previously unselected package libgdk-pixbuf2.0-common.
- Preparing to unpack .../15-libgdk-pixbuf2.0-common_2.42.10+dfsg-3ubuntu3.2_all.deb ...
- Unpacking libgdk-pixbuf2.0-common (2.42.10+dfsg-3ubuntu3.2) ...
- Selecting previously unselected package libgdk-pixbuf-2.0-0:riscv64.
- Preparing to unpack .../16-libgdk-pixbuf-2.0-0_2.42.10+dfsg-3ubuntu3.2_riscv64.deb ...
- Unpacking libgdk-pixbuf-2.0-0:riscv64 (2.42.10+dfsg-3ubuntu3.2) ...
- Selecting previously unselected package gtk-update-icon-cache.
- Preparing to unpack .../17-gtk-update-icon-cache_3.24.41-4ubuntu1.3_riscv64.deb ...
- Unpacking gtk-update-icon-cache (3.24.41-4ubuntu1.3) ...
- Selecting previously unselected package hicolor-icon-theme.
- Preparing to unpack .../18-hicolor-icon-theme_0.17-2_all.deb ...
- Unpacking hicolor-icon-theme (0.17-2) ...
- Selecting previously unselected package humanity-icon-theme.
- Preparing to unpack .../19-humanity-icon-theme_0.6.16_all.deb ...
- Unpacking humanity-icon-theme (0.6.16) ...
- Selecting previously unselected package ubuntu-mono.
- Preparing to unpack .../20-ubuntu-mono_24.04-0ubuntu1_all.deb ...
- Unpacking ubuntu-mono (24.04-0ubuntu1) ...
- Selecting previously unselected package adwaita-icon-theme.
- Preparing to unpack .../21-adwaita-icon-theme_46.0-1_all.deb ...
- Unpacking adwaita-icon-theme (46.0-1) ...
- Selecting previously unselected package at-spi2-common.
- Preparing to unpack .../22-at-spi2-common_2.52.0-1build1_all.deb ...
- Unpacking at-spi2-common (2.52.0-1build1) ...
- Selecting previously unselected package libatspi2.0-0t64:riscv64.
- Preparing to unpack .../23-libatspi2.0-0t64_2.52.0-1build1_riscv64.deb ...
- Unpacking libatspi2.0-0t64:riscv64 (2.52.0-1build1) ...
- Selecting previously unselected package libdconf1:riscv64.
- Preparing to unpack .../24-libdconf1_0.40.0-4ubuntu0.1_riscv64.deb ...
- Unpacking libdconf1:riscv64 (0.40.0-4ubuntu0.1) ...
- Selecting previously unselected package dconf-service.
- Preparing to unpack .../25-dconf-service_0.40.0-4ubuntu0.1_riscv64.deb ...
- Unpacking dconf-service (0.40.0-4ubuntu0.1) ...
- Selecting previously unselected package dconf-gsettings-backend:riscv64.
- Preparing to unpack .../26-dconf-gsettings-backend_0.40.0-4ubuntu0.1_riscv64.deb ...
- Unpacking dconf-gsettings-backend:riscv64 (0.40.0-4ubuntu0.1) ...
- Selecting previously unselected package session-migration.
- Preparing to unpack .../27-session-migration_0.3.9build1_riscv64.deb ...
- Unpacking session-migration (0.3.9build1) ...
- Selecting previously unselected package gsettings-desktop-schemas.
- Preparing to unpack .../28-gsettings-desktop-schemas_46.1-0ubuntu1_all.deb ...
- Unpacking gsettings-desktop-schemas (46.1-0ubuntu1) ...
- Selecting previously unselected package at-spi2-core.
- Preparing to unpack .../29-at-spi2-core_2.52.0-1build1_riscv64.deb ...
- Unpacking at-spi2-core (2.52.0-1build1) ...
- Selecting previously unselected package aglfn.
- Preparing to unpack .../30-aglfn_1.7+git20191031.4036a9c-2_all.deb ...
- Unpacking aglfn (1.7+git20191031.4036a9c-2) ...
- Selecting previously unselected package gnuplot-data.
- Preparing to unpack .../31-gnuplot-data_6.0.0+dfsg1-1ubuntu3_all.deb ...
- Unpacking gnuplot-data (6.0.0+dfsg1-1ubuntu3) ...
- Selecting previously unselected package liblua5.4-0:riscv64.
- Preparing to unpack .../32-liblua5.4-0_5.4.6-3build2_riscv64.deb ...
- Unpacking liblua5.4-0:riscv64 (5.4.6-3build2) ...
- Selecting previously unselected package libwebpmux3:riscv64.
- Preparing to unpack .../33-libwebpmux3_1.3.2-0.4build3_riscv64.deb ...
- Unpacking libwebpmux3:riscv64 (1.3.2-0.4build3) ...
- Selecting previously unselected package libwxbase3.2-1t64:riscv64.
- Preparing to unpack .../34-libwxbase3.2-1t64_3.2.4+dfsg-4build1_riscv64.deb ...
- Unpacking libwxbase3.2-1t64:riscv64 (3.2.4+dfsg-4build1) ...
- Selecting previously unselected package libatk1.0-0t64:riscv64.
- Preparing to unpack .../35-libatk1.0-0t64_2.52.0-1build1_riscv64.deb ...
- Unpacking libatk1.0-0t64:riscv64 (2.52.0-1build1) ...
- Selecting previously unselected package libatk-bridge2.0-0t64:riscv64.
- Preparing to unpack .../36-libatk-bridge2.0-0t64_2.52.0-1build1_riscv64.deb ...
- Unpacking libatk-bridge2.0-0t64:riscv64 (2.52.0-1build1) ...
- Selecting previously unselected package libcairo-gobject2:riscv64.
- Preparing to unpack .../37-libcairo-gobject2_1.18.0-3build1_riscv64.deb ...
- Unpacking libcairo-gobject2:riscv64 (1.18.0-3build1) ...
- Selecting previously unselected package liblcms2-2:riscv64.
- Preparing to unpack .../38-liblcms2-2_2.14-2build1_riscv64.deb ...
- Unpacking liblcms2-2:riscv64 (2.14-2build1) ...
- Selecting previously unselected package libcolord2:riscv64.
- Preparing to unpack .../39-libcolord2_1.4.7-1build2_riscv64.deb ...
- Unpacking libcolord2:riscv64 (1.4.7-1build2) ...
- Selecting previously unselected package libavahi-common-data:riscv64.
- Preparing to unpack .../40-libavahi-common-data_0.8-13ubuntu6_riscv64.deb ...
- Unpacking libavahi-common-data:riscv64 (0.8-13ubuntu6) ...
- Selecting previously unselected package libavahi-common3:riscv64.
- Preparing to unpack .../41-libavahi-common3_0.8-13ubuntu6_riscv64.deb ...
- Unpacking libavahi-common3:riscv64 (0.8-13ubuntu6) ...
- Selecting previously unselected package libavahi-client3:riscv64.
- Preparing to unpack .../42-libavahi-client3_0.8-13ubuntu6_riscv64.deb ...
- Unpacking libavahi-client3:riscv64 (0.8-13ubuntu6) ...
- Selecting previously unselected package libcups2t64:riscv64.
- Preparing to unpack .../43-libcups2t64_2.4.7-1.2ubuntu7.4_riscv64.deb ...
- Unpacking libcups2t64:riscv64 (2.4.7-1.2ubuntu7.4) ...
- Selecting previously unselected package libepoxy0:riscv64.
- Preparing to unpack .../44-libepoxy0_1.5.10-1build1_riscv64.deb ...
- Unpacking libepoxy0:riscv64 (1.5.10-1build1) ...
- Selecting previously unselected package libwayland-cursor0:riscv64.
- Preparing to unpack .../45-libwayland-cursor0_1.22.0-2.1build1_riscv64.deb ...
- Unpacking libwayland-cursor0:riscv64 (1.22.0-2.1build1) ...
- Selecting previously unselected package libwayland-egl1:riscv64.
- Preparing to unpack .../46-libwayland-egl1_1.22.0-2.1build1_riscv64.deb ...
- Unpacking libwayland-egl1:riscv64 (1.22.0-2.1build1) ...
- Selecting previously unselected package libxdamage1:riscv64.
- Preparing to unpack .../47-libxdamage1_1%3a1.1.6-1build1_riscv64.deb ...
- Unpacking libxdamage1:riscv64 (1:1.1.6-1build1) ...
- Selecting previously unselected package libgtk-3-common.
- Preparing to unpack .../48-libgtk-3-common_3.24.41-4ubuntu1.3_all.deb ...
- Unpacking libgtk-3-common (3.24.41-4ubuntu1.3) ...
- Selecting previously unselected package libgtk-3-0t64:riscv64.
- Preparing to unpack .../49-libgtk-3-0t64_3.24.41-4ubuntu1.3_riscv64.deb ...
- Unpacking libgtk-3-0t64:riscv64 (3.24.41-4ubuntu1.3) ...
- Selecting previously unselected package libnotify4:riscv64.
- Preparing to unpack .../50-libnotify4_0.8.3-1build2_riscv64.deb ...
- Unpacking libnotify4:riscv64 (0.8.3-1build2) ...
- Selecting previously unselected package libwxgtk3.2-1t64:riscv64.
- Preparing to unpack .../51-libwxgtk3.2-1t64_3.2.4+dfsg-4build1_riscv64.deb ...
- Unpacking libwxgtk3.2-1t64:riscv64 (3.2.4+dfsg-4build1) ...
- Selecting previously unselected package gnuplot-x11.
- Preparing to unpack .../52-gnuplot-x11_6.0.0+dfsg1-1ubuntu3_riscv64.deb ...
- Unpacking gnuplot-x11 (6.0.0+dfsg1-1ubuntu3) ...
- Selecting previously unselected package libgdk-pixbuf2.0-bin.
- Preparing to unpack .../53-libgdk-pixbuf2.0-bin_2.42.10+dfsg-3ubuntu3.2_riscv64.deb ...
- Unpacking libgdk-pixbuf2.0-bin (2.42.10+dfsg-3ubuntu3.2) ...
- Selecting previously unselected package libgtk-3-bin.
- Preparing to unpack .../54-libgtk-3-bin_3.24.41-4ubuntu1.3_riscv64.deb ...
- Unpacking libgtk-3-bin (3.24.41-4ubuntu1.3) ...
- Selecting previously unselected package librsvg2-2:riscv64.
- Preparing to unpack .../55-librsvg2-2_2.58.0+dfsg-1build1_riscv64.deb ...
- Unpacking librsvg2-2:riscv64 (2.58.0+dfsg-1build1) ...
- Selecting previously unselected package librsvg2-common:riscv64.
- Preparing to unpack .../56-librsvg2-common_2.58.0+dfsg-1build1_riscv64.deb ...
- Unpacking librsvg2-common:riscv64 (2.58.0+dfsg-1build1) ...
- Setting up media-types (10.1.0) ...
- Setting up liblcms2-2:riscv64 (2.14-2build1) ...
- Setting up session-migration (0.3.9build1) ...
- Created symlink /etc/systemd/user/graphical-session-pre.target.wants/session-migration.service → /usr/lib/systemd/user/session-migration.service.
- Setting up systemd-sysv (255.4-1ubuntu8.11) ...
- Setting up libxdamage1:riscv64 (1:1.1.6-1build1) ...
- Setting up libpython3.12-stdlib:riscv64 (3.12.3-1ubuntu0.8) ...
- Setting up hicolor-icon-theme (0.17-2) ...
- Setting up python3.12 (3.12.3-1ubuntu0.8) ...
- Setting up libgdk-pixbuf2.0-common (2.42.10+dfsg-3ubuntu3.2) ...
- Setting up libnss-systemd:riscv64 (255.4-1ubuntu8.11) ...
- Setting up xkb-data (2.41-2ubuntu1.1) ...
- Setting up libcolord2:riscv64 (1.4.7-1build2) ...
- Setting up libdconf1:riscv64 (0.40.0-4ubuntu0.1) ...
- Setting up libepoxy0:riscv64 (1.5.10-1build1) ...
- Setting up aglfn (1.7+git20191031.4036a9c-2) ...
- Setting up libavahi-common-data:riscv64 (0.8-13ubuntu6) ...
- Setting up libatspi2.0-0t64:riscv64 (2.52.0-1build1) ...
- Setting up systemd-timesyncd (255.4-1ubuntu8.11) ...
- 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 → /usr/lib/systemd/system/systemd-timesyncd.service.
- Created symlink /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service → /usr/lib/systemd/system/systemd-timesyncd.service.
- Setting up gir1.2-glib-2.0:riscv64 (2.80.0-6ubuntu3.4) ...
- Setting up dmsetup (2:1.02.185-3ubuntu3.2) ...
- Setting up at-spi2-common (2.52.0-1build1) ...
- Setting up libwayland-cursor0:riscv64 (1.22.0-2.1build1) ...
- Setting up libpam-systemd:riscv64 (255.4-1ubuntu8.11) ...
- Setting up liblua5.4-0:riscv64 (5.4.6-3build2) ...
- Setting up libgirepository-1.0-1:riscv64 (1.80.1-1) ...
- Setting up libgdk-pixbuf-2.0-0:riscv64 (2.42.10+dfsg-3ubuntu3.2) ...
- Setting up libcairo-gobject2:riscv64 (1.18.0-3build1) ...
- Setting up libwayland-egl1:riscv64 (1.22.0-2.1build1) ...
- Setting up libwxbase3.2-1t64:riscv64 (3.2.4+dfsg-4build1) ...
- Setting up libwebpmux3:riscv64 (1.3.2-0.4build3) ...
- Setting up libpython3-stdlib:riscv64 (3.12.3-0ubuntu2) ...
- Setting up systemd-resolved (255.4-1ubuntu8.11) ...
- Converting /etc/resolv.conf to a symlink to /run/systemd/resolve/stub-resolv.conf...
- mv: cannot move '/etc/resolv.conf' to '/etc/.resolv.conf.systemd-resolved.bak': Device or resource busy
- Cannot take a backup of /etc/resolv.conf.
- ln: failed to create symbolic link '/etc/resolv.conf': Device or resource busy
- Cannot install symlink from /etc/resolv.conf to ../run/systemd/resolve/stub-resolv.conf
- Creating group 'systemd-resolve' with GID 996.
- Creating user 'systemd-resolve' (systemd Resolver) with UID 996 and GID 996.
- Created symlink /etc/systemd/system/dbus-org.freedesktop.resolve1.service → /usr/lib/systemd/system/systemd-resolved.service.
- Created symlink /etc/systemd/system/sysinit.target.wants/systemd-resolved.service → /usr/lib/systemd/system/systemd-resolved.service.
- Setting up libxkbcommon0:riscv64 (1.6.0-1build1) ...
- Setting up gnuplot-data (6.0.0+dfsg1-1ubuntu3) ...
- Setting up gtk-update-icon-cache (3.24.41-4ubuntu1.3) ...
- Setting up libatk1.0-0t64:riscv64 (2.52.0-1build1) ...
- Setting up libavahi-common3:riscv64 (0.8-13ubuntu6) ...
- Setting up python3 (3.12.3-0ubuntu2) ...
- running python rtupdate hooks for python3.12...
- running python post-rtupdate hooks for python3.12...
- Setting up librsvg2-2:riscv64 (2.58.0+dfsg-1build1) ...
- Setting up dbus-user-session (1.14.10-4ubuntu4.1) ...
- Setting up gir1.2-girepository-2.0:riscv64 (1.80.1-1) ...
- Setting up libnotify4:riscv64 (0.8.3-1build2) ...
- Setting up python3-gi (3.48.2-1) ...
- Setting up librsvg2-common:riscv64 (2.58.0+dfsg-1build1) ...
- Setting up libgdk-pixbuf2.0-bin (2.42.10+dfsg-3ubuntu3.2) ...
- Setting up libavahi-client3:riscv64 (0.8-13ubuntu6) ...
- Setting up libatk-bridge2.0-0t64:riscv64 (2.52.0-1build1) ...
- Setting up python3-dbus (1.3.2-5build3) ...
- Setting up dconf-service (0.40.0-4ubuntu0.1) ...
- Setting up libcups2t64:riscv64 (2.4.7-1.2ubuntu7.4) ...
- Setting up networkd-dispatcher (2.2.4-1) ...
- Created symlink /etc/systemd/system/multi-user.target.wants/networkd-dispatcher.service → /usr/lib/systemd/system/networkd-dispatcher.service.
- Setting up dconf-gsettings-backend:riscv64 (0.40.0-4ubuntu0.1) ...
- Setting up libgtk-3-common (3.24.41-4ubuntu1.3) ...
- Setting up gsettings-desktop-schemas (46.1-0ubuntu1) ...
- Setting up adwaita-icon-theme (46.0-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 humanity-icon-theme (0.6.16) ...
- Setting up ubuntu-mono (24.04-0ubuntu1) ...
- Processing triggers for libglib2.0-0t64:riscv64 (2.80.0-6ubuntu3.4) ...
- Processing triggers for dbus (1.14.10-4ubuntu4.1) ...
- Setting up libgtk-3-0t64:riscv64 (3.24.41-4ubuntu1.3) ...
- Setting up at-spi2-core (2.52.0-1build1) ...
- Setting up libwxgtk3.2-1t64:riscv64 (3.2.4+dfsg-4build1) ...
- Setting up gnuplot-x11 (6.0.0+dfsg1-1ubuntu3) ...
- 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.39-0ubuntu8.6) ...
- Setting up libgtk-3-bin (3.24.41-4ubuntu1.3) ...
- Processing triggers for libgdk-pixbuf-2.0-0:riscv64 (2.42.10+dfsg-3ubuntu3.2) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved batteries.3.10.0 (https://opam.ocaml.org/cache)
-> retrieved camlp-streams.5.0.1 (https://opam.ocaml.org/cache)
-> installed conf-gnuplot.0.1
-> retrieved cpm.12.2.0 (https://opam.ocaml.org/cache)
-> retrieved num.1.6 (https://opam.ocaml.org/cache)
-> retrieved ocamlfind.1.9.8 (https://opam.ocaml.org/cache)
-> installed camlp-streams.5.0.1
-> retrieved orrandomForest.2.0.1 (https://opam.ocaml.org/cache)
-> installed num.1.6
-> removed orrandomForest.2.0.1
-> installed ocamlfind.1.9.8
-> installed batteries.3.10.0
-> installed cpm.12.2.0
-> installed orrandomForest.2.0.1
Done.
<><> orrandomForest.2.0.1 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 20:25.22 ---> saved as "707ad111e95948bf9fa506cd1ac4c83d56fa737aec1ffa60345a379a079f4402"
/home/opam: (run (shell "opam reinstall --with-test --verbose orrandomForest.2.0.1;\
\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-24.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.2.0.1' && 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 2.0.1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [orrandomForest.2.0.1: extract]
-> retrieved orrandomForest.2.0.1 (cached)
Processing 2/4: [orrandomForest: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "orrandomForest" "-j" "3" (CWD=/home/opam/.opam/4.14/.opam-switch/build/orrandomForest.2.0.1)
-> compiled orrandomForest.2.0.1
-> removed orrandomForest.2.0.1
-> installed orrandomForest.2.0.1
Done.
<><> orrandomForest.2.0.1 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 20:25.43 ---> saved as "40766f46bee52cbe19c663f3ee912223a0a4c131215a04261f87f9a8783ceac0"
Job succeeded
2025-11-10 20:26.19: Job succeeded