- github
- ocaml
- opam-repository
- 8165eb
- compilers,5.3,re.1.14.0,revdeps,oranger.4.3.3
(not at the head of any monitored branch or PR)
2025-09-18 12:21.18: New job: test oranger.4.3.3 with re.1.14.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/28544/head (8165ebc987d9de35b2fdba552fd80e37f5bd842d)
on debian-13-ocaml-5.3/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/28544/head" && git reset --hard 8165ebc9
git fetch origin master
git merge --no-edit 151ffce963e54519dd5d1280848f631d38db358e
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.3@sha256:d96959611c273d7e1726ccd221b4f5e95a02676bef62ee9cd5d6f638aaaa573f
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 re.1.14.0 1.14.0
RUN opam reinstall re.1.14.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 "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 're.1.14.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall oranger.4.3.3; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'oranger.4.3.3' && 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 oranger.4.3.3) || true
RUN opam reinstall --with-test --verbose oranger.4.3.3; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'oranger.4.3.3' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2025-09-18 12:21.18: Using cache hint "ocaml/opam:debian-13-ocaml-5.3@sha256:d96959611c273d7e1726ccd221b4f5e95a02676bef62ee9cd5d6f638aaaa573f-re.1.14.0-oranger.4.3.3-8165ebc987d9de35b2fdba552fd80e37f5bd842d"
2025-09-18 12:21.18: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.3@sha256:d96959611c273d7e1726ccd221b4f5e95a02676bef62ee9cd5d6f638aaaa573f)
(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 re.1.14.0 1.14.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall re.1.14.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 \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 're.1.14.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 (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall oranger.4.3.3;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'oranger.4.3.3' && 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 oranger.4.3.3) || true"))
(run (shell "opam reinstall --with-test --verbose oranger.4.3.3;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'oranger.4.3.3' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-09-18 12:21.18: Waiting for resource in pool OCluster
2025-09-18 12:32.20: Waiting for worker…
2025-09-18 12:35.08: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at 151ffce963 Merge pull request #28412 from andersfugmann/release-ocaml-protoc-plugin-6.2.0
Updating 151ffce963..8165ebc987
Fast-forward
packages/re/re.1.14.0/opam | 54 ++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 54 insertions(+)
create mode 100644 packages/re/re.1.14.0/opam
(from ocaml/opam:debian-13-ocaml-5.3@sha256:d96959611c273d7e1726ccd221b4f5e95a02676bef62ee9cd5d6f638aaaa573f)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.3@sha256:d96959611c273d7e1726ccd221b4f5e95a02676bef62ee9cd5d6f638aaaa573f' locally
docker.io/ocaml/opam@sha256:d96959611c273d7e1726ccd221b4f5e95a02676bef62ee9cd5d6f638aaaa573f: Pulling from ocaml/opam
15b1d8a5ff03: Already exists
4d5eb3ed0208: Already exists
b44e00377829: Already exists
93018e586176: Already exists
587e432a29e2: Already exists
cdf304204754: Already exists
a444cfe202e3: Already exists
964991c828c0: Already exists
a94458d90f79: Already exists
e972c69afbc9: Already exists
3997d62e9de2: Already exists
d78ea61f72f9: Already exists
c68a1176424c: Already exists
63495b383f1a: Already exists
aa1a6204320d: Already exists
187b2023e0b3: Already exists
4787e66ddf43: Already exists
973a552bac2d: Already exists
8ad831d15267: Already exists
a8377bc33a29: Already exists
84a002321686: Already exists
4f4fb700ef54: Already exists
5d52c4f201d6: Already exists
68ef19bc296a: Already exists
1cda2aa0af1b: Already exists
769f31bcfe07: Already exists
b1d715eb0b34: Already exists
6b92d559de80: Already exists
1552f16d9075: Already exists
7a69328970da: Already exists
e66b1fc86e6f: Already exists
b14737f10b30: Already exists
4b7cf33f8dea: Already exists
0499d18bfcaa: Already exists
fb0e4a52e51b: Already exists
af1ea896d29c: Already exists
cff41317f198: Already exists
fbb90a49a8ca: Already exists
2f7f155032eb: Already exists
02f68e1ce660: Already exists
9142b776626e: Already exists
cebfcf7d6f76: Already exists
39abf9ca585d: Already exists
9486417a4529: Pulling fs layer
719d491db6c6: Pulling fs layer
7463fddf1e2e: Pulling fs layer
d82e9fb7179d: Pulling fs layer
d82e9fb7179d: Waiting
719d491db6c6: Download complete
7463fddf1e2e: Verifying Checksum
7463fddf1e2e: Download complete
d82e9fb7179d: Verifying Checksum
d82e9fb7179d: Download complete
9486417a4529: Verifying Checksum
9486417a4529: Download complete
9486417a4529: Pull complete
719d491db6c6: Pull complete
7463fddf1e2e: Pull complete
d82e9fb7179d: Pull complete
Digest: sha256:d96959611c273d7e1726ccd221b4f5e95a02676bef62ee9cd5d6f638aaaa573f
Status: Downloaded newer image for ocaml/opam@sha256:d96959611c273d7e1726ccd221b4f5e95a02676bef62ee9cd5d6f638aaaa573f
2025-09-18 12:35.11 ---> using "e5ce46144b4e25b3e363c3d09bd5c434fad1097e903303a843a6f78001c9b5bd" 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-09-18 12:35.11 ---> using "e5c621a3cb81b6a98051e5f284d2a37908c31e94ec15352a3cac5840dd01bd87" 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-09-18 12:35.11 ---> using "78a0e65157daccb73293bf403f037bfda25f84ae784f6268b99978da78cbdfc1" 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.4.1
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# 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.3
# invariant ["ocaml-base-compiler" {= "5.3.0"}]
# compiler-packages ocaml-base-compiler.5.3.0, ocaml-compiler.5.3.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.3/lib/ocaml/stublibs:/home/opam/.opam/5.3/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.3.0
2025-09-18 12:35.11 ---> using "8cf9526821aeb1b80e420c2c65557518cadcf44658186836ee2bccb8e92af53f" 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-09-18 12:35.11 ---> using "faad1959bc251cc940a01c9cb9315e2212826f09e8c87f90ca11f33a0d40f387" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-09-18 12:35.12 ---> using "fe902520e6c71d15ad8a816239fde30b19cb431d770bca545e72d81dc40b8dbe" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-09-18 12:35.12 ---> using "de62136f31c1aad8a369f82f1f6e6a67d64df93b81784e0d2a2d0d694d25a998" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [40.4 kB]
- Fetched 131 kB in 0s (1255 kB/s)
- Reading package lists...
2025-09-18 12:35.12 ---> using "a2c8e0d908bc213bab28fb5b3f6d591d5fef7a3204fc8d8b11e32637a9703534" from cache
/home/opam: (run (shell "opam pin add -k version -yn re.1.14.0 1.14.0"))
re is now pinned to version 1.14.0
2025-09-18 12:35.12 ---> using "efe9b00cfeb44a9103b5108c904dec76b707fe7530510a51a11b62588013ac60" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall re.1.14.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 \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 're.1.14.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
re.1.14.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
- install dune 3.20.2 [required by re]
- install re 1.14.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.20.2 (cached)
-> retrieved re.1.14.0 (cached)
-> installed dune.3.20.2
-> installed re.1.14.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-09-18 12:35.12 ---> using "e75b5dd54a39e61540e569930986e8113a878fe3f98498d61123df01c77bd3a1" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall oranger.4.3.3;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'oranger.4.3.3' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
oranger.4.3.3 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 32 packages
- install base-bytes base [required by dokeysto]
- install batteries 3.9.0 [required by oranger]
- install bst 7.1.0 [required by molenc]
- install camlp-streams 5.0.1 [required by batteries]
- install conf-autoconf 0.2 [required by cpu]
- install conf-cmake 1 [required by oranger]
- install conf-graphviz 0.1 [required by molenc]
- install conf-python-3 9.0.0 [required by molenc]
- install conf-rdkit 1 [required by molenc]
- install cpm 12.2.0 [required by oranger]
- install cpu 2.0.0 [required by parany]
- install csexp 1.5.2 [required by dune-configurator]
- install dokeysto 4.0.1 [required by molenc]
- install dolog 6.0.0 [required by oranger]
- install dune-configurator 3.20.2 [required by extunix]
- install extunix 0.4.4 [required by dokeysto]
- install line_oriented 1.3.0 [required by oranger]
- install minicli 5.0.2 [required by oranger]
- install molenc 17.0.1 [required by oranger]
- install num 1.6 [required by batteries]
- install ocaml-compiler-libs v0.17.0 [required by ppxlib]
- install ocamlfind 1.9.8 [required by batteries]
- install ocamlgraph 2.2.0 [required by molenc]
- install oranger 4.3.3
- install parany 14.0.1 [required by oranger]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppxlib 0.36.0 [required by extunix]
- install pyml 20250807 [required by molenc]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdcompat 21.1 [required by pyml]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install vector3 1.0.0 [required by molenc]
The following system packages will first need to be installed:
autoconf cmake graphviz librdkit-dev python3 python3-rdkit
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "autoconf" "cmake" "graphviz" "librdkit-dev" "python3" "python3-rdkit"
- Preconfiguring packages ...
- Selecting previously unselected package libpython3.13-minimal:amd64.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20653 files and directories currently installed.)
- Preparing to unpack .../libpython3.13-minimal_3.13.5-2_amd64.deb ...
- Unpacking libpython3.13-minimal:amd64 (3.13.5-2) ...
- Selecting previously unselected package python3.13-minimal.
- Preparing to unpack .../python3.13-minimal_3.13.5-2_amd64.deb ...
- Unpacking python3.13-minimal (3.13.5-2) ...
- Setting up libpython3.13-minimal:amd64 (3.13.5-2) ...
- Setting up python3.13-minimal (3.13.5-2) ...
- 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 ... 20978 files and directories currently installed.)
- Preparing to unpack .../0-python3-minimal_3.13.5-1_amd64.deb ...
- Unpacking python3-minimal (3.13.5-1) ...
- Selecting previously unselected package media-types.
- Preparing to unpack .../1-media-types_13.0.0_all.deb ...
- Unpacking media-types (13.0.0) ...
- Selecting previously unselected package readline-common.
- Preparing to unpack .../2-readline-common_8.2-6_all.deb ...
- Unpacking readline-common (8.2-6) ...
- Selecting previously unselected package libreadline8t64:amd64.
- Preparing to unpack .../3-libreadline8t64_8.2-6_amd64.deb ...
- Adding 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8 to /lib/x86_64-linux-gnu/libhistory.so.8.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8.2 to /lib/x86_64-linux-gnu/libhistory.so.8.2.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8 to /lib/x86_64-linux-gnu/libreadline.so.8.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8.2 to /lib/x86_64-linux-gnu/libreadline.so.8.2.usr-is-merged by libreadline8t64'
- Unpacking libreadline8t64:amd64 (8.2-6) ...
- Selecting previously unselected package libpython3.13-stdlib:amd64.
- Preparing to unpack .../4-libpython3.13-stdlib_3.13.5-2_amd64.deb ...
- Unpacking libpython3.13-stdlib:amd64 (3.13.5-2) ...
- Selecting previously unselected package python3.13.
- Preparing to unpack .../5-python3.13_3.13.5-2_amd64.deb ...
- Unpacking python3.13 (3.13.5-2) ...
- Selecting previously unselected package libpython3-stdlib:amd64.
- Preparing to unpack .../6-libpython3-stdlib_3.13.5-1_amd64.deb ...
- Unpacking libpython3-stdlib:amd64 (3.13.5-1) ...
- Setting up python3-minimal (3.13.5-1) ...
- Selecting previously unselected package python3.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 21464 files and directories currently installed.)
- Preparing to unpack .../00-python3_3.13.5-1_amd64.deb ...
- Unpacking python3 (3.13.5-1) ...
- Selecting previously unselected package python3-numpy-dev:amd64.
- Preparing to unpack .../01-python3-numpy-dev_1%3a2.2.4+ds-1_amd64.deb ...
- Unpacking python3-numpy-dev:amd64 (1:2.2.4+ds-1) ...
- Selecting previously unselected package libblas3:amd64.
- Preparing to unpack .../02-libblas3_3.12.1-6_amd64.deb ...
- Unpacking libblas3:amd64 (3.12.1-6) ...
- Selecting previously unselected package libgfortran5:amd64.
- Preparing to unpack .../03-libgfortran5_14.2.0-19_amd64.deb ...
- Unpacking libgfortran5:amd64 (14.2.0-19) ...
- Selecting previously unselected package liblapack3:amd64.
- Preparing to unpack .../04-liblapack3_3.12.1-6_amd64.deb ...
- Unpacking liblapack3:amd64 (3.12.1-6) ...
- Selecting previously unselected package python3-numpy.
- Preparing to unpack .../05-python3-numpy_1%3a2.2.4+ds-1_amd64.deb ...
- Unpacking python3-numpy (1:2.2.4+ds-1) ...
- Selecting previously unselected package m4.
- Preparing to unpack .../06-m4_1.4.19-8_amd64.deb ...
- Unpacking m4 (1.4.19-8) ...
- Selecting previously unselected package autoconf.
- Preparing to unpack .../07-autoconf_2.72-3.1_all.deb ...
- Unpacking autoconf (2.72-3.1) ...
- Selecting previously unselected package autotools-dev.
- Preparing to unpack .../08-autotools-dev_20240727.1_all.deb ...
- Unpacking autotools-dev (20240727.1) ...
- Selecting previously unselected package automake.
- Preparing to unpack .../09-automake_1%3a1.17-4_all.deb ...
- Unpacking automake (1:1.17-4) ...
- Selecting previously unselected package cmake-data.
- Preparing to unpack .../10-cmake-data_3.31.6-2_all.deb ...
- Unpacking cmake-data (3.31.6-2) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../11-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u1_amd64.deb ...
- Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u1) ...
- Selecting previously unselected package libarchive13t64:amd64.
- Preparing to unpack .../12-libarchive13t64_3.7.4-4_amd64.deb ...
- Unpacking libarchive13t64:amd64 (3.7.4-4) ...
- Selecting previously unselected package libjsoncpp26:amd64.
- Preparing to unpack .../13-libjsoncpp26_1.9.6-3_amd64.deb ...
- Unpacking libjsoncpp26:amd64 (1.9.6-3) ...
- Selecting previously unselected package librhash1:amd64.
- Preparing to unpack .../14-librhash1_1.4.5-1_amd64.deb ...
- Unpacking librhash1:amd64 (1.4.5-1) ...
- Selecting previously unselected package libuv1t64:amd64.
- Preparing to unpack .../15-libuv1t64_1.50.0-2_amd64.deb ...
- Unpacking libuv1t64:amd64 (1.50.0-2) ...
- Selecting previously unselected package cmake.
- Preparing to unpack .../16-cmake_3.31.6-2_amd64.deb ...
- Unpacking cmake (3.31.6-2) ...
- Selecting previously unselected package libpng16-16t64:amd64.
- Preparing to unpack .../17-libpng16-16t64_1.6.48-1_amd64.deb ...
- Unpacking libpng16-16t64:amd64 (1.6.48-1) ...
- Selecting previously unselected package libfreetype6:amd64.
- Preparing to unpack .../18-libfreetype6_2.13.3+dfsg-1_amd64.deb ...
- Unpacking libfreetype6:amd64 (2.13.3+dfsg-1) ...
- Selecting previously unselected package fonts-dejavu-mono.
- Preparing to unpack .../19-fonts-dejavu-mono_2.37-8_all.deb ...
- Unpacking fonts-dejavu-mono (2.37-8) ...
- Selecting previously unselected package fonts-dejavu-core.
- Preparing to unpack .../20-fonts-dejavu-core_2.37-8_all.deb ...
- Unpacking fonts-dejavu-core (2.37-8) ...
- Selecting previously unselected package fonts-liberation.
- Preparing to unpack .../21-fonts-liberation_1%3a2.1.5-3_all.deb ...
- Unpacking fonts-liberation (1:2.1.5-3) ...
- Selecting previously unselected package fonts-freefont-ttf.
- Preparing to unpack .../22-fonts-freefont-ttf_20211204+svn4273-2_all.deb ...
- Unpacking fonts-freefont-ttf (20211204+svn4273-2) ...
- Selecting previously unselected package fontconfig-config.
- Preparing to unpack .../23-fontconfig-config_2.15.0-2.3_amd64.deb ...
- Unpacking fontconfig-config (2.15.0-2.3) ...
- Selecting previously unselected package libfontconfig1:amd64.
- Preparing to unpack .../24-libfontconfig1_2.15.0-2.3_amd64.deb ...
- Unpacking libfontconfig1:amd64 (2.15.0-2.3) ...
- Selecting previously unselected package fontconfig.
- Preparing to unpack .../25-fontconfig_2.15.0-2.3_amd64.deb ...
- Unpacking fontconfig (2.15.0-2.3) ...
- Selecting previously unselected package fonts-liberation-sans-narrow.
- Preparing to unpack .../26-fonts-liberation-sans-narrow_1%3a1.07.6-4_all.deb ...
- Unpacking fonts-liberation-sans-narrow (1:1.07.6-4) ...
- Selecting previously unselected package libann0.
- Preparing to unpack .../27-libann0_1.1.2+doc-9+b1_amd64.deb ...
- Unpacking libann0 (1.1.2+doc-9+b1) ...
- Selecting previously unselected package libcdt5:amd64.
- Preparing to unpack .../28-libcdt5_2.42.4-3_amd64.deb ...
- Unpacking libcdt5:amd64 (2.42.4-3) ...
- Selecting previously unselected package libcgraph6:amd64.
- Preparing to unpack .../29-libcgraph6_2.42.4-3_amd64.deb ...
- Unpacking libcgraph6:amd64 (2.42.4-3) ...
- Selecting previously unselected package libaom3:amd64.
- Preparing to unpack .../30-libaom3_3.12.1-1_amd64.deb ...
- Unpacking libaom3:amd64 (3.12.1-1) ...
- Selecting previously unselected package libdav1d7:amd64.
- Preparing to unpack .../31-libdav1d7_1.5.1-1_amd64.deb ...
- Unpacking libdav1d7:amd64 (1.5.1-1) ...
- Selecting previously unselected package libabsl20240722:amd64.
- Preparing to unpack .../32-libabsl20240722_20240722.0-4_amd64.deb ...
- Unpacking libabsl20240722:amd64 (20240722.0-4) ...
- Selecting previously unselected package libgav1-1:amd64.
- Preparing to unpack .../33-libgav1-1_0.19.0-3+b1_amd64.deb ...
- Unpacking libgav1-1:amd64 (0.19.0-3+b1) ...
- Selecting previously unselected package librav1e0.7:amd64.
- Preparing to unpack .../34-librav1e0.7_0.7.1-9+b2_amd64.deb ...
- Unpacking librav1e0.7:amd64 (0.7.1-9+b2) ...
- Selecting previously unselected package libsvtav1enc2:amd64.
- Preparing to unpack .../35-libsvtav1enc2_2.3.0+dfsg-1_amd64.deb ...
- Unpacking libsvtav1enc2:amd64 (2.3.0+dfsg-1) ...
- Selecting previously unselected package libjpeg62-turbo:amd64.
- Preparing to unpack .../36-libjpeg62-turbo_1%3a2.1.5-4_amd64.deb ...
- Unpacking libjpeg62-turbo:amd64 (1:2.1.5-4) ...
- Selecting previously unselected package libyuv0:amd64.
- Preparing to unpack .../37-libyuv0_0.0.1904.20250204-1_amd64.deb ...
- Unpacking libyuv0:amd64 (0.0.1904.20250204-1) ...
- Selecting previously unselected package libavif16:amd64.
- Preparing to unpack .../38-libavif16_1.2.1-1.2_amd64.deb ...
- Unpacking libavif16:amd64 (1.2.1-1.2) ...
- Selecting previously unselected package libsharpyuv0:amd64.
- Preparing to unpack .../39-libsharpyuv0_1.5.0-0.1_amd64.deb ...
- Unpacking libsharpyuv0:amd64 (1.5.0-0.1) ...
- Selecting previously unselected package libheif-plugin-dav1d:amd64.
- Preparing to unpack .../40-libheif-plugin-dav1d_1.19.8-1_amd64.deb ...
- Unpacking libheif-plugin-dav1d:amd64 (1.19.8-1) ...
- Selecting previously unselected package libde265-0:amd64.
- Preparing to unpack .../41-libde265-0_1.0.15-1+b3_amd64.deb ...
- Unpacking libde265-0:amd64 (1.0.15-1+b3) ...
- Selecting previously unselected package libheif-plugin-libde265:amd64.
- Preparing to unpack .../42-libheif-plugin-libde265_1.19.8-1_amd64.deb ...
- Unpacking libheif-plugin-libde265:amd64 (1.19.8-1) ...
- Selecting previously unselected package libheif1:amd64.
- Preparing to unpack .../43-libheif1_1.19.8-1_amd64.deb ...
- Unpacking libheif1:amd64 (1.19.8-1) ...
- Selecting previously unselected package libimagequant0:amd64.
- Preparing to unpack .../44-libimagequant0_2.18.0-1+b2_amd64.deb ...
- Unpacking libimagequant0:amd64 (2.18.0-1+b2) ...
- Selecting previously unselected package libdeflate0:amd64.
- Preparing to unpack .../45-libdeflate0_1.23-2_amd64.deb ...
- Unpacking libdeflate0:amd64 (1.23-2) ...
- Selecting previously unselected package libjbig0:amd64.
- Preparing to unpack .../46-libjbig0_2.1-6.1+b2_amd64.deb ...
- Unpacking libjbig0:amd64 (2.1-6.1+b2) ...
- Selecting previously unselected package liblerc4:amd64.
- Preparing to unpack .../47-liblerc4_4.0.0+ds-5_amd64.deb ...
- Unpacking liblerc4:amd64 (4.0.0+ds-5) ...
- Selecting previously unselected package libwebp7:amd64.
- Preparing to unpack .../48-libwebp7_1.5.0-0.1_amd64.deb ...
- Unpacking libwebp7:amd64 (1.5.0-0.1) ...
- Selecting previously unselected package libtiff6:amd64.
- Preparing to unpack .../49-libtiff6_4.7.0-3_amd64.deb ...
- Unpacking libtiff6:amd64 (4.7.0-3) ...
- Selecting previously unselected package libxpm4:amd64.
- Preparing to unpack .../50-libxpm4_1%3a3.5.17-1+b3_amd64.deb ...
- Unpacking libxpm4:amd64 (1:3.5.17-1+b3) ...
- Selecting previously unselected package libgd3:amd64.
- Preparing to unpack .../51-libgd3_2.3.3-13_amd64.deb ...
- Unpacking libgd3:amd64 (2.3.3-13) ...
- Selecting previously unselected package libglib2.0-0t64:amd64.
- Preparing to unpack .../52-libglib2.0-0t64_2.84.4-3~deb13u1_amd64.deb ...
- Unpacking libglib2.0-0t64:amd64 (2.84.4-3~deb13u1) ...
- Selecting previously unselected package libgts-0.7-5t64:amd64.
- Preparing to unpack .../53-libgts-0.7-5t64_0.7.6+darcs121130-5.2+b1_amd64.deb ...
- Unpacking libgts-0.7-5t64:amd64 (0.7.6+darcs121130-5.2+b1) ...
- Selecting previously unselected package libpixman-1-0:amd64.
- Preparing to unpack .../54-libpixman-1-0_0.44.0-3_amd64.deb ...
- Unpacking libpixman-1-0:amd64 (0.44.0-3) ...
- Selecting previously unselected package libxcb-render0:amd64.
- Preparing to unpack .../55-libxcb-render0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-render0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-shm0:amd64.
- Preparing to unpack .../56-libxcb-shm0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-shm0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxrender1:amd64.
- Preparing to unpack .../57-libxrender1_1%3a0.9.12-1_amd64.deb ...
- Unpacking libxrender1:amd64 (1:0.9.12-1) ...
- Selecting previously unselected package libcairo2:amd64.
- Preparing to unpack .../58-libcairo2_1.18.4-1+b1_amd64.deb ...
- Unpacking libcairo2:amd64 (1.18.4-1+b1) ...
- Selecting previously unselected package libltdl7:amd64.
- Preparing to unpack .../59-libltdl7_2.5.4-4_amd64.deb ...
- Unpacking libltdl7:amd64 (2.5.4-4) ...
- Selecting previously unselected package libfribidi0:amd64.
- Preparing to unpack .../60-libfribidi0_1.0.16-1_amd64.deb ...
- Unpacking libfribidi0:amd64 (1.0.16-1) ...
- Selecting previously unselected package libgraphite2-3:amd64.
- Preparing to unpack .../61-libgraphite2-3_1.3.14-2+b1_amd64.deb ...
- Unpacking libgraphite2-3:amd64 (1.3.14-2+b1) ...
- Selecting previously unselected package libharfbuzz0b:amd64.
- Preparing to unpack .../62-libharfbuzz0b_10.2.0-1+b1_amd64.deb ...
- Unpacking libharfbuzz0b:amd64 (10.2.0-1+b1) ...
- Selecting previously unselected package libthai-data.
- Preparing to unpack .../63-libthai-data_0.1.29-2_all.deb ...
- Unpacking libthai-data (0.1.29-2) ...
- Selecting previously unselected package libdatrie1:amd64.
- Preparing to unpack .../64-libdatrie1_0.2.13-3+b1_amd64.deb ...
- Unpacking libdatrie1:amd64 (0.2.13-3+b1) ...
- Selecting previously unselected package libthai0:amd64.
- Preparing to unpack .../65-libthai0_0.1.29-2+b1_amd64.deb ...
- Unpacking libthai0:amd64 (0.1.29-2+b1) ...
- Selecting previously unselected package libpango-1.0-0:amd64.
- Preparing to unpack .../66-libpango-1.0-0_1.56.3-1_amd64.deb ...
- Unpacking libpango-1.0-0:amd64 (1.56.3-1) ...
- Selecting previously unselected package libpangoft2-1.0-0:amd64.
- Preparing to unpack .../67-libpangoft2-1.0-0_1.56.3-1_amd64.deb ...
- Unpacking libpangoft2-1.0-0:amd64 (1.56.3-1) ...
- Selecting previously unselected package libpangocairo-1.0-0:amd64.
- Preparing to unpack .../68-libpangocairo-1.0-0_1.56.3-1_amd64.deb ...
- Unpacking libpangocairo-1.0-0:amd64 (1.56.3-1) ...
- Selecting previously unselected package libpathplan4:amd64.
- Preparing to unpack .../69-libpathplan4_2.42.4-3_amd64.deb ...
- Unpacking libpathplan4:amd64 (2.42.4-3) ...
- Selecting previously unselected package libgvc6.
- Preparing to unpack .../70-libgvc6_2.42.4-3_amd64.deb ...
- Unpacking libgvc6 (2.42.4-3) ...
- Selecting previously unselected package libgvpr2:amd64.
- Preparing to unpack .../71-libgvpr2_2.42.4-3_amd64.deb ...
- Unpacking libgvpr2:amd64 (2.42.4-3) ...
- Selecting previously unselected package liblab-gamut1:amd64.
- Preparing to unpack .../72-liblab-gamut1_2.42.4-3_amd64.deb ...
- Unpacking liblab-gamut1:amd64 (2.42.4-3) ...
- Selecting previously unselected package x11-common.
- Preparing to unpack .../73-x11-common_1%3a7.7+24_all.deb ...
- Unpacking x11-common (1:7.7+24) ...
- Selecting previously unselected package libice6:amd64.
- Preparing to unpack .../74-libice6_2%3a1.1.1-1_amd64.deb ...
- Unpacking libice6:amd64 (2:1.1.1-1) ...
- Selecting previously unselected package libsm6:amd64.
- Preparing to unpack .../75-libsm6_2%3a1.2.6-1_amd64.deb ...
- Unpacking libsm6:amd64 (2:1.2.6-1) ...
- Selecting previously unselected package libxt6t64:amd64.
- Preparing to unpack .../76-libxt6t64_1%3a1.2.1-1.2+b2_amd64.deb ...
- Unpacking libxt6t64:amd64 (1:1.2.1-1.2+b2) ...
- Selecting previously unselected package libxmu6:amd64.
- Preparing to unpack .../77-libxmu6_2%3a1.1.3-3+b4_amd64.deb ...
- Unpacking libxmu6:amd64 (2:1.1.3-3+b4) ...
- Selecting previously unselected package libxaw7:amd64.
- Preparing to unpack .../78-libxaw7_2%3a1.0.16-1_amd64.deb ...
- Unpacking libxaw7:amd64 (2:1.0.16-1) ...
- Selecting previously unselected package graphviz.
- Preparing to unpack .../79-graphviz_2.42.4-3_amd64.deb ...
- Unpacking graphviz (2.42.4-3) ...
- Selecting previously unselected package libboost-iostreams1.83.0:amd64.
- Preparing to unpack .../80-libboost-iostreams1.83.0_1.83.0-4.2_amd64.deb ...
- Unpacking libboost-iostreams1.83.0:amd64 (1.83.0-4.2) ...
- Selecting previously unselected package libboost-python1.83.0.
- Preparing to unpack .../81-libboost-python1.83.0_1.83.0-4.2_amd64.deb ...
- Unpacking libboost-python1.83.0 (1.83.0-4.2) ...
- Selecting previously unselected package libboost-numpy1.83.0.
- Preparing to unpack .../82-libboost-numpy1.83.0_1.83.0-4.2_amd64.deb ...
- Unpacking libboost-numpy1.83.0 (1.83.0-4.2) ...
- Selecting previously unselected package libboost-serialization1.83.0:amd64.
- Preparing to unpack .../83-libboost-serialization1.83.0_1.83.0-4.2_amd64.deb ...
- Unpacking libboost-serialization1.83.0:amd64 (1.83.0-4.2) ...
- Selecting previously unselected package libcoordgen3:amd64.
- Preparing to unpack .../84-libcoordgen3_3.0.2-1+b2_amd64.deb ...
- Unpacking libcoordgen3:amd64 (3.0.2-1+b2) ...
- Selecting previously unselected package libglib2.0-data.
- Preparing to unpack .../85-libglib2.0-data_2.84.4-3~deb13u1_all.deb ...
- Unpacking libglib2.0-data (2.84.4-3~deb13u1) ...
- Selecting previously unselected package libgts-bin.
- Preparing to unpack .../86-libgts-bin_0.7.6+darcs121130-5.2+b1_amd64.deb ...
- Unpacking libgts-bin (0.7.6+darcs121130-5.2+b1) ...
- Selecting previously unselected package libheif-plugin-aomenc:amd64.
- Preparing to unpack .../87-libheif-plugin-aomenc_1.19.8-1_amd64.deb ...
- Unpacking libheif-plugin-aomenc:amd64 (1.19.8-1) ...
- Selecting previously unselected package libnuma1:amd64.
- Preparing to unpack .../88-libnuma1_2.0.19-1_amd64.deb ...
- Unpacking libnuma1:amd64 (2.0.19-1) ...
- Selecting previously unselected package libx265-215:amd64.
- Preparing to unpack .../89-libx265-215_4.1-2_amd64.deb ...
- Unpacking libx265-215:amd64 (4.1-2) ...
- Selecting previously unselected package libheif-plugin-x265:amd64.
- Preparing to unpack .../90-libheif-plugin-x265_1.19.8-1_amd64.deb ...
- Unpacking libheif-plugin-x265:amd64 (1.19.8-1) ...
- Selecting previously unselected package libinchi1.07.
- Preparing to unpack .../91-libinchi1.07_1.07.3+dfsg-1_amd64.deb ...
- Unpacking libinchi1.07 (1.07.3+dfsg-1) ...
- Selecting previously unselected package libmaeparser1:amd64.
- Preparing to unpack .../92-libmaeparser1_1.3.1-1+b2_amd64.deb ...
- Unpacking libmaeparser1:amd64 (1.3.1-1+b2) ...
- Selecting previously unselected package librdkit1t64.
- Preparing to unpack .../93-librdkit1t64_202503.1-4_amd64.deb ...
- Unpacking librdkit1t64 (202503.1-4) ...
- Selecting previously unselected package librdkit-dev.
- Preparing to unpack .../94-librdkit-dev_202503.1-4_amd64.deb ...
- Unpacking librdkit-dev (202503.1-4) ...
- Selecting previously unselected package rdkit-data.
- Preparing to unpack .../95-rdkit-data_202503.1-4_all.deb ...
- Unpacking rdkit-data (202503.1-4) ...
- Selecting previously unselected package python3-rdkit.
- Preparing to unpack .../96-python3-rdkit_202503.1-4_amd64.deb ...
- Unpacking python3-rdkit (202503.1-4) ...
- Selecting previously unselected package shared-mime-info.
- Preparing to unpack .../97-shared-mime-info_2.4-5+b2_amd64.deb ...
- Unpacking shared-mime-info (2.4-5+b2) ...
- Selecting previously unselected package xdg-user-dirs.
- Preparing to unpack .../98-xdg-user-dirs_0.18-2_amd64.deb ...
- Unpacking xdg-user-dirs (0.18-2) ...
- Setting up media-types (13.0.0) ...
- Setting up libgraphite2-3:amd64 (1.3.14-2+b1) ...
- Setting up libboost-python1.83.0 (1.83.0-4.2) ...
- Setting up libpixman-1-0:amd64 (0.44.0-3) ...
- Setting up libsharpyuv0:amd64 (1.5.0-0.1) ...
- Setting up libaom3:amd64 (3.12.1-1) ...
- Setting up liblerc4:amd64 (4.0.0+ds-5) ...
- Setting up libxpm4:amd64 (1:3.5.17-1+b3) ...
- Setting up libxrender1:amd64 (1:0.9.12-1) ...
- Setting up libdatrie1:amd64 (0.2.13-3+b1) ...
- Setting up xdg-user-dirs (0.18-2) ...
- Setting up libxcb-render0:amd64 (1.17.0-2+b1) ...
- Setting up liblab-gamut1:amd64 (2.42.4-3) ...
- Setting up libuv1t64:amd64 (1.50.0-2) ...
- Setting up x11-common (1:7.7+24) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up libdeflate0:amd64 (1.23-2) ...
- Setting up fonts-freefont-ttf (20211204+svn4273-2) ...
- Setting up m4 (1.4.19-8) ...
- Setting up libxcb-shm0:amd64 (1.17.0-2+b1) ...
- Setting up rdkit-data (202503.1-4) ...
- Setting up libabsl20240722:amd64 (20240722.0-4) ...
- Setting up libjbig0:amd64 (2.1-6.1+b2) ...
- Setting up libboost-serialization1.83.0:amd64 (1.83.0-4.2) ...
- Setting up libboost-numpy1.83.0 (1.83.0-4.2) ...
- Setting up autotools-dev (20240727.1) ...
- Setting up libglib2.0-0t64:amd64 (2.84.4-3~deb13u1) ...
- No schema files found: doing nothing.
- Setting up libblas3:amd64 (3.12.1-6) ...
- update-alternatives: using /usr/lib/x86_64-linux-gnu/blas/libblas.so.3 to provide /usr/lib/x86_64-linux-gnu/libblas.so.3 (libblas.so.3-x86_64-linux-gnu) in auto mode
- Setting up libglib2.0-data (2.84.4-3~deb13u1) ...
- Setting up libjpeg62-turbo:amd64 (1:2.1.5-4) ...
- Setting up libsvtav1enc2:amd64 (2.3.0+dfsg-1) ...
- Setting up libboost-iostreams1.83.0:amd64 (1.83.0-4.2) ...
- Setting up libjsoncpp26:amd64 (1.9.6-3) ...
- Setting up libpathplan4:amd64 (2.42.4-3) ...
- Setting up libann0 (1.1.2+doc-9+b1) ...
- Setting up libfribidi0:amd64 (1.0.16-1) ...
- Setting up libimagequant0:amd64 (2.18.0-1+b2) ...
- Setting up fonts-dejavu-mono (2.37-8) ...
- Setting up libpng16-16t64:amd64 (1.6.48-1) ...
- Setting up python3-numpy-dev:amd64 (1:2.2.4+ds-1) ...
- Setting up fonts-dejavu-core (2.37-8) ...
- Setting up libgav1-1:amd64 (0.19.0-3+b1) ...
- Setting up libltdl7:amd64 (2.5.4-4) ...
- Setting up libgfortran5:amd64 (14.2.0-19) ...
- Setting up autoconf (2.72-3.1) ...
- Setting up libwebp7:amd64 (1.5.0-0.1) ...
- Setting up libnuma1:amd64 (2.0.19-1) ...
- Setting up libdav1d7:amd64 (1.5.1-1) ...
- Setting up libtiff6:amd64 (4.7.0-3) ...
- Setting up librav1e0.7:amd64 (0.7.1-9+b2) ...
- Setting up fonts-liberation (1:2.1.5-3) ...
- Setting up libthai-data (0.1.29-2) ...
- Setting up libgts-0.7-5t64:amd64 (0.7.6+darcs121130-5.2+b1) ...
- Setting up cmake-data (3.31.6-2) ...
- Setting up librhash1:amd64 (1.4.5-1) ...
- Setting up libcdt5:amd64 (2.42.4-3) ...
- Setting up libcgraph6:amd64 (2.42.4-3) ...
- Setting up libcoordgen3:amd64 (3.0.2-1+b2) ...
- Setting up fonts-liberation-sans-narrow (1:1.07.6-4) ...
- Setting up libde265-0:amd64 (1.0.15-1+b3) ...
- Setting up libx265-215:amd64 (4.1-2) ...
- Setting up libinchi1.07 (1.07.3+dfsg-1) ...
- Setting up libyuv0:amd64 (0.0.1904.20250204-1) ...
- Setting up readline-common (8.2-6) ...
- Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u1) ...
- Setting up automake (1:1.17-4) ...
- update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode
- Setting up libgts-bin (0.7.6+darcs121130-5.2+b1) ...
- Setting up libice6:amd64 (2:1.1.1-1) ...
- Setting up libavif16:amd64 (1.2.1-1.2) ...
- Setting up liblapack3:amd64 (3.12.1-6) ...
- update-alternatives: using /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/x86_64-linux-gnu/liblapack.so.3 (liblapack.so.3-x86_64-linux-gnu) in auto mode
- Setting up fontconfig-config (2.15.0-2.3) ...
- Setting up libmaeparser1:amd64 (1.3.1-1+b2) ...
- Setting up libthai0:amd64 (0.1.29-2+b1) ...
- Setting up libfreetype6:amd64 (2.13.3+dfsg-1) ...
- Setting up shared-mime-info (2.4-5+b2) ...
- Setting up libreadline8t64:amd64 (8.2-6) ...
- Setting up libgvpr2:amd64 (2.42.4-3) ...
- Setting up libharfbuzz0b:amd64 (10.2.0-1+b1) ...
- Setting up libfontconfig1:amd64 (2.15.0-2.3) ...
- Setting up libsm6:amd64 (2:1.2.6-1) ...
- Setting up libarchive13t64:amd64 (3.7.4-4) ...
- Setting up libpython3.13-stdlib:amd64 (3.13.5-2) ...
- Setting up libpython3-stdlib:amd64 (3.13.5-1) ...
- Setting up fontconfig (2.15.0-2.3) ...
- Regenerating fonts cache...
- done.
- Setting up python3.13 (3.13.5-2) ...
- Setting up libpango-1.0-0:amd64 (1.56.3-1) ...
- Setting up python3 (3.13.5-1) ...
- running python rtupdate hooks for python3.13...
- running python post-rtupdate hooks for python3.13...
- Setting up libcairo2:amd64 (1.18.4-1+b1) ...
- Setting up libxt6t64:amd64 (1:1.2.1-1.2+b2) ...
- Setting up python3-numpy (1:2.2.4+ds-1) ...
- Setting up cmake (3.31.6-2) ...
- Setting up libpangoft2-1.0-0:amd64 (1.56.3-1) ...
- Setting up libpangocairo-1.0-0:amd64 (1.56.3-1) ...
- Setting up libxmu6:amd64 (2:1.1.3-3+b4) ...
- Setting up librdkit1t64 (202503.1-4) ...
- Setting up libxaw7:amd64 (2:1.0.16-1) ...
- Setting up python3-rdkit (202503.1-4) ...
- Setting up librdkit-dev (202503.1-4) ...
- Setting up libheif-plugin-libde265:amd64 (1.19.8-1) ...
- Setting up libheif1:amd64 (1.19.8-1) ...
- Setting up libgd3:amd64 (2.3.3-13) ...
- Setting up libgvc6 (2.42.4-3) ...
- Setting up libheif-plugin-dav1d:amd64 (1.19.8-1) ...
- Setting up graphviz (2.42.4-3) ...
- Setting up libheif-plugin-x265:amd64 (1.19.8-1) ...
- Setting up libheif-plugin-aomenc:amd64 (1.19.8-1) ...
- Processing triggers for libc-bin (2.41-12) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved batteries.3.9.0 (cached)
-> retrieved bst.7.1.0 (cached)
-> retrieved camlp-streams.5.0.1 (cached)
-> retrieved conf-cmake.1 (cached)
-> retrieved conf-python-3.9.0.0 (cached)
-> retrieved conf-rdkit.1 (cached)
-> retrieved cpm.12.2.0 (cached)
-> retrieved cpu.2.0.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved dokeysto.4.0.1 (cached)
-> retrieved dolog.6.0.0 (cached)
-> installed conf-cmake.1
-> installed conf-python-3.9.0.0
-> installed conf-graphviz.0.1
-> installed conf-autoconf.0.2
-> installed conf-rdkit.1
-> installed dolog.6.0.0
-> installed csexp.1.5.2
-> installed camlp-streams.5.0.1
-> retrieved dune-configurator.3.20.2 (cached)
-> retrieved extunix.0.4.4 (cached)
-> retrieved line_oriented.1.3.0 (cached)
-> retrieved minicli.5.0.2 (cached)
-> retrieved molenc.17.0.1 (cached)
-> retrieved num.1.6 (cached)
-> retrieved ocaml-compiler-libs.v0.17.0 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocamlgraph.2.2.0 (cached)
-> installed minicli.5.0.2
-> retrieved oranger.4.3.3 (cached)
-> retrieved parany.14.0.1 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppxlib.0.36.0 (cached)
-> retrieved pyml.20250807 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> installed ppx_derivers.1.2.1
-> retrieved stdcompat.21.1 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved vector3.1.0.0 (cached)
-> installed sexplib0.v0.17.0
-> installed vector3.1.0.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed dune-configurator.3.20.2
-> installed cpu.2.0.0
-> installed num.1.6
-> installed parany.14.0.1
-> installed ocamlgraph.2.2.0
-> installed stdcompat.21.1
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed pyml.20250807
-> installed batteries.3.9.0
-> installed line_oriented.1.3.0
-> installed bst.7.1.0
-> installed cpm.12.2.0
-> installed ppxlib.0.36.0
-> installed extunix.0.4.4
-> installed dokeysto.4.0.1
-> installed molenc.17.0.1
-> installed oranger.4.3.3
Done.
# To update the current shell environment, run: eval $(opam env)
2025-09-18 12:36.29 ---> saved as "a2cd7bc7aa8b77e1a889d9aba39eef716b832f3fc3d84f32cbc7ec025d522b45"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test oranger.4.3.3) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile oranger 4.3.3
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved oranger.4.3.3 (https://opam.ocaml.org/cache)
-> removed oranger.4.3.3
-> installed oranger.4.3.3
Done.
# To update the current shell environment, run: eval $(opam env)
2025-09-18 12:36.58 ---> saved as "88862e41bc93f0523f842f3255efcc8506bf05f4436c580e79e64b553012a5a2"
/home/opam: (run (shell "opam reinstall --with-test --verbose oranger.4.3.3;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'oranger.4.3.3' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
- recompile oranger 4.3.3
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [oranger.4.3.3: extract]
-> retrieved oranger.4.3.3 (cached)
Processing 2/4: [oranger: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "oranger" "-j" "255" (CWD=/home/opam/.opam/5.3/.opam-switch/build/oranger.4.3.3)
Processing 2/4: [oranger: tar xzf]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "tar" "xzf" "0.9.11.tar.gz" (CWD=/home/opam/.opam/5.3/.opam-switch/build/oranger.4.3.3)
Processing 2/4: [oranger: mkdir]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "mkdir" "ranger-0.9.11/cpp_version/build" (CWD=/home/opam/.opam/5.3/.opam-switch/build/oranger.4.3.3)
Processing 2/4: [oranger: sh]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "sh" "-c" "cd ranger-0.9.11/cpp_version/build && cmake ../" (CWD=/home/opam/.opam/5.3/.opam-switch/build/oranger.4.3.3)
- CMake Warning (dev) at CMakeLists.txt:1 (project):
- cmake_minimum_required() should be called prior to this top-level project()
- call. Please see the cmake-commands(7) manual for usage documentation of
- both commands.
- This warning is for project developers. Use -Wno-dev to suppress it.
-
- -- The C compiler identification is GNU 14.2.0
- -- The CXX compiler identification is GNU 14.2.0
- -- Detecting C compiler ABI info
- -- Detecting C compiler ABI info - done
- -- Check for working C compiler: /usr/bin/cc - skipped
- -- Detecting C compile features
- -- Detecting C compile features - done
- -- Detecting CXX compiler ABI info
- -- Detecting CXX compiler ABI info - done
- -- Check for working CXX compiler: /usr/bin/c++ - skipped
- -- Detecting CXX compile features
- -- Detecting CXX compile features - done
- CMake Warning (dev) at CMakeLists.txt:2 (cmake_minimum_required):
- Compatibility with CMake < 2.4 is not supported by CMake >= 3.0.
- This warning is for project developers. Use -Wno-dev to suppress it.
-
- CMake Deprecation Warning at CMakeLists.txt:2 (cmake_minimum_required):
- Compatibility with CMake < 3.10 will be removed from a future version of
- CMake.
-
- Update the VERSION argument <min> value. Or, use the <min>...<max> syntax
- to tell CMake that the project requires at least <min> but has been updated
- to work with policies introduced by <max> or earlier.
-
-
- -- Performing Test COMPILER_SUPPORTS_CXX11
- -- Performing Test COMPILER_SUPPORTS_CXX11 - Success
- Compiler with C++11 support found.
- -- Configuring done (0.6s)
- -- Generating done (0.0s)
- -- Build files have been written to: /home/opam/.opam/5.3/.opam-switch/build/oranger.4.3.3/ranger-0.9.11/cpp_version/build
Processing 2/4: [oranger: make]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "-C" "ranger-0.9.11/cpp_version/build" (CWD=/home/opam/.opam/5.3/.opam-switch/build/oranger.4.3.3)
- make: Entering directory '/home/opam/.opam/5.3/.opam-switch/build/oranger.4.3.3/ranger-0.9.11/cpp_version/build'
- [ 5%] Building CXX object CMakeFiles/ranger.dir/src/Forest/Forest.o
- [ 11%] Building CXX object CMakeFiles/ranger.dir/src/Forest/ForestClassification.o
- [ 17%] Building CXX object CMakeFiles/ranger.dir/src/Forest/ForestProbability.o
- [ 23%] Building CXX object CMakeFiles/ranger.dir/src/Forest/ForestRegression.o
- [ 29%] Building CXX object CMakeFiles/ranger.dir/src/Forest/ForestSurvival.o
- [ 35%] Building CXX object CMakeFiles/ranger.dir/src/Tree/Tree.o
- [ 41%] Building CXX object CMakeFiles/ranger.dir/src/Tree/TreeClassification.o
- [ 47%] Building CXX object CMakeFiles/ranger.dir/src/Tree/TreeProbability.o
- [ 52%] Building CXX object CMakeFiles/ranger.dir/src/Tree/TreeRegression.o
- [ 58%] Building CXX object CMakeFiles/ranger.dir/src/Tree/TreeSurvival.o
- [ 64%] Building CXX object CMakeFiles/ranger.dir/src/main.o
- [ 70%] Building CXX object CMakeFiles/ranger.dir/src/utility/ArgumentHandler.o
- [ 76%] Building CXX object CMakeFiles/ranger.dir/src/utility/Data.o
- [ 82%] Building CXX object CMakeFiles/ranger.dir/src/utility/DataChar.o
- [ 88%] Building CXX object CMakeFiles/ranger.dir/src/utility/DataFloat.o
- [ 94%] Building CXX object CMakeFiles/ranger.dir/src/utility/utility.o
- [100%] Linking CXX executable ranger
- [100%] Built target ranger
- make: Leaving directory '/home/opam/.opam/5.3/.opam-switch/build/oranger.4.3.3/ranger-0.9.11/cpp_version/build'
-> compiled oranger.4.3.3
-> removed oranger.4.3.3
Processing 4/4: [oranger: cp]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "cp" "ranger-0.9.11/cpp_version/build/ranger" "/home/opam/.opam/5.3/bin/ml_rf_ranger" (CWD=/home/opam/.opam/5.3/.opam-switch/build/oranger.4.3.3)
-> installed oranger.4.3.3
Done.
# To update the current shell environment, run: eval $(opam env)
2025-09-18 12:37.28 ---> saved as "74286599632b92790514f61c6ae7e59a61af1d9a79460245893fa22f5f3b93e4"
Job succeeded
2025-09-18 12:37.35: Job succeeded