(not at the head of any monitored branch or PR)
2026-04-10 17:57.40: New job: test lambdapi.2.0.0 with dune.3.22.2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29704/head (3e0c395e7b1393a792367f8edca3654dac71e6fd)
                              on debian-13-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/29704/head" && git reset --hard 3e0c395e
git fetch origin master
git merge --no-edit 9d8ceab8e9f49f5671cf459997c8a47cf0e675ca
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4
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 dune.3.22.2 3.22.2
RUN opam reinstall dune.3.22.2; \
    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" != 'dune.3.22.2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall lambdapi.2.0.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'lambdapi.2.0.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test lambdapi.2.0.0) || true
RUN opam reinstall --with-test --verbose lambdapi.2.0.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'lambdapi.2.0.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2026-04-10 17:57.40: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4-dune.3.22.2-lambdapi.2.0.0-3e0c395e7b1393a792367f8edca3654dac71e6fd"
2026-04-10 17:57.40: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
 (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 dune.3.22.2 3.22.2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.22.2;\
             \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\" != 'dune.3.22.2' && 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 lambdapi.2.0.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"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\" != 'lambdapi.2.0.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test lambdapi.2.0.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose lambdapi.2.0.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"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\" != 'lambdapi.2.0.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-04-10 17:57.40: Waiting for resource in pool OCluster
2026-04-11 02:59.24: Waiting for worker…
2026-04-11 03:01.51: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 9d8ceab8e9 Merge pull request #29697 from filipeom/opam-publish-smtml.0.25.0
Updating 9d8ceab8e9..3e0c395e7b
Fast-forward
 packages/chrome-trace/chrome-trace.3.22.2/opam     | 39 +++++++++++
 .../dune-action-plugin.3.22.2/opam                 | 52 +++++++++++++++
 .../dune-action-trace.3.22.2/opam                  | 39 +++++++++++
 .../dune-build-info/dune-build-info.3.22.2/opam    | 45 +++++++++++++
 .../dune-configurator.3.22.2/opam                  | 49 ++++++++++++++
 packages/dune-glob/dune-glob.3.22.2/opam           | 42 ++++++++++++
 .../dune-private-libs.3.22.2/opam                  | 50 +++++++++++++++
 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam     | 41 ++++++++++++
 packages/dune-rpc/dune-rpc.3.22.2/opam             | 44 +++++++++++++
 packages/dune-site/dune-site.3.22.2/opam           | 37 +++++++++++
 packages/dune/dune.3.22.2/opam                     | 75 ++++++++++++++++++++++
 packages/dyn/dyn.3.22.2/opam                       | 40 ++++++++++++
 packages/fs-io/fs-io.3.22.2/opam                   | 39 +++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam         | 43 +++++++++++++
 packages/ordering/ordering.3.22.2/opam             | 38 +++++++++++
 packages/stdune/stdune.3.22.2/opam                 | 46 +++++++++++++
 packages/top-closure/top-closure.3.22.2/opam       | 38 +++++++++++
 packages/xdg/xdg.3.22.2/opam                       | 39 +++++++++++
 18 files changed, 796 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.22.2/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.2/opam
 create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.2/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.22.2/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.22.2/opam
 create mode 100644 packages/dune-glob/dune-glob.3.22.2/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.2/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.22.2/opam
 create mode 100644 packages/dune-site/dune-site.3.22.2/opam
 create mode 100644 packages/dune/dune.3.22.2/opam
 create mode 100644 packages/dyn/dyn.3.22.2/opam
 create mode 100644 packages/fs-io/fs-io.3.22.2/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam
 create mode 100644 packages/ordering/ordering.3.22.2/opam
 create mode 100644 packages/stdune/stdune.3.22.2/opam
 create mode 100644 packages/top-closure/top-closure.3.22.2/opam
 create mode 100644 packages/xdg/xdg.3.22.2/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
2026-04-11 03:01.51 ---> using "e7349b5faa6e8ea47e3f73a0784842b9d8524e468ce596e92633dbea53bd1c16" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-04-11 03:01.51 ---> using "345d07c1ddcf0b692213607682954d9bdf190a7dc793f33951a109185e732dcb" 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
2026-04-11 03:01.51 ---> using "6e021c655ca00bde9af60e23db55b09a0bcc3db0d3ca38d66f78ad53e254a31c" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# 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       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.3"}]
# compiler-packages    ocaml-base-compiler.4.14.3, 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.3
2026-04-11 03:01.51 ---> using "7b2a5ae62cf702b99c177da358372ff585494a0b1c5dfffe5c4eda3046bc59fb" 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/"))
2026-04-11 03:01.51 ---> using "2d8e28a183d0990d4c5f7a587471f7c743cdf0d9f00bdf4de7761e94ec09202a" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-11 03:01.52 ---> using "43c49734bd8015921029b9a907dd77c0e05208c46b686916515831f5a9e9d500" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-11 03:01.52 ---> using "bb36992fd0066703535b2984ee1ead3db92bb1f04a8df092631924067dac4082" 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 [121 kB]
- Fetched 211 kB in 0s (2452 kB/s)
- Reading package lists...
2026-04-11 03:01.52 ---> using "e0d9ada0baddc41d2c835edef7d0cf7cceebd2dadac41fda17c9e860b5313a74" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
dune is now pinned to version 3.22.2
2026-04-11 03:01.52 ---> using "a60db6b945be7f2fc9953546cee71bf416921d54f02951a4c9176dbdf1065520" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune.3.22.2;\
                        \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\" != 'dune.3.22.2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dune.3.22.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install dune 3.22.2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.2  (cached)
-> installed dune.3.22.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:01.52 ---> using "59eacf68137f7dccf94b9ebc5274fdc537230a8c71c2eb52f8fcf698829c6d46" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall lambdapi.2.0.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"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\" != 'lambdapi.2.0.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
lambdapi.2.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 30 packages
  - install alt-ergo            2.2.0    [required by lambdapi]
  - install bindlib             5.0.1    [required by lambdapi]
  - install camlp-streams       5.0.1    [required by pratter]
  - install camlzip             1.07     [required by alt-ergo, why3]
  - install cmdliner            1.3.0    [required by lambdapi]
  - install conf-autoconf       0.2      [required by alt-ergo, why3]
  - install conf-gmp            5        [required by zarith]
  - install conf-pkg-config     4        [required by zarith]
  - install gen                 1.1      [required by sedlex]
  - install lambdapi            2.0.0
  - install menhir              20211128 [required by lambdapi]
  - install menhirLib           20211128 [required by menhir]
  - install menhirSdk           20211128 [required by menhir]
  - install num                 1.6      [required by alt-ergo, why3]
  - install ocaml-compiler-libs v0.12.4  [required by ppxlib]
  - install ocamlbuild          0.16.1   [required by bindlib]
  - install ocamlfind           1.9.8    [required by bindlib, why3]
  - install ocplib-simplex      0.4.1    [required by alt-ergo]
  - install ppx_derivers        1.2.1    [required by ppxlib]
  - install ppxlib              0.38.0   [required by sedlex]
  - install pratter             1.2.1    [required by lambdapi]
  - install psmt2-frontend      0.1      [required by alt-ergo]
  - install sedlex              3.7      [required by lambdapi]
  - install seq                 base     [required by gen]
  - install sexplib0            v0.17.0  [required by ppxlib]
  - install stdlib-shims        0.3.0    [required by lambdapi]
  - install timed               1.1      [required by lambdapi]
  - install why3                1.4.1    [required by lambdapi]
  - install yojson              3.0.0    [required by lambdapi]
  - install zarith              1.14     [required by alt-ergo, why3]

The following system packages will first need to be installed:
    autoconf libgmp-dev pkg-config zlib1g-dev

<><> 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" "libgmp-dev" "pkg-config" "zlib1g-dev"
- Selecting previously unselected package m4.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20623 files and directories currently installed.)
- Preparing to unpack .../00-m4_1.4.19-8_amd64.deb ...
- Unpacking m4 (1.4.19-8) ...
- Selecting previously unselected package autoconf.
- Preparing to unpack .../01-autoconf_2.72-3.1_all.deb ...
- Unpacking autoconf (2.72-3.1) ...
- Selecting previously unselected package autotools-dev.
- Preparing to unpack .../02-autotools-dev_20240727.1_all.deb ...
- Unpacking autotools-dev (20240727.1) ...
- Selecting previously unselected package automake.
- Preparing to unpack .../03-automake_1%3a1.17-4_all.deb ...
- Unpacking automake (1:1.17-4) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../04-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../05-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../06-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../07-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../08-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../09-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../10-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up m4 (1.4.19-8) ...
- Setting up autotools-dev (20240727.1) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up autoconf (2.72-3.1) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- 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 libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12+deb13u2) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alt-ergo.2.2.0  (https://opam.ocaml.org/cache)
-> retrieved bindlib.5.0.1  (cached)
-> retrieved camlp-streams.5.0.1  (cached)
-> retrieved camlzip.1.07  (cached)
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved gen.1.1  (cached)
-> installed conf-pkg-config.4
-> installed conf-gmp.5
-> installed conf-autoconf.0.2
-> retrieved lambdapi.2.0.0  (https://opam.ocaml.org/cache)
-> installed camlp-streams.5.0.1
-> retrieved menhir.20211128, menhirLib.20211128, menhirSdk.20211128  (cached)
-> retrieved num.1.6  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-simplex.0.4.1  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppxlib.0.38.0  (cached)
-> installed menhirSdk.20211128
-> installed ppx_derivers.1.2.1
-> retrieved pratter.1.2.1  (https://opam.ocaml.org/cache)
-> retrieved psmt2-frontend.0.1  (https://opam.ocaml.org/cache)
-> retrieved sedlex.3.7  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> installed menhirLib.20211128
-> installed pratter.1.2.1
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved timed.1.1  (cached)
-> installed stdlib-shims.0.3.0
-> installed timed.1.1
-> retrieved why3.1.4.1  (cached)
-> installed num.1.6
-> retrieved yojson.3.0.0  (cached)
-> retrieved zarith.1.14  (cached)
-> installed cmdliner.1.3.0
-> installed gen.1.1
-> installed ocaml-compiler-libs.v0.12.4
-> installed sexplib0.v0.17.0
-> installed yojson.3.0.0
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed camlzip.1.07
-> installed bindlib.5.0.1
-> installed ocplib-simplex.0.4.1
-> installed zarith.1.14
-> installed menhir.20211128
-> installed ppxlib.0.38.0
-> installed psmt2-frontend.0.1
-> installed sedlex.3.7
-> installed alt-ergo.2.2.0
-> installed why3.1.4.1
-> installed lambdapi.2.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:02.42 ---> saved as "ade63751558d27e471e181f15350a6e2739a01d1fe6fe8cb5c0fb8f0c033d483"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test lambdapi.2.0.0) || true"))
The following actions will be performed:
=== downgrade 1 package
  - downgrade alt-ergo           2.2.0 to 1.01  [required by lambdapi]       This release is too old. Please consider using version 1.30 that fixes many soundness bugs and brings a lot of improvements
=== recompile 2 packages
  - recompile lambdapi           2.0.0
  - recompile why3               1.4.1          [uses re]
=== upgrade 3 packages
  - upgrade   camlzip            1.07 to 1.14   [required by why3]
  - upgrade   ocplib-simplex     0.4.1 to 0.5.1
  - upgrade   psmt2-frontend     0.1 to 0.4.0
=== install 9 packages
  - install   alcotest           1.9.1          [required by lambdapi]
  - install   astring            0.8.5          [required by alcotest]
  - install   conf-zlib          1              [required by camlzip]
  - install   fmt                0.11.0         [required by alcotest, logs]
  - install   logs               0.10.0         [required by ocplib-simplex]
  - install   ocaml-syntax-shims 1.0.0          [required by alcotest]
  - install   re                 1.14.0         [required by alcotest]
  - install   topkg              1.1.1          [required by logs]
  - install   uutf               1.0.4          [required by alcotest]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (https://opam.ocaml.org/cache)
-> retrieved alt-ergo.1.01  (https://opam.ocaml.org/cache)
-> retrieved alt-ergo.2.2.0  (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved camlzip.1.14  (https://opam.ocaml.org/cache)
-> installed conf-zlib.1
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved lambdapi.2.0.0  (https://opam.ocaml.org/cache)
-> retrieved logs.0.10.0  (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved ocplib-simplex.0.5.1  (https://opam.ocaml.org/cache)
-> retrieved psmt2-frontend.0.4.0  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> retrieved topkg.1.1.1  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed re.1.14.0
-> retrieved why3.1.4.1  (https://opam.ocaml.org/cache)
-> installed topkg.1.1.1
-> removed   lambdapi.2.0.0
[WARNING] package uninstall script failed at /home/opam/.opam/opam-init/hooks/sandbox.sh remove make uninstall MANDIR=/home/opam/.opam/4.14/man:
          # context              2.5.0 | linux/x86_64 | ocaml-base-compiler.4.14.3 | file:///home/opam/opam-repository
          # path                 ~/.opam/4.14/.opam-switch/remove/alt-ergo.2.2.0
          # command              ~/.opam/opam-init/hooks/sandbox.sh remove make uninstall MANDIR=/home/opam/.opam/4.14/man
          # exit-code            2
          # env-file             ~/.opam/log/alt-ergo-7-c3f5bd.env
          # output-file          ~/.opam/log/alt-ergo-7-c3f5bd.out
          ### output ###
          # menhir -v parsers/why/why_parser.mly 
          # ocamllex.opt parsers/why/why_lexer.mll > /dev/null
          # ocamldep -slash -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex lib/util/*.ml* lib/structures/*.ml* lib/reasoners/*.ml* lib/frontend/*.ml* tools/text/*.ml* \
          #         tools/gui/*.ml* parsers/why/*.ml* parsers/smt2/*.ml* plugins/fm-simplex/*ml* > .depend
          # ocamlfind remove alt-ergo
          # Removed /home/opam/.opam/4.14/lib/alt-ergo/META
          # ocamlfind: /home/opam/.opam/4.14/lib/alt-ergo/plugins: Is a directory
          # make: *** [Makefile.users:266: uninstall-lib] Error 2

-> removed   ocplib-simplex.0.4.1
-> removed   psmt2-frontend.0.1
-> removed   why3.1.4.1
-> removed   camlzip.1.07
-> installed alt-ergo.1.01
-> installed astring.0.8.5
-> installed camlzip.1.14
-> installed fmt.0.11.0
-> installed psmt2-frontend.0.4.0
-> installed uutf.1.0.4
-> installed logs.0.10.0
-> installed alcotest.1.9.1
-> installed ocplib-simplex.0.5.1
-> installed why3.1.4.1
-> installed lambdapi.2.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:03.26 ---> saved as "336be2449c0df58db427c24f130e3bd04960ffed5bae0e0d9dfa9f83de85df09"

/home/opam: (run (shell  "opam reinstall --with-test --verbose lambdapi.2.0.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"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\" != 'lambdapi.2.0.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile lambdapi 2.0.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [lambdapi.2.0.0: extract]
-> retrieved lambdapi.2.0.0  (cached)
Processing  2/4: [lambdapi: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "lambdapi" "-j" "255" "@install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/lambdapi.2.0.0)
- File "dune-project", line 56, characters 24-45:
- 56 |   (alt-ergo :with-test) (alt-ergo (<= 2.4.0))
-                              ^^^^^^^^^^^^^^^^^^^^^
- Warning: Duplicate dependency on package (alt-ergo (<= 2.4.0)) in 'depends'
- field. If you want to specify multiple constraints, combine them using (and
- ...).
- Hint: To disable this warning, add the following to your dune-project file:
- (warnings (duplicate_deps disabled))
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I src/common/.common.objs/byte -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/timed -I src/lplib/.lplib.objs/byte -no-alias-deps -open Common -o src/common/.common.objs/byte/common__Debug.cmo -c -impl src/common/debug.ml)
- File "src/common/debug.ml", line 165, characters 37-45:
- 165 | let stream_iter : ('a -> unit) -> 'a Stream.t -> unit =
-                                            ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/common/debug.ml", line 165, characters 37-45:
- 165 | let stream_iter : ('a -> unit) -> 'a Stream.t -> unit =
-                                            ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/common/debug.ml", line 166, characters 29-40:
- 166 |   if not !do_print_time then Stream.iter else fun f strm ->
-                                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/common/debug.ml", line 169, characters 40-51:
- 169 |     record_time Parsing (fun () -> r := Stream.peek strm); !r
-                                               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/common/debug.ml", line 173, characters 16-27:
- 173 |       Some a -> Stream.junk strm; ignore(f a); do_rec ()
-                       ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I src/common/.common.objs/byte -I src/common/.common.objs/native -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/timed -I src/lplib/.lplib.objs/byte -I src/lplib/.lplib.objs/native -intf-suffix .ml -no-alias-deps -open Common -o src/common/.common.objs/native/common__Debug.cmx -c -impl src/common/debug.ml)
- File "src/common/debug.ml", line 165, characters 37-45:
- 165 | let stream_iter : ('a -> unit) -> 'a Stream.t -> unit =
-                                            ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/common/debug.ml", line 165, characters 37-45:
- 165 | let stream_iter : ('a -> unit) -> 'a Stream.t -> unit =
-                                            ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/common/debug.ml", line 166, characters 29-40:
- 166 |   if not !do_print_time then Stream.iter else fun f strm ->
-                                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/common/debug.ml", line 169, characters 40-51:
- 169 |     record_time Parsing (fun () -> r := Stream.peek strm); !r
-                                               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/common/debug.ml", line 173, characters 16-27:
- 173 |       Some a -> Stream.junk strm; ignore(f a); do_rec ()
-                       ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I src/cli/.lambdapi.eobjs/byte -I /home/opam/.opam/4.14/lib/bindlib -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/gen -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/pratter -I /home/opam/.opam/4.14/lib/sedlex -I /home/opam/.opam/4.14/lib/sedlex/ppx -I /home/opam/.opam/4.14/lib/sedlex/utils -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/timed -I /home/opam/.opam/4.14/lib/why3 -I /home/opam/.opam/4.14/lib/yojson -I /home/opam/.opam/4.14/lib/zip -I src/common/.common.objs/byte -I src/core/.core.objs/byte -I src/handle/.handle.objs/byte -I src/lplib/.lplib.objs/byte -I src/lsp/.lsp.objs/byte -I src/parsing/.parsing.objs/byte -I src/pure/.pure.objs/byte -I src/tool/.tool.objs/byte -no-alias-deps -open Dune__exe -o src/cli/.lambdapi.eobjs/byte/dune__exe__Init.cmo -c -impl src/cli/init.ml)
- File "src/cli/init.ml", line 74, characters 2-11:
- 74 |   Term.info "init" ~doc
-        ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I src/cli/.lambdapi.eobjs/byte -I /home/opam/.opam/4.14/lib/bindlib -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/gen -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/pratter -I /home/opam/.opam/4.14/lib/sedlex -I /home/opam/.opam/4.14/lib/sedlex/ppx -I /home/opam/.opam/4.14/lib/sedlex/utils -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/timed -I /home/opam/.opam/4.14/lib/why3 -I /home/opam/.opam/4.14/lib/yojson -I /home/opam/.opam/4.14/lib/zip -I src/common/.common.objs/byte -I src/core/.core.objs/byte -I src/handle/.handle.objs/byte -I src/lplib/.lplib.objs/byte -I src/lsp/.lsp.objs/byte -I src/parsing/.parsing.objs/byte -I src/pure/.pure.objs/byte -I src/tool/.tool.objs/byte -no-alias-deps -open Dune__exe -o src/cli/.lambdapi.eobjs/byte/dune__exe__Install.cmo -c -impl src/cli/install.ml)
- File "src/cli/install.ml", line 118, characters 2-11:
- 118 |   Term.info "install" ~doc
-         ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/cli/install.ml", line 123, characters 2-11:
- 123 |   Term.info "uninstall" ~doc
-         ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I src/cli/.lambdapi.eobjs/byte -I /home/opam/.opam/4.14/lib/bindlib -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/gen -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/pratter -I /home/opam/.opam/4.14/lib/sedlex -I /home/opam/.opam/4.14/lib/sedlex/ppx -I /home/opam/.opam/4.14/lib/sedlex/utils -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/timed -I /home/opam/.opam/4.14/lib/why3 -I /home/opam/.opam/4.14/lib/yojson -I /home/opam/.opam/4.14/lib/zip -I src/common/.common.objs/byte -I src/core/.core.objs/byte -I src/handle/.handle.objs/byte -I src/lplib/.lplib.objs/byte -I src/lsp/.lsp.objs/byte -I src/parsing/.parsing.objs/byte -I src/pure/.pure.objs/byte -I src/tool/.tool.objs/byte -no-alias-deps -open Dune__exe -o src/cli/.lambdapi.eobjs/byte/dune__exe__Lambdapi.cmo -c -impl src/cli/lambdapi.ml)
- File "src/cli/lambdapi.ml", line 223, characters 2-10:
- 223 |   CLT.info "check" ~doc ~man:man_pkg_file
-         ^^^^^^^^
- Alert deprecated: CLT.info
- Use Cmd.info instead.
- File "src/cli/lambdapi.ml", line 231, characters 2-10:
- 231 |   CLT.info "decision-tree" ~doc ~man:man_pkg_file
-         ^^^^^^^^
- Alert deprecated: CLT.info
- Use Cmd.info instead.
- File "src/cli/lambdapi.ml", line 236, characters 2-10:
- 236 |   CLT.info "parse" ~doc ~man:man_pkg_file
-         ^^^^^^^^
- Alert deprecated: CLT.info
- Use Cmd.info instead.
- File "src/cli/lambdapi.ml", line 241, characters 2-10:
- 241 |   CLT.info "beautify" ~doc ~man:man_pkg_file
-         ^^^^^^^^
- Alert deprecated: CLT.info
- Use Cmd.info instead.
- File "src/cli/lambdapi.ml", line 246, characters 2-10:
- 246 |   CLT.info "lsp" ~doc ~man:man_pkg_file
-         ^^^^^^^^
- Alert deprecated: CLT.info
- Use Cmd.info instead.
- File "src/cli/lambdapi.ml", line 251, characters 2-10:
- 251 |   CLT.info "help" ~doc
-         ^^^^^^^^
- Alert deprecated: CLT.info
- Use Cmd.info instead.
- File "src/cli/lambdapi.ml", line 257, characters 2-10:
- 257 |   CLT.info "version" ~doc
-         ^^^^^^^^
- Alert deprecated: CLT.info
- Use Cmd.info instead.
- File "src/cli/lambdapi.ml", line 263, characters 2-10:
- 263 |   CLT.info "lambdapi" ~version ~doc ~sdocs
-         ^^^^^^^^
- Alert deprecated: CLT.info
- Use Cmd.info instead.
- File "src/cli/lambdapi.ml", line 274, characters 7-11:
- 274 |   CLT.(exit (eval_choice default_cmd cmds))
-              ^^^^
- Alert deprecated: CLT.exit
- Use Stdlib.exit and Cmd.eval instead.
- File "src/cli/lambdapi.ml", line 274, characters 13-24:
- 274 |   CLT.(exit (eval_choice default_cmd cmds))
-                    ^^^^^^^^^^^
- Alert deprecated: CLT.eval_choice
- Use Cmd.group and one of Cmd.eval* instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I src/cli/.lambdapi.eobjs/byte -I src/cli/.lambdapi.eobjs/native -I /home/opam/.opam/4.14/lib/bindlib -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/gen -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/pratter -I /home/opam/.opam/4.14/lib/sedlex -I /home/opam/.opam/4.14/lib/sedlex/ppx -I /home/opam/.opam/4.14/lib/sedlex/utils -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/timed -I /home/opam/.opam/4.14/lib/why3 -I /home/opam/.opam/4.14/lib/yojson -I /home/opam/.opam/4.14/lib/zip -I src/common/.common.objs/byte -I src/common/.common.objs/native -I src/core/.core.objs/byte -I src/core/.core.objs/native -I src/handle/.handle.objs/byte -I src/handle/.handle.objs/native -I src/lplib/.lplib.objs/byte -I src/lplib/.lplib.objs/native -I src/lsp/.lsp.objs/byte -I src/lsp/.lsp.objs/native -I src/parsing/.parsing.objs/byte -I src/parsing/.parsing.objs/native -I src/pure/.pure.objs/byte -I src/pure/.pure.objs/native -I src/tool/.tool.objs/byte -I src/tool/.tool.objs/native -intf-suffix .ml -no-alias-deps -open Dune__exe -o src/cli/.lambdapi.eobjs/native/dune__exe__Init.cmx -c -impl src/cli/init.ml)
- File "src/cli/init.ml", line 74, characters 2-11:
- 74 |   Term.info "init" ~doc
-        ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I src/cli/.lambdapi.eobjs/byte -I src/cli/.lambdapi.eobjs/native -I /home/opam/.opam/4.14/lib/bindlib -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/gen -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/pratter -I /home/opam/.opam/4.14/lib/sedlex -I /home/opam/.opam/4.14/lib/sedlex/ppx -I /home/opam/.opam/4.14/lib/sedlex/utils -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/timed -I /home/opam/.opam/4.14/lib/why3 -I /home/opam/.opam/4.14/lib/yojson -I /home/opam/.opam/4.14/lib/zip -I src/common/.common.objs/byte -I src/common/.common.objs/native -I src/core/.core.objs/byte -I src/core/.core.objs/native -I src/handle/.handle.objs/byte -I src/handle/.handle.objs/native -I src/lplib/.lplib.objs/byte -I src/lplib/.lplib.objs/native -I src/lsp/.lsp.objs/byte -I src/lsp/.lsp.objs/native -I src/parsing/.parsing.objs/byte -I src/parsing/.parsing.objs/native -I src/pure/.pure.objs/byte -I src/pure/.pure.objs/native -I src/tool/.tool.objs/byte -I src/tool/.tool.objs/native -intf-suffix .ml -no-alias-deps -open Dune__exe -o src/cli/.lambdapi.eobjs/native/dune__exe__Install.cmx -c -impl src/cli/install.ml)
- File "src/cli/install.ml", line 118, characters 2-11:
- 118 |   Term.info "install" ~doc
-         ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/cli/install.ml", line 123, characters 2-11:
- 123 |   Term.info "uninstall" ~doc
-         ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I src/cli/.lambdapi.eobjs/byte -I src/cli/.lambdapi.eobjs/native -I /home/opam/.opam/4.14/lib/bindlib -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/gen -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/pratter -I /home/opam/.opam/4.14/lib/sedlex -I /home/opam/.opam/4.14/lib/sedlex/ppx -I /home/opam/.opam/4.14/lib/sedlex/utils -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/timed -I /home/opam/.opam/4.14/lib/why3 -I /home/opam/.opam/4.14/lib/yojson -I /home/opam/.opam/4.14/lib/zip -I src/common/.common.objs/byte -I src/common/.common.objs/native -I src/core/.core.objs/byte -I src/core/.core.objs/native -I src/handle/.handle.objs/byte -I src/handle/.handle.objs/native -I src/lplib/.lplib.objs/byte -I src/lplib/.lplib.objs/native -I src/lsp/.lsp.objs/byte -I src/lsp/.lsp.objs/native -I src/parsing/.parsing.objs/byte -I src/parsing/.parsing.objs/native -I src/pure/.pure.objs/byte -I src/pure/.pure.objs/native -I src/tool/.tool.objs/byte -I src/tool/.tool.objs/native -intf-suffix .ml -no-alias-deps -open Dune__exe -o src/cli/.lambdapi.eobjs/native/dune__exe__Lambdapi.cmx -c -impl src/cli/lambdapi.ml)
- File "src/cli/lambdapi.ml", line 223, characters 2-10:
- 223 |   CLT.info "check" ~doc ~man:man_pkg_file
-         ^^^^^^^^
- Alert deprecated: CLT.info
- Use Cmd.info instead.
- File "src/cli/lambdapi.ml", line 231, characters 2-10:
- 231 |   CLT.info "decision-tree" ~doc ~man:man_pkg_file
-         ^^^^^^^^
- Alert deprecated: CLT.info
- Use Cmd.info instead.
- File "src/cli/lambdapi.ml", line 236, characters 2-10:
- 236 |   CLT.info "parse" ~doc ~man:man_pkg_file
-         ^^^^^^^^
- Alert deprecated: CLT.info
- Use Cmd.info instead.
- File "src/cli/lambdapi.ml", line 241, characters 2-10:
- 241 |   CLT.info "beautify" ~doc ~man:man_pkg_file
-         ^^^^^^^^
- Alert deprecated: CLT.info
- Use Cmd.info instead.
- File "src/cli/lambdapi.ml", line 246, characters 2-10:
- 246 |   CLT.info "lsp" ~doc ~man:man_pkg_file
-         ^^^^^^^^
- Alert deprecated: CLT.info
- Use Cmd.info instead.
- File "src/cli/lambdapi.ml", line 251, characters 2-10:
- 251 |   CLT.info "help" ~doc
-         ^^^^^^^^
- Alert deprecated: CLT.info
- Use Cmd.info instead.
- File "src/cli/lambdapi.ml", line 257, characters 2-10:
- 257 |   CLT.info "version" ~doc
-         ^^^^^^^^
- Alert deprecated: CLT.info
- Use Cmd.info instead.
- File "src/cli/lambdapi.ml", line 263, characters 2-10:
- 263 |   CLT.info "lambdapi" ~version ~doc ~sdocs
-         ^^^^^^^^
- Alert deprecated: CLT.info
- Use Cmd.info instead.
- File "src/cli/lambdapi.ml", line 274, characters 7-11:
- 274 |   CLT.(exit (eval_choice default_cmd cmds))
-              ^^^^
- Alert deprecated: CLT.exit
- Use Stdlib.exit and Cmd.eval instead.
- File "src/cli/lambdapi.ml", line 274, characters 13-24:
- 274 |   CLT.(exit (eval_choice default_cmd cmds))
-                    ^^^^^^^^^^^
- Alert deprecated: CLT.eval_choice
- Use Cmd.group and one of Cmd.eval* instead.
-> compiled  lambdapi.2.0.0
-> removed   lambdapi.2.0.0
-> installed lambdapi.2.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:03.35 ---> saved as "6f8263171c62e549b726fc89541b7ed5f343cb9147d26adcf4c92220c3d50490"
Job succeeded
2026-04-11 03:03.40: Job succeeded