(not at the head of any monitored branch or PR)
2026-01-23 15:10.11: New job: test caisar.5.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29111/head (6fb9bc721893564c7fcc5360575ff8ff9e76bc1c)
                              on centos-9-ocaml-5.4/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29111/head" && git reset --hard 6fb9bc72
git fetch origin master
git merge --no-edit dc02a35b0eaa39fa73e10f2dfa764b490f859db6
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:centos-9-ocaml-5.4@sha256:e203d084b077edf8d3cc8700718ac30d0e981480279804cb60a05b8b205c71be
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 caisar.5.0 5.0
RUN opam reinstall caisar.5.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 "\"centos-9\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'caisar.5.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 caisar.5.0) || true
RUN opam reinstall --with-test --verbose caisar.5.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 "\"centos-9\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'caisar.5.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-01-23 15:10.11: Using cache hint "ocaml/opam:centos-9-ocaml-5.4@sha256:e203d084b077edf8d3cc8700718ac30d0e981480279804cb60a05b8b205c71be-caisar.5.0-6fb9bc721893564c7fcc5360575ff8ff9e76bc1c"
2026-01-23 15:10.11: Using OBuilder spec:
((from ocaml/opam:centos-9-ocaml-5.4@sha256:e203d084b077edf8d3cc8700718ac30d0e981480279804cb60a05b8b205c71be)
 (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 caisar.5.0 5.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall caisar.5.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 \"\\\"centos-9\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'caisar.5.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 caisar.5.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose caisar.5.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 \"\\\"centos-9\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'caisar.5.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-01-23 15:10.11: Waiting for resource in pool OCluster
2026-01-23 15:10.11: Waiting for worker…
2026-01-23 15:11.07: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
Updating files:  78% (15192/19256)
Updating files:  79% (15213/19256)
Updating files:  80% (15405/19256)
Updating files:  81% (15598/19256)
Updating files:  82% (15790/19256)
Updating files:  83% (15983/19256)
Updating files:  84% (16176/19256)
Updating files:  85% (16368/19256)
Updating files:  86% (16561/19256)
Updating files:  87% (16753/19256)
Updating files:  88% (16946/19256)
Updating files:  89% (17138/19256)
Updating files:  90% (17331/19256)
Updating files:  91% (17523/19256)
Updating files:  92% (17716/19256)
Updating files:  93% (17909/19256)
Updating files:  94% (18101/19256)
Updating files:  95% (18294/19256)
Updating files:  96% (18486/19256)
Updating files:  97% (18679/19256)
Updating files:  98% (18871/19256)
Updating files:  99% (19064/19256)
Updating files: 100% (19256/19256)
Updating files: 100% (19256/19256), done.
HEAD is now at dc02a35b0e Merge pull request #29268 from ocaml/notty-win-avail-false
Merge made by the 'ort' strategy.
 packages/caisar/caisar.5.0/opam | 66 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 66 insertions(+)
 create mode 100644 packages/caisar/caisar.5.0/opam

(from ocaml/opam:centos-9-ocaml-5.4@sha256:e203d084b077edf8d3cc8700718ac30d0e981480279804cb60a05b8b205c71be)
2026-01-23 15:13.20 ---> using "0ccbbadcc53dda68324b3ca9abe4dc68694a58dbe4bfd7dbd9103f71cb0b6749" 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-01-23 15:13.20 ---> using "a96a4f43c1a3c92655c15217c3b99e5ee1fa508bb7a5d10f8afcf3bef8b427be" 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-01-23 15:13.20 ---> using "a93a0a9916d67cf9f537d277fcbc22c20717e4ca122bb6a5347848c04e092dfb" 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=centos os-version=9
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages    ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.0
2026-01-23 15:13.20 ---> using "8249da851c574dcafaf9f034f7c2d3532ff68b95190b8152e61cd04ea7f1140a" 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-01-23 15:13.20 ---> using "327bf482793f9003db9322e6b6a455d83f81f65908a17b6cceb5c3b5775e7da9" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-01-23 15:13.54 ---> saved as "86d5521e34f257aa8e45576bc43f9b0469ae5d9d14ea165da6ec281fc770276c"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-23 15:14.25 ---> saved as "f02e6762166110ec971ddb64b445d94917eb07022756dc943c4e6a2284c74a92"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- CentOS Stream 9 - BaseOS                         99 kB/s |  14 kB     00:00    
- CentOS Stream 9 - BaseOS                         14 MB/s | 8.9 MB     00:00    
- CentOS Stream 9 - AppStream                     113 kB/s |  14 kB     00:00    
- CentOS Stream 9 - AppStream                      14 MB/s |  26 MB     00:01    
- CentOS Stream 9 - CRB                            99 kB/s |  14 kB     00:00    
- CentOS Stream 9 - CRB                            12 MB/s | 7.6 MB     00:00    
- CentOS Stream 9 - Extras packages               114 kB/s |  16 kB     00:00    
- Metadata cache created.
2026-01-23 15:14.41 ---> saved as "b1a783b190d20630330557f5aeaad4a67e9cec3877cb15dd8de3fc8804cd8363"

/home/opam: (run (shell "opam pin add -k version -yn caisar.5.0 5.0"))
caisar is now pinned to version 5.0
2026-01-23 15:14.43 ---> saved as "2ec1e5f390075640ab5975a33055fc07de5bb25d137f7a9c09a0c6947de10d4e"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall caisar.5.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 \"\\\"centos-9\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'caisar.5.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
caisar.5.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 77 packages
  - install astring                 0.8.5        [required by fpath]
  - install base                    v0.17.3      [required by caisar]
  - install base-bytes              base         [required by csv, ocplib-endian]
  - install base64                  3.5.2        [required by ocaml-protoc-plugin]
  - install bos                     0.2.1        [required by yaml]
  - install caisar                  5.0 (pinned)
  - install cmdliner                2.1.0        [required by caisar]
  - install conf-gmp                5            [required by zarith]
  - install conf-pkg-config         4            [required by ocaml-protoc-plugin]
  - install conf-protoc             4.4.0        [required by ocaml-protoc-plugin]
  - install cppo                    1.8.0        [required by ocplib-endian, ppx_deriving]
  - install csexp                   1.5.2        [required by dune-configurator, dune-private-libs]
  - install csv                     2.4          [required by caisar]
  - install ctypes                  0.24.0       [required by yaml]
  - install dune                    3.21.0       [required by caisar]
  - install dune-build-info         3.21.0       [required by omd]
  - install dune-configurator       3.21.0       [required by base]
  - install dune-private-libs       3.21.0       [required by dune-site]
  - install dune-site               3.21.0       [required by caisar]
  - install dyn                     3.21.0       [required by dune-private-libs]
  - install fmt                     0.11.0       [required by caisar]
  - install fpath                   0.7.3        [required by caisar]
  - install fs-io                   3.21.0       [required by stdune]
  - install integers                0.7.0        [required by ctypes]
  - install jane-street-headers     v0.17.0      [required by time_now]
  - install jst-config              v0.17.0      [required by time_now]
  - install logs                    0.10.0       [required by caisar]
  - install menhir                  20250912     [required by why3]
  - install menhirCST               20250912     [required by menhir]
  - install menhirLib               20250912     [required by caisar]
  - install menhirSdk               20250912     [required by menhir]
  - install ocaml-compiler-libs     v0.17.0      [required by ppxlib]
  - install ocaml-protoc-plugin     6.2.0        [required by caisar]
  - install ocaml_intrinsics_kernel v0.17.1      [required by base]
  - install ocamlbuild              0.16.1       [required by fpath, fmt, logs]
  - install ocamlfind               1.9.8        [required by ppx_deriving, fpath, fmt, etc.]
  - install ocamlgraph              2.2.0        [required by caisar]
  - install ocplib-endian           1.2          [required by caisar]
  - install omd                     2.0.0~alpha4 [required by ocaml-protoc-plugin]
  - install ordering                3.21.0       [required by dyn, stdune]
  - install pp                      2.0.0        [required by dune-private-libs]
  - install ppx_assert              v0.17.0      [required by jst-config]
  - install ppx_base                v0.17.0      [required by time_now]
  - install ppx_cold                v0.17.0      [required by ppx_base]
  - install ppx_compare             v0.17.0      [required by ppx_base]
  - install ppx_derivers            1.2.1        [required by ppx_deriving]
  - install ppx_deriving            6.1.1        [required by caisar]
  - install ppx_deriving_jsonschema 0.0.4        [required by caisar]
  - install ppx_deriving_yaml       0.4.1        [required by caisar]
  - install ppx_deriving_yojson     3.10.0       [required by caisar]
  - install ppx_enumerate           v0.17.0      [required by ppx_base]
  - install ppx_expect              v0.17.3      [required by ocaml-protoc-plugin]
  - install ppx_globalize           v0.17.2      [required by ppx_base]
  - install ppx_hash                v0.17.0      [required by ppx_base]
  - install ppx_here                v0.17.0      [required by ppx_expect]
  - install ppx_inline_test         v0.17.1      [required by caisar]
  - install ppx_optcomp             v0.17.1      [required by time_now]
  - install ppx_sexp_conv           v0.17.1      [required by why3]
  - install ppxlib                  0.37.0       [required by ppx_deriving_yaml, ppx_deriving, ppx_deriving_jsonschema, ppx_deriving_yojson]
  - install ppxlib_jane             v0.17.4      [required by ppx_globalize, ppx_enumerate, ppx_hash]
  - install ptime                   1.2.0        [required by ocaml-protoc-plugin]
  - install re                      1.14.0       [required by caisar]
  - install rresult                 0.7.0        [required by bos]
  - install sexplib0                v0.17.0      [required by base]
  - install stdio                   v0.17.0      [required by caisar]
  - install stdlib-shims            0.3.0        [required by ppxlib, integers]
  - install stdune                  3.21.0       [required by dune-private-libs]
  - install time_now                v0.17.0      [required by ppx_inline_test]
  - install top-closure             3.21.0       [required by stdune]
  - install topkg                   1.1.1        [required by fpath, fmt, logs]
  - install uucp                    17.0.0       [required by omd]
  - install uunf                    17.0.0       [required by omd]
  - install uutf                    1.0.4        [required by omd]
  - install why3                    1.8.2        [required by caisar]
  - install yaml                    3.2.0        [required by caisar]
  - install yojson                  3.0.0        [required by caisar]
  - install zarith                  1.14         [required by caisar]

The following system packages will first need to be installed:
    gmp-devel protobuf-compiler protobuf-devel

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run yum to install them (may need root/sudo access)
  2. Display the recommended yum 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 "yum" "install" "-y" "gmp-devel" "protobuf-compiler" "protobuf-devel"
- Last metadata expiration check: 0:00:11 ago on Fri Jan 23 15:14:39 2026.
- Dependencies resolved.
- ================================================================================
-  Package                Arch        Version                Repository      Size
- ================================================================================
- Installing:
-  gmp-devel              x86_64      1:6.2.0-13.el9         appstream      174 k
-  protobuf-compiler      x86_64      3.14.0-16.el9          crb            864 k
-  protobuf-devel         x86_64      3.14.0-16.el9          crb            365 k
- Installing dependencies:
-  gmp-c++                x86_64      1:6.2.0-13.el9         appstream       19 k
-  protobuf               x86_64      3.14.0-16.el9          appstream      1.0 M
- 
- Transaction Summary
- ================================================================================
- Install  5 Packages
- 
- Total download size: 2.4 M
- Installed size: 9.3 M
- Downloading Packages:
- (1/5): gmp-c++-6.2.0-13.el9.x86_64.rpm          816 kB/s |  19 kB     00:00    
- (2/5): gmp-devel-6.2.0-13.el9.x86_64.rpm        5.9 MB/s | 174 kB     00:00    
- (3/5): protobuf-devel-3.14.0-16.el9.x86_64.rpm  5.0 MB/s | 365 kB     00:00    
- (4/5): protobuf-compiler-3.14.0-16.el9.x86_64.r 8.7 MB/s | 864 kB     00:00    
- (5/5): protobuf-3.14.0-16.el9.x86_64.rpm        7.7 MB/s | 1.0 MB     00:00    
- --------------------------------------------------------------------------------
- Total                                           5.1 MB/s | 2.4 MB     00:00     
- Running transaction check
- Transaction check succeeded.
- Running transaction test
- Transaction test succeeded.
- Running transaction
-   Preparing        :                                                        1/1 
-   Installing       : protobuf-3.14.0-16.el9.x86_64                          1/5 
-   Installing       : protobuf-compiler-3.14.0-16.el9.x86_64                 2/5 
-   Installing       : gmp-c++-1:6.2.0-13.el9.x86_64                          3/5 
-   Installing       : gmp-devel-1:6.2.0-13.el9.x86_64                        4/5 
-   Installing       : protobuf-devel-3.14.0-16.el9.x86_64                    5/5 
-   Running scriptlet: protobuf-devel-3.14.0-16.el9.x86_64                    5/5
-  
-   Verifying        : gmp-c++-1:6.2.0-13.el9.x86_64                          1/5 
-   Verifying        : gmp-devel-1:6.2.0-13.el9.x86_64                        2/5 
-   Verifying        : protobuf-3.14.0-16.el9.x86_64                          3/5 
-   Verifying        : protobuf-compiler-3.14.0-16.el9.x86_64                 4/5 
-   Verifying        : protobuf-devel-3.14.0-16.el9.x86_64                    5/5 
- 
- Installed:
-   gmp-c++-1:6.2.0-13.el9.x86_64         gmp-devel-1:6.2.0-13.el9.x86_64         
-   protobuf-3.14.0-16.el9.x86_64         protobuf-compiler-3.14.0-16.el9.x86_64  
-   protobuf-devel-3.14.0-16.el9.x86_64  
- 
- Complete!
+ /usr/bin/rpm "-q" "--whatprovides" "gmp-devel" "protobuf-compiler" "protobuf-devel"
- gmp-devel-6.2.0-13.el9.x86_64
- protobuf-compiler-3.14.0-16.el9.x86_64
- protobuf-devel-3.14.0-16.el9.x86_64

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (cached)
-> retrieved base.v0.17.3  (cached)
-> retrieved base64.3.5.2  (cached)
-> retrieved bos.0.2.1  (cached)
-> retrieved caisar.5.0  (cached)
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-gmp.5
-> retrieved csv.2.4  (cached)
-> retrieved ctypes.0.24.0  (cached)
-> installed conf-pkg-config.4
-> installed conf-protoc.4.4.0
-> retrieved dune.3.21.0, dune-build-info.3.21.0, dune-configurator.3.21.0, dune-private-libs.3.21.0, dune-site.3.21.0, dyn.3.21.0, fs-io.3.21.0, ordering.3.21.0, stdune.3.21.0, top-closure.3.21.0  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved integers.0.7.0  (cached)
-> retrieved jane-street-headers.v0.17.0  (cached)
-> retrieved jst-config.v0.17.0  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912  (cached)
-> installed cmdliner.2.1.0
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocaml-protoc-plugin.6.2.0  (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocamlgraph.2.2.0  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved omd.2.0.0~alpha4  (cached)
-> retrieved pp.2.0.0  (cached)
-> retrieved ppx_assert.v0.17.0  (cached)
-> retrieved ppx_base.v0.17.0  (cached)
-> retrieved ppx_cold.v0.17.0  (cached)
-> retrieved ppx_compare.v0.17.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.6.1.1  (cached)
-> retrieved ppx_deriving_jsonschema.0.0.4  (cached)
-> retrieved ppx_deriving_yaml.0.4.1  (cached)
-> retrieved ppx_deriving_yojson.3.10.0  (cached)
-> retrieved ppx_enumerate.v0.17.0  (cached)
-> retrieved ppx_expect.v0.17.3  (cached)
-> retrieved ppx_globalize.v0.17.2  (cached)
-> retrieved ppx_hash.v0.17.0  (cached)
-> retrieved ppx_here.v0.17.0  (cached)
-> retrieved ppx_inline_test.v0.17.1  (cached)
-> retrieved ppx_optcomp.v0.17.1  (cached)
-> retrieved ppx_sexp_conv.v0.17.1  (cached)
-> retrieved ppxlib.0.37.0  (cached)
-> retrieved ppxlib_jane.v0.17.4  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdio.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved time_now.v0.17.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uucp.17.0.0  (cached)
-> retrieved uunf.17.0.0  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved why3.1.8.2  (cached)
-> retrieved yaml.3.2.0  (cached)
-> retrieved yojson.3.0.0  (cached)
-> retrieved zarith.1.14  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed rresult.0.7.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed fpath.0.7.3
-> installed logs.0.10.0
-> installed uunf.17.0.0
-> installed bos.0.2.1
-> installed dune.3.21.0
-> installed base64.3.5.2
-> installed cppo.1.8.0
-> installed csexp.1.5.2
-> installed csv.2.4
-> installed jane-street-headers.v0.17.0
-> installed menhirCST.20250912
-> installed menhirLib.20250912
-> installed menhirSdk.20250912
-> installed ocaml-compiler-libs.v0.17.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed ocamlgraph.2.2.0
-> installed pp.2.0.0
-> installed ppx_derivers.1.2.1
-> installed re.1.14.0
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed yojson.3.0.0
-> installed ocplib-endian.1.2
-> installed integers.0.7.0
-> installed ordering.3.21.0
-> installed dune-build-info.3.21.0
-> installed fs-io.3.21.0
-> installed top-closure.3.21.0
-> installed dune-configurator.3.21.0
-> installed dyn.3.21.0
-> installed ctypes.0.24.0
-> installed base.v0.17.3
-> installed stdune.3.21.0
-> installed stdio.v0.17.0
-> installed uucp.17.0.0
-> installed yaml.3.2.0
-> installed dune-private-libs.3.21.0
-> installed omd.2.0.0~alpha4
-> installed menhir.20250912
-> installed dune-site.3.21.0
-> installed ppxlib.0.37.0
-> installed ppxlib_jane.v0.17.4
-> installed ppx_optcomp.v0.17.1
-> installed ppx_cold.v0.17.0
-> installed ppx_here.v0.17.0
-> installed ppx_deriving_jsonschema.0.0.4
-> installed ppx_deriving_yaml.0.4.1
-> installed ppx_deriving.6.1.1
-> installed ppx_globalize.v0.17.2
-> installed ppx_enumerate.v0.17.0
-> installed ppx_compare.v0.17.0
-> installed ppx_sexp_conv.v0.17.1
-> installed ppx_deriving_yojson.3.10.0
-> installed ppx_hash.v0.17.0
-> installed ppx_assert.v0.17.0
-> installed ppx_base.v0.17.0
-> installed jst-config.v0.17.0
-> installed time_now.v0.17.0
-> installed ppx_inline_test.v0.17.1
-> installed ppx_expect.v0.17.3
-> installed ocaml-protoc-plugin.6.2.0
-> installed why3.1.8.2
-> installed caisar.5.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-23 15:17.59 ---> saved as "b106412704cc9a98bdea2d91d1ce181fd0fdc3bb4363cda90c024ccfd12f1ae4"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test caisar.5.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile caisar        5.0 (pinned)
=== install 3 packages
  - install   conf-jq       1            [required by caisar]
  - install   conf-python-3 9.0.0        [required by caisar]
  - install   conf-texlive  2            [required by caisar]

The following system packages will first need to be installed:
    epel-release jq texlive-latex

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run yum to install them (may need root/sudo access)
  2. Display the recommended yum 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 "yum" "install" "-y" "epel-release"
- Last metadata expiration check: 0:03:26 ago on Fri Jan 23 15:14:39 2026.
- Dependencies resolved.
- ================================================================================
-  Package                Arch        Version            Repository          Size
- ================================================================================
- Installing:
-  epel-release           noarch      9-7.el9            extras-common       19 k
- Installing weak dependencies:
-  dnf-plugins-core       noarch      4.3.0-25.el9       baseos              36 k
-  epel-next-release      noarch      9-7.el9            extras-common      8.1 k
- 
- Transaction Summary
- ================================================================================
- Install  3 Packages
- 
- Total download size: 62 k
- Installed size: 51 k
- Downloading Packages:
- (1/3): dnf-plugins-core-4.3.0-25.el9.noarch.rpm 2.0 MB/s |  36 kB     00:00    
- (2/3): epel-next-release-9-7.el9.noarch.rpm      59 kB/s | 8.1 kB     00:00    
- (3/3): epel-release-9-7.el9.noarch.rpm          126 kB/s |  19 kB     00:00    
- --------------------------------------------------------------------------------
- Total                                           138 kB/s |  62 kB     00:00     
- CentOS Stream 9 - Extras packages               2.1 MB/s | 2.1 kB     00:00    
- Importing GPG key 0x1D997668:
-  Userid     : "CentOS Extras SIG (https://wiki.centos.org/SpecialInterestGroup) <security@centos.org>"
-  Fingerprint: 363F C097 2F64 B699 AED3 968E 1FF6 A217 1D99 7668
-  From       : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-Extras-SHA512
- Key imported successfully
- Running transaction check
- Transaction check succeeded.
- Running transaction test
- Transaction test succeeded.
- Running transaction
-   Preparing        :                                                        1/1 
-   Installing       : dnf-plugins-core-4.3.0-25.el9.noarch                   1/3 
-   Installing       : epel-next-release-9-7.el9.noarch                       2/3 
-   Installing       : epel-release-9-7.el9.noarch                            3/3 
-   Running scriptlet: epel-release-9-7.el9.noarch                            3/3 
- Many EPEL packages require the CodeReady Builder (CRB) repository.
- It is recommended that you run /usr/bin/crb enable to enable the CRB repository.
- 
-   Verifying        : dnf-plugins-core-4.3.0-25.el9.noarch                   1/3 
-   Verifying        : epel-next-release-9-7.el9.noarch                       2/3 
-   Verifying        : epel-release-9-7.el9.noarch                            3/3 
- 
- Installed:
-   dnf-plugins-core-4.3.0-25.el9.noarch     epel-next-release-9-7.el9.noarch    
-   epel-release-9-7.el9.noarch             
- 
- Complete!
+ /usr/bin/sudo "yum" "install" "-y" "jq" "texlive-latex"
- Extra Packages for Enterprise Linux 9 - x86_64   20 MB/s |  20 MB     00:01    
- Extra Packages for Enterprise Linux 9 openh264  5.1 kB/s | 2.5 kB     00:00    
- Extra Packages for Enterprise Linux 9 - Next -  810 kB/s | 259 kB     00:00    
- Last metadata expiration check: 0:00:01 ago on Fri Jan 23 15:18:23 2026.
- Dependencies resolved.
- ================================================================================
-  Package                    Arch      Version                Repository    Size
- ================================================================================
- Installing:
-  jq                         x86_64    1.6-19.el9             baseos       187 k
-  texlive-latex              noarch    9:20200406-26.el9      appstream     22 M
- Installing dependencies:
-  oniguruma                  x86_64    6.9.6-1.el9.6          baseos       218 k
-  perl-Filter                x86_64    2:1.60-4.el9           appstream     91 k
-  perl-Text-Unidecode        noarch    1.30-16.el9            appstream    194 k
-  perl-XML-XPath             noarch    1.44-11.el9            appstream     88 k
-  perl-encoding              x86_64    4:3.00-462.el9         appstream     63 k
-  perl-open                  noarch    1.12-483.el9           appstream     16 k
-  texlive-atbegshi           noarch    9:20200406-26.el9      appstream    401 k
-  texlive-atveryend          noarch    9:20200406-26.el9      appstream    377 k
-  texlive-auxhook            noarch    9:20200406-26.el9      appstream    287 k
-  texlive-base               noarch    9:20200406-26.el9      appstream    2.3 M
-  texlive-bigintcalc         noarch    9:20200406-26.el9      appstream    458 k
-  texlive-bitset             noarch    9:20200406-26.el9      appstream    612 k
-  texlive-cm                 noarch    9:20200406-26.el9      appstream    332 k
-  texlive-etex               noarch    9:20200406-26.el9      appstream    200 k
-  texlive-etex-pkg           noarch    9:20200406-26.el9      appstream     15 k
-  texlive-etexcmds           noarch    9:20200406-26.el9      appstream    302 k
-  texlive-gettitlestring     noarch    9:20200406-26.el9      appstream    319 k
-  texlive-graphics           noarch    9:20200406-26.el9      appstream    1.9 M
-  texlive-graphics-cfg       noarch    9:20200406-26.el9      appstream     11 k
-  texlive-graphics-def       noarch    9:20200406-26.el9      appstream     20 k
-  texlive-hobsub             noarch    9:20200406-26.el9      appstream     70 k
-  texlive-hycolor            noarch    9:20200406-26.el9      appstream    376 k
-  texlive-hyperref           noarch    9:20200406-26.el9      appstream    3.2 M
-  texlive-hyph-utf8          noarch    9:20200406-26.el9      appstream    301 k
-  texlive-hyphen-base        noarch    9:20200406-26.el9      appstream     31 k
-  texlive-iftex              noarch    9:20200406-26.el9      appstream    225 k
-  texlive-infwarerr          noarch    9:20200406-26.el9      appstream    287 k
-  texlive-intcalc            noarch    9:20200406-26.el9      appstream    424 k
-  texlive-knuth-lib          noarch    9:20200406-26.el9      appstream     48 k
-  texlive-kpathsea           x86_64    9:20200406-26.el9      appstream    1.1 M
-  texlive-kvdefinekeys       noarch    9:20200406-26.el9      appstream    298 k
-  texlive-kvoptions          noarch    9:20200406-26.el9      appstream    473 k
-  texlive-kvsetkeys          noarch    9:20200406-26.el9      appstream    372 k
-  texlive-latex-fonts        noarch    9:20200406-26.el9      appstream     46 k
-  texlive-latexconfig        noarch    9:20200406-26.el9      appstream     14 k
-  texlive-letltxmacro        noarch    9:20200406-26.el9      appstream    292 k
-  texlive-lib                x86_64    9:20200406-26.el9      appstream    477 k
-  texlive-ltxcmds            noarch    9:20200406-26.el9      appstream    392 k
-  texlive-luatex             x86_64    9:20200406-26.el9      appstream    3.7 M
-  texlive-memoir             noarch    9:20200406-26.el9      appstream    3.0 M
-  texlive-pdfescape          noarch    9:20200406-26.el9      appstream    345 k
-  texlive-pdftex             x86_64    9:20200406-26.el9      appstream    2.0 M
-  texlive-pdftexcmds         noarch    9:20200406-26.el9      appstream    383 k
-  texlive-plain              noarch    9:20200406-26.el9      appstream     93 k
-  texlive-refcount           noarch    9:20200406-26.el9      appstream    327 k
-  texlive-rerunfilecheck     noarch    9:20200406-26.el9      appstream    316 k
-  texlive-stringenc          noarch    9:20200406-26.el9      appstream    693 k
-  texlive-tex-ini-files      noarch    9:20200406-26.el9      appstream     14 k
-  texlive-texlive-scripts    noarch    9:20200406-26.el9      appstream    114 k
-  texlive-texlive.infra      noarch    9:20200406-26.el9      appstream    284 k
-  texlive-tools              noarch    9:20200406-26.el9      appstream    5.0 M
-  texlive-unicode-data       noarch    9:20200406-26.el9      appstream    352 k
-  texlive-uniquecounter      noarch    9:20200406-26.el9      appstream    293 k
-  texlive-url                noarch    9:20200406-26.el9      appstream    273 k
-  texlive-zapfding           noarch    9:20200406-26.el9      appstream     58 k
-  zziplib                    x86_64    0.13.71-12.el9         appstream     88 k
- 
- Transaction Summary
- ================================================================================
- Install  58 Packages
- 
- Total download size: 56 M
- Installed size: 99 M
- Downloading Packages:
- (1/58): oniguruma-6.9.6-1.el9.6.x86_64.rpm      3.8 MB/s | 218 kB     00:00    
- (2/58): perl-Filter-1.60-4.el9.x86_64.rpm       1.3 MB/s |  91 kB     00:00    
- (3/58): jq-1.6-19.el9.x86_64.rpm                2.4 MB/s | 187 kB     00:00    
- (4/58): perl-Text-Unidecode-1.30-16.el9.noarch. 4.7 MB/s | 194 kB     00:00    
- (5/58): perl-open-1.12-483.el9.noarch.rpm       508 kB/s |  16 kB     00:00    
- (6/58): perl-XML-XPath-1.44-11.el9.noarch.rpm   1.1 MB/s |  88 kB     00:00    
- (7/58): perl-encoding-3.00-462.el9.x86_64.rpm   812 kB/s |  63 kB     00:00    
- (8/58): texlive-atveryend-20200406-26.el9.noarc 6.8 MB/s | 377 kB     00:00    
- (9/58): texlive-auxhook-20200406-26.el9.noarch. 3.1 MB/s | 287 kB     00:00    
- (10/58): texlive-atbegshi-20200406-26.el9.noarc 3.2 MB/s | 401 kB     00:00    
- (11/58): texlive-bigintcalc-20200406-26.el9.noa 6.3 MB/s | 458 kB     00:00    
- (12/58): texlive-bitset-20200406-26.el9.noarch. 6.5 MB/s | 612 kB     00:00    
- (13/58): texlive-base-20200406-26.el9.noarch.rp  14 MB/s | 2.3 MB     00:00    
- (14/58): texlive-etex-pkg-20200406-26.el9.noarc 625 kB/s |  15 kB     00:00    
- (15/58): texlive-cm-20200406-26.el9.noarch.rpm  3.6 MB/s | 332 kB     00:00    
- (16/58): texlive-etex-20200406-26.el9.noarch.rp 2.3 MB/s | 200 kB     00:00    
- (17/58): texlive-etexcmds-20200406-26.el9.noarc 8.1 MB/s | 302 kB     00:00    
- (18/58): texlive-graphics-cfg-20200406-26.el9.n 527 kB/s |  11 kB     00:00    
- (19/58): texlive-gettitlestring-20200406-26.el9 4.5 MB/s | 319 kB     00:00    
- (20/58): texlive-graphics-def-20200406-26.el9.n 1.0 MB/s |  20 kB     00:00    
- (21/58): texlive-hobsub-20200406-26.el9.noarch. 1.7 MB/s |  70 kB     00:00    
- (22/58): texlive-hycolor-20200406-26.el9.noarch 2.5 MB/s | 376 kB     00:00    
- (23/58): texlive-hyph-utf8-20200406-26.el9.noar 8.8 MB/s | 301 kB     00:00    
- (24/58): texlive-hyphen-base-20200406-26.el9.no 1.8 MB/s |  31 kB     00:00    
- (25/58): texlive-graphics-20200406-26.el9.noarc 7.5 MB/s | 1.9 MB     00:00    
- (26/58): texlive-iftex-20200406-26.el9.noarch.r 4.9 MB/s | 225 kB     00:00    
- (27/58): texlive-infwarerr-20200406-26.el9.noar 4.5 MB/s | 287 kB     00:00    
- (28/58): texlive-knuth-lib-20200406-26.el9.noar 2.0 MB/s |  48 kB     00:00    
- (29/58): texlive-intcalc-20200406-26.el9.noarch 7.9 MB/s | 424 kB     00:00    
- (30/58): texlive-kvdefinekeys-20200406-26.el9.n 4.8 MB/s | 298 kB     00:00    
- (31/58): texlive-hyperref-20200406-26.el9.noarc 8.1 MB/s | 3.2 MB     00:00    
- (32/58): texlive-kvoptions-20200406-26.el9.noar 4.8 MB/s | 473 kB     00:00    
- (33/58): texlive-kvsetkeys-20200406-26.el9.noar 6.7 MB/s | 372 kB     00:00    
- (34/58): texlive-kpathsea-20200406-26.el9.x86_6 5.5 MB/s | 1.1 MB     00:00    
- (35/58): texlive-latex-fonts-20200406-26.el9.no 654 kB/s |  46 kB     00:00    
- (36/58): texlive-latexconfig-20200406-26.el9.no 182 kB/s |  14 kB     00:00    
- (37/58): texlive-letltxmacro-20200406-26.el9.no 7.6 MB/s | 292 kB     00:00    
- (38/58): texlive-lib-20200406-26.el9.x86_64.rpm 4.9 MB/s | 477 kB     00:00    
- (39/58): texlive-ltxcmds-20200406-26.el9.noarch 4.9 MB/s | 392 kB     00:00    
- (40/58): texlive-memoir-20200406-26.el9.noarch. 6.5 MB/s | 3.0 MB     00:00    
- (41/58): texlive-pdfescape-20200406-26.el9.noar 4.2 MB/s | 345 kB     00:00    
- (42/58): texlive-luatex-20200406-26.el9.x86_64. 6.1 MB/s | 3.7 MB     00:00    
- (43/58): texlive-pdftexcmds-20200406-26.el9.noa 5.0 MB/s | 383 kB     00:00    
- (44/58): texlive-plain-20200406-26.el9.noarch.r 2.6 MB/s |  93 kB     00:00    
- (45/58): texlive-refcount-20200406-26.el9.noarc 3.8 MB/s | 327 kB     00:00    
- (46/58): texlive-pdftex-20200406-26.el9.x86_64. 7.9 MB/s | 2.0 MB     00:00    
- (47/58): texlive-rerunfilecheck-20200406-26.el9 2.4 MB/s | 316 kB     00:00    
- (48/58): texlive-stringenc-20200406-26.el9.noar 4.8 MB/s | 693 kB     00:00    
- (49/58): texlive-tex-ini-files-20200406-26.el9. 282 kB/s |  14 kB     00:00    
- (50/58): texlive-texlive-scripts-20200406-26.el 2.8 MB/s | 114 kB     00:00    
- (51/58): texlive-texlive.infra-20200406-26.el9. 5.6 MB/s | 284 kB     00:00    
- (52/58): texlive-unicode-data-20200406-26.el9.n 7.1 MB/s | 352 kB     00:00    
- (53/58): texlive-uniquecounter-20200406-26.el9. 4.1 MB/s | 293 kB     00:00    
- (54/58): texlive-url-20200406-26.el9.noarch.rpm 1.1 MB/s | 273 kB     00:00    
- (55/58): texlive-zapfding-20200406-26.el9.noarc 1.9 MB/s |  58 kB     00:00    
- (56/58): zziplib-0.13.71-12.el9.x86_64.rpm      2.0 MB/s |  88 kB     00:00    
- (57/58): texlive-tools-20200406-26.el9.noarch.r 8.3 MB/s | 5.0 MB     00:00    
- (58/58): texlive-latex-20200406-26.el9.noarch.r 9.2 MB/s |  22 MB     00:02    
- --------------------------------------------------------------------------------
- Total                                            15 MB/s |  56 MB     00:03     
- Running transaction check
- Transaction check succeeded.
- Running transaction test
- Transaction test succeeded.
- Running transaction
-   Running scriptlet: texlive-base-9:20200406-26.el9.noarch                  1/1 
-   Preparing        :                                                        1/1
-  
-   Running scriptlet: texlive-base-9:20200406-26.el9.noarch                 1/58 
-   Installing       : texlive-base-9:20200406-26.el9.noarch                 1/58 
-   Installing       : texlive-lib-9:20200406-26.el9.x86_64                  2/58 
-   Installing       : zziplib-0.13.71-12.el9.x86_64                         3/58 
-   Installing       : perl-Text-Unidecode-1.30-16.el9.noarch                4/58 
-   Installing       : perl-Filter-2:1.60-4.el9.x86_64                       5/58 
-   Installing       : perl-encoding-4:3.00-462.el9.x86_64                   6/58 
-   Installing       : perl-open-1.12-483.el9.noarch                         7/58 
-   Installing       : perl-XML-XPath-1.44-11.el9.noarch                     8/58 
-   Installing       : texlive-cm-9:20200406-26.el9.noarch                   9/58 
-   Installing       : texlive-etex-9:20200406-26.el9.noarch                10/58 
-   Installing       : texlive-graphics-def-9:20200406-26.el9.noarch        11/58 
-   Installing       : texlive-hyph-utf8-9:20200406-26.el9.noarch           12/58 
-   Installing       : texlive-hyphen-base-9:20200406-26.el9.noarch         13/58 
-   Installing       : texlive-knuth-lib-9:20200406-26.el9.noarch           14/58 
-   Installing       : texlive-plain-9:20200406-26.el9.noarch               15/58 
-   Installing       : texlive-tex-ini-files-9:20200406-26.el9.noarch       16/58 
-   Installing       : texlive-unicode-data-9:20200406-26.el9.noarch        17/58 
-   Installing       : texlive-luatex-9:20200406-26.el9.x86_64              18/58 
-   Installing       : texlive-texlive.infra-9:20200406-26.el9.noarch       19/58 
-   Installing       : texlive-texlive-scripts-9:20200406-26.el9.noarch     20/58 
-   Installing       : texlive-kpathsea-9:20200406-26.el9.x86_64            21/58 
-   Installing       : texlive-iftex-9:20200406-26.el9.noarch               22/58 
-   Installing       : texlive-url-9:20200406-26.el9.noarch                 23/58 
-   Installing       : texlive-atbegshi-9:20200406-26.el9.noarch            24/58 
-   Installing       : texlive-atveryend-9:20200406-26.el9.noarch           25/58 
-   Installing       : texlive-auxhook-9:20200406-26.el9.noarch             26/58 
-   Installing       : texlive-bigintcalc-9:20200406-26.el9.noarch          27/58 
-   Installing       : texlive-bitset-9:20200406-26.el9.noarch              28/58 
-   Installing       : texlive-etex-pkg-9:20200406-26.el9.noarch            29/58 
-   Installing       : texlive-memoir-9:20200406-26.el9.noarch              30/58 
-   Installing       : texlive-etexcmds-9:20200406-26.el9.noarch            31/58 
-   Installing       : texlive-gettitlestring-9:20200406-26.el9.noarch      32/58 
-   Installing       : texlive-graphics-cfg-9:20200406-26.el9.noarch        33/58 
-   Installing       : texlive-graphics-9:20200406-26.el9.noarch            34/58 
-   Installing       : texlive-tools-9:20200406-26.el9.noarch               35/58 
-   Installing       : texlive-hobsub-9:20200406-26.el9.noarch              36/58 
-   Installing       : texlive-hycolor-9:20200406-26.el9.noarch             37/58 
-   Installing       : texlive-infwarerr-9:20200406-26.el9.noarch           38/58 
-   Installing       : texlive-intcalc-9:20200406-26.el9.noarch             39/58 
-   Installing       : texlive-kvdefinekeys-9:20200406-26.el9.noarch        40/58 
-   Installing       : texlive-kvoptions-9:20200406-26.el9.noarch           41/58 
-   Installing       : texlive-kvsetkeys-9:20200406-26.el9.noarch           42/58 
-   Installing       : texlive-latex-fonts-9:20200406-26.el9.noarch         43/58 
-   Installing       : texlive-latexconfig-9:20200406-26.el9.noarch         44/58 
-   Installing       : texlive-letltxmacro-9:20200406-26.el9.noarch         45/58 
-   Installing       : texlive-ltxcmds-9:20200406-26.el9.noarch             46/58 
-   Installing       : texlive-pdfescape-9:20200406-26.el9.noarch           47/58 
-   Installing       : texlive-pdftex-9:20200406-26.el9.x86_64              48/58 
-   Installing       : texlive-pdftexcmds-9:20200406-26.el9.noarch          49/58 
-   Installing       : texlive-refcount-9:20200406-26.el9.noarch            50/58 
-   Installing       : texlive-stringenc-9:20200406-26.el9.noarch           51/58 
-   Installing       : texlive-uniquecounter-9:20200406-26.el9.noarch       52/58 
-   Installing       : texlive-rerunfilecheck-9:20200406-26.el9.noarch      53/58 
-   Installing       : texlive-zapfding-9:20200406-26.el9.noarch            54/58
-  
-   Installing       : texlive-hyperref-9:20200406-26.el9.noarch            55/58 
-   Installing       : oniguruma-6.9.6-1.el9.6.x86_64                       56/58 
-   Installing       : jq-1.6-19.el9.x86_64                                 57/58 
-   Installing       : texlive-latex-9:20200406-26.el9.noarch               58/58 
-   Running scriptlet: texlive-base-9:20200406-26.el9.noarch                58/58 
-   Running scriptlet: texlive-latex-9:20200406-26.el9.noarch               58/58
-  
-   Verifying        : jq-1.6-19.el9.x86_64                                  1/58 
-   Verifying        : oniguruma-6.9.6-1.el9.6.x86_64                        2/58 
-   Verifying        : perl-Filter-2:1.60-4.el9.x86_64                       3/58 
-   Verifying        : perl-Text-Unidecode-1.30-16.el9.noarch                4/58 
-   Verifying        : perl-XML-XPath-1.44-11.el9.noarch                     5/58 
-   Verifying        : perl-encoding-4:3.00-462.el9.x86_64                   6/58 
-   Verifying        : perl-open-1.12-483.el9.noarch                         7/58 
-   Verifying        : texlive-atbegshi-9:20200406-26.el9.noarch             8/58 
-   Verifying        : texlive-atveryend-9:20200406-26.el9.noarch            9/58 
-   Verifying        : texlive-auxhook-9:20200406-26.el9.noarch             10/58 
-   Verifying        : texlive-base-9:20200406-26.el9.noarch                11/58 
-   Verifying        : texlive-bigintcalc-9:20200406-26.el9.noarch          12/58 
-   Verifying        : texlive-bitset-9:20200406-26.el9.noarch              13/58 
-   Verifying        : texlive-cm-9:20200406-26.el9.noarch                  14/58 
-   Verifying        : texlive-etex-9:20200406-26.el9.noarch                15/58 
-   Verifying        : texlive-etex-pkg-9:20200406-26.el9.noarch            16/58 
-   Verifying        : texlive-etexcmds-9:20200406-26.el9.noarch            17/58 
-   Verifying        : texlive-gettitlestring-9:20200406-26.el9.noarch      18/58 
-   Verifying        : texlive-graphics-9:20200406-26.el9.noarch            19/58 
-   Verifying        : texlive-graphics-cfg-9:20200406-26.el9.noarch        20/58 
-   Verifying        : texlive-graphics-def-9:20200406-26.el9.noarch        21/58 
-   Verifying        : texlive-hobsub-9:20200406-26.el9.noarch              22/58 
-   Verifying        : texlive-hycolor-9:20200406-26.el9.noarch             23/58 
-   Verifying        : texlive-hyperref-9:20200406-26.el9.noarch            24/58 
-   Verifying        : texlive-hyph-utf8-9:20200406-26.el9.noarch           25/58 
-   Verifying        : texlive-hyphen-base-9:20200406-26.el9.noarch         26/58 
-   Verifying        : texlive-iftex-9:20200406-26.el9.noarch               27/58 
-   Verifying        : texlive-infwarerr-9:20200406-26.el9.noarch           28/58 
-   Verifying        : texlive-intcalc-9:20200406-26.el9.noarch             29/58 
-   Verifying        : texlive-knuth-lib-9:20200406-26.el9.noarch           30/58 
-   Verifying        : texlive-kpathsea-9:20200406-26.el9.x86_64            31/58 
-   Verifying        : texlive-kvdefinekeys-9:20200406-26.el9.noarch        32/58 
-   Verifying        : texlive-kvoptions-9:20200406-26.el9.noarch           33/58 
-   Verifying        : texlive-kvsetkeys-9:20200406-26.el9.noarch           34/58 
-   Verifying        : texlive-latex-9:20200406-26.el9.noarch               35/58 
-   Verifying        : texlive-latex-fonts-9:20200406-26.el9.noarch         36/58 
-   Verifying        : texlive-latexconfig-9:20200406-26.el9.noarch         37/58 
-   Verifying        : texlive-letltxmacro-9:20200406-26.el9.noarch         38/58 
-   Verifying        : texlive-lib-9:20200406-26.el9.x86_64                 39/58 
-   Verifying        : texlive-ltxcmds-9:20200406-26.el9.noarch             40/58 
-   Verifying        : texlive-luatex-9:20200406-26.el9.x86_64              41/58 
-   Verifying        : texlive-memoir-9:20200406-26.el9.noarch              42/58 
-   Verifying        : texlive-pdfescape-9:20200406-26.el9.noarch           43/58 
-   Verifying        : texlive-pdftex-9:20200406-26.el9.x86_64              44/58 
-   Verifying        : texlive-pdftexcmds-9:20200406-26.el9.noarch          45/58 
-   Verifying        : texlive-plain-9:20200406-26.el9.noarch               46/58 
-   Verifying        : texlive-refcount-9:20200406-26.el9.noarch            47/58 
-   Verifying        : texlive-rerunfilecheck-9:20200406-26.el9.noarch      48/58 
-   Verifying        : texlive-stringenc-9:20200406-26.el9.noarch           49/58 
-   Verifying        : texlive-tex-ini-files-9:20200406-26.el9.noarch       50/58 
-   Verifying        : texlive-texlive-scripts-9:20200406-26.el9.noarch     51/58 
-   Verifying        : texlive-texlive.infra-9:20200406-26.el9.noarch       52/58 
-   Verifying        : texlive-tools-9:20200406-26.el9.noarch               53/58 
-   Verifying        : texlive-unicode-data-9:20200406-26.el9.noarch        54/58 
-   Verifying        : texlive-uniquecounter-9:20200406-26.el9.noarch       55/58 
-   Verifying        : texlive-url-9:20200406-26.el9.noarch                 56/58 
-   Verifying        : texlive-zapfding-9:20200406-26.el9.noarch            57/58 
-   Verifying        : zziplib-0.13.71-12.el9.x86_64                        58/58 
- 
- Installed:
-   jq-1.6-19.el9.x86_64                                                          
-   oniguruma-6.9.6-1.el9.6.x86_64                                                
-   perl-Filter-2:1.60-4.el9.x86_64                                               
-   perl-Text-Unidecode-1.30-16.el9.noarch                                        
-   perl-XML-XPath-1.44-11.el9.noarch                                             
-   perl-encoding-4:3.00-462.el9.x86_64                                           
-   perl-open-1.12-483.el9.noarch                                                 
-   texlive-atbegshi-9:20200406-26.el9.noarch                                     
-   texlive-atveryend-9:20200406-26.el9.noarch                                    
-   texlive-auxhook-9:20200406-26.el9.noarch                                      
-   texlive-base-9:20200406-26.el9.noarch                                         
-   texlive-bigintcalc-9:20200406-26.el9.noarch                                   
-   texlive-bitset-9:20200406-26.el9.noarch                                       
-   texlive-cm-9:20200406-26.el9.noarch                                           
-   texlive-etex-9:20200406-26.el9.noarch                                         
-   texlive-etex-pkg-9:20200406-26.el9.noarch                                     
-   texlive-etexcmds-9:20200406-26.el9.noarch                                     
-   texlive-gettitlestring-9:20200406-26.el9.noarch                               
-   texlive-graphics-9:20200406-26.el9.noarch                                     
-   texlive-graphics-cfg-9:20200406-26.el9.noarch                                 
-   texlive-graphics-def-9:20200406-26.el9.noarch                                 
-   texlive-hobsub-9:20200406-26.el9.noarch                                       
-   texlive-hycolor-9:20200406-26.el9.noarch                                      
-   texlive-hyperref-9:20200406-26.el9.noarch                                     
-   texlive-hyph-utf8-9:20200406-26.el9.noarch                                    
-   texlive-hyphen-base-9:20200406-26.el9.noarch                                  
-   texlive-iftex-9:20200406-26.el9.noarch                                        
-   texlive-infwarerr-9:20200406-26.el9.noarch                                    
-   texlive-intcalc-9:20200406-26.el9.noarch                                      
-   texlive-knuth-lib-9:20200406-26.el9.noarch                                    
-   texlive-kpathsea-9:20200406-26.el9.x86_64                                     
-   texlive-kvdefinekeys-9:20200406-26.el9.noarch                                 
-   texlive-kvoptions-9:20200406-26.el9.noarch                                    
-   texlive-kvsetkeys-9:20200406-26.el9.noarch                                    
-   texlive-latex-9:20200406-26.el9.noarch                                        
-   texlive-latex-fonts-9:20200406-26.el9.noarch                                  
-   texlive-latexconfig-9:20200406-26.el9.noarch                                  
-   texlive-letltxmacro-9:20200406-26.el9.noarch                                  
-   texlive-lib-9:20200406-26.el9.x86_64                                          
-   texlive-ltxcmds-9:20200406-26.el9.noarch                                      
-   texlive-luatex-9:20200406-26.el9.x86_64                                       
-   texlive-memoir-9:20200406-26.el9.noarch                                       
-   texlive-pdfescape-9:20200406-26.el9.noarch                                    
-   texlive-pdftex-9:20200406-26.el9.x86_64                                       
-   texlive-pdftexcmds-9:20200406-26.el9.noarch                                   
-   texlive-plain-9:20200406-26.el9.noarch                                        
-   texlive-refcount-9:20200406-26.el9.noarch                                     
-   texlive-rerunfilecheck-9:20200406-26.el9.noarch                               
-   texlive-stringenc-9:20200406-26.el9.noarch                                    
-   texlive-tex-ini-files-9:20200406-26.el9.noarch                                
-   texlive-texlive-scripts-9:20200406-26.el9.noarch                              
-   texlive-texlive.infra-9:20200406-26.el9.noarch                                
-   texlive-tools-9:20200406-26.el9.noarch                                        
-   texlive-unicode-data-9:20200406-26.el9.noarch                                 
-   texlive-uniquecounter-9:20200406-26.el9.noarch                                
-   texlive-url-9:20200406-26.el9.noarch                                          
-   texlive-zapfding-9:20200406-26.el9.noarch                                     
-   zziplib-0.13.71-12.el9.x86_64                                                 
- 
- Complete!
+ /usr/bin/rpm "-q" "--whatprovides" "epel-release" "jq" "texlive-latex"
- epel-release-9-7.el9.noarch
- jq-1.6-19.el9.x86_64
- texlive-latex-20200406-26.el9.noarch

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved conf-python-3.9.0.0  (https://opam.ocaml.org/cache)
-> installed conf-jq.1
-> installed conf-texlive.2
-> removed   caisar.5.0
-> installed conf-python-3.9.0.0
-> installed caisar.5.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-23 15:19.09 ---> saved as "2263aa333ec1fdff41dfede4fcf0f991e41ae646abd172adb0ff1a7d86ae9cbc"

/home/opam: (run (shell  "opam reinstall --with-test --verbose caisar.5.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 \"\\\"centos-9\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'caisar.5.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 caisar 5.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [caisar: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "caisar" "-j" "255" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/caisar.5.0)
Processing  2/4: [caisar: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "caisar" "--create-install-files" "caisar" (CWD=/home/opam/.opam/5.4/.opam-switch/build/caisar.5.0)
-> compiled  caisar.5.0
-> removed   caisar.5.0
-> installed caisar.5.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-23 15:19.30 ---> saved as "0bb12da8c9a7f561265511219a44b0cb9897e519095bd70f43ef614444e90e4e"
Job succeeded
2026-01-23 15:19.41: Job succeeded