- github
- ocaml
- opam-repository
- e2e946
- compilers,4.14,dune-configurator.3.20.0~alpha4,revdeps,opam-client.2.1.5
(not at the head of any monitored branch or PR)
2025-08-12 13:23.43: New job: test opam-client.2.1.5 with dune-configurator.3.20.0~alpha4, using opam 2.3
from https://github.com/ocaml/opam-repository.git#refs/pull/28333/head (e2e946ed909ce4d2c3e1e35bbaff78b566760128)
on debian-12-ocaml-4.14/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/28333/head" && git reset --hard e2e946ed
git fetch origin master
git merge --no-edit 5b99878077ddf3134c09e188d937954bd33cfa58
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.3 /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 dune-configurator.3.20.0~alpha4 3.20.0~alpha4
RUN opam reinstall dune-configurator.3.20.0~alpha4; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'dune-configurator.3.20.0~alpha4' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall opam-client.2.1.5; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'opam-client.2.1.5' && 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 opam-client.2.1.5) || true
RUN opam reinstall --with-test --verbose opam-client.2.1.5; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'opam-client.2.1.5' && 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-08-12 13:23.43: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63-dune-configurator.3.20.0~alpha4-opam-client.2.1.5-e2e946ed909ce4d2c3e1e35bbaff78b566760128"
2025-08-12 13:23.43: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-2.3 /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 dune-configurator.3.20.0~alpha4 3.20.0~alpha4"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune-configurator.3.20.0~alpha4;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune-configurator.3.20.0~alpha4' && 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 opam-client.2.1.5;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'opam-client.2.1.5' && 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 opam-client.2.1.5) || true"))
(run (shell "opam reinstall --with-test --verbose opam-client.2.1.5;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'opam-client.2.1.5' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-08-12 13:23.43: Waiting for resource in pool OCluster
2025-08-12 16:51.29: Waiting for worker…
2025-08-12 16:54.12: Got resource from pool OCluster
Building on eumache
All commits already cached
Updating files: 65% (11765/18017)
Updating files: 66% (11892/18017)
Updating files: 67% (12072/18017)
Updating files: 68% (12252/18017)
Updating files: 69% (12432/18017)
Updating files: 70% (12612/18017)
Updating files: 71% (12793/18017)
Updating files: 72% (12973/18017)
Updating files: 73% (13153/18017)
Updating files: 74% (13333/18017)
Updating files: 75% (13513/18017)
Updating files: 76% (13693/18017)
Updating files: 77% (13874/18017)
Updating files: 78% (14054/18017)
Updating files: 79% (14234/18017)
Updating files: 80% (14414/18017)
Updating files: 81% (14594/18017)
Updating files: 82% (14774/18017)
Updating files: 83% (14955/18017)
Updating files: 84% (15135/18017)
Updating files: 85% (15315/18017)
Updating files: 86% (15495/18017)
Updating files: 87% (15675/18017)
Updating files: 88% (15855/18017)
Updating files: 89% (16036/18017)
Updating files: 90% (16216/18017)
Updating files: 91% (16396/18017)
Updating files: 92% (16576/18017)
Updating files: 93% (16756/18017)
Updating files: 94% (16936/18017)
Updating files: 95% (17117/18017)
Updating files: 96% (17297/18017)
Updating files: 97% (17477/18017)
Updating files: 98% (17657/18017)
Updating files: 99% (17837/18017)
Updating files: 100% (18017/18017)
Updating files: 100% (18017/18017), done.
HEAD is now at 5b99878077 Merge pull request #28318 from ocamllibs/metaquot-0.6.0
Updating 5b99878077..e2e946ed90
Fast-forward
.../chrome-trace/chrome-trace.3.20.0~alpha4/opam | 41 ++++++++++++
.../dune-action-plugin.3.20.0~alpha4/opam | 54 ++++++++++++++++
.../dune-build-info.3.20.0~alpha4/opam | 47 ++++++++++++++
.../dune-configurator.3.20.0~alpha4/opam | 51 +++++++++++++++
packages/dune-glob/dune-glob.3.20.0~alpha4/opam | 44 +++++++++++++
.../dune-private-libs.3.20.0~alpha4/opam | 52 +++++++++++++++
.../dune-rpc-lwt/dune-rpc-lwt.3.20.0~alpha4/opam | 43 +++++++++++++
packages/dune-rpc/dune-rpc.3.20.0~alpha4/opam | 46 ++++++++++++++
packages/dune-site/dune-site.3.20.0~alpha4/opam | 39 ++++++++++++
packages/dune/dune.3.20.0~alpha4/opam | 74 ++++++++++++++++++++++
packages/dyn/dyn.3.20.0~alpha4/opam | 42 ++++++++++++
packages/ocamlc-loc/ocamlc-loc.3.20.0~alpha4/opam | 45 +++++++++++++
packages/ordering/ordering.3.20.0~alpha4/opam | 40 ++++++++++++
packages/stdune/stdune.3.20.0~alpha4/opam | 46 ++++++++++++++
packages/xdg/xdg.3.20.0~alpha4/opam | 41 ++++++++++++
15 files changed, 705 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.20.0~alpha4/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.20.0~alpha4/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.20.0~alpha4/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.20.0~alpha4/opam
create mode 100644 packages/dune-glob/dune-glob.3.20.0~alpha4/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.20.0~alpha4/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.20.0~alpha4/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.20.0~alpha4/opam
create mode 100644 packages/dune-site/dune-site.3.20.0~alpha4/opam
create mode 100644 packages/dune/dune.3.20.0~alpha4/opam
create mode 100644 packages/dyn/dyn.3.20.0~alpha4/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.20.0~alpha4/opam
create mode 100644 packages/ordering/ordering.3.20.0~alpha4/opam
create mode 100644 packages/stdune/stdune.3.20.0~alpha4/opam
create mode 100644 packages/xdg/xdg.3.20.0~alpha4/opam
(from ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63)
Unable to find image 'ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63' locally
docker.io/ocaml/opam@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63: Pulling from ocaml/opam
a77c4f4a24ac: Already exists
9d1a03aa3c71: Already exists
baba434270f2: Already exists
2a8a0f93626e: Already exists
f6ba2ed01176: Already exists
Digest: sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63
Status: Downloaded newer image for ocaml/opam@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63
2025-08-12 16:54.15 ---> using "7f53aba96fd697ea92c7c7d3f6be48133fa7f3f6538a693606c4cbcecd7917b8" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2025-08-12 16:54.15 ---> using "e4ec4ab2139d3c4a94c2b5470fe84288e4986c518ff4f4ae2d7c7e30aeac0731" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-08-12 16:54.15 ---> using "707659fd6393183061072104f3ce800d69d94ba93e0f39ab380130268d0ee81e" 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.3.0 (35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724)
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=12
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2025-08-12 16:54.15 ---> using "3ec3067d40f73cc0ec4554b242939c55b0261973e091b54a647662451dc49933" 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-08-12 16:54.15 ---> using "376e3b49c8c08cb1ff0d45feb403c06e037d8df5800c560fdd8dd472f1e36b9a" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-08-12 16:54.17 ---> using "e17457918b8520f1cc4845647d0b13a39117eff71b59a3c5352a8dccd3e736a1" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-08-12 16:54.17 ---> using "a9c87a01beb7b470788e26aa155c7a9aa4fe1265c42bbb2e46588f264ba6e313" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB]
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian bookworm-updates/main amd64 Packages.diff/Index [21.8 kB]
- Ign:4 http://deb.debian.org/debian bookworm-updates/main amd64 Packages.diff/Index
- Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [6924 B]
- Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [272 kB]
- Fetched 555 kB in 0s (1393 kB/s)
- Reading package lists...
-
2025-08-12 16:54.17 ---> using "4f267453f72fd37713de377ca2564e961df391a8a15b228dc4ea0efbc9db6963" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune-configurator.3.20.0~alpha4 3.20.0~alpha4"))
dune-configurator is now pinned to version 3.20.0~alpha4
2025-08-12 16:54.17 ---> using "52e23700be945c805c5e742ab3df27ebd439fcfafba52f271252e3b1b8c11809" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune-configurator.3.20.0~alpha4;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune-configurator.3.20.0~alpha4' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dune-configurator.3.20.0~alpha4 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 3 packages
- install csexp 1.5.2 [required by dune-configurator]
- install dune 3.20.0~alpha4 [required by dune-configurator]
- install dune-configurator 3.20.0~alpha4 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2 (cached)
-> retrieved dune.3.20.0~alpha4, dune-configurator.3.20.0~alpha4 (cached)
-> installed dune.3.20.0~alpha4
-> installed csexp.1.5.2
-> installed dune-configurator.3.20.0~alpha4
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-12 16:54.17 ---> using "837a20ada99a8ae17c0d31c9ad53cc8002e4210ea99052ee8e18a4fed6c4d643" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall opam-client.2.1.5;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'opam-client.2.1.5' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
opam-client.2.1.5 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 23 packages
- install base64 3.5.1 [required by opam-client]
- install cmdliner 1.3.0 [required by opam-client]
- install conf-c++ 1.0 [required by mccs]
- install cppo 1.8.0 [required by opam-core, extlib]
- install cudf 0.10 [required by opam-solver]
- install dose3 7.0.0 [required by opam-solver]
- install extlib 1.8.0 [required by cudf, dose3]
- install mccs 1.1+19 [required by opam-solver]
- install menhir 20240715 [required by opam-file-format]
- install menhirCST 20240715 [required by menhir]
- install menhirLib 20240715 [required by menhir]
- install menhirSdk 20240715 [required by menhir]
- install ocamlgraph 2.2.0 [required by dose3]
- install opam-client 2.1.5
- install opam-core 2.1.5 [required by opam-format]
- install opam-file-format 2.2.0 [required by opam-format]
- install opam-format 2.1.5 [required by opam-repository, opam-solver]
- install opam-repository 2.1.5 [required by opam-client]
- install opam-solver 2.1.5 [required by opam-client]
- install opam-state 2.1.5 [required by opam-client]
- install re 1.13.2 [required by opam-client]
- install seq base [required by re]
- install stdlib-shims 0.3.0 [required by dose3]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base64.3.5.1 (cached)
-> retrieved cmdliner.1.3.0 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved cudf.0.10 (cached)
-> installed conf-c++.1.0
-> retrieved dose3.7.0.0 (cached)
-> retrieved extlib.1.8.0 (cached)
-> retrieved mccs.1.1+19 (cached)
-> retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715 (cached)
-> installed base64.3.5.1
-> retrieved ocamlgraph.2.2.0 (cached)
-> retrieved opam-client.2.1.5, opam-core.2.1.5, opam-format.2.1.5, opam-repository.2.1.5, opam-solver.2.1.5, opam-state.2.1.5 (cached)
-> installed cppo.1.8.0
-> installed menhirCST.20240715
-> installed menhirSdk.20240715
-> retrieved opam-file-format.2.2.0 (cached)
-> retrieved re.1.13.2 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved stdlib-shims.0.3.0 (cached)
-> installed menhirLib.20240715
-> installed stdlib-shims.0.3.0
-> installed extlib.1.8.0
-> installed re.1.13.2
-> installed cmdliner.1.3.0
-> installed cudf.0.10
-> installed ocamlgraph.2.2.0
-> installed dose3.7.0.0
-> installed mccs.1.1+19
-> installed opam-core.2.1.5
-> installed menhir.20240715
-> installed opam-file-format.2.2.0
-> installed opam-format.2.1.5
-> installed opam-repository.2.1.5
-> installed opam-solver.2.1.5
-> installed opam-state.2.1.5
-> installed opam-client.2.1.5
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-12 16:55.22 ---> saved as "fda450c4b75c36851d569cb1620b1f58173b46fb66cfe208b0d3e287e6a343a2"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test opam-client.2.1.5) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile opam-client 2.1.5
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved opam-client.2.1.5 (https://opam.ocaml.org/cache)
-> removed opam-client.2.1.5
-> installed opam-client.2.1.5
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-12 16:55.36 ---> saved as "c8493de489c1289ac0fa58db438b80683595b0df22c04d7cdb0f5f2167ee16c4"
/home/opam: (run (shell "opam reinstall --with-test --verbose opam-client.2.1.5;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'opam-client.2.1.5' && 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 opam-client 2.1.5
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [opam-client.2.1.5: extract]
-> retrieved opam-client.2.1.5 (cached)
Processing 2/4: [opam-client: ./configure]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "./configure" "--disable-checks" "--prefix" "/home/opam/.opam/4.14" (CWD=/home/opam/.opam/4.14/.opam-switch/build/opam-client.2.1.5)
- checking for ocamlc... ocamlc
- OCaml version is 4.14.2
- OCaml library path is /home/opam/.opam/4.14/lib/ocaml
- checking for ocamlopt... ocamlopt
- checking for ocamlc.opt... ocamlc.opt
- checking for ocamlopt.opt... ocamlopt.opt
- checking for ocaml... ocaml
- checking for ocamldep... ocamldep
- checking for ocamldep.opt... ocamldep.opt
- checking for ocamlmktop... ocamlmktop
- checking for ocamlmklib... ocamlmklib
- checking for ocamldoc... ocamldoc
- checking for ocamldoc.opt... ocamldoc.opt
- checking for ocamlbuild... no
- checking OCaml Sys.os_type... Unix
- checking for gawk... no
- checking for mawk... mawk
- checking for compiler type... cc
- checking for compiler architecture...
- amd64
- checking for compiler system... linux
- checking for gcc... gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64
- checking whether the C compiler works... yes
- checking for C compiler default output file name... a.out
- checking for suffix of executables...
- checking whether we are cross compiling... no
- checking for suffix of object files... o
- checking whether the compiler supports GNU C... yes
- checking whether gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 accepts -g... yes
- checking for gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 option to enable C11 features... none needed
- checking for stdio.h... yes
- checking for stdlib.h...
- yes
- checking for string.h... yes
- checking for inttypes.h... yes
- checking for stdint.h... yes
- checking for strings.h... yes
- checking for sys/stat.h... yes
- checking for sys/types.h... yes
- checking for unistd.h... yes
- checking for acl/libacl.h... no
- checking for library containing acl_get_perm... no
- checking for ocamlobjinfo... ocamlobjinfo
- checking for ocamlfind... no
- checking for curl... curl
- checking for dune... dune
- checking for cppo... cppo
- checking for patch... patch
- checking for bunzip2... bunzip2
-
- checking for OCaml findlib package unix... not found
- checking for OCaml findlib package bigarray... not found
- checking for OCaml findlib package extlib... not found
- checking for OCaml findlib package re... not found
- checking for OCaml findlib package re.glob... not found
- checking for OCaml findlib package cmdliner... not found
- checking for OCaml findlib package ocamlgraph... not found
- checking for OCaml findlib package cudf... not found
- checking for OCaml findlib package dose3.common... not found
- checking for OCaml findlib package dose3.algo... not found
- checking for OCaml findlib package opam-file-format... not found
- checking for OCaml findlib package mccs... not found
- checking for OCaml findlib package opam-0install-cudf... not found
- checking for g++... g++
- checking whether the compiler supports GNU C++... yes
- checking whether g++ accepts -g... yes
- checking for g++ option to enable C++11 features... none needed
-
- configure: creating ./config.status
- config.status: creating Makefile.config
- config.status: creating src/ocaml-flags-configure.sexp
- config.status: creating src/stubs/c-flags.sexp
- config.status: creating src/stubs/libacl/c-libraries.sexp
-
- Opam will be built WITH a built-in solver
-
- Executables will be installed in /home/opam/.opam/4.14/bin
- Manual pages will be installed in /home/opam/.opam/4.14/share/man
Processing 2/4: [opam-client: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "opam-client" "-j" "71" (CWD=/home/opam/.opam/4.14/.opam-switch/build/opam-client.2.1.5)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-4-40-42-44-48 -safe-string -w -67 -w -67 -g -bin-annot -I src/client/.opam_client.objs/byte -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cudf -I /home/opam/.opam/4.14/lib/dose3/algo -I /home/opam/.opam/4.14/lib/dose3/common -I /home/opam/.opam/4.14/lib/extlib -I /home/opam/.opam/4.14/lib/mccs -I /home/opam/.opam/4.14/lib/mccs/glpk/internal -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/opam-core -I /home/opam/.opam/4.14/lib/opam-file-format -I /home/opam/.opam/4.14/lib/opam-format -I /home/opam/.opam/4.14/lib/opam-repository -I /home/opam/.opam/4.14/lib/opam-solver -I /home/opam/.opam/4.14/lib/opam-state -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/re/pcre -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -no-alias-deps -o src/client/.opam_client.objs/byte/opamAdminCommand.cmi -c -intf src/client/opamAdminCommand.mli)
- File "src/client/opamAdminCommand.mli", line 14, characters 38-56:
- 14 | type command = unit Cmdliner.Term.t * Cmdliner.Term.info
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-4-40-42-44-48 -safe-string -w -67 -w -67 -g -bin-annot -I src/client/.opam_client.objs/byte -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cudf -I /home/opam/.opam/4.14/lib/dose3/algo -I /home/opam/.opam/4.14/lib/dose3/common -I /home/opam/.opam/4.14/lib/extlib -I /home/opam/.opam/4.14/lib/mccs -I /home/opam/.opam/4.14/lib/mccs/glpk/internal -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/opam-core -I /home/opam/.opam/4.14/lib/opam-file-format -I /home/opam/.opam/4.14/lib/opam-format -I /home/opam/.opam/4.14/lib/opam-repository -I /home/opam/.opam/4.14/lib/opam-solver -I /home/opam/.opam/4.14/lib/opam-state -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/re/pcre -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -no-alias-deps -o src/client/.opam_client.objs/byte/opamArgTools.cmi -c -intf src/client/opamArgTools.mli)
- File "src/client/opamArgTools.mli", line 40, characters 40-53:
- 40 | string list -> string -> string -> 'a Arg.converter -> 'a -> 'a Term.t
- ^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.converter
- Use Arg.conv' function instead.
- File "src/client/opamArgTools.mli", line 44, characters 60-73:
- 44 | ?default:'a list -> string list -> string -> string -> 'a Arg.converter ->
- ^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.converter
- Use Arg.conv' function instead.
- File "src/client/opamArgTools.mli", line 90, characters 29-38:
- 90 | type command = unit Term.t * Term.info
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/client/opamArgTools.mli", line 95, characters 29-38:
- 95 | man:Manpage.block list -> Term.info) ->
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/client/opamArgTools.mli", line 103, characters 15-24:
- 103 | list -> Term.info) ->
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-4-40-42-44-48 -safe-string -w -67 -w -67 -g -bin-annot -I src/client/.opam_client.objs/byte -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cudf -I /home/opam/.opam/4.14/lib/dose3/algo -I /home/opam/.opam/4.14/lib/dose3/common -I /home/opam/.opam/4.14/lib/extlib -I /home/opam/.opam/4.14/lib/mccs -I /home/opam/.opam/4.14/lib/mccs/glpk/internal -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/opam-core -I /home/opam/.opam/4.14/lib/opam-file-format -I /home/opam/.opam/4.14/lib/opam-format -I /home/opam/.opam/4.14/lib/opam-repository -I /home/opam/.opam/4.14/lib/opam-solver -I /home/opam/.opam/4.14/lib/opam-state -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/re/pcre -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -no-alias-deps -o src/client/.opam_client.objs/byte/opamArg.cmi -c -intf src/client/opamArg.mli)
- File "src/client/opamArg.mli", line 63, characters 5-18:
- 63 | 'a Arg.converter -> 'a ->
- ^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.converter
- Use Arg.conv' function instead.
- File "src/client/opamArg.mli", line 70, characters 5-18:
- 70 | 'a Arg.converter -> 'a list Term.t
- ^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.converter
- Use Arg.conv' function instead.
- File "src/client/opamArg.mli", line 132, characters 37-50:
- 132 | val arg_list: string -> string -> 'a Arg.converter -> 'a list Term.t
- ^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.converter
- Use Arg.conv' function instead.
- File "src/client/opamArg.mli", line 135, characters 46-59:
- 135 | val nonempty_arg_list: string -> string -> 'a Arg.converter -> 'a list Term.t
- ^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.converter
- Use Arg.conv' function instead.
- File "src/client/opamArg.mli", line 220, characters 37-50:
- 220 | val repository_name: repository_name Arg.converter
- ^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.converter
- Use Arg.conv' function instead.
- File "src/client/opamArg.mli", line 223, characters 13-26:
- 223 | val url: url Arg.converter
- ^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.converter
- Use Arg.conv' function instead.
- File "src/client/opamArg.mli", line 226, characters 23-36:
- 226 | val filename: filename Arg.converter
- ^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.converter
- Use Arg.conv' function instead.
- File "src/client/opamArg.mli", line 229, characters 47-60:
- 229 | val existing_filename_or_dash: filename option Arg.converter
- ^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.converter
- Use Arg.conv' function instead.
- File "src/client/opamArg.mli", line 232, characters 21-34:
- 232 | val dirname: dirname Arg.converter
- ^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.converter
- Use Arg.conv' function instead.
- File "src/client/opamArg.mli", line 235, characters 35-48:
- 235 | OpamFilename.generic_file option Arg.converter
- ^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.converter
- Use Arg.conv' function instead.
- File "src/client/opamArg.mli", line 237, characters 26-39:
- 237 | val positive_integer: int Arg.converter
- ^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.converter
- Use Arg.conv' function instead.
- File "src/client/opamArg.mli", line 240, characters 23-36:
- 240 | val package_name: name Arg.converter
- ^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.converter
- Use Arg.conv' function instead.
- File "src/client/opamArg.mli", line 243, characters 29-42:
- 243 | val package_version: version Arg.converter
- ^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.converter
- Use Arg.conv' function instead.
- File "src/client/opamArg.mli", line 246, characters 37-50:
- 246 | val package: (name * version option) Arg.converter
- ^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.converter
- Use Arg.conv' function instead.
- File "src/client/opamArg.mli", line 249, characters 34-47:
- 249 | val package_with_version: package Arg.converter
- ^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.converter
- Use Arg.conv' function instead.
- File "src/client/opamArg.mli", line 252, characters 15-28:
- 252 | val atom: atom Arg.converter
- ^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.converter
- Use Arg.conv' function instead.
- File "src/client/opamArg.mli", line 256, characters 66-79:
- 256 | [ `Atom of atom | `Filename of filename | `Dirname of dirname ] Arg.converter
- ^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.converter
- Use Arg.conv' function instead.
- File "src/client/opamArg.mli", line 259, characters 42-55:
- 259 | [ `Atom of atom | `Dirname of dirname ] Arg.converter
- ^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.converter
- Use Arg.conv' function instead.
- File "src/client/opamArg.mli", line 262, characters 25-38:
- 262 | val dep_formula: formula Arg.converter
- ^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.converter
- Use Arg.conv' function instead.
- File "src/client/opamArg.mli", line 265, characters 54-67:
- 265 | val variable_bindings: (OpamVariable.t * string) list Arg.converter
- ^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.converter
- Use Arg.conv' function instead.
- File "src/client/opamArg.mli", line 268, characters 37-50:
- 268 | val warn_selector: (int * bool) list Arg.converter
- ^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.converter
- Use Arg.conv' function instead.
- File "src/client/opamArg.mli", line 270, characters 57-70:
- 270 | val opamlist_columns: OpamListCommand.output_format list Arg.converter
- ^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.converter
- Use Arg.conv' function instead.
- File "src/client/opamArg.mli", line 314, characters 14-23:
- 314 | 'a Term.t * Term.info -> ?options:string -> string ->
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/client/opamArg.mli", line 315, characters 14-23:
- 315 | 'a Term.t * Term.info
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/client/opamArg.mli", line 325, characters 29-38:
- 325 | type command = unit Term.t * Term.info
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-4-40-42-44-48 -safe-string -w -67 -w -67 -g -bin-annot -I src/client/.opam_client.objs/byte -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cudf -I /home/opam/.opam/4.14/lib/dose3/algo -I /home/opam/.opam/4.14/lib/dose3/common -I /home/opam/.opam/4.14/lib/extlib -I /home/opam/.opam/4.14/lib/mccs -I /home/opam/.opam/4.14/lib/mccs/glpk/internal -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/opam-core -I /home/opam/.opam/4.14/lib/opam-file-format -I /home/opam/.opam/4.14/lib/opam-format -I /home/opam/.opam/4.14/lib/opam-repository -I /home/opam/.opam/4.14/lib/opam-solver -I /home/opam/.opam/4.14/lib/opam-state -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/re/pcre -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -intf-suffix .ml -no-alias-deps -o src/client/.opam_client.objs/byte/opamArgTools.cmo -c -impl src/client/opamArgTools.ml)
- File "src/client/opamArgTools.ml", line 559, characters 29-38:
- 559 | type command = unit Term.t * Term.info
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-4-40-42-44-48 -safe-string -w -67 -w -67 -g -bin-annot -I src/client/.opam_client.objs/byte -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cudf -I /home/opam/.opam/4.14/lib/dose3/algo -I /home/opam/.opam/4.14/lib/dose3/common -I /home/opam/.opam/4.14/lib/extlib -I /home/opam/.opam/4.14/lib/mccs -I /home/opam/.opam/4.14/lib/mccs/glpk/internal -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/opam-core -I /home/opam/.opam/4.14/lib/opam-file-format -I /home/opam/.opam/4.14/lib/opam-format -I /home/opam/.opam/4.14/lib/opam-repository -I /home/opam/.opam/4.14/lib/opam-solver -I /home/opam/.opam/4.14/lib/opam-state -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/re/pcre -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -intf-suffix .ml -no-alias-deps -o src/client/.opam_client.objs/byte/opamCliMain.cmo -c -impl src/client/opamCliMain.ml)
- File "src/client/opamCliMain.ml", line 441, characters 8-24:
- 441 | match Term.eval_choice ~catch:false ~argv default commands with
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Term.eval_choice
- Use Cmd.group and one of Cmd.eval* instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-4-40-42-44-48 -safe-string -w -67 -w -67 -g -bin-annot -I src/client/.opam_client.objs/byte -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cudf -I /home/opam/.opam/4.14/lib/dose3/algo -I /home/opam/.opam/4.14/lib/dose3/common -I /home/opam/.opam/4.14/lib/extlib -I /home/opam/.opam/4.14/lib/mccs -I /home/opam/.opam/4.14/lib/mccs/glpk/internal -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/opam-core -I /home/opam/.opam/4.14/lib/opam-file-format -I /home/opam/.opam/4.14/lib/opam-format -I /home/opam/.opam/4.14/lib/opam-repository -I /home/opam/.opam/4.14/lib/opam-solver -I /home/opam/.opam/4.14/lib/opam-state -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/re/pcre -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -intf-suffix .ml -no-alias-deps -o src/client/.opam_client.objs/byte/opamAdminCommand.cmo -c -impl src/client/opamAdminCommand.ml)
- File "src/client/opamAdminCommand.ml", line 17, characters 38-56:
- 17 | type command = unit Cmdliner.Term.t * Cmdliner.Term.info
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/client/opamAdminCommand.ml", line 1060, characters 8-12:
- 1060 | Term.(pure cmd $ global_options cli $ force_arg $ atom_arg)
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/client/opamAdminCommand.ml", line 1085, characters 25-40:
- 1085 | Term.(ret (const help $Term.man_format $Term.choice_names $topic)),
- ^^^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Term.man_format
- Use Arg.man_format instead.
- File "src/client/opamAdminCommand.ml", line 1086, characters 2-11:
- 1086 | Term.info "help" ~doc ~man
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/client/opamAdminCommand.ml", line 1129, characters 2-11:
- 1129 | Term.info "opam admin"
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-4-40-42-44-48 -safe-string -w -67 -w -67 -g -bin-annot -I src/client/.opam_client.objs/byte -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cudf -I /home/opam/.opam/4.14/lib/dose3/algo -I /home/opam/.opam/4.14/lib/dose3/common -I /home/opam/.opam/4.14/lib/extlib -I /home/opam/.opam/4.14/lib/mccs -I /home/opam/.opam/4.14/lib/mccs/glpk/internal -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/opam-core -I /home/opam/.opam/4.14/lib/opam-file-format -I /home/opam/.opam/4.14/lib/opam-format -I /home/opam/.opam/4.14/lib/opam-repository -I /home/opam/.opam/4.14/lib/opam-solver -I /home/opam/.opam/4.14/lib/opam-state -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/re/pcre -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -intf-suffix .ml -no-alias-deps -o src/client/.opam_client.objs/byte/opamArg.cmo -c -impl src/client/opamArg.ml)
- File "src/client/opamArg.ml", line 719, characters 27-40:
- 719 | let positive_integer : int Arg.converter =
- ^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.converter
- Use Arg.conv' function instead.
- File "src/client/opamArg.ml", line 719, characters 27-40:
- 719 | let positive_integer : int Arg.converter =
- ^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.converter
- Use Arg.conv' function instead.
- File "src/client/opamArg.ml", line 979, characters 2-11:
- 979 | Term.info ~sdocs:global_option_section ~docs:Manpage.s_commands
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/client/opamArg.ml", line 990, characters 13-22:
- 990 | let orig = Term.name info in
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.name
- Use Cmd.name instead.
- File "src/client/opamArg.ml", line 1002, characters 2-11:
- 1002 | Term.info name
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -w +a-4-40-42-44-48 -safe-string -w -67 -w -67 -g -I src/client/.opam_client.objs/byte -I src/client/.opam_client.objs/native -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cudf -I /home/opam/.opam/4.14/lib/dose3/algo -I /home/opam/.opam/4.14/lib/dose3/common -I /home/opam/.opam/4.14/lib/extlib -I /home/opam/.opam/4.14/lib/mccs -I /home/opam/.opam/4.14/lib/mccs/glpk/internal -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/opam-core -I /home/opam/.opam/4.14/lib/opam-file-format -I /home/opam/.opam/4.14/lib/opam-format -I /home/opam/.opam/4.14/lib/opam-repository -I /home/opam/.opam/4.14/lib/opam-solver -I /home/opam/.opam/4.14/lib/opam-state -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/re/pcre -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -intf-suffix .ml -no-alias-deps -o src/client/.opam_client.objs/native/opamArgTools.cmx -c -impl src/client/opamArgTools.ml)
- File "src/client/opamArgTools.ml", line 559, characters 29-38:
- 559 | type command = unit Term.t * Term.info
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-4-40-42-44-48 -safe-string -w -67 -w -67 -g -bin-annot -I src/client/.opam_client.objs/byte -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cudf -I /home/opam/.opam/4.14/lib/dose3/algo -I /home/opam/.opam/4.14/lib/dose3/common -I /home/opam/.opam/4.14/lib/extlib -I /home/opam/.opam/4.14/lib/mccs -I /home/opam/.opam/4.14/lib/mccs/glpk/internal -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/opam-core -I /home/opam/.opam/4.14/lib/opam-file-format -I /home/opam/.opam/4.14/lib/opam-format -I /home/opam/.opam/4.14/lib/opam-repository -I /home/opam/.opam/4.14/lib/opam-solver -I /home/opam/.opam/4.14/lib/opam-state -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/re/pcre -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -intf-suffix .ml -no-alias-deps -o src/client/.opam_client.objs/byte/opamCommands.cmo -c -impl src/client/opamCommands.ml)
- File "src/client/opamCommands.ml", line 3863, characters 25-40:
- 3863 | Term.(ret (const help $Term.man_format $Term.choice_names $topic)),
- ^^^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Term.man_format
- Use Arg.man_format instead.
- File "src/client/opamCommands.ml", line 3864, characters 2-11:
- 3864 | Term.info "help" ~doc ~man
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/client/opamCommands.ml", line 3911, characters 2-11:
- 3911 | Term.info "opam"
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/client/opamCommands.ml", line 3921, characters 2-11:
- 3921 | Term.info "admin" ~doc:OpamAdminCommand.admin_command_doc
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/client/opamCommands.ml", line 3957, characters 53-62:
- 3957 | OpamStd.String.starts_with ~prefix (Term.name info))
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.name
- Use Cmd.name instead.
- File "src/client/opamCommands.ml", line 3964, characters 55-64:
- 3964 | OpamStd.String.starts_with ~prefix (Term.name info))
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.name
- Use Cmd.name instead.
- File "src/client/opamCommands.ml", line 3967, characters 20-29:
- 3967 | | [(_,info)] when Term.name info = "admin" -> true
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.name
- Use Cmd.name instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -w +a-4-40-42-44-48 -safe-string -w -67 -w -67 -g -I src/client/.opam_client.objs/byte -I src/client/.opam_client.objs/native -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cudf -I /home/opam/.opam/4.14/lib/dose3/algo -I /home/opam/.opam/4.14/lib/dose3/common -I /home/opam/.opam/4.14/lib/extlib -I /home/opam/.opam/4.14/lib/mccs -I /home/opam/.opam/4.14/lib/mccs/glpk/internal -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/opam-core -I /home/opam/.opam/4.14/lib/opam-file-format -I /home/opam/.opam/4.14/lib/opam-format -I /home/opam/.opam/4.14/lib/opam-repository -I /home/opam/.opam/4.14/lib/opam-solver -I /home/opam/.opam/4.14/lib/opam-state -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/re/pcre -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -intf-suffix .ml -no-alias-deps -o src/client/.opam_client.objs/native/opamArg.cmx -c -impl src/client/opamArg.ml)
- File "src/client/opamArg.ml", line 719, characters 27-40:
- 719 | let positive_integer : int Arg.converter =
- ^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.converter
- Use Arg.conv' function instead.
- File "src/client/opamArg.ml", line 719, characters 27-40:
- 719 | let positive_integer : int Arg.converter =
- ^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.converter
- Use Arg.conv' function instead.
- File "src/client/opamArg.ml", line 979, characters 2-11:
- 979 | Term.info ~sdocs:global_option_section ~docs:Manpage.s_commands
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/client/opamArg.ml", line 990, characters 13-22:
- 990 | let orig = Term.name info in
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.name
- Use Cmd.name instead.
- File "src/client/opamArg.ml", line 1002, characters 2-11:
- 1002 | Term.info name
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -w +a-4-40-42-44-48 -safe-string -w -67 -w -67 -g -I src/client/.opam_client.objs/byte -I src/client/.opam_client.objs/native -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cudf -I /home/opam/.opam/4.14/lib/dose3/algo -I /home/opam/.opam/4.14/lib/dose3/common -I /home/opam/.opam/4.14/lib/extlib -I /home/opam/.opam/4.14/lib/mccs -I /home/opam/.opam/4.14/lib/mccs/glpk/internal -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/opam-core -I /home/opam/.opam/4.14/lib/opam-file-format -I /home/opam/.opam/4.14/lib/opam-format -I /home/opam/.opam/4.14/lib/opam-repository -I /home/opam/.opam/4.14/lib/opam-solver -I /home/opam/.opam/4.14/lib/opam-state -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/re/pcre -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -intf-suffix .ml -no-alias-deps -o src/client/.opam_client.objs/native/opamAdminCommand.cmx -c -impl src/client/opamAdminCommand.ml)
- File "src/client/opamAdminCommand.ml", line 17, characters 38-56:
- 17 | type command = unit Cmdliner.Term.t * Cmdliner.Term.info
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/client/opamAdminCommand.ml", line 1060, characters 8-12:
- 1060 | Term.(pure cmd $ global_options cli $ force_arg $ atom_arg)
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/client/opamAdminCommand.ml", line 1085, characters 25-40:
- 1085 | Term.(ret (const help $Term.man_format $Term.choice_names $topic)),
- ^^^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Term.man_format
- Use Arg.man_format instead.
- File "src/client/opamAdminCommand.ml", line 1086, characters 2-11:
- 1086 | Term.info "help" ~doc ~man
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/client/opamAdminCommand.ml", line 1129, characters 2-11:
- 1129 | Term.info "opam admin"
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -w +a-4-40-42-44-48 -safe-string -w -67 -w -67 -g -I src/client/.opam_client.objs/byte -I src/client/.opam_client.objs/native -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cudf -I /home/opam/.opam/4.14/lib/dose3/algo -I /home/opam/.opam/4.14/lib/dose3/common -I /home/opam/.opam/4.14/lib/extlib -I /home/opam/.opam/4.14/lib/mccs -I /home/opam/.opam/4.14/lib/mccs/glpk/internal -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/opam-core -I /home/opam/.opam/4.14/lib/opam-file-format -I /home/opam/.opam/4.14/lib/opam-format -I /home/opam/.opam/4.14/lib/opam-repository -I /home/opam/.opam/4.14/lib/opam-solver -I /home/opam/.opam/4.14/lib/opam-state -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/re/pcre -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -intf-suffix .ml -no-alias-deps -o src/client/.opam_client.objs/native/opamCommands.cmx -c -impl src/client/opamCommands.ml)
- File "src/client/opamCommands.ml", line 3863, characters 25-40:
- 3863 | Term.(ret (const help $Term.man_format $Term.choice_names $topic)),
- ^^^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Term.man_format
- Use Arg.man_format instead.
- File "src/client/opamCommands.ml", line 3864, characters 2-11:
- 3864 | Term.info "help" ~doc ~man
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/client/opamCommands.ml", line 3911, characters 2-11:
- 3911 | Term.info "opam"
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/client/opamCommands.ml", line 3921, characters 2-11:
- 3921 | Term.info "admin" ~doc:OpamAdminCommand.admin_command_doc
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/client/opamCommands.ml", line 3957, characters 53-62:
- 3957 | OpamStd.String.starts_with ~prefix (Term.name info))
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.name
- Use Cmd.name instead.
- File "src/client/opamCommands.ml", line 3964, characters 55-64:
- 3964 | OpamStd.String.starts_with ~prefix (Term.name info))
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.name
- Use Cmd.name instead.
- File "src/client/opamCommands.ml", line 3967, characters 20-29:
- 3967 | | [(_,info)] when Term.name info = "admin" -> true
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.name
- Use Cmd.name instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -w +a-4-40-42-44-48 -safe-string -w -67 -w -67 -g -I src/client/.opam_client.objs/byte -I src/client/.opam_client.objs/native -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cudf -I /home/opam/.opam/4.14/lib/dose3/algo -I /home/opam/.opam/4.14/lib/dose3/common -I /home/opam/.opam/4.14/lib/extlib -I /home/opam/.opam/4.14/lib/mccs -I /home/opam/.opam/4.14/lib/mccs/glpk/internal -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/opam-core -I /home/opam/.opam/4.14/lib/opam-file-format -I /home/opam/.opam/4.14/lib/opam-format -I /home/opam/.opam/4.14/lib/opam-repository -I /home/opam/.opam/4.14/lib/opam-solver -I /home/opam/.opam/4.14/lib/opam-state -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/re/pcre -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -intf-suffix .ml -no-alias-deps -o src/client/.opam_client.objs/native/opamCliMain.cmx -c -impl src/client/opamCliMain.ml)
- File "src/client/opamCliMain.ml", line 441, characters 8-24:
- 441 | match Term.eval_choice ~catch:false ~argv default commands with
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Term.eval_choice
- Use Cmd.group and one of Cmd.eval* instead.
-> compiled opam-client.2.1.5
-> removed opam-client.2.1.5
-> installed opam-client.2.1.5
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-12 16:55.50 ---> saved as "7c91c5c99f4f3b49ee39ea8df5d2c2b0765df2507a6460ffa2b1de1c5ec541b5"
Job succeeded
2025-08-12 16:55.55: Job succeeded