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

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 61857cf66b5b6176b95bb89d11e829662f66727d
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM macos-homebrew-ocaml-5.4
USER 1000:1000
RUN ln -f ~/local/bin/opam-dev ~/local/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 -k local --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 "\"macos-homebrew\""; 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 "\"macos-homebrew\""; 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:48.20: Using cache hint "macos-homebrew-ocaml-5.4-caisar.5.0-6fb9bc721893564c7fcc5360575ff8ff9e76bc1c"
2026-01-23 15:48.20: Using OBuilder spec:
((from macos-homebrew-ocaml-5.4)
 (user (uid 1000) (gid 1000))
 (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
 (run (network host)
      (shell "opam init --reinit -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 -k local --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 /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
      (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 \"\\\"macos-homebrew\\\"\"; 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 \"\\\"macos-homebrew\\\"\"; 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:48.20: Waiting for resource in pool OCluster
2026-01-23 15:48.20: Waiting for worker…
2026-01-23 15:48.20: Got resource from pool OCluster
Building on m1-worker-02
Updating files:  65% (12527/19256)
Updating files:  66% (12709/19256)
Updating files:  67% (12902/19256)
Updating files:  68% (13095/19256)
Updating files:  69% (13287/19256)
Updating files:  70% (13480/19256)
Updating files:  71% (13672/19256)
Updating files:  72% (13865/19256)
Updating files:  73% (14057/19256)
Updating files:  74% (14250/19256)
Updating files:  75% (14442/19256)
Updating files:  76% (14635/19256)
Updating files:  77% (14828/19256)
Updating files:  78% (15020/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 bdc67b05d5 Merge commit '6fb9bc721893564c7fcc5360575ff8ff9e76bc1c'
HEAD is now at 61857cf66b Merge pull request #29222 from fpottier/master
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 macos-homebrew-ocaml-5.4)
2026-01-23 15:48.30 ---> using "338135fbf1889e924a607b47198b8b308c32a925cc9436066d65a9bdc402cad5" from cache

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

/: (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
2026-01-23 15:48.30 ---> using "7aa34524ca0a69b4a488c30909f7495a04a243f9066091b1dfe73b446b0dfcd3" from cache

/: (run (network host)
        (shell "opam init --reinit -ni"))
No configuration file found, using 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 /Users/mac1000/.opam from version 2.1 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 1 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=1 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///Users/mac1000/opam-repository
2026-01-23 15:48.30 ---> using "91dcaa513ca3161d91620d0583acdea5310cd52ccab1dfbdd183600da37afdb2" from cache

/: (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=arm64 os=macos os-distribution=homebrew os-version=15.5
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 7
# repositories         1 (version-controlled)
# pinned               0
# current-switch       5.4.0
# invariant            ["ocaml-base-compiler" {= "5.4.0"} | "ocaml-system" {= "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       /Users/mac1000/.opam/5.4.0/lib/ocaml/stublibs:/Users/mac1000/.opam/5.4.0/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.0
2026-01-23 15:48.30 ---> using "cea1bfc0b1cda73d964aa2fc69cc828a6e6d8edd86f991754707e8b004a3cb09" from cache

/: (env OPAMDOWNLOADJOBS 1)

/: (env OPAMERRLOGLEN 0)

/: (env OPAMPRECISETRACKING 1)

/: (env CI true)

/: (env OPAM_REPO_CI true)

/: (run (shell "rm -rf opam-repository/"))
2026-01-23 15:48.30 ---> using "e3eba35b672d86e69268bbb9214f23a1f9d1fb0787b4d803840af8d45829b222" from cache

/: (copy (src .) (dst opam-repository/))
2026-01-23 15:48.36 ---> saved as "5e9c80fc1278cee966d131ee3764aecc8152795fb871058dc769e28578f2a8e1"

/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
2026-01-23 15:48.46 ---> saved as "9bc2a311c0fb04cf856f59faffa83a88af1ae6522c5cfbc19c8614b022e7702f"

/: (run (network host)
        (shell "opam update --depexts || true"))
+ /opt/homebrew/bin/brew "update"
- ==> Updating Homebrew...
- ==> Downloading https://ghcr.io/v2/homebrew/core/portable-ruby/blobs/sha256:1c98fa49eacc935640a6f8e10a2bf33f14cfc276804b71ddb658ea45ba99d167
- #=#=#                                                                          

                                                                           0.3%
                                                                           0.8%
#                                                                          1.6%
#                                                                          2.1%
##                                                                         3.0%
##                                                                         3.7%
- 
##                                                                         4.1%
###                                                                        4.4%
###                                                                        4.7%
###                                                                        4.9%
###                                                                        5.2%
####                                                                       5.6%
####                                                                       5.9%
####                                                                       6.1%
####                                                                       6.4%
####                                                                       6.7%
####                                                                       6.9%
- 
#####                                                                      7.3%
#####                                                                      7.6%
#####                                                                      7.9%
#####                                                                      8.1%
######                                                                     8.4%
######                                                                     8.8%
######                                                                     9.1%
######                                                                     9.3%
######                                                                     9.6%
#######                                                                    9.9%
#######                                                                   10.1%
- 
#######                                                                   10.4%
#######                                                                   10.8%
#######                                                                   11.1%
########                                                                  11.4%
########                                                                  11.6%
########                                                                  11.9%
########                                                                  12.3%
#########                                                                 12.5%
#########                                                                 12.8%
#########                                                                 13.1%
- 
#########                                                                 13.5%
#########                                                                 13.7%
##########                                                                14.0%
##########                                                                14.3%
##########                                                                14.5%
##########                                                                14.8%
##########                                                                15.2%
###########                                                               15.5%
###########                                                               15.8%
###########                                                               16.0%
###########                                                               16.3%
- 
###########                                                               16.6%
############                                                              17.0%
############                                                              17.2%
############                                                              17.5%
############                                                              17.8%
############                                                              18.0%
#############                                                             18.3%
#############                                                             18.6%
#############                                                             18.9%
#############                                                             19.3%
##############                                                            19.5%
- 
##############                                                            19.8%
##############                                                            20.2%
##############                                                            20.6%
###############                                                           21.0%
###############                                                           21.4%
###############                                                           21.8%
################                                                          22.2%
################                                                          22.8%
################                                                          23.1%
#################                                                         23.6%
#################                                                         24.0%
- 
#################                                                         24.4%
#################                                                         24.8%
##################                                                        25.4%
##################                                                        25.8%
##################                                                        26.2%
###################                                                       26.7%
###################                                                       27.1%
###################                                                       27.5%
####################                                                      27.9%
####################                                                      28.3%
####################                                                      28.6%
- 
####################                                                      28.8%
####################                                                      29.1%
#####################                                                     29.5%
#####################                                                     29.9%
#####################                                                     30.3%
######################                                                    30.7%
######################                                                    31.3%
######################                                                    31.7%
#######################                                                   32.1%
#######################                                                   32.6%
- 
#######################                                                   33.0%
########################                                                  33.5%
########################                                                  33.9%
########################                                                  34.3%
########################                                                  34.7%
#########################                                                 35.3%
#########################                                                 35.7%
#########################                                                 36.1%
##########################                                                36.5%
##########################                                                37.0%
##########################                                                37.4%
###########################                                               37.8%
- 
###########################                                               38.2%
###########################                                               38.6%
############################                                              39.1%
############################                                              39.5%
############################                                              39.9%
#############################                                             40.5%
#############################                                             40.9%
#############################                                             41.3%
##############################                                            41.7%
##############################                                            42.1%
- 
##############################                                            42.5%
##############################                                            43.0%
###############################                                           43.4%
###############################                                           43.8%
###############################                                           44.3%
################################                                          44.7%
################################                                          45.1%
################################                                          45.5%
#################################                                         46.1%
#################################                                         46.5%
#################################                                         47.2%
- 
##################################                                        48.0%
###################################                                       48.7%
###################################                                       49.7%
####################################                                      50.5%
####################################                                      51.3%
#####################################                                     52.1%
######################################                                    53.0%
######################################                                    53.9%
#######################################                                   54.7%
########################################                                  55.6%
########################################                                  56.2%
- 
#########################################                                 57.0%
#########################################                                 58.0%
##########################################                                58.8%
##########################################                                59.6%
###########################################                               60.5%
############################################                              61.3%
############################################                              62.1%
#############################################                             62.9%
#############################################                             63.9%
##############################################                            64.8%
###############################################                           65.6%
- 
###############################################                           66.4%
################################################                          67.3%
#################################################                         68.1%
#################################################                         69.0%
##################################################                        69.9%
##################################################                        70.7%
###################################################                       71.5%
####################################################                      72.4%
####################################################                      73.2%
#####################################################                     74.0%
#####################################################                     74.8%
- 
######################################################                    75.8%
#######################################################                   76.5%
#######################################################                   77.4%
########################################################                  78.3%
########################################################                  79.1%
#########################################################                 80.0%
##########################################################                80.8%
##########################################################                81.8%
###########################################################               82.6%
############################################################              83.4%
############################################################              84.2%
- 
#############################################################             85.0%
#############################################################             85.9%
##############################################################            86.7%
###############################################################           87.5%
###############################################################           88.4%
################################################################          89.3%
################################################################          90.1%
#################################################################         91.0%
##################################################################        91.9%
##################################################################        92.8%
###################################################################       93.6%
###################################################################       94.4%
- 
####################################################################      95.2%
#####################################################################     95.9%
#####################################################################     96.3%
#####################################################################     97.2%
######################################################################    97.8%
#######################################################################   98.8%
#######################################################################   99.7%
######################################################################## 100.0%
- ==> Pouring portable-ruby-3.4.8.arm64_big_sur.bottle.tar.gz
- ==> Homebrew collects anonymous analytics.
- Read the analytics documentation (and how to opt-out) here:
-   https://docs.brew.sh/Analytics
- No analytics have been recorded yet (nor will be during this `brew` run).
- 
- ==> Homebrew is run entirely by unpaid volunteers. Please consider donating:
-   https://github.com/Homebrew/brew#donations
- 
- Already up-to-date.
2026-01-23 15:49.26 ---> saved as "32acbfaea76b40263d513aeeb8dcfe1fb4cd662ec40792efbf9bfb124da6a901"

/: (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:49.28 ---> saved as "39a2677a789c50e621667ef2cc4340bc3b1f7ebfb6bf2a2df0e5e4ef66b3cf55"

/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
        (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 \"\\\"macos-homebrew\\\"\"; 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 pkgconf protobuf

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

opam believes some required external dependencies are missing. opam can:
> 1. Run brew to install them (may need root/sudo access)
  2. Display the recommended brew 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

+ /opt/homebrew/bin/brew "install" "gmp" "pkgconf" "protobuf"
- ==> Fetching downloads for: gmp, pkgconf and protobuf
- ✔︎ Bottle Manifest gmp (6.3.0)
- ✔︎ Bottle Manifest pkgconf (2.5.1)
- ✔︎ Bottle Manifest protobuf (33.4)
- ✔︎ Bottle Manifest pkgconf (2.5.1)
- ✔︎ Bottle Manifest protobuf (33.4)
- ✔︎ Bottle Manifest abseil (20260107.0)
- ✔︎ Bottle gmp (6.3.0)
- ✔︎ Bottle pkgconf (2.5.1)
- ✔︎ Bottle abseil (20260107.0)
- ✔︎ Bottle protobuf (33.4)
- ==> Pouring gmp--6.3.0.arm64_sequoia.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/gmp/6.3.0: 22 files, 3.4MB
- ==> Running `brew cleanup gmp`...
- Disable this behaviour by setting `HOMEBREW_NO_INSTALL_CLEANUP=1`.
- Hide these hints with `HOMEBREW_NO_ENV_HINTS=1` (see `man brew`).
- ==> Pouring pkgconf--2.5.1.arm64_sequoia.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/pkgconf/2.5.1: 28 files, 531.1KB
- ==> Running `brew cleanup pkgconf`...
- ==> Installing protobuf dependency: abseil
- ==> Pouring abseil--20260107.0.arm64_sequoia.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/abseil/20260107.0: 806 files, 12.8MB
- ==> Pouring protobuf--33.4.arm64_sequoia.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/protobuf/33.4: 369 files, 17.2MB
- ==> Running `brew cleanup protobuf`...
- ==> Caveats
- Emacs Lisp files have been installed to:
-   /opt/homebrew/share/emacs/site-lisp/protobuf

<><> 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)
-> installed conf-pkg-config.4
-> retrieved csexp.1.5.2  (cached)
-> retrieved csv.2.4  (cached)
-> installed conf-gmp.5
-> retrieved ctypes.0.24.0  (cached)
-> 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)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocaml-protoc-plugin.6.2.0  (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1  (cached)
-> installed cmdliner.2.1.0
-> 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 bos.0.2.1
-> installed dune.3.21.0
-> installed csv.2.4
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed dune-build-info.3.21.0
-> installed menhirCST.20250912
-> installed jane-street-headers.v0.17.0
-> installed base64.3.5.2
-> installed uunf.17.0.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed menhirSdk.20250912
-> installed ocplib-endian.1.2
-> installed ocaml-compiler-libs.v0.17.0
-> installed dune-configurator.3.21.0
-> installed fs-io.3.21.0
-> installed menhirLib.20250912
-> installed ppx_derivers.1.2.1
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed re.1.14.0
-> installed ordering.3.21.0
-> installed pp.2.0.0
-> installed ocamlgraph.2.2.0
-> installed top-closure.3.21.0
-> installed integers.0.7.0
-> installed dyn.3.21.0
-> installed yojson.3.0.0
-> installed base.v0.17.3
-> installed stdio.v0.17.0
-> installed ctypes.0.24.0
-> installed stdune.3.21.0
-> installed yaml.3.2.0
-> installed menhir.20250912
-> installed dune-private-libs.3.21.0
-> installed ppxlib.0.37.0
-> installed dune-site.3.21.0
-> installed ppx_cold.v0.17.0
-> installed ppx_here.v0.17.0
-> installed ppx_deriving_jsonschema.0.0.4
-> installed ppx_optcomp.v0.17.1
-> installed ppx_deriving_yaml.0.4.1
-> installed ppxlib_jane.v0.17.4
-> installed ppx_deriving.6.1.1
-> installed ppx_enumerate.v0.17.0
-> installed ppx_globalize.v0.17.2
-> installed ppx_compare.v0.17.0
-> installed ppx_deriving_yojson.3.10.0
-> installed ppx_sexp_conv.v0.17.1
-> 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 uucp.17.0.0
-> installed omd.2.0.0~alpha4
-> 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:51.55 ---> saved as "6f53ca6d20674b2e0cab3b5adb23730906eed81ddeb96de6f00df1685a461b1e"

/: (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:
    jq python@3.9 texlive

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

opam believes some required external dependencies are missing. opam can:
> 1. Run brew to install them (may need root/sudo access)
  2. Display the recommended brew 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

+ /opt/homebrew/bin/brew "install" "jq" "python@3.9" "texlive"
- ==> Fetching downloads for: jq, python@3.9 and texlive
- Warning: python@3.9 has been deprecated because it is deprecated upstream! It will be disabled on 2026-10-15.
- ✔︎ Bottle Manifest jq (1.8.1)
- ✔︎ Bottle Manifest python@3.9 (3.9.25)
- ✔︎ Bottle Manifest texlive (20250308_2)
- ✔︎ Bottle Manifest oniguruma (6.9.10)
- ✔︎ Bottle Manifest gdbm (1.26)
- ✔︎ Bottle Manifest mpdecimal (4.0.1)
- ✔︎ Bottle Manifest ca-certificates (2025-12-02)
- ✔︎ Bottle Manifest openssl@3 (3.6.0)
- ✔︎ Bottle Manifest readline (8.3.3)
- ✔︎ Bottle Manifest sqlite (3.51.2)
- ✔︎ Bottle Manifest xz (5.8.2)
- ✔︎ Bottle Manifest libpng (1.6.54)
- ✔︎ Bottle Manifest freetype (2.14.1_1)
- ✔︎ Bottle Manifest libunistring (1.4.1)
- ✔︎ Bottle Manifest gettext (0.26_1)
- ✔︎ Bottle Manifest fontconfig (2.17.1)
- ✔︎ Bottle Manifest pcre2 (10.47)
- ✔︎ Bottle ca-certificates (2025-12-02)
- ✔︎ Bottle Manifest glib (2.86.3)
- ✔︎ Bottle mpdecimal (4.0.1)
- ✔︎ Bottle Manifest xorgproto (2025.1)
- ✔︎ Bottle gdbm (1.26)
- ✔︎ Bottle Manifest libxau (1.0.12)
- ✔︎ Bottle libxau (1.0.12)
- ✔︎ Bottle Manifest libxdmcp (1.1.5)
- ✔︎ Bottle fontconfig (2.17.1)
- ✔︎ Bottle jq (1.8.1)
- ✔︎ Bottle Manifest libxcb (1.17.0)
- ✔︎ Bottle Manifest libx11 (1.8.12)
- ✔︎ Bottle libxdmcp (1.1.5)
- ✔︎ Bottle libpng (1.6.54)
- ✔︎ Bottle oniguruma (6.9.10)
- ✔︎ Bottle Manifest libxext (1.3.6)
- ✔︎ Bottle Manifest libxrender (0.9.12)
- ✔︎ Bottle Manifest lzo (2.10)
- ✔︎ Bottle libxrender (0.9.12)
- ✔︎ Bottle Manifest pixman (0.46.4)
- ✔︎ Bottle libxext (1.3.6)
- ✔︎ Bottle Manifest cairo (1.18.4)
- ✔︎ Bottle lzo (2.10)
- ✔︎ Bottle Manifest libffcall (2.5)
- ✔︎ Bottle readline (8.3.3)
- ✔︎ Bottle xz (5.8.2)
- ✔︎ Bottle Manifest libsigsegv (2.15)
- ✔︎ Bottle Manifest clisp (2.49.92_1)
- ✔︎ Bottle libsigsegv (2.15)
- ✔︎ Bottle Manifest jpeg-turbo (3.1.3)
- ✔︎ Bottle xorgproto (2025.1)
- ✔︎ Bottle Manifest brotli (1.2.0)
- ✔︎ Bottle freetype (2.14.1_1)
- ✔︎ Bottle libffcall (2.5)
- ✔︎ Bottle Manifest giflib (5.2.2)
- ✔︎ Bottle Manifest highway (1.3.0)
- ✔︎ Bottle pixman (0.46.4)
- ✔︎ Bottle Manifest imath (3.2.2)
- ✔︎ Bottle giflib (5.2.2)
- ✔︎ Bottle Manifest lz4 (1.10.0)
- ✔︎ Bottle imath (3.2.2)
- ✔︎ Bottle Manifest zstd (1.5.7)
- ✔︎ Bottle libxcb (1.17.0)
- ✔︎ Bottle Manifest libtiff (4.7.1)
- ✔︎ Bottle lz4 (1.10.0)
- ✔︎ Bottle Manifest little-cms2 (2.18)
- ✔︎ Bottle brotli (1.2.0)
- ✔︎ Bottle Manifest libdeflate (1.25)
- ✔︎ Bottle libunistring (1.4.1)
- ✔︎ Bottle Manifest openjph (0.26.0)
- ✔︎ Bottle highway (1.3.0)
- ✔︎ Bottle Manifest openexr (3.4.4_1)
- ✔︎ Bottle libdeflate (1.25)
- ✔︎ Bottle little-cms2 (2.18)
- ✔︎ Bottle Manifest jpeg-xl (0.11.1_3)
- ✔︎ Bottle Manifest libvmaf (3.0.0)
- ✔︎ Bottle openjph (0.26.0)
- ✔︎ Bottle Manifest aom (3.13.1)
- ✔︎ Bottle zstd (1.5.7)
- ✔︎ Bottle Manifest dav1d (1.5.3)
- ✔︎ Bottle cairo (1.18.4)
- ✔︎ Bottle Manifest libavif (1.3.0)
- ✔︎ Bottle sqlite (3.51.2)
- ✔︎ Bottle Manifest webp (1.6.0)
- ✔︎ Bottle pcre2 (10.47)
- ✔︎ Bottle Manifest gd (2.3.3_6)
- ✔︎ Bottle dav1d (1.5.3)
- ✔︎ Bottle Manifest jbig2dec (0.20)
- ✔︎ Bottle libx11 (1.8.12)
- ✔︎ Bottle Manifest openjpeg (2.5.4)
- ✔︎ Bottle jbig2dec (0.20)
- ✔︎ Bottle Manifest leptonica (1.87.0)
- ✔︎ Bottle libavif (1.3.0)
- ✔︎ Bottle Manifest libb2 (0.98.1)
- ✔︎ Bottle libb2 (0.98.1)
- ✔︎ Bottle Manifest libarchive (3.8.5)
- ✔︎ Bottle gd (2.3.3_6)
- ✔︎ Bottle Manifest libidn (1.43)
- ✔︎ Bottle jpeg-turbo (3.1.3)
- ✔︎ Bottle Manifest graphite2 (1.3.14)
- ✔︎ Bottle openexr (3.4.4_1)
- ✔︎ Bottle graphite2 (1.3.14)
- ✔︎ Bottle Manifest icu4c@78 (78.2)
- ✔︎ Bottle Manifest harfbuzz (12.3.1)
- ✔︎ Bottle libvmaf (3.0.0)
- ✔︎ Bottle Manifest fribidi (1.0.16)
- ✔︎ Bottle libidn (1.43)
- ✔︎ Bottle Manifest pango (1.57.0_1)
- ✔︎ Bottle fribidi (1.0.16)
- ✔︎ Bottle Manifest tesseract (5.5.2)
- ✔︎ Bottle webp (1.6.0)
- ✔︎ Bottle libtiff (4.7.1)
- ✔︎ Bottle Manifest ghostscript (10.06.0)
- ✔︎ Bottle Manifest libxft (2.3.9)
- ✔︎ Bottle libxft (2.3.9)
- ✔︎ Bottle Manifest lua (5.4.8)
- ✔︎ Bottle lua (5.4.8)
- ✔︎ Bottle Manifest luajit (2.1.1767980792)
- ✔︎ Bottle pango (1.57.0_1)
- ✔︎ Bottle Manifest mpfr (4.2.2)
- ✔︎ Bottle libarchive (3.8.5)
- ✔︎ Bottle Manifest openjdk (25.0.2)
- ✔︎ Bottle luajit (2.1.1767980792)
- ✔︎ Bottle Manifest berkeley-db@5 (5.3.28_1)
- ✔︎ Bottle openjpeg (2.5.4)
- ✔︎ Bottle Manifest perl (5.42.0)
- ✔︎ Bottle clisp (2.49.92_1)
- ✔︎ Bottle Manifest potrace (1.16)
- ✔︎ Bottle mpfr (4.2.2)
- ✔︎ Bottle Manifest libde265 (1.0.16)
- ✔︎ Bottle potrace (1.16)
- ✔︎ Bottle Manifest shared-mime-info (2.4_1)
- ✔︎ Bottle leptonica (1.87.0)
- ✔︎ Bottle Manifest x265 (4.1)
- ✔︎ Bottle libde265 (1.0.16)
- ✔︎ Bottle Manifest libheif (1.21.2)
- ✔︎ Bottle harfbuzz (12.3.1)
- ✔︎ Bottle Manifest m4 (1.4.20)
- ✔︎ Bottle aom (3.13.1)
- ✔︎ Bottle Manifest libtool (2.5.4)
- ✔︎ Bottle m4 (1.4.20)
- ✔︎ Bottle shared-mime-info (2.4_1)
- ✔︎ Bottle Manifest imagemagick (7.1.2-13)
- ✔︎ Bottle Manifest libzip (1.11.4)
- ✔︎ Bottle libzip (1.11.4)
- ✔︎ Bottle Manifest plotutils (2.6_1)
- ✔︎ Bottle libtool (2.5.4)
- ✔︎ Bottle Manifest pstoedit (4.3)
- ✔︎ Bottle pstoedit (4.3)
- ✔︎ Bottle Manifest python@3.14 (3.14.2)
- ✔︎ Bottle libheif (1.21.2)
- ✔︎ Bottle plotutils (2.6_1)
- ✔︎ Bottle glib (2.86.3)
- ✔︎ Bottle gettext (0.26_1)
- ✔︎ Bottle openssl@3 (3.6.0)
- ✔︎ Bottle x265 (4.1)
- ✔︎ Bottle python@3.9 (3.9.25)
- ✔︎ Bottle jpeg-xl (0.11.1_3)
- ✔︎ Bottle tesseract (5.5.2)
- ✔︎ Bottle imagemagick (7.1.2-13)
- ✔︎ Bottle perl (5.42.0)
- ✔︎ Bottle berkeley-db@5 (5.3.28_1)
- ✔︎ Bottle icu4c@78 (78.2)
- ✔︎ Bottle python@3.14 (3.14.2)
- ✔︎ Bottle ghostscript (10.06.0)
- ✔︎ Bottle openjdk (25.0.2)
2026-01-23 17:48.20: Cancelling: Timeout (120.0 minutes)
Job cancelled
2026-01-23 17:48.23: Timeout (120.0 minutes)