(for PR #24267)
2025-11-10 11:02.17: New job: test orrandomForest.3.0.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/24267/head (41de505ec8ff3637ab3cb06a41ccbc29683f566c)
on archlinux-ocaml-5.4/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/24267/head" && git reset --hard 41de505e
git fetch origin master
git merge --no-edit 21f97b2e6d7c617fc0a79cc8e59b2e10690960e1
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:archlinux-ocaml-5.4@sha256:f2b57883424ecac69260f2acbf993c67f0f75f9bd2f4a10437172469e28ffee5
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn orrandomForest.3.0.0 3.0.0
RUN opam reinstall orrandomForest.3.0.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"archlinux\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'orrandomForest.3.0.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test orrandomForest.3.0.0) || true
RUN opam reinstall --with-test --verbose orrandomForest.3.0.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"archlinux\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'orrandomForest.3.0.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2025-11-10 11:02.17: Using cache hint "ocaml/opam:archlinux-ocaml-5.4@sha256:f2b57883424ecac69260f2acbf993c67f0f75f9bd2f4a10437172469e28ffee5-orrandomForest.3.0.0-41de505ec8ff3637ab3cb06a41ccbc29683f566c"
2025-11-10 11:02.17: Using OBuilder spec:
((from ocaml/opam:archlinux-ocaml-5.4@sha256:f2b57883424ecac69260f2acbf993c67f0f75f9bd2f4a10437172469e28ffee5)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn orrandomForest.3.0.0 3.0.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall orrandomForest.3.0.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"archlinux\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'orrandomForest.3.0.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test orrandomForest.3.0.0) || true"))
(run (shell "opam reinstall --with-test --verbose orrandomForest.3.0.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"archlinux\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'orrandomForest.3.0.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-11-10 11:02.17: Waiting for resource in pool OCluster
2025-11-10 12:35.48: Waiting for worker…
2025-11-10 12:41.20: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at 21f97b2e6d Merge pull request #28836 from dbuenzli/b0-publish-bytesrw.0.3.0
Merge made by the 'ort' strategy.
packages/odnnr/odnnr.2.0.0/opam | 4 +---
packages/oplsr/oplsr.8.0.1/opam | 3 +--
packages/orrandomForest/orrandomForest.1.0.0/opam | 5 +----
packages/orrandomForest/orrandomForest.2.0.1/opam | 7 +------
packages/orrandomForest/orrandomForest.3.0.0/opam | 7 +------
packages/orsvm_e1071/orsvm_e1071.2.0.0/opam | 3 ---
packages/orsvm_e1071/orsvm_e1071.3.0.0/opam | 5 +----
packages/orsvm_e1071/orsvm_e1071.3.0.1/opam | 2 +-
packages/orsvm_e1071/orsvm_e1071.3.0.2/opam | 2 +-
packages/orsvm_e1071/orsvm_e1071.4.0.0/opam | 2 +-
packages/orxgboost/orxgboost.1.0.1/opam | 5 +----
packages/orxgboost/orxgboost.1.1.0/opam | 5 +----
packages/orxgboost/orxgboost.1.2.0/opam | 5 +----
13 files changed, 12 insertions(+), 43 deletions(-)
(from ocaml/opam:archlinux-ocaml-5.4@sha256:f2b57883424ecac69260f2acbf993c67f0f75f9bd2f4a10437172469e28ffee5)
Unable to find image 'ocaml/opam:archlinux-ocaml-5.4@sha256:f2b57883424ecac69260f2acbf993c67f0f75f9bd2f4a10437172469e28ffee5' locally
docker.io/ocaml/opam@sha256:f2b57883424ecac69260f2acbf993c67f0f75f9bd2f4a10437172469e28ffee5: Pulling from ocaml/opam
a59b1e251b85: Already exists
849b0775ea0f: Already exists
9d20c098ec76: Already exists
06eb9f7865f2: Already exists
c240908bead2: Already exists
1ecf1bb05538: Already exists
ed893cc754b7: Already exists
edacf2579914: Already exists
05c577939763: Already exists
ef8936ed2115: Already exists
03d88b820e0f: Already exists
7ad98e89cb6f: Already exists
d5de02ff18c6: Already exists
a039df7c27db: Already exists
4f4fb700ef54: Already exists
6a3e38ba2bef: Already exists
fbffc84d36db: Already exists
576b77c89595: Already exists
3481805c55c1: Already exists
42630e11cdf2: Already exists
b5fc415bc313: Already exists
737547a67ea4: Already exists
9cc4ccf31d95: Already exists
b438a2bfeb52: Already exists
acb0748395fb: Already exists
0ab398869fe3: Already exists
6c1375743e2c: Already exists
c88d9a06b9a9: Already exists
83e3b1e13251: Already exists
99dce37e928a: Already exists
152d026b0425: Already exists
01cfea535c66: Already exists
134d5afae458: Already exists
7586886147fa: Pulling fs layer
993e4a7f2b9f: Pulling fs layer
903a29eb42a8: Pulling fs layer
a5286c1e9d59: Pulling fs layer
903a29eb42a8: Waiting
2876c66b29b6: Pulling fs layer
a5286c1e9d59: Waiting
2876c66b29b6: Waiting
7586886147fa: Verifying Checksum
7586886147fa: Download complete
7586886147fa: Pull complete
903a29eb42a8: Verifying Checksum
903a29eb42a8: Download complete
a5286c1e9d59: Verifying Checksum
a5286c1e9d59: Download complete
2876c66b29b6: Verifying Checksum
2876c66b29b6: Download complete
993e4a7f2b9f: Verifying Checksum
993e4a7f2b9f: Download complete
993e4a7f2b9f: Pull complete
903a29eb42a8: Pull complete
a5286c1e9d59: Pull complete
2876c66b29b6: Pull complete
Digest: sha256:f2b57883424ecac69260f2acbf993c67f0f75f9bd2f4a10437172469e28ffee5
Status: Downloaded newer image for ocaml/opam@sha256:f2b57883424ecac69260f2acbf993c67f0f75f9bd2f4a10437172469e28ffee5
2025-11-10 12:52.15 ---> using "c5ec08e9b846f91b986ff2383fc30f6338b1567641a5ad9a2c1c32527aa4f09c" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-11-10 12:52.15 ---> using "8a9067b27012d2ba6b4516e93d0c793ee0e0592a932401de368b7e2f165df9dd" 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
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-11-10 12:52.15 ---> using "10b8b707aef33fdbd36331cf185a6fa41045dcc827c8af884a875491d600a5a5" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0~alpha1
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=arch os-version=20251019.0.436919
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 255
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# invariant ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0
2025-11-10 12:52.15 ---> using "4ac6b250fe85f17d5f68eada31b34e0dc15e2e80550508216edaadde034fc5db" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2025-11-10 12:52.15 ---> using "8862006d5282ef4e8d32a6939b65b6e6b807dbcea8fb01bc93817277c0ba4bb6" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-11-10 12:52.15 ---> using "83ed892df4965e6a2778175a22580c25dc3957425c27ee61164a9075e76319b6" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-10 12:52.15 ---> using "b047dc49c9be5a779f11fb854c2388b5b0a154fe860fc85f455b04804fdab699" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/sbin/sudo "pacman" "-Sy"
- :: Synchronizing package databases...
- core downloading...
- extra downloading...
2025-11-10 12:52.24 ---> saved as "3b0696218f80ef9d85eb70a72dd7b4b4a2a9f9790e95efe039b98c6f05144bd3"
/home/opam: (run (shell "opam pin add -k version -yn orrandomForest.3.0.0 3.0.0"))
orrandomForest is now pinned to version 3.0.0
2025-11-10 12:52.25 ---> saved as "60ac02be8fd2a36c9f0eca1c43c96f66c30af7520c2a5004047101a61ee8d97b"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall orrandomForest.3.0.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"archlinux\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'orrandomForest.3.0.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
orrandomForest.3.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 14 packages
∗ batteries 3.10.0 [required by orrandomForest]
∗ camlp-streams 5.0.1 [required by batteries]
∗ conf-autoconf 0.2 [required by cpu]
∗ conf-r 1.0.0 [required by orrandomForest]
∗ cpm 12.2.0 [required by orrandomForest]
∗ cpu 2.0.0 [required by parany]
∗ dolog 6.0.0 [required by orrandomForest]
∗ dune 3.20.2 [required by orrandomForest]
∗ line_oriented 1.3.0 [required by orrandomForest]
∗ minicli 5.0.2 [required by orrandomForest]
∗ num 1.6 [required by batteries]
∗ ocamlfind 1.9.8 [required by batteries]
∗ orrandomForest 3.0.0 (pinned)
∗ parany 14.0.1 [required by orrandomForest]
The following system packages will first need to be installed:
autoconf r
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run pacman to install them (may need root/sudo access)
2. Display the recommended pacman 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/sbin/sudo "pacman" "-Su" "--noconfirm" "autoconf" "r"
- :: Starting full system upgrade...
- resolving dependencies...
- looking for conflicting packages...
-
- Package (40) Old Version New Version Net Change Download Size
-
- extra/blas 3.12.1-2 0.74 MiB 0.24 MiB
- extra/cairo 1.18.4-1 1.59 MiB 0.61 MiB
- extra/fontconfig 2:2.17.1-1 1.12 MiB 0.37 MiB
- extra/freetype2 2.14.1-1 1.66 MiB 0.53 MiB
- extra/fribidi 1.0.16-2 0.24 MiB 0.07 MiB
- extra/graphite 1:1.3.14-5 0.20 MiB 0.08 MiB
- extra/harfbuzz 12.2.0-2 4.37 MiB 1.13 MiB
- core/icu 76.1-1 78.1-1 1.47 MiB 11.71 MiB
- extra/jbigkit 2.1-8 0.16 MiB 0.05 MiB
- extra/lapack 3.12.1-2 15.06 MiB 4.83 MiB
- extra/libdatrie 0.2.13-4 0.48 MiB 0.11 MiB
- extra/libdeflate 1.24-1 0.14 MiB 0.06 MiB
- extra/libice 1.1.2-1 0.36 MiB 0.08 MiB
- extra/libjpeg-turbo 3.1.2-1 2.42 MiB 0.56 MiB
- extra/libpng 1.6.50-1 0.57 MiB 0.25 MiB
- extra/libsm 1.2.6-1 0.26 MiB 0.04 MiB
- extra/libthai 0.1.29-3 1.22 MiB 0.27 MiB
- extra/libtiff 4.7.1-1 1.26 MiB 0.38 MiB
- extra/libwebp 1.6.0-2 1.04 MiB 0.32 MiB
- core/libxcrypt 4.5.0-1 4.5.1-1 0.00 MiB 0.09 MiB
- extra/libxext 1.3.6-1 0.30 MiB 0.10 MiB
- extra/libxft 2.3.9-1 0.13 MiB 0.06 MiB
- core/libxml2 2.15.1-1 2.15.1-3 0.00 MiB 0.75 MiB
- extra/libxmu 1.2.1-1 0.33 MiB 0.07 MiB
- extra/libxrender 0.9.12-1 0.09 MiB 0.03 MiB
- extra/libxss 1.2.5-1 0.03 MiB 0.01 MiB
- extra/libxt 1.3.1-1 2.02 MiB 0.52 MiB
- core/lzo 2.10-5 0.38 MiB 0.09 MiB
- core/m4 1.4.20-1 0.70 MiB 0.26 MiB
- extra/pango 1:1.57.0-2 2.33 MiB 0.41 MiB
- extra/pixman 0.46.4-1 0.74 MiB 0.28 MiB
- core/systemd 258.1-1 258.2-1 0.01 MiB 9.23 MiB
- core/systemd-libs 258.1-1 258.2-1 0.00 MiB 1.24 MiB
- core/systemd-sysvcompat 258.1-1 258.2-1 0.00 MiB 0.01 MiB
- extra/tcl 8.6.16-1 13.60 MiB 4.54 MiB
- extra/tk 8.6.16-1 12.27 MiB 3.67 MiB
- core/which 2.23-1 0.03 MiB 0.02 MiB
- extra/zip 3.0-11 0.55 MiB 0.17 MiB
- core/autoconf 2.72-1 2.22 MiB 0.64 MiB
- extra/r 4.5.2-2 76.00 MiB 48.34 MiB
-
- Total Download Size: 92.19 MiB
- Total Installed Size: 229.49 MiB
- Net Upgrade Size: 146.08 MiB
-
- :: Proceed with installation? [Y/n]
- :: Retrieving packages...
- r-4.5.2-2-x86_64 downloading...
- icu-78.1-1-x86_64 downloading...
- systemd-258.2-1-x86_64 downloading...
- lapack-3.12.1-2-x86_64 downloading...
- tcl-8.6.16-1-x86_64 downloading...
- tk-8.6.16-1-x86_64 downloading...
- systemd-libs-258.2-1-x86_64 downloading...
- harfbuzz-12.2.0-2-x86_64 downloading...
- libxml2-2.15.1-3-x86_64 downloading...
- autoconf-2.72-1-any downloading...
- cairo-1.18.4-1-x86_64 downloading...
- libjpeg-turbo-3.1.2-1-x86_64 downloading...
- freetype2-2.14.1-1-x86_64 downloading...
- libxt-1.3.1-1-x86_64 downloading...
- pango-1:1.57.0-2-x86_64 downloading...
- libtiff-4.7.1-1-x86_64 downloading...
- fontconfig-2:2.17.1-1-x86_64 downloading...
- libwebp-1.6.0-2-x86_64 downloading...
- pixman-0.46.4-1-x86_64 downloading...
- libthai-0.1.29-3-x86_64 downloading...
- m4-1.4.20-1-x86_64 downloading...
- libpng-1.6.50-1-x86_64 downloading...
- blas-3.12.1-2-x86_64 downloading...
- zip-3.0-11-x86_64 downloading...
- libdatrie-0.2.13-4-x86_64 downloading...
- libxext-1.3.6-1-x86_64 downloading...
- libxcrypt-4.5.1-1-x86_64 downloading...
- lzo-2.10-5-x86_64 downloading...
- graphite-1:1.3.14-5-x86_64 downloading...
- libice-1.1.2-1-x86_64 downloading...
- libxmu-1.2.1-1-x86_64 downloading...
- fribidi-1.0.16-2-x86_64 downloading...
- libdeflate-1.24-1-x86_64 downloading...
- libxft-2.3.9-1-x86_64 downloading...
- jbigkit-2.1-8-x86_64 downloading...
- libsm-1.2.6-1-x86_64 downloading...
- libxrender-0.9.12-1-x86_64 downloading...
- which-2.23-1-x86_64 downloading...
- libxss-1.2.5-1-x86_64 downloading...
- systemd-sysvcompat-258.2-1-x86_64 downloading...
- checking keyring...
- checking package integrity...
- loading package files...
- checking for file conflicts...
- :: Processing package changes...
- installing m4...
- upgrading libxcrypt...
- installing autoconf...
- installing blas...
- installing libpng...
- installing freetype2...
- Optional dependencies for freetype2
- harfbuzz: Improved autohinting [pending]
- installing fontconfig...
- Creating fontconfig configuration...
- Rebuilding fontconfig cache...
- installing libxext...
- installing libxrender...
- installing lzo...
- installing pixman...
- installing cairo...
- upgrading icu...
- installing lapack...
- installing libdeflate...
- installing libjpeg-turbo...
- Optional dependencies for libjpeg-turbo
- java-runtime>11: for TurboJPEG Java wrapper
- installing jbigkit...
- installing libwebp...
- Optional dependencies for libwebp
- libwebp-utils: WebP conversion and inspection tools
- installing libtiff...
- Optional dependencies for libtiff
- freeglut: for using tiffgt
- installing libice...
- installing libsm...
- installing libxt...
- installing libxmu...
- installing fribidi...
- installing graphite...
- Optional dependencies for graphite
- graphite-docs: Documentation
- installing harfbuzz...
- Optional dependencies for harfbuzz
- harfbuzz-utils: utilities
- installing libdatrie...
- installing libthai...
- installing libxft...
- installing pango...
- installing tcl...
- installing libxss...
- installing tk...
- installing which...
- installing zip...
- upgrading systemd-libs...
- installing r...
- Optional dependencies for r
- blas-openblas: faster linear algebra
- gcc-fortran: needed to compile some CRAN packages
- texlive-latex: latex sty files
- upgrading libxml2...
- upgrading systemd...
- upgrading systemd-sysvcompat...
- :: Running post-transaction hooks...
- ( 1/13) Creating system user accounts...
- ( 2/13) Updating journal message catalog...
- ( 3/13) Reloading system manager configuration...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- ( 4/13) Reloading user manager configuration...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- ( 5/13) Updating udev hardware database...
- ( 6/13) Restarting marked services...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- ( 7/13) Applying kernel sysctl settings...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- ( 8/13) Creating temporary files...
- /usr/lib/tmpfiles.d/journal-nocow.conf:26: Failed to resolve specifier: uninitialized /etc/ detected, skipping.
- All rules containing unresolvable specifiers will be skipped.
- ( 9/13) Reloading device manager configuration...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- (10/13) Arming ConditionNeedsUpdate...
- (11/13) Updating fontconfig configuration...
- (12/13) Reloading system bus configuration...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- (13/13) Updating fontconfig cache...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved batteries.3.10.0 (cached)
⬇ retrieved camlp-streams.5.0.1 (cached)
⬇ retrieved conf-r.1.0.0 (cached)
⬇ retrieved cpm.12.2.0 (cached)
⬇ retrieved cpu.2.0.0 (cached)
⬇ retrieved dolog.6.0.0 (cached)
∗ installed conf-autoconf.0.2
∗ installed conf-r.1.0.0
⬇ retrieved dune.3.20.2 (cached)
⬇ retrieved line_oriented.1.3.0 (cached)
⬇ retrieved minicli.5.0.2 (cached)
⬇ retrieved num.1.6 (cached)
⬇ retrieved ocamlfind.1.9.8 (cached)
⬇ retrieved orrandomForest.3.0.0 (cached)
⬇ retrieved parany.14.0.1 (cached)
∗ installed num.1.6
∗ installed ocamlfind.1.9.8
∗ installed dune.3.20.2
∗ installed dolog.6.0.0
∗ installed minicli.5.0.2
∗ installed camlp-streams.5.0.1
∗ installed cpu.2.0.0
∗ installed parany.14.0.1
∗ installed batteries.3.10.0
∗ installed line_oriented.1.3.0
∗ installed cpm.12.2.0
∗ installed orrandomForest.3.0.0
Done.
<><> orrandomForest.3.0.0 installed successfully ><><><><><><><><><><><><><><><>
=> Please interact with R to install needed things in user-space:
R
install.packages('Marix', repos='http://cran.r-project.org')
install.packages('randomForest', repos='http://cran.r-project.org')
# To update the current shell environment, run: eval $(opam env)
2025-11-10 12:56.23 ---> saved as "2ed72ab404ebf36597f427770f6d0da463d25ddb2d11383aa21b78c878197d66"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test orrandomForest.3.0.0) || true"))
The following actions will be performed:
=== recompile 2 packages
↻ cpm 12.2.0 [uses conf-gnuplot]
↻ orrandomForest 3.0.0 (pinned)
=== install 1 package
∗ conf-gnuplot 0.1 [required by orrandomForest]
The following system packages will first need to be installed:
gnuplot
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run pacman to install them (may need root/sudo access)
2. Display the recommended pacman 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/sbin/sudo "pacman" "-Su" "--noconfirm" "gnuplot"
- :: Starting full system upgrade...
- resolving dependencies...
- looking for conflicting packages...
- warning: dependency cycle detected:
- warning: librsvg will be installed before its gdk-pixbuf2 dependency
- warning: dependency cycle detected:
- warning: mesa will be installed before its libglvnd dependency
-
- Package (123) New Version Net Change Download Size
-
- extra/adwaita-cursors 49.0-1 11.41 MiB 0.35 MiB
- extra/adwaita-fonts 49.0-2 7.22 MiB 2.11 MiB
- extra/adwaita-icon-theme 49.0-1 1.17 MiB 0.20 MiB
- extra/adwaita-icon-theme-legacy 46.2-3 2.23 MiB 2.17 MiB
- extra/aom 3.13.1-1 9.16 MiB 2.91 MiB
- extra/at-spi2-core 2.58.1-1 3.98 MiB 0.57 MiB
- extra/avahi 1:0.9rc2-1 1.94 MiB 0.42 MiB
- extra/dav1d 1.5.2-1 1.78 MiB 0.63 MiB
- extra/dconf 0.49.0-1 0.45 MiB 0.10 MiB
- extra/default-cursors 3-1 0.00 MiB 0.00 MiB
- extra/desktop-file-utils 0.28-1 0.18 MiB 0.04 MiB
- extra/double-conversion 3.3.1-1 0.19 MiB 0.06 MiB
- extra/duktape 2.7.0-7 0.78 MiB 0.17 MiB
- extra/freeglut 3.6.0-3 0.34 MiB 0.10 MiB
- extra/gd 2.3.3-9 0.64 MiB 0.15 MiB
- extra/gdk-pixbuf2 2.44.4-1 2.95 MiB 0.48 MiB
- extra/giflib 5.2.2-2 0.27 MiB 0.08 MiB
- extra/glib-networking 1:2.80.1-1 0.65 MiB 0.14 MiB
- extra/glu 9.0.3-2 0.35 MiB 0.15 MiB
- extra/glycin 2.0.5-1 19.55 MiB 3.91 MiB
- extra/gperftools 2.17.2-1 2.01 MiB 0.49 MiB
- extra/graphene 1.10.8-2 0.98 MiB 0.10 MiB
- extra/gsettings-desktop-schemas 49.1-1 5.69 MiB 0.75 MiB
- extra/gsettings-system-schemas 49.1-1 0.01 MiB 0.01 MiB
- extra/gssdp 1.6.4-1 0.24 MiB 0.06 MiB
- extra/gst-plugins-bad-libs 1.26.7-1 12.56 MiB 2.86 MiB
- extra/gst-plugins-base-libs 1.26.7-1 12.43 MiB 2.35 MiB
- extra/gstreamer 1.26.7-1 11.42 MiB 2.02 MiB
- extra/gtest 1.17.0-1 1.63 MiB 0.38 MiB
- extra/gtk-update-icon-cache 1:4.20.2-3 0.04 MiB 0.02 MiB
- extra/gtk3 1:3.24.51-1 52.56 MiB 8.80 MiB
- extra/gupnp 1:1.6.9-1 0.70 MiB 0.12 MiB
- extra/gupnp-igd 1.6.0-2 0.11 MiB 0.03 MiB
- extra/hicolor-icon-theme 0.18-1 0.05 MiB 0.01 MiB
- extra/hidapi 0.15.0-1 0.13 MiB 0.04 MiB
- extra/highway 1.3.0-1 9.87 MiB 1.16 MiB
- extra/imlib2 1.12.5-1 1.47 MiB 0.56 MiB
- extra/iso-codes 4.19.0-1 22.22 MiB 3.60 MiB
- extra/json-glib 1.10.8-1 1.01 MiB 0.17 MiB
- extra/lcms2 2.17-1 0.67 MiB 0.21 MiB
- extra/libavif 1.3.0-3 0.74 MiB 0.26 MiB
- extra/libb2 0.98.1-3 0.13 MiB 0.04 MiB
- extra/libcaca 0.99.beta20-5 2.68 MiB 0.42 MiB
- extra/libcerf 1:3.3-1 0.20 MiB 0.08 MiB
- extra/libcloudproviders 0.3.6-2 0.47 MiB 0.06 MiB
- extra/libcolord 1.4.8-1 1.24 MiB 0.18 MiB
- extra/libcups 2:2.4.14-1 0.77 MiB 0.27 MiB
- extra/libdaemon 0.14-6 0.06 MiB 0.02 MiB
- extra/libde265 1.0.16-2 0.72 MiB 0.26 MiB
- extra/libdrm 2.4.128-1 1.26 MiB 0.34 MiB
- core/libedit 20250104_3.1-1 0.26 MiB 0.11 MiB
- extra/libepoxy 1.5.10-3 2.64 MiB 0.30 MiB
- extra/libevdev 1.13.5-1 0.21 MiB 0.06 MiB
- extra/libglvnd 1.7.0-3 3.34 MiB 0.32 MiB
- extra/libgudev 238-3 0.38 MiB 0.04 MiB
- extra/libheif 1.20.2-3 2.06 MiB 0.63 MiB
- extra/libinput 1.29.2-1 1.26 MiB 0.33 MiB
- extra/libjxl 0.11.1-5 9.74 MiB 2.20 MiB
- extra/libmspack 1:1.11-1 0.16 MiB 0.05 MiB
- extra/libnice 0.1.22-2 1.80 MiB 0.30 MiB
- extra/libnotify 0.8.7-1 0.15 MiB 0.04 MiB
- extra/libpciaccess 0.18.1-2 0.06 MiB 0.02 MiB
- extra/libproxy 0.5.11-1 0.10 MiB 0.03 MiB
- extra/librsvg 2:2.61.3-1 10.39 MiB 2.30 MiB
- extra/libsoup3 3.6.5-1 1.95 MiB 0.38 MiB
- extra/libstemmer 3.0.1-1 0.60 MiB 0.13 MiB
- extra/libunwind 1.8.2-1 0.29 MiB 0.13 MiB
- extra/libva 2.22.0-1 0.97 MiB 0.19 MiB
- extra/libwacom 2.16.1-1 1.50 MiB 0.17 MiB
- extra/libxcomposite 0.4.6-2 0.02 MiB 0.01 MiB
- extra/libxcursor 1.2.3-1 0.07 MiB 0.03 MiB
- extra/libxdamage 1.1.6-2 0.02 MiB 0.01 MiB
- extra/libxfixes 6.0.2-1 0.04 MiB 0.01 MiB
- extra/libxi 1.8.2-1 0.48 MiB 0.15 MiB
- extra/libxinerama 1.1.5-2 0.02 MiB 0.01 MiB
- extra/libxkbcommon 1.12.3-1 1.02 MiB 0.27 MiB
- extra/libxkbcommon-x11 1.12.3-1 0.10 MiB 0.03 MiB
- extra/libxpm 3.5.17-2 0.16 MiB 0.07 MiB
- extra/libxrandr 1.5.4-1 0.07 MiB 0.03 MiB
- extra/libxshmfence 1.3.3-1 0.02 MiB 0.01 MiB
- extra/libxtst 1.2.5-1 0.11 MiB 0.03 MiB
- extra/libxv 1.0.13-1 0.06 MiB 0.03 MiB
- extra/libxxf86vm 1.1.6-1 0.03 MiB 0.02 MiB
- extra/libyuv r2426+464c51a03-1 1.82 MiB 0.30 MiB
- extra/llvm-libs 21.1.5-1 150.01 MiB 38.45 MiB
- extra/lm_sensors 1:3.6.2-1 0.48 MiB 0.13 MiB
- extra/lua 5.4.8-2 1.50 MiB 0.35 MiB
- extra/md4c 0.5.2-1 0.25 MiB 0.08 MiB
- extra/mesa 1:25.2.6-1 44.44 MiB 11.21 MiB
- extra/mtdev 1.1.7-1 0.05 MiB 0.02 MiB
- extra/openh264 2.6.0-1 2.17 MiB 0.63 MiB
- extra/orc 0.4.41-1 1.29 MiB 0.26 MiB
- core/pcre 8.45-4 3.50 MiB 0.98 MiB
- extra/qt6-5compat 6.10.0-2 2.11 MiB 0.50 MiB
- extra/qt6-base 6.10.0-3 64.29 MiB 15.05 MiB
- extra/qt6-shadertools 6.10.0-1 4.82 MiB 1.58 MiB
- extra/qt6-svg 6.10.0-2 0.95 MiB 0.27 MiB
- extra/qt6-translations 6.10.0-1 14.72 MiB 1.89 MiB
- extra/rav1e 0.8.1-2 7.61 MiB 1.60 MiB
- extra/sdl2-compat 2.32.58-1 3.08 MiB 0.45 MiB
- extra/sdl3 3.2.26-1 6.14 MiB 1.38 MiB
- extra/shared-mime-info 2.4-2 4.57 MiB 0.60 MiB
- extra/slang 2.3.3-4 3.36 MiB 0.81 MiB
- extra/spirv-tools 1:1.4.328.1-1 7.43 MiB 1.87 MiB
- extra/svt-av1 3.1.2-1 5.62 MiB 1.96 MiB
- extra/tinysparql 3.10.1-2 3.85 MiB 1.05 MiB
- extra/tslib 1.24-1 0.47 MiB 0.10 MiB
- extra/vulkan-icd-loader 1.4.328.1-1 0.58 MiB 0.15 MiB
- extra/wayland 1.24.0-1 0.82 MiB 0.14 MiB
- extra/wxwidgets-common 3.2.8.1-2 15.22 MiB 2.92 MiB
- extra/wxwidgets-gtk3 3.2.8.1-2 16.61 MiB 4.53 MiB
- extra/x265 4.1-1 20.84 MiB 1.94 MiB
- extra/xcb-util 0.4.1-2 0.03 MiB 0.01 MiB
- extra/xcb-util-cursor 0.1.6-1 0.03 MiB 0.01 MiB
- extra/xcb-util-image 0.4.1-3 0.05 MiB 0.02 MiB
- extra/xcb-util-keysyms 0.4.1-5 0.02 MiB 0.01 MiB
- extra/xcb-util-renderutil 0.3.10-2 0.03 MiB 0.01 MiB
- extra/xcb-util-wm 0.4.2-2 0.21 MiB 0.03 MiB
- extra/xdg-utils 1.2.1-1 0.30 MiB 0.06 MiB
- extra/xkeyboard-config 2.46-1 10.21 MiB 0.86 MiB
- extra/xorg-xprop 1.2.8-1 0.05 MiB 0.03 MiB
- extra/xorg-xset 1.2.5-2 0.04 MiB 0.02 MiB
- extra/gnuplot 6.0.3-1 3.58 MiB 1.29 MiB
-
- Total Download Size: 142.35 MiB
- Total Installed Size: 652.51 MiB
-
- :: Proceed with installation? [Y/n]
- :: Retrieving packages...
- llvm-libs-21.1.5-1-x86_64 downloading...
- qt6-base-6.10.0-3-x86_64 downloading...
- mesa-1:25.2.6-1-x86_64 downloading...
- gtk3-1:3.24.51-1-x86_64 downloading...
- wxwidgets-gtk3-3.2.8.1-2-x86_64 downloading...
- glycin-2.0.5-1-x86_64 downloading...
- iso-codes-4.19.0-1-any downloading...
- wxwidgets-common-3.2.8.1-2-x86_64 downloading...
- aom-3.13.1-1-x86_64 downloading...
- gst-plugins-bad-libs-1.26.7-1-x86_64 downloading...
- gst-plugins-base-libs-1.26.7-1-x86_64 downloading...
- librsvg-2:2.61.3-1-x86_64 downloading...
- libjxl-0.11.1-5-x86_64 downloading...
- adwaita-icon-theme-legacy-46.2-3-any downloading...
- adwaita-fonts-49.0-2-any downloading...
- gstreamer-1.26.7-1-x86_64 downloading...
- svt-av1-3.1.2-1-x86_64 downloading...
- x265-4.1-1-x86_64 downloading...
- qt6-translations-6.10.0-1-any downloading...
- spirv-tools-1:1.4.328.1-1-x86_64 downloading...
- rav1e-0.8.1-2-x86_64 downloading...
- qt6-shadertools-6.10.0-1-x86_64 downloading...
- sdl3-3.2.26-1-x86_64 downloading...
- gnuplot-6.0.3-1-x86_64 downloading...
- highway-1.3.0-1-x86_64 downloading...
- tinysparql-3.10.1-2-x86_64 downloading...
- pcre-8.45-4-x86_64 downloading...
- xkeyboard-config-2.46-1-any downloading...
- slang-2.3.3-4-x86_64 downloading...
- gsettings-desktop-schemas-49.1-1-any downloading...
- openh264-2.6.0-1-x86_64 downloading...
- libheif-1.20.2-3-x86_64 downloading...
- dav1d-1.5.2-1-x86_64 downloading...
- shared-mime-info-2.4-2-x86_64 downloading...
- at-spi2-core-2.58.1-1-x86_64 downloading...
- imlib2-1.12.5-1-x86_64 downloading...
- qt6-5compat-6.10.0-2-x86_64 downloading...
- gperftools-2.17.2-1-x86_64 downloading...
- gdk-pixbuf2-2.44.4-1-x86_64 downloading...
- sdl2-compat-2.32.58-1-x86_64 downloading...
- avahi-1:0.9rc2-1-x86_64 downloading...
- libcaca-0.99.beta20-5-x86_64 downloading...
- libsoup3-3.6.5-1-x86_64 downloading...
- gtest-1.17.0-1-x86_64 downloading...
- lua-5.4.8-2-x86_64 downloading...
- adwaita-cursors-49.0-1-any downloading...
- libdrm-2.4.128-1-x86_64 downloading...
- libinput-1.29.2-1-x86_64 downloading...
- libglvnd-1.7.0-3-x86_64 downloading...
- libnice-0.1.22-2-x86_64 downloading...
- libepoxy-1.5.10-3-x86_64 downloading...
- libyuv-r2426+464c51a03-1-x86_64 downloading...
- qt6-svg-6.10.0-2-x86_64 downloading...
- libcups-2:2.4.14-1-x86_64 downloading...
- libxkbcommon-1.12.3-1-x86_64 downloading...
- libavif-1.3.0-3-x86_64 downloading...
- orc-0.4.41-1-x86_64 downloading...
- libde265-1.0.16-2-x86_64 downloading...
- lcms2-2.17-1-x86_64 downloading...
- adwaita-icon-theme-49.0-1-any downloading...
- libva-2.22.0-1-x86_64 downloading...
- libcolord-1.4.8-1-x86_64 downloading...
- duktape-2.7.0-7-x86_64 downloading...
- libwacom-2.16.1-1-x86_64 downloading...
- json-glib-1.10.8-1-x86_64 downloading...
- vulkan-icd-loader-1.4.328.1-1-x86_64 downloading...
- glu-9.0.3-2-x86_64 downloading...
- gd-2.3.3-9-x86_64 downloading...
- libxi-1.8.2-1-x86_64 downloading...
- wayland-1.24.0-1-x86_64 downloading...
- glib-networking-1:2.80.1-1-x86_64 downloading...
- libstemmer-3.0.1-1-x86_64 downloading...
- lm_sensors-1:3.6.2-1-x86_64 downloading...
- libunwind-1.8.2-1-x86_64 downloading...
- gupnp-1:1.6.9-1-x86_64 downloading...
- libedit-20250104_3.1-1-x86_64 downloading...
- dconf-0.49.0-1-x86_64 downloading...
- graphene-1.10.8-2-x86_64 downloading...
- freeglut-3.6.0-3-x86_64 downloading...
- tslib-1.24-1-x86_64 downloading...
- libcerf-1:3.3-1-x86_64 downloading...
- md4c-0.5.2-1-x86_64 downloading...
- giflib-5.2.2-2-x86_64 downloading...
- libxpm-3.5.17-2-x86_64 downloading...
- libcloudproviders-0.3.6-2-x86_64 downloading...
- xdg-utils-1.2.1-1-any downloading...
- double-conversion-3.3.1-1-x86_64 downloading...
- libevdev-1.13.5-1-x86_64 downloading...
- gssdp-1.6.4-1-x86_64 downloading...
- libmspack-1:1.11-1-x86_64 downloading...
- libb2-0.98.1-3-x86_64 downloading...
- libgudev-238-3-x86_64 downloading...
- desktop-file-utils-0.28-1-x86_64 downloading...
- hidapi-0.15.0-1-x86_64 downloading...
- libnotify-0.8.7-1-x86_64 downloading...
- libxv-1.0.13-1-x86_64 downloading...
- xcb-util-wm-0.4.2-2-x86_64 downloading...
- libxcursor-1.2.3-1-x86_64 downloading...
- libxkbcommon-x11-1.12.3-1-x86_64 downloading...
- libproxy-0.5.11-1-x86_64 downloading...
- libxtst-1.2.5-1-x86_64 downloading...
- gupnp-igd-1.6.0-2-x86_64 downloading...
- libxrandr-1.5.4-1-x86_64 downloading...
- xorg-xprop-1.2.8-1-x86_64 downloading...
- libpciaccess-0.18.1-2-x86_64 downloading...
- xorg-xset-1.2.5-2-x86_64 downloading...
- libdaemon-0.14-6-x86_64 downloading...
- xcb-util-image-0.4.1-3-x86_64 downloading...
- mtdev-1.1.7-1-x86_64 downloading...
- gtk-update-icon-cache-1:4.20.2-3-x86_64 downloading...
- libxxf86vm-1.1.6-1-x86_64 downloading...
- libxfixes-6.0.2-1-x86_64 downloading...
- hicolor-icon-theme-0.18-1-any downloading...
- xcb-util-0.4.1-2-x86_64 downloading...
- libxcomposite-0.4.6-2-x86_64 downloading...
- xcb-util-cursor-0.1.6-1-x86_64 downloading...
- libxinerama-1.1.5-2-x86_64 downloading...
- xcb-util-renderutil-0.3.10-2-x86_64 downloading...
- xcb-util-keysyms-0.4.1-5-x86_64 downloading...
- libxdamage-1.1.6-2-x86_64 downloading...
- libxshmfence-1.3.3-1-x86_64 downloading...
- gsettings-system-schemas-49.1-1-any downloading...
- default-cursors-3-1-any downloading...
- checking keyring...
- checking package integrity...
- loading package files...
- checking for file conflicts...
- :: Processing package changes...
- installing libxpm...
- installing aom...
- installing dav1d...
- Optional dependencies for dav1d
- dav1d-doc: HTML documentation
- installing libyuv...
- installing rav1e...
- installing svt-av1...
- installing libavif...
- installing libde265...
- Optional dependencies for libde265
- ffmpeg: for sherlock265
- qt5-base: for sherlock265
- sdl: dec265 YUV overlay output
- installing openh264...
- installing x265...
- installing libheif...
- Optional dependencies for libheif
- libjpeg-turbo: for heif-convert and heif-enc [installed]
- libpng: for heif-convert and heif-enc [installed]
- dav1d: dav1d encoder [installed]
- ffmpeg: hardware decode
- openjpeg2: JPEG2000 decoder
- rav1e: rav1e encoder [installed]
- svt-av1: svt-av1 encoder [installed]
- installing gd...
- Optional dependencies for gd
- perl: bdftogd script [installed]
- installing adwaita-fonts...
- installing hicolor-icon-theme...
- installing adwaita-icon-theme-legacy...
- installing adwaita-cursors...
- installing adwaita-icon-theme...
- installing dconf...
- installing gsettings-system-schemas...
- installing gsettings-desktop-schemas...
- installing libxfixes...
- installing libxi...
- installing libxtst...
- installing xorg-xprop...
- installing at-spi2-core...
- installing desktop-file-utils...
- installing lcms2...
- installing giflib...
- installing libunwind...
- installing gperftools...
- installing gtest...
- Optional dependencies for gtest
- python: gmock generator
- installing highway...
- installing libjxl...
- Optional dependencies for libjxl
- java-runtime: for JNI bindings
- installing librsvg...
- installing glycin...
- Optional dependencies for glycin
- libheif: Load .avif, .heic and .heif [installed]
- installing shared-mime-info...
- installing gdk-pixbuf2...
- Optional dependencies for gdk-pixbuf2
- libheif: Load .avif, .heic and .heif [installed]
- libopenraw: Load .arw, .cr2, .crw, .dng, .erf, .mrw, .nef, .orf, .pef and .raf
- libwmf: Load .apm and .wmf
- installing iso-codes...
- installing libcloudproviders...
- installing libcolord...
- installing libdaemon...
- installing avahi...
- Optional dependencies for avahi
- gtk3: avahi-discover, avahi-discover-standalone, bshell, bssh, bvnc [pending]
- libevent: libevent bindings [installed]
- nss-mdns: NSS support for mDNS
- python-dbus: avahi-bookmarks, avahi-discover
- python-gobject: avahi-bookmarks, avahi-discover
- python-twisted: avahi-bookmarks
- installing libcups...
- installing libpciaccess...
- installing libdrm...
- Optional dependencies for libdrm
- cairo: needed for modetest tool [installed]
- installing libxshmfence...
- installing libxxf86vm...
- installing libedit...
- installing llvm-libs...
- installing lm_sensors...
- Optional dependencies for lm_sensors
- rrdtool: for logging with sensord
- perl: for sensor detection and configuration convert [installed]
- installing spirv-tools...
- installing default-cursors...
- Optional dependencies for default-cursors
- adwaita-cursors: default cursor theme [installed]
- installing wayland...
- installing mesa...
- Optional dependencies for mesa
- opengl-man-pages: for the OpenGL API man pages
- installing libglvnd...
- installing libepoxy...
- installing libxcomposite...
- installing libxcursor...
- installing libxdamage...
- installing libxinerama...
- installing xkeyboard-config...
- installing libxkbcommon...
- Optional dependencies for libxkbcommon
- libxkbcommon-x11: xkbcli interactive-x11 [pending]
- wayland: xkbcli interactive-wayland [installed]
- installing libxrandr...
- installing json-glib...
- installing duktape...
- installing libproxy...
- installing glib-networking...
- installing libsoup3...
- Optional dependencies for libsoup3
- samba: Windows Domain SSO
- installing libstemmer...
- installing tinysparql...
- installing gtk-update-icon-cache...
- installing gtk3...
- Optional dependencies for gtk3
- evince: Default print preview command
- installing glu...
- installing freeglut...
- installing imlib2...
- Optional dependencies for imlib2
- libheif: HEIF loader (for AVIF) [installed]
- libid3tag: ID3 loader
- libjxl: JXL loader [installed]
- librsvg: SVG loader [installed]
- libspectre: PS loader
- libwebp: WEBP loader [installed]
- openjpeg2: J2K loader
- installing pcre...
- installing slang...
- installing libcaca...
- Optional dependencies for libcaca
- python: Python bindings
- installing libcerf...
- installing lua...
- installing double-conversion...
- installing libb2...
- installing mtdev...
- installing libevdev...
- installing libgudev...
- installing libwacom...
- Optional dependencies for libwacom
- python-libevdev: for libwacom-show-stylus
- python-pyudev: for libwacom-show-stylus
- installing libinput...
- Optional dependencies for libinput
- gtk4: libinput debug-gui
- python-pyudev: libinput measure
- python-libevdev: libinput measure
- python-yaml: used by various tools
- installing libxkbcommon-x11...
- installing md4c...
- installing tslib...
- installing xcb-util-renderutil...
- installing xcb-util...
- installing xcb-util-image...
- installing xcb-util-cursor...
- installing xcb-util-keysyms...
- installing xcb-util-wm...
- installing xorg-xset...
- installing xdg-utils...
- Optional dependencies for xdg-utils
- kde-cli-tools: for KDE Plasma5 support in xdg-open
- exo: for Xfce support in xdg-open
- pcmanfm: for LXDE support in xdg-open
- perl-file-mimeinfo: for generic support in xdg-open
- perl-net-dbus: Perl extension to dbus used in xdg-screensaver
- perl-x11-protocol: Perl X11 protocol used in xdg-screensaver
- installing qt6-translations...
- installing qt6-base...
- Optional dependencies for qt6-base
- freetds: MS SQL driver
- gdk-pixbuf2: GTK platform plugin [installed]
- gtk3: GTK platform plugin [installed]
- libfbclient: Firebird/iBase driver
- mariadb-libs: MariaDB driver
- pango: GTK platform plugin [installed]
- perl: for syncqt [installed]
- postgresql-libs: PostgreSQL driver
- unixodbc: ODBC driver
- installing qt6-shadertools...
- installing qt6-5compat...
- Optional dependencies for qt6-5compat
- qt6-declarative: for QtGraphicalEffects
- installing qt6-svg...
- installing wxwidgets-common...
- installing gstreamer...
- Optional dependencies for gstreamer
- python: gst-plugins-doc-cache-generator
- installing graphene...
- installing libxv...
- installing orc...
- installing gst-plugins-base-libs...
- installing gssdp...
- Optional dependencies for gssdp
- gtk4: gssdp-device-sniffer
- installing gupnp...
- Optional dependencies for gupnp
- python: gupnp-binding-tool
- installing gupnp-igd...
- installing libnice...
- Optional dependencies for libnice
- gstreamer: "nice" GStreamer plugin [installed]
- installing libva...
- Optional dependencies for libva
- intel-media-driver: backend for Intel GPUs (>= Broadwell)
- libva-intel-driver: backend for Intel GPUs (<= Haswell)
- libva-mesa-driver: backend for AMD and NVIDIA GPUs [installed]
- installing vulkan-icd-loader...
- Optional dependencies for vulkan-icd-loader
- vulkan-driver: packaged vulkan driver
- installing gst-plugins-bad-libs...
- installing libnotify...
- installing libmspack...
- installing hidapi...
- Optional dependencies for hidapi
- libusb: for hidapi-libusb [installed]
- installing sdl3...
- Optional dependencies for sdl3
- alsa-lib: ALSA audio driver
- libpulse: PulseAudio audio driver
- jack: JACK audio driver
- pipewire: PipeWire audio driver
- vulkan-driver: vulkan renderer
- sndio: sndio audio driver
- libdecor: Wayland client decorations
- installing sdl2-compat...
- installing wxwidgets-gtk3...
- Optional dependencies for wxwidgets-gtk3
- webkit2gtk-4.1: for webview support
- installing gnuplot...
- :: Running post-transaction hooks...
- ( 1/14) Creating system user accounts...
- Creating group 'avahi' with GID 969.
- Creating user 'avahi' (Avahi mDNS/DNS-SD daemon) with UID 969 and GID 969.
- ( 2/14) Reloading system manager configuration...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- ( 3/14) Reloading user manager configuration...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- ( 4/14) Updating udev hardware database...
- ( 5/14) Reloading device manager configuration...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- ( 6/14) Arming ConditionNeedsUpdate...
- ( 7/14) Updating the MIME type database...
- ( 8/14) Reloading system bus configuration...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- ( 9/14) Updating fontconfig cache...
- (10/14) Updating GIO module cache...
- (11/14) Compiling GSettings XML schema files...
- (12/14) Probing GTK3 input method modules...
- (13/14) Updating icon theme caches...
- (14/14) Updating the desktop file MIME type cache...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
∗ installed conf-gnuplot.0.1
⬇ retrieved cpm.12.2.0 (https://opam.ocaml.org/cache)
⬇ retrieved orrandomForest.3.0.0 (https://opam.ocaml.org/cache)
⊘ removed orrandomForest.3.0.0
⊘ removed cpm.12.2.0
∗ installed cpm.12.2.0
∗ installed orrandomForest.3.0.0
Done.
<><> orrandomForest.3.0.0 installed successfully ><><><><><><><><><><><><><><><>
=> Please interact with R to install needed things in user-space:
R
install.packages('Marix', repos='http://cran.r-project.org')
install.packages('randomForest', repos='http://cran.r-project.org')
# To update the current shell environment, run: eval $(opam env)
2025-11-10 12:57.40 ---> saved as "5fc5aa85253ca42a3c8cb3edf5f704393dfb3877f5acc4c66c5f28310d7eaa23"
/home/opam: (run (shell "opam reinstall --with-test --verbose orrandomForest.3.0.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"archlinux\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'orrandomForest.3.0.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
↻ orrandomForest 3.0.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [orrandomForest.3.0.0: extract]
⬇ retrieved orrandomForest.3.0.0 (cached)
Processing 2/4: [orrandomForest: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "orrandomForest" "-j" "255" (CWD=/home/opam/.opam/5.4/.opam-switch/build/orrandomForest.3.0.0)
λ compiled orrandomForest.3.0.0
⊘ removed orrandomForest.3.0.0
∗ installed orrandomForest.3.0.0
Done.
<><> orrandomForest.3.0.0 installed successfully ><><><><><><><><><><><><><><><>
=> Please interact with R to install needed things in user-space:
R
install.packages('Marix', repos='http://cran.r-project.org')
install.packages('randomForest', repos='http://cran.r-project.org')
# To update the current shell environment, run: eval $(opam env)
2025-11-10 12:57.44 ---> saved as "7a210f863a126ef843995f0f68faecdeaaa822bf2acc2467a73945315fd3ef1a"
Job succeeded
2025-11-10 12:57.57: Job succeeded