Build:
  1. 0
2026-02-27 04:04.31: New job: test unison.2.53.4 with ocaml-secondary-compiler.4.08.1, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29451/head (09d7830dd4a7cd4cfc1725bd69ec5b222eae677d)
                              on debian-13-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/29451/head" && git reset --hard 09d7830d
git fetch origin master
git merge --no-edit 5abb4f44e937819c2e438ab71bc23607a7cad3da
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c
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 ocaml-secondary-compiler.4.08.1 4.08.1
RUN opam reinstall ocaml-secondary-compiler.4.08.1; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ocaml-secondary-compiler.4.08.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall unison.2.53.4; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'unison.2.53.4' && 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 unison.2.53.4) || true
RUN opam reinstall --with-test --verbose unison.2.53.4; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'unison.2.53.4' && 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-02-27 04:04.31: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c-ocaml-secondary-compiler.4.08.1-unison.2.53.4-09d7830dd4a7cd4cfc1725bd69ec5b222eae677d"
2026-02-27 04:04.31: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
 (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 ocaml-secondary-compiler.4.08.1 4.08.1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall ocaml-secondary-compiler.4.08.1;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'ocaml-secondary-compiler.4.08.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall unison.2.53.4;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'unison.2.53.4' && 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 unison.2.53.4) || true"))
 (run (shell  "opam reinstall --with-test --verbose unison.2.53.4;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'unison.2.53.4' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-02-27 04:04.31: Waiting for resource in pool OCluster
2026-03-02 06:58.26: Waiting for worker…
2026-03-02 07:02.55: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
Updating files:  68% (12554/18334)
Updating files:  69% (12651/18334)
Updating files:  70% (12834/18334)
Updating files:  71% (13018/18334)
Updating files:  72% (13201/18334)
Updating files:  73% (13384/18334)
Updating files:  74% (13568/18334)
Updating files:  75% (13751/18334)
Updating files:  76% (13934/18334)
Updating files:  77% (14118/18334)
Updating files:  78% (14301/18334)
Updating files:  79% (14484/18334)
Updating files:  80% (14668/18334)
Updating files:  81% (14851/18334)
Updating files:  82% (15034/18334)
Updating files:  83% (15218/18334)
Updating files:  84% (15401/18334)
Updating files:  85% (15584/18334)
Updating files:  86% (15768/18334)
Updating files:  87% (15951/18334)
Updating files:  88% (16134/18334)
Updating files:  89% (16318/18334)
Updating files:  90% (16501/18334)
Updating files:  91% (16684/18334)
Updating files:  92% (16868/18334)
Updating files:  93% (17051/18334)
Updating files:  94% (17234/18334)
Updating files:  95% (17418/18334)
Updating files:  96% (17601/18334)
Updating files:  97% (17784/18334)
Updating files:  98% (17968/18334)
Updating files:  99% (18151/18334)
Updating files: 100% (18334/18334)
Updating files: 100% (18334/18334), done.
HEAD is now at 5abb4f44e9 Merge pull request #29466 from mseri/release-doi2bib-0.9.1
Merge made by the 'ort' strategy.
 .../ocaml-base-compiler.3.07+1/opam                    |  1 +
 .../ocaml-base-compiler.3.07+2/opam                    |  1 +
 .../ocaml-base-compiler/ocaml-base-compiler.3.07/opam  |  1 +
 .../ocaml-base-compiler.3.08.0/opam                    |  1 +
 .../ocaml-base-compiler.3.08.1/opam                    |  1 +
 .../ocaml-base-compiler.3.08.2/opam                    |  1 +
 .../ocaml-base-compiler.3.08.3/opam                    |  1 +
 .../ocaml-base-compiler.3.08.4/opam                    |  1 +
 .../ocaml-base-compiler.3.09.0/opam                    |  1 +
 .../ocaml-base-compiler.3.09.1/opam                    |  1 +
 .../ocaml-base-compiler.3.09.2/opam                    |  1 +
 .../ocaml-base-compiler.3.09.3/opam                    |  1 +
 .../ocaml-base-compiler.3.10.0/opam                    |  1 +
 .../ocaml-base-compiler.3.10.1/opam                    |  1 +
 .../ocaml-base-compiler.3.10.2/opam                    |  1 +
 .../ocaml-base-compiler.3.11.0/opam                    |  1 +
 .../ocaml-base-compiler.3.11.1/opam                    |  1 +
 .../ocaml-base-compiler.3.11.2/opam                    |  1 +
 .../ocaml-base-compiler.3.12.0/opam                    |  1 +
 .../ocaml-base-compiler.3.12.1/opam                    |  1 +
 .../ocaml-base-compiler.4.00.0/opam                    |  1 +
 .../ocaml-base-compiler.4.00.1/opam                    |  1 +
 .../ocaml-base-compiler.4.01.0/opam                    |  1 +
 .../ocaml-base-compiler.4.02.0/opam                    |  1 +
 .../ocaml-base-compiler.4.02.1/opam                    |  1 +
 .../ocaml-base-compiler.4.02.2/opam                    |  1 +
 .../ocaml-base-compiler.4.02.3/opam                    |  1 +
 .../ocaml-base-compiler.4.03.0/opam                    |  1 +
 .../ocaml-base-compiler.4.04.0/opam                    |  1 +
 .../ocaml-base-compiler.4.04.1/opam                    |  1 +
 .../ocaml-base-compiler.4.04.2/opam                    |  1 +
 .../ocaml-base-compiler.4.05.0/opam                    |  1 +
 .../ocaml-base-compiler.4.06.0/opam                    |  1 +
 .../ocaml-base-compiler.4.06.1/opam                    |  1 +
 .../ocaml-base-compiler.4.07.0/opam                    |  1 +
 .../ocaml-base-compiler.4.07.1/opam                    |  1 +
 .../ocaml-base-compiler.4.08.0/opam                    |  1 +
 .../ocaml-base-compiler.4.08.1/opam                    |  1 +
 .../ocaml-base-compiler.4.09.0/opam                    |  1 +
 .../ocaml-base-compiler.4.09.1/opam                    |  1 +
 .../ocaml-base-compiler.4.10.0/opam                    |  1 +
 .../ocaml-base-compiler.4.10.1/opam                    |  1 +
 .../ocaml-base-compiler.4.10.2/opam                    |  1 +
 .../ocaml-base-compiler.4.11.0/opam                    |  1 +
 .../ocaml-base-compiler.4.11.1/opam                    |  1 +
 .../ocaml-base-compiler.4.11.2/opam                    |  1 +
 .../ocaml-base-compiler.4.12.0/opam                    |  1 +
 .../ocaml-base-compiler.4.12.1/opam                    |  1 +
 .../ocaml-base-compiler.4.13.0/opam                    |  1 +
 .../ocaml-base-compiler.4.13.1/opam                    |  1 +
 .../ocaml-base-compiler.4.14.0/opam                    |  1 +
 .../ocaml-base-compiler.4.14.1/opam                    |  1 +
 .../ocaml-base-compiler.4.14.2/opam                    |  1 +
 .../ocaml-base-compiler.4.14.2~rc1/opam                |  1 +
 .../ocaml-base-compiler.4.14.3/opam                    |  1 +
 .../ocaml-base-compiler/ocaml-base-compiler.5.0.0/opam |  5 ++++-
 .../ocaml-base-compiler/ocaml-base-compiler.5.1.0/opam |  5 ++++-
 .../ocaml-base-compiler/ocaml-base-compiler.5.1.1/opam |  5 ++++-
 .../ocaml-base-compiler/ocaml-base-compiler.5.2.0/opam |  5 ++++-
 .../ocaml-base-compiler/ocaml-base-compiler.5.2.1/opam |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.3.0/opam      |  1 +
 packages/ocaml-compiler/ocaml-compiler.5.3/opam        |  1 +
 packages/ocaml-compiler/ocaml-compiler.5.4.0/opam      |  1 +
 .../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam    |  1 +
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam     |  1 +
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam     |  1 +
 packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam  |  1 +
 packages/ocaml-compiler/ocaml-compiler.5.4.1/opam      |  1 +
 packages/ocaml-compiler/ocaml-compiler.5.4/opam        |  1 +
 .../ocaml-secondary-compiler.4.08.1-1/opam             |  1 +
 .../ocaml-secondary-compiler.4.08.1/opam               |  1 +
 .../ocaml-secondary-compiler.4.14.2/opam               |  1 +
 .../ocaml-variants.3.09.1+metaocaml/opam               |  1 +
 .../ocaml-variants.4.00.0+debug-runtime/opam           |  1 +
 packages/ocaml-variants/ocaml-variants.4.00.1+BER/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.00.1+PIC/opam |  1 +
 .../ocaml-variants.4.00.1+debug-runtime/opam           |  1 +
 .../ocaml-variants.4.00.1+open-types/opam              |  1 +
 .../ocaml-variants.4.00.1+raspberrypi/opam             |  1 +
 .../ocaml-variants.4.00.1+short-types/opam             |  1 +
 .../ocaml-variants/ocaml-variants.4.01.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.01.0+BER/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.01.0+PIC/opam |  1 +
 .../ocaml-variants.4.01.0+armv6-freebsd/opam           |  1 +
 packages/ocaml-variants/ocaml-variants.4.01.0+fp/opam  |  1 +
 packages/ocaml-variants/ocaml-variants.4.01.0+lsb/opam |  1 +
 .../ocaml-variants.4.01.0+musl+static/opam             |  1 +
 .../ocaml-variants/ocaml-variants.4.01.0+musl/opam     |  1 +
 .../ocaml-variants.4.01.0+open-types/opam              |  1 +
 .../ocaml-variants/ocaml-variants.4.01.0+profile/opam  |  1 +
 packages/ocaml-variants/ocaml-variants.4.02.0+PIC/opam |  1 +
 .../ocaml-variants.4.02.0+improved-errors/opam         |  1 +
 .../ocaml-variants/ocaml-variants.4.02.1+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.02.1+BER/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.02.1+PIC/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.02.1+fp/opam  |  1 +
 .../ocaml-variants.4.02.1+modular-implicits-ber/opam   |  1 +
 .../ocaml-variants.4.02.1+modular-implicits/opam       |  1 +
 .../ocaml-variants.4.02.1+musl+static/opam             |  1 +
 .../ocaml-variants/ocaml-variants.4.02.1+musl/opam     |  1 +
 .../ocaml-variants.4.02.2+improved-errors/opam         |  1 +
 .../ocaml-variants/ocaml-variants.4.02.3+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.02.3+PIC/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.02.3+buckle-1/opam |  1 +
 .../ocaml-variants.4.02.3+buckle-master/opam           |  1 +
 .../ocaml-variants.4.02.3+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.02.3+curried-constr/opam          |  1 +
 packages/ocaml-variants/ocaml-variants.4.02.3+fp/opam  |  1 +
 .../ocaml-variants.4.02.3+musl+static/opam             |  1 +
 .../ocaml-variants/ocaml-variants.4.02.3+musl/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.02.4+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.03.0+32bit/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.03.0+fPIC/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.03.0+flambda/opam  |  1 +
 .../ocaml-variants.4.03.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.03.0+fp/opam  |  1 +
 .../ocaml-variants.4.03.0+statistical-memprof/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.03.1+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.04.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.04.0+BER/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.04.0+afl/opam |  1 +
 .../ocaml-variants.4.04.0+bytecode-only/opam           |  1 +
 .../ocaml-variants/ocaml-variants.4.04.0+fPIC/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.04.0+flambda/opam  |  1 +
 .../ocaml-variants.4.04.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.04.0+fp/opam  |  1 +
 .../ocaml-variants.4.04.0+safe-string/opam             |  1 +
 .../ocaml-variants.4.04.0+spacetime/opam               |  1 +
 .../ocaml-variants.4.04.0+trunk+forced_lto/opam        |  1 +
 .../ocaml-variants/ocaml-variants.4.04.1+32bit/opam    |  1 +
 .../ocaml-variants.4.04.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.04.1+copatterns/opam              |  1 +
 .../ocaml-variants/ocaml-variants.4.04.1+fPIC/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.04.1+flambda/opam  |  1 +
 .../ocaml-variants.4.04.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.04.1+fp/opam  |  1 +
 .../ocaml-variants.4.04.1+safe-string/opam             |  1 +
 .../ocaml-variants.4.04.1+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.04.2+32bit/opam    |  1 +
 .../ocaml-variants.4.04.2+bytecode-only/opam           |  1 +
 .../ocaml-variants/ocaml-variants.4.04.2+fPIC/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.04.2+flambda/opam  |  1 +
 .../ocaml-variants.4.04.2+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.04.2+fp/opam  |  1 +
 .../ocaml-variants.4.04.2+safe-string/opam             |  1 +
 .../ocaml-variants.4.04.2+spacetime/opam               |  1 +
 .../ocaml-variants.4.04.2+statistical-memprof/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.04.3+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.05.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.05.0+afl/opam |  1 +
 .../ocaml-variants.4.05.0+bytecode-only/opam           |  1 +
 .../ocaml-variants/ocaml-variants.4.05.0+flambda/opam  |  1 +
 packages/ocaml-variants/ocaml-variants.4.05.0+lto/opam |  1 +
 .../ocaml-variants.4.05.0+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.05.0+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.05.0+safe-string/opam             |  1 +
 .../ocaml-variants.4.05.0+spacetime/opam               |  1 +
 .../ocaml-variants.4.05.0+statistical-memprof/opam     |  1 +
 .../ocaml-variants.4.05.1+trunk+afl/opam               |  1 +
 .../ocaml-variants.4.05.1+trunk+flambda/opam           |  1 +
 .../ocaml-variants.4.05.1+trunk+fp+flambda/opam        |  1 +
 .../ocaml-variants/ocaml-variants.4.05.1+trunk+fp/opam |  1 +
 .../ocaml-variants.4.05.1+trunk+safe-string/opam       |  1 +
 .../ocaml-variants/ocaml-variants.4.05.1+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.06.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.06.0+afl/opam |  1 +
 .../ocaml-variants.4.06.0+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.06.0+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.06.0+flambda/opam  |  1 +
 .../ocaml-variants.4.06.0+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.06.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.06.0+fp/opam  |  1 +
 .../ocaml-variants.4.06.0+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.06.0+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.06.0+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.06.0+spacetime/opam               |  1 +
 .../ocaml-variants.4.06.0+statistical-memprof/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.06.1+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.06.1+afl/opam |  1 +
 .../ocaml-variants.4.06.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.06.1+default-unsafe-string/opam   |  1 +
 .../ocaml-variants/ocaml-variants.4.06.1+flambda/opam  |  1 +
 .../ocaml-variants.4.06.1+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.06.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.06.1+fp/opam  |  1 +
 packages/ocaml-variants/ocaml-variants.4.06.1+lto/opam |  1 +
 .../ocaml-variants.4.06.1+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.06.1+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.06.1+no-flat-float-array/opam     |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.06.1+rescript/opam |  1 +
 .../ocaml-variants.4.06.1+statistical-memprof/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.06.1+termux/opam   |  1 +
 .../ocaml-variants.4.06.2+trunk+afl/opam               |  1 +
 .../ocaml-variants.4.06.2+trunk+flambda/opam           |  1 +
 .../ocaml-variants.4.06.2+trunk+force-safe-string/opam |  1 +
 .../ocaml-variants.4.06.2+trunk+fp+flambda/opam        |  1 +
 .../ocaml-variants/ocaml-variants.4.06.2+trunk+fp/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.06.2+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.07.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.07.0+afl/opam |  1 +
 .../ocaml-variants.4.07.0+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.07.0+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.07.0+flambda/opam  |  1 +
 .../ocaml-variants.4.07.0+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.07.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.07.0+fp/opam  |  1 +
 .../ocaml-variants.4.07.0+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.07.0+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.07.1+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.07.1+BER/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.07.1+afl/opam |  1 +
 .../ocaml-variants.4.07.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.07.1+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.07.1+flambda/opam  |  1 +
 .../ocaml-variants.4.07.1+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.07.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.07.1+fp/opam  |  1 +
 .../ocaml-variants.4.07.1+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.07.1+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.07.1+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.07.1+spacetime/opam               |  1 +
 .../ocaml-variants.4.07.1+statistical-memprof/opam     |  1 +
 .../ocaml-variants.4.07.2+trunk+afl/opam               |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants.4.07.2+trunk+flambda/opam           |  1 +
 .../ocaml-variants.4.07.2+trunk+fp+flambda/opam        |  1 +
 .../ocaml-variants/ocaml-variants.4.07.2+trunk+fp/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.07.2+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.08.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.08.0+afl/opam |  1 +
 .../ocaml-variants.4.08.0+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.08.0+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.08.0+flambda/opam  |  1 +
 .../ocaml-variants.4.08.0+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.08.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.08.0+fp/opam  |  1 +
 .../ocaml-variants.4.08.0+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.08.0+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.08.0+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.08.0+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.08.1+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.08.1+afl/opam |  1 +
 .../ocaml-variants.4.08.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.08.1+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.08.1+flambda/opam  |  1 +
 .../ocaml-variants.4.08.1+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.08.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.08.1+fp/opam  |  1 +
 .../ocaml-variants.4.08.1+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.08.1+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.08.1+spacetime/opam               |  1 +
 .../ocaml-variants.4.08.2+trunk+afl/opam               |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants.4.08.2+trunk+flambda/opam           |  1 +
 .../ocaml-variants.4.08.2+trunk+force-safe-string/opam |  1 +
 .../ocaml-variants.4.08.2+trunk+fp+flambda/opam        |  1 +
 .../ocaml-variants/ocaml-variants.4.08.2+trunk+fp/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.08.2+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.09.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.09.0+afl/opam |  1 +
 .../ocaml-variants.4.09.0+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.09.0+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.09.0+flambda/opam  |  1 +
 .../ocaml-variants.4.09.0+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.09.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.09.0+fp/opam  |  1 +
 .../ocaml-variants.4.09.0+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.09.0+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.09.0+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.09.0+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.09.1+32bit/opam    |  1 +
 .../ocaml-variants.4.09.1+afl+flambda/opam             |  1 +
 packages/ocaml-variants/ocaml-variants.4.09.1+afl/opam |  1 +
 .../ocaml-variants.4.09.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.09.1+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.09.1+flambda/opam  |  1 +
 .../ocaml-variants.4.09.1+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.09.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.09.1+fp/opam  |  1 +
 .../ocaml-variants.4.09.1+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.09.1+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.09.1+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.09.1+spacetime/opam               |  1 +
 .../ocaml-variants.4.09.2+trunk+afl/opam               |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants.4.09.2+trunk+flambda/opam           |  1 +
 .../ocaml-variants.4.09.2+trunk+fp+flambda/opam        |  1 +
 .../ocaml-variants/ocaml-variants.4.09.2+trunk+fp/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.09.2+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.10.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.10.0+afl/opam |  1 +
 .../ocaml-variants.4.10.0+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.10.0+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.10.0+flambda/opam  |  1 +
 .../ocaml-variants.4.10.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.10.0+fp/opam  |  1 +
 .../ocaml-variants.4.10.0+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.10.0+musl+static+flambda/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.10.0+nnpcheck/opam |  1 +
 .../ocaml-variants.4.10.0+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.10.0+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.10.1+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.10.1+afl/opam |  1 +
 .../ocaml-variants.4.10.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.10.1+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.10.1+flambda/opam  |  1 +
 .../ocaml-variants.4.10.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.10.1+fp/opam  |  1 +
 .../ocaml-variants.4.10.1+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.10.1+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.10.1+no-flat-float-array/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.10.1+rc1+afl/opam  |  1 +
 .../ocaml-variants.4.10.1+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.10.2+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.10.2+afl/opam |  1 +
 .../ocaml-variants.4.10.2+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.10.2+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.10.2+flambda/opam  |  1 +
 .../ocaml-variants.4.10.2+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.10.2+fp/opam  |  1 +
 .../ocaml-variants.4.10.2+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.10.2+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.10.2+no-flat-float-array/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.10.2+rescript/opam |  1 +
 .../ocaml-variants.4.10.2+spacetime/opam               |  1 +
 .../ocaml-variants.4.10.3+trunk+afl/opam               |  1 +
 .../ocaml-variants.4.10.3+trunk+flambda/opam           |  1 +
 .../ocaml-variants/ocaml-variants.4.10.3+trunk+fp/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.10.3+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.11.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.0+afl/opam |  1 +
 .../ocaml-variants.4.11.0+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.11.0+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.11.0+flambda/opam  |  1 +
 .../ocaml-variants.4.11.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.0+fp/opam  |  1 +
 .../ocaml-variants.4.11.0+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.11.0+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.11.0+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.11.0+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.11.1+32bit/opam    |  1 +
 .../ocaml-variants.4.11.1+BER+flambda/opam             |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.1+BER/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.1+afl/opam |  1 +
 .../ocaml-variants.4.11.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.11.1+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.11.1+flambda/opam  |  1 +
 .../ocaml-variants.4.11.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.1+fp/opam  |  1 +
 .../ocaml-variants.4.11.1+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.11.1+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.11.1+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.11.1+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.11.2+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.2+afl/opam |  1 +
 .../ocaml-variants.4.11.2+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.11.2+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.11.2+flambda/opam  |  1 +
 .../ocaml-variants.4.11.2+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.2+fp/opam  |  1 +
 .../ocaml-variants.4.11.2+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.11.2+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.11.2+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.11.2+spacetime/opam               |  1 +
 .../ocaml-variants.4.11.3+trunk+afl/opam               |  1 +
 .../ocaml-variants.4.11.3+trunk+flambda/opam           |  1 +
 .../ocaml-variants/ocaml-variants.4.11.3+trunk+fp/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.11.3+trunk/opam    |  1 +
 .../ocaml-variants.4.12.0+domains+effects/opam         |  1 +
 .../ocaml-variants/ocaml-variants.4.12.0+domains/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.12.0+options/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.12.1+options/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.12.2+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.13.0+options/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.13.1+options/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.13.2+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.14.0+options/opam  |  1 +
 packages/ocaml-variants/ocaml-variants.4.14.1+BER/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.14.1+options/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.14.2+options/opam  |  1 +
 .../ocaml-variants.4.14.2~rc1+options/opam             |  1 +
 .../ocaml-variants/ocaml-variants.4.14.3+options/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.14.4+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.5.0.0+options/opam   |  1 +
 packages/ocaml-variants/ocaml-variants.5.0.0+tsan/opam |  1 +
 .../ocaml-variants/ocaml-variants.5.0.1+trunk/opam     |  1 +
 .../ocaml-variants/ocaml-variants.5.1.0+options/opam   |  1 +
 packages/ocaml-variants/ocaml-variants.5.1.0+tsan/opam |  1 +
 .../ocaml-variants.5.1.1+effect-syntax/opam            |  1 +
 .../ocaml-variants.5.1.1+flambda2+trunk/opam           |  1 +
 .../ocaml-variants/ocaml-variants.5.1.1+flambda2/opam  |  1 +
 .../ocaml-variants/ocaml-variants.5.1.1+options/opam   |  1 +
 packages/ocaml-variants/ocaml-variants.5.1.1+tsan/opam |  1 +
 .../ocaml-variants/ocaml-variants.5.1.2+trunk/opam     |  1 +
 packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam |  1 +
 .../ocaml-variants/ocaml-variants.5.2.0+options/opam   |  1 +
 .../ocaml-variants.5.2.0+statmemprof/opam              |  1 +
 .../ocaml-variants/ocaml-variants.5.2.1+options/opam   |  1 +
 .../ocaml-variants.5.2.1~rc1+options/opam              |  1 +
 .../ocaml-variants/ocaml-variants.5.2.2+trunk/opam     |  1 +
 packages/ocaml-variants/ocaml-variants.5.3.0+BER/opam  |  1 +
 packages/ocamlbuild/ocamlbuild.0.14.0/opam             |  1 +
 packages/ocamlbuild/ocamlbuild.0.14.1/opam             |  1 +
 packages/ocamlbuild/ocamlbuild.0.14.2+win/opam         |  1 +
 packages/ocamlbuild/ocamlbuild.0.14.2/opam             |  1 +
 packages/ocamlbuild/ocamlbuild.0.14.3+win/opam         |  1 +
 packages/ocamlbuild/ocamlbuild.0.14.3/opam             |  1 +
 packages/ocamlbuild/ocamlbuild.0.15.0/opam             |  1 +
 packages/ocamlbuild/ocamlbuild.0.16.1/opam             |  1 +
 packages/ocamlfind/ocamlfind.1.8.0/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.8.1/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.9.1/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.9.2/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.9.3/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.9.5/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.9.6/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.9.8/opam                |  1 +
 packages/relocatable/relocatable.packages/opam         | 18 ++++++++++++++++++
 432 files changed, 464 insertions(+), 5 deletions(-)
 create mode 100644 packages/relocatable/relocatable.packages/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
2026-03-02 07:02.59 ---> using "3c18c9e472a4f76bc128dc0a5a1e21158ba3dbd0d6773ace6ec33f0cfe6fac9b" 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-03-02 07:02.59 ---> using "7a3442ad99cd957e3ce65df65cad40aee4354c6d524c7813b8b589bc410c187e" 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.

Continue? [Y/n] y
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.

Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-02 07:02.59 ---> using "4214446d06a5b764dff5167574d07a5b4441731262795df63d7a3c5f64e1a189" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# 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-03-02 07:02.59 ---> using "8bf276ecf196c09ac4fb294f887dce47d9744c212aabbbad5d313f0a4179272a" 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-03-02 07:02.59 ---> using "c04e3f046c8eaf07d3d8f4b30debe47a6f7742bcdbfbfeb4d464149613cd35cd" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-02 07:03.00 ---> using "f28d2d55603b70a3956974bde95e68526d52d43abb5c3f086de712d28b994566" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-02 07:03.00 ---> using "3775e9b8ca53e7a42e175e2f214e7d345a02bf22f9dd6d271ae720654f277192" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [113 kB]
- Fetched 203 kB in 0s (1230 kB/s)
- Reading package lists...
- 
2026-03-02 07:03.00 ---> using "a6fcf1eb697bb2cbcd49a3ac591b228ed4dfb5d9211b39971561804e137638fa" from cache

/home/opam: (run (shell "opam pin add -k version -yn ocaml-secondary-compiler.4.08.1 4.08.1"))
ocaml-secondary-compiler is now pinned to version 4.08.1
2026-03-02 07:03.00 ---> using "26b9929e6d78f54d8f80fd7749e76b57b2a5087e9bbfce4cc04584f7009adae7" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall ocaml-secondary-compiler.4.08.1;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'ocaml-secondary-compiler.4.08.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
ocaml-secondary-compiler.4.08.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install ocaml-secondary-compiler 4.08.1 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-secondary-compiler.4.08.1  (cached)
-> installed ocaml-secondary-compiler.4.08.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 07:03.00 ---> using "6e65f0f970e618e23463227013afdf4ddd2988a331944d724eff919672c1ffef" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall unison.2.53.4;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'unison.2.53.4' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
unison.2.53.4 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install unison 2.53.4

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved unison.2.53.4  (cached)
-> installed unison.2.53.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 07:03.25 ---> saved as "67887f8e8c845cccfa5c8246fc75847c9ec06d048778a2e7b91d08ab98bbc2a1"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test unison.2.53.4) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile unison 2.53.4

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved unison.2.53.4  (https://opam.ocaml.org/cache)
-> removed   unison.2.53.4
-> installed unison.2.53.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 07:03.48 ---> saved as "b92e9068c26005080cdb5f62e9d0e36edec94382c55586e2af0f4947eba9792a"

/home/opam: (run (shell  "opam reinstall --with-test --verbose unison.2.53.4;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'unison.2.53.4' && 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 unison 2.53.4

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [unison.2.53.4: extract]
-> retrieved unison.2.53.4  (cached)
Processing  2/4: [unison: make 71]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "NATIVE=true" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4)
- make -C src
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src'
- Building for Unix
- NATIVE = true
- ocamlopt: ubase/umarshal.mli ---> ubase/umarshal.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/ubase/umarshal.mli
- ocamlopt: ubase/rx.mli ---> ubase/rx.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/ubase/rx.mli
- ocamlopt: unicode_tables.ml ---> unicode_tables.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/unicode_tables.ml
- ocamlopt: unicode.mli ---> unicode.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/unicode.mli
- echo 'let myName = "'unison'";;' > ubase/projectInfo.ml
- echo 'let myVersion = "'2.53.4'";;' >> ubase/projectInfo.ml
- echo 'let myMajorVersion = "'2.53'";;' >> ubase/projectInfo.ml
- ocamlopt: ubase/safelist.mli ---> ubase/safelist.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/ubase/safelist.mli
- ocamlopt: ubase/util.mli ---> ubase/util.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/ubase/util.mli
- ocamlopt: ubase/uarg.mli ---> ubase/uarg.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/ubase/uarg.mli
- ocamlopt: ubase/proplist.mli ---> ubase/proplist.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/ubase/proplist.mli
- ocamlopt: lwt/pqueue.mli ---> lwt/pqueue.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/lwt/pqueue.mli
- ocamlopt: lwt/lwt.mli ---> lwt/lwt.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/lwt/lwt.mli
- ocamlopt: features.mli ---> features.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/features.mli
- ocamlopt: uutil.mli ---> uutil.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/uutil.mli
- ocamlopt: fileutil.mli ---> fileutil.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/fileutil.mli
- ocamlopt: name.mli ---> name.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/name.mli
- ocamlopt: propsdata.mli ---> propsdata.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/propsdata.mli
- ocamlopt: lock.mli ---> lock.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/lock.mli
- ocamlopt: clroot.mli ---> clroot.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/clroot.mli
- ocamlopt: tree.mli ---> tree.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/tree.mli
- ocamlopt: checksum.mli ---> checksum.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/checksum.mli
- ocamlopt: external.mli ---> external.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/external.mli
- ocamlopt: strings.mli ---> strings.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/strings.mli
- ocamlopt: test.mli ---> test.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/test.mli
- ocamlopt: osxsupport.c ---> osxsupport.o
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic  -ccopt "-o "/home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/osxsupport.o -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/osxsupport.c
- ocamlopt: pty.c ---> pty.o
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic  -ccopt "-o "/home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/pty.o -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/pty.c
- ocamlopt: bytearray_stubs.c ---> bytearray_stubs.o
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic  -ccopt "-o "/home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/bytearray_stubs.o -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/bytearray_stubs.c
- ocamlopt: hash_compat.c ---> hash_compat.o
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic  -ccopt "-o "/home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/hash_compat.o -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/hash_compat.c
- ocamlopt: props_xattr.c ---> props_xattr.o
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic  -ccopt "-o "/home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/props_xattr.o -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/props_xattr.c
- ocamlopt: props_acl.c ---> props_acl.o
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic  -ccopt "-o "/home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/props_acl.o -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/props_acl.c
- GUI library lablgtk not found. GTK GUI will not be built.
- Not on macOS. macOS native GUI will not be built.
- ocamlopt: fsmonitor/inotify/inotify.mli ---> fsmonitor/inotify/inotify.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -I fsmonitor -I fsmonitor/inotify -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/fsmonitor/inotify/inotify.mli
- ocamlopt: fsmonitor/watchercommon.mli ---> fsmonitor/watchercommon.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -I fsmonitor -I fsmonitor/inotify -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/fsmonitor/watchercommon.mli
- ocamlopt: fsmonitor/inotify/inotify_stubs.c ---> fsmonitor/inotify/inotify_stubs.o
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -I fsmonitor -I fsmonitor/inotify  -ccopt "-o "/home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/fsmonitor/inotify/inotify_stubs.o -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/fsmonitor/inotify/inotify_stubs.c
- ocamlopt: ubase/umarshal.ml ---> ubase/umarshal.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/ubase/umarshal.ml
- ocamlopt: ubase/rx.ml ---> ubase/rx.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/ubase/rx.ml
- ocamlopt: unicode.ml ---> unicode.cmx
- ocamlopt: bytearray.mli ---> bytearray.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/unicode.ml
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/bytearray.mli
- ocamlc: system/system_intf.ml ---> system/system_intf.cmo
- ocamlc -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/system/system_intf.ml
- ocamlopt: ubase/projectInfo.ml ---> ubase/projectInfo.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/ubase/projectInfo.ml
- ocamlopt: ubase/myMap.mli ---> ubase/myMap.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/ubase/myMap.mli
- ocamlopt: ubase/safelist.ml ---> ubase/safelist.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/ubase/safelist.ml
- ocamlopt: ubase/prefs.mli ---> ubase/prefs.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/ubase/prefs.mli
- ocamlopt: lwt/pqueue.ml ---> lwt/pqueue.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/lwt/pqueue.ml
- ocamlopt: lwt/lwt.ml ---> lwt/lwt.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/lwt/lwt.ml
- ocamlopt: lwt/lwt_util.mli ---> lwt/lwt_util.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/lwt/lwt_util.mli
- ocamlopt: lwt/lwt_unix.mli ---> lwt/lwt_unix.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/lwt/lwt_unix.mli
- ocamlopt: case.mli ---> case.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/case.mli
- ocamlopt: pred.mli ---> pred.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/pred.mli
- ocamlopt: fileutil.ml ---> fileutil.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/fileutil.ml
- ocamlopt: abort.mli ---> abort.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/abort.mli
- ocamlopt: checksum.ml ---> checksum.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/checksum.ml
- ocamlopt: transfer.mli ---> transfer.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/transfer.mli
- ocamlopt: strings.ml ---> strings.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/strings.ml
- ocamlopt: fsmonitor/inotify/inotify.ml ---> fsmonitor/inotify/inotify.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -I fsmonitor -I fsmonitor/inotify -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/fsmonitor/inotify/inotify.ml
- ocamlopt: fsmonitor/inotify/lwt_inotify.mli ---> fsmonitor/inotify/lwt_inotify.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -I fsmonitor -I fsmonitor/inotify -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/fsmonitor/inotify/lwt_inotify.mli
- ocamlopt: system.mli ---> system.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/system.mli
- ocamlopt: ubase/trace.mli ---> ubase/trace.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/ubase/trace.mli
- ocamlopt: terminal.mli ---> terminal.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/terminal.mli
- ocamlopt: path.mli ---> path.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/path.mli
- ocamlopt: lwt/lwt_util.ml ---> lwt/lwt_util.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/lwt/lwt_util.ml
- ocamlopt: lwt/generic/lwt_unix_impl.ml ---> lwt/generic/lwt_unix_impl.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/lwt/generic/lwt_unix_impl.ml
- ocamlopt: fspath.mli ---> fspath.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/fspath.mli
- ocamlopt: bytearray.ml ---> bytearray.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/bytearray.ml
- ocamlopt: system/system_generic.ml ---> system/system_generic.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/system/system_generic.ml
- ocamlopt: ubase/myMap.ml ---> ubase/myMap.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/ubase/myMap.ml
- ocamlopt: fs.mli ---> fs.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/fs.mli
- ocamlopt: fingerprint.mli ---> fingerprint.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/fingerprint.mli
- ocamlopt: fswatch.mli ---> fswatch.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/fswatch.mli
- ocamlopt: tree.ml ---> tree.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/tree.ml
- ocamlopt: fswatchold.mli ---> fswatchold.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/fswatchold.mli
- ocamlopt: osx.mli ---> osx.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/osx.mli
- ocamlopt: lwt/lwt_unix.ml ---> lwt/lwt_unix.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/lwt/lwt_unix.ml
- ocamlopt: system/generic/system_impl.ml ---> system/generic/system_impl.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/system/generic/system_impl.ml
- ocamlopt: props.mli ---> props.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/props.mli
- ocamlopt: fsmonitor/inotify/lwt_inotify.ml ---> fsmonitor/inotify/lwt_inotify.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -I fsmonitor -I fsmonitor/inotify -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/fsmonitor/inotify/lwt_inotify.ml
- ocamlopt: fsmonitor/watchercommon.ml ---> fsmonitor/watchercommon.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -I fsmonitor -I fsmonitor/inotify -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/fsmonitor/watchercommon.ml
- ocamlopt: fileinfo.mli ---> fileinfo.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/fileinfo.mli
- ocamlopt: system.ml ---> system.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/system.ml
- ocamlopt: ubase/util.ml ---> ubase/util.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/ubase/util.ml
- ocamlopt: os.mli ---> os.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/os.mli
- ocamlopt: common.mli ---> common.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/common.mli
- ocamlopt: xferhint.mli ---> xferhint.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/xferhint.mli
- ocamlopt: fpcache.mli ---> fpcache.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/fpcache.mli
- ocamlopt: remote.mli ---> remote.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/remote.mli
- ocamlopt: negotiate.mli ---> negotiate.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/negotiate.mli
- ocamlopt: globals.mli ---> globals.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/globals.mli
- ocamlopt: update.mli ---> update.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/update.mli
- ocamlopt: copy.mli ---> copy.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/copy.mli
- ocamlopt: files.mli ---> files.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/files.mli
- ocamlopt: sortri.mli ---> sortri.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/sortri.mli
- ocamlopt: recon.mli ---> recon.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/recon.mli
- ocamlopt: transport.mli ---> transport.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/transport.mli
- ocamlopt: uicommon.mli ---> uicommon.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/uicommon.mli
- ocamlopt: stasher.mli ---> stasher.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/stasher.mli
- ocamlopt: uitext.mli ---> uitext.cmi
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/uitext.mli
- ocamlopt: ubase/uarg.ml ---> ubase/uarg.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/ubase/uarg.ml
- ocamlopt: ubase/proplist.ml ---> ubase/proplist.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/ubase/proplist.ml
- ocamlopt: features.ml ---> features.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/features.ml
- ocamlopt: terminal.ml ---> terminal.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/terminal.ml
- ocamlopt: propsdata.ml ---> propsdata.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/propsdata.ml
- ocamlopt: lock.ml ---> lock.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/lock.ml
- ocamlopt: fsmonitor/inotify/watcher.ml ---> fsmonitor/inotify/watcher.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -I fsmonitor -I fsmonitor/inotify -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/fsmonitor/inotify/watcher.ml
- ocamlopt: ubase/prefs.ml ---> ubase/prefs.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/ubase/prefs.ml
- Linking unison-fsmonitor
- ocamlopt -verbose -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -I fsmonitor -I fsmonitor/inotify  -o unison-fsmonitor   unix.cmxa lwt/lwt.cmx lwt/pqueue.cmx lwt/generic/lwt_unix_impl.cmx lwt/lwt_unix.cmx fsmonitor/inotify/inotify.cmx fsmonitor/inotify/lwt_inotify.cmx fsmonitor/watchercommon.cmx fsmonitor/inotify/watcher.cmx fsmonitor/inotify/inotify_stubs.o -cclib -lutil
- + as  -o '/opam-tmp/camlstartupb2f3a0.o' '/opam-tmp/camlstartupaebe1d.s'
- + gcc  -Wl,-E  -o 'unison-fsmonitor'  '-Llwt' '-Lubase' '-Lsystem' '-L/home/opam/.opam/5.4/lib/ocaml/unix' '-L/home/opam/.opam/5.4/lib/ocaml/str' '-Lsystem/generic' '-Llwt/generic' '-Lfsmonitor' '-Lfsmonitor/inotify' '-L/home/opam/.opam/5.4/lib/ocaml'  '/opam-tmp/camlstartupb2f3a0.o' '/home/opam/.opam/5.4/lib/ocaml/std_exit.o' 'fsmonitor/inotify/watcher.o' 'fsmonitor/watchercommon.o' 'fsmonitor/inotify/lwt_inotify.o' 'fsmonitor/inotify/inotify.o' 'lwt/lwt_unix.o' 'lwt/generic/lwt_unix_impl.o' 'lwt/pqueue.o' 'lwt/lwt.o' '/home/opam/.opam/5.4/lib/ocaml/unix/unix.a' '/home/opam/.opam/5.4/lib/ocaml/stdlib.a' '-lunixnat' 'fsmonitor/inotify/inotify_stubs.o' '-lutil' '/home/opam/.opam/5.4/lib/ocaml/libasmrun.a'   -lm  -lpthread
- ocamlopt: ubase/trace.ml ---> ubase/trace.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/ubase/trace.ml
- ocamlopt: clroot.ml ---> clroot.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/clroot.ml
- ocamlopt: uutil.ml ---> uutil.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/uutil.ml
- ocamlopt: case.ml ---> case.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/case.ml
- ocamlopt: abort.ml ---> abort.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/abort.ml
- ocamlopt: transfer.ml ---> transfer.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/transfer.ml
- ocamlopt: pred.ml ---> pred.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/pred.ml
- ocamlopt: name.ml ---> name.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/name.ml
- ocamlopt: path.ml ---> path.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/path.ml
- ocamlopt: fspath.ml ---> fspath.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/fspath.ml
- ocamlopt: fs.ml ---> fs.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/fs.ml
- ocamlopt: fswatch.ml ---> fswatch.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/fswatch.ml
- ocamlopt: fingerprint.ml ---> fingerprint.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/fingerprint.ml
- ocamlopt: osx.ml ---> osx.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/osx.ml
- ocamlopt: props.ml ---> props.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/props.ml
- ocamlopt: fileinfo.ml ---> fileinfo.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/fileinfo.ml
- ocamlopt: os.ml ---> os.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/os.ml
- ocamlopt: common.ml ---> common.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/common.ml
- ocamlopt: xferhint.ml ---> xferhint.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/xferhint.ml
- ocamlopt: fpcache.ml ---> fpcache.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/fpcache.ml
- ocamlopt: remote.ml ---> remote.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/remote.ml
- ocamlopt: sortri.ml ---> sortri.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/sortri.ml
- File "/home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/remote.ml", line 708, characters 59-66:
- 708 |   V0 : ('a -> 'compat) * ('compat -> 'a) -> 'a convV0Fun [@unboxed]
-                                                                  ^^^^^^^
- Warning 53 [misplaced-attribute]: the unboxed attribute cannot appear in this context
- ocamlopt: external.ml ---> external.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/external.ml
- ocamlopt: negotiate.ml ---> negotiate.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/negotiate.ml
- ocamlopt: globals.ml ---> globals.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/globals.ml
- ocamlopt: fswatchold.ml ---> fswatchold.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/fswatchold.ml
- ocamlopt: update.ml ---> update.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/update.ml
- ocamlopt: copy.ml ---> copy.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/copy.ml
- ocamlopt: recon.ml ---> recon.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/recon.ml
- ocamlopt: stasher.ml ---> stasher.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/stasher.ml
- ocamlopt: files.ml ---> files.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/files.ml
- ocamlopt: transport.ml ---> transport.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/transport.ml
- ocamlopt: uicommon.ml ---> uicommon.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/uicommon.ml
- ocamlopt: uitext.ml ---> uitext.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/uitext.ml
- ocamlopt: test.ml ---> test.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/test.ml
- ocamlopt: main.ml ---> main.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/main.ml
- ocamlopt: linktext.ml ---> linktext.cmx
- ocamlopt -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic -c /home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src/linktext.ml
- Linking unison
- ocamlopt -verbose -g -I lwt -I ubase -I system -I +unix -I +str -I system/generic -I lwt/generic  -o unison   unix.cmxa str.cmxa ubase/umarshal.cmx ubase/rx.cmx unicode_tables.cmx unicode.cmx bytearray.cmx system/system_generic.cmx system/generic/system_impl.cmx system.cmx ubase/projectInfo.cmx ubase/myMap.cmx ubase/safelist.cmx ubase/util.cmx ubase/uarg.cmx ubase/prefs.cmx ubase/trace.cmx ubase/proplist.cmx lwt/pqueue.cmx lwt/lwt.cmx lwt/lwt_util.cmx lwt/generic/lwt_unix_impl.cmx lwt/lwt_unix.cmx features.cmx uutil.cmx case.cmx pred.cmx terminal.cmx fileutil.cmx name.cmx path.cmx fspath.cmx fs.cmx fingerprint.cmx abort.cmx osx.cmx fswatch.cmx propsdata.cmx props.cmx fileinfo.cmx os.cmx lock.cmx clroot.cmx common.cmx tree.cmx checksum.cmx transfer.cmx xferhint.cmx remote.cmx external.cmx negotiate.cmx globals.cmx fswatchold.cmx fpcache.cmx update.cmx copy.cmx stasher.cmx files.cmx sortri.cmx recon.cmx transport.cmx strings.cmx uicommon.cmx uitext.cmx test.cmx main.cmx linktext.cmx osxsupport.o pty.o bytearray_stubs.o hash_compat.o props_xattr.o props_acl.o -cclib -lutil
- + as  -o '/opam-tmp/camlstartup195aaf.o' '/opam-tmp/camlstartup1d2462.s'
- + gcc  -Wl,-E  -o 'unison'  '-Llwt' '-Lubase' '-Lsystem' '-L/home/opam/.opam/5.4/lib/ocaml/unix' '-L/home/opam/.opam/5.4/lib/ocaml/str' '-Lsystem/generic' '-Llwt/generic' '-L/home/opam/.opam/5.4/lib/ocaml'  '/opam-tmp/camlstartup195aaf.o' '/home/opam/.opam/5.4/lib/ocaml/std_exit.o' 'linktext.o' 'main.o' 'test.o' 'uitext.o' 'uicommon.o' 'strings.o' 'transport.o' 'recon.o' 'sortri.o' 'files.o' 'stasher.o' 'copy.o' 'update.o' 'fpcache.o' 'fswatchold.o' 'globals.o' 'negotiate.o' 'external.o' 'remote.o' 'xferhint.o' 'transfer.o' 'checksum.o' 'tree.o' 'common.o' 'clroot.o' 'lock.o' 'os.o' 'fileinfo.o' 'props.o' 'propsdata.o' 'fswatch.o' 'osx.o' 'abort.o' 'fingerprint.o' 'fs.o' 'fspath.o' 'path.o' 'name.o' 'fileutil.o' 'terminal.o' 'pred.o' 'case.o' 'uutil.o' 'features.o' 'lwt/lwt_unix.o' 'lwt/generic/lwt_unix_impl.o' 'lwt/lwt_util.o' 'lwt/lwt.o' 'lwt/pqueue.o' 'ubase/proplist.o' 'ubase/trace.o' 'ubase/prefs.o' 'ubase/uarg.o' 'ubase/util.o' 'ubase/safelist.o' 'ubase/myMap.o' 'ubase/projectInfo.o' 'system.o' 'system/generic/system_impl.o' 'system/system_generic.o' 'bytearray.o' 'unicode.o' 'unicode_tables.o' 'ubase/rx.o' 'ubase/umarshal.o' '/home/opam/.opam/5.4/lib/ocaml/str/str.a' '/home/opam/.opam/5.4/lib/ocaml/unix/unix.a' '/home/opam/.opam/5.4/lib/ocaml/stdlib.a' '-lcamlstrnat' '-lunixnat' 'osxsupport.o' 'pty.o' 'bytearray_stubs.o' 'hash_compat.o' 'props_xattr.o' 'props_acl.o' '-lutil' '/home/opam/.opam/5.4/lib/ocaml/libasmrun.a'   -lm  -lpthread
- make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src'
- make -C man
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/man'
- ../src/unison -prefsman short > opt_short.tmp
- ../src/unison -prefsman full > opt_full.tmp
- sed -e '/@OPTIONS_SHORT@/r ./opt_short.tmp' \
- 	-e '/@OPTIONS_SHORT@/d' \
- 	-e '/@OPTIONS_FULL@/r ./opt_full.tmp' \
- 	-e '/@OPTIONS_FULL@/d' unison.1.in > unison.1
- make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/man'
-> compiled  unison.2.53.4
-> removed   unison.2.53.4
Processing  4/4: [unison: make install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "make" "NATIVE=true" "PREFIX=/home/opam/.opam/5.4" "install" (CWD=/home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4)
- make -C src
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src'
- Building for Unix
- NATIVE = true
- GUI library lablgtk not found. GTK GUI will not be built.
- Not on macOS. macOS native GUI will not be built.
- make[1]: Nothing to be done for 'all'.
- make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/src'
- make -C man
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/man'
- make[1]: Nothing to be done for 'all'.
- make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/unison.2.53.4/man'
- install -d "/home/opam/.opam/5.4/bin"
- install src/unison "/home/opam/.opam/5.4/bin/unison"
- install src/unison-fsmonitor "/home/opam/.opam/5.4/bin/unison-fsmonitor"
- install -d "/home/opam/.opam/5.4/share/man/man1"
- install -m 644 man/unison.1 "/home/opam/.opam/5.4/share/man/man1/unison.1"
-> installed unison.2.53.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 07:04.12 ---> saved as "1296d30f076da8de927555c7935157e76fae82f31dc121c35aa6785d1826a71d"
Job succeeded
2026-03-02 07:04.34: Job succeeded