(for PR #29582)

2026-03-25 13:13.15: New job: test b0.0.0.5 with ocaml-compiler.5.4.0~beta2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29582/head (fa5fb3a6a806e832e4c7791145889a6bbe8b64ef)
                              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/29582/head" && git reset --hard fa5fb3a6
git fetch origin master
git merge --no-edit 2f93e9d4614d6376ed929fc2cee7c59cb9d5833b
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
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-compiler.5.4.0~beta2 5.4.0~beta2
RUN opam reinstall --update-invariant ocaml-compiler.5.4.0~beta2; \
    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-compiler.5.4.0~beta2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall b0.0.0.5; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'b0.0.0.5' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test b0.0.0.5) || true
RUN opam reinstall --with-test --verbose b0.0.0.5; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'b0.0.0.5' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

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

2026-03-25 13:13.15: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6-ocaml-compiler.5.4.0~beta2-b0.0.0.5-fa5fb3a6a806e832e4c7791145889a6bbe8b64ef"
2026-03-25 13:13.15: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
 (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-compiler.5.4.0~beta2 5.4.0~beta2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall --update-invariant ocaml-compiler.5.4.0~beta2;\
             \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-compiler.5.4.0~beta2' && 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 b0.0.0.5;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-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\" != 'b0.0.0.5' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test b0.0.0.5) || true"))
 (run (shell  "opam reinstall --with-test --verbose b0.0.0.5;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-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\" != 'b0.0.0.5' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-03-25 13:13.15: Waiting for resource in pool OCluster
2026-03-25 15:03.15: Waiting for worker…
2026-03-25 15:10.12: Got resource from pool OCluster
Building on phoebe.caelum.ci.dev
All commits already cached
Updating files:  74% (13731/18520)
Updating files:  75% (13890/18520)
Updating files:  76% (14076/18520)
Updating files:  77% (14261/18520)
Updating files:  78% (14446/18520)
Updating files:  79% (14631/18520)
Updating files:  80% (14816/18520)
Updating files:  81% (15002/18520)
Updating files:  82% (15187/18520)
Updating files:  83% (15372/18520)
Updating files:  84% (15557/18520)
Updating files:  85% (15742/18520)
Updating files:  86% (15928/18520)
Updating files:  87% (16113/18520)
Updating files:  88% (16298/18520)
Updating files:  89% (16483/18520)
Updating files:  90% (16668/18520)
Updating files:  91% (16854/18520)
Updating files:  92% (17039/18520)
Updating files:  93% (17224/18520)
Updating files:  94% (17409/18520)
Updating files:  95% (17594/18520)
Updating files:  96% (17780/18520)
Updating files:  97% (17965/18520)
Updating files:  98% (18150/18520)
Updating files:  99% (18335/18520)
Updating files: 100% (18520/18520)
Updating files: 100% (18520/18520), done.
HEAD is now at 2f93e9d461 Merge pull request #29592 from dinosaure/release-miou-v0.5.5
Merge made by the 'ort' strategy.
 packages/ocaml-compiler/ocaml-compiler.5.3.0/opam      |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.3/opam        |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.0/opam      |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam    |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam     |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam     |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam  |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.1/opam      |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4/opam        |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.5.0~alpha1/opam    |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.5/opam        |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.6/opam        |  5 ++++-
 packages/ocaml-option-llvm/ocaml-option-llvm.1/opam    | 18 ++++++++++++++++++
 .../ocaml-options-vanilla/ocaml-options-vanilla.1/opam |  1 +
 packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam |  2 ++
 15 files changed, 69 insertions(+), 12 deletions(-)
 create mode 100644 packages/ocaml-option-llvm/ocaml-option-llvm.1/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6' locally
docker.io/ocaml/opam@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6: Pulling from ocaml/opam
866771c43bf5: Already exists
1e49bea09367: Already exists
e793768537e6: Already exists
ed323d3d481a: Already exists
7df34a5cd5f1: Already exists
fd712d3eb935: Already exists
4b9fb8c99118: Already exists
9d9a01948b94: Already exists
0f1514f90b32: Already exists
e1ec5a753447: Already exists
03cc323e2f71: Already exists
c09c08ea9749: Already exists
b36b619f8e6b: Already exists
195344ca5274: Already exists
228ee78582a6: Already exists
504bde1c25b3: Already exists
9d8b1356c89f: Already exists
9d8b1356c89f: Already exists
568fb6dda155: Already exists
c499c9198aea: Already exists
048e5e358118: Already exists
871ca48eb45d: Already exists
4f4fb700ef54: Already exists
a5a2568b9df9: Already exists
068cf3106ac8: Already exists
559f54ec9b29: Already exists
798ffd96fde5: Already exists
e9a891bf80d7: Already exists
d720cfe12674: Already exists
c81c932f4a91: Already exists
79f24fa3bb11: Already exists
8c1debcd8c20: Already exists
1bb2cfea7250: Already exists
2b3d3ca75e4c: Already exists
557cacaf263c: Already exists
d10483022eef: Already exists
7b62a90d8223: Already exists
28ce8ea66e72: Already exists
d975909ea717: Already exists
5c215c69c247: Already exists
e7c082452a54: Already exists
f6cbd774d654: Already exists
b40777a84cca: Already exists
7bb5edb9c889: Already exists
020670bcefab: Already exists
46df05d0db83: Already exists
45bde7b38933: Already exists
b4d63fa01ada: Already exists
Digest: sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
Status: Downloaded newer image for ocaml/opam@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
2026-03-25 15:10.22 ---> using "41eea30e3f639c18d8cf57c309ec76919ec7b2398036f7e41744cbce59a133d3" 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-25 15:10.22 ---> using "4ad7f430d684c40cedc651267e0edf890c044fe4e624255de377c471b4526bac" from cache

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
  - you won't be able to use mercurial repositories unless you install the hg command on your system.
  - you won't be able to use darcs repositories unless you install the darcs command on your system.

This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [Y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-25 15:10.22 ---> using "71fa58e52457bf6a7eac317c6a6ef1e2bdf53e533a1e4fd04b90c9349347e038" 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-25 15:10.22 ---> using "ed86081cb38ca125a920162bfe6a4bb7b1c27c6973c917551687c83cf44dbfdf" 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-25 15:10.22 ---> using "04a48515eea40c32b96da0c71328b4bba0edb66eed83d4f78554b39097cf1f25" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-25 15:10.24 ---> using "034191995d824300f355cbba1072d6e5fe6d815701f24eb84d82c75009d73829" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-25 15:10.24 ---> using "8232259ea36ea8848dc29ae49703acf145fd27b40f3ebd8fb785db7f8da1b9d4" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- 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 trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [114 kB]
- Fetched 10.0 MB in 2s (4723 kB/s)
- Reading package lists...
- 
2026-03-25 15:10.24 ---> using "a75782a571df4fc8f8933e94c681af881015ee87cdd4c652f8ae9af1d8cfad37" from cache

/home/opam: (run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0~beta2 5.4.0~beta2"))
ocaml-compiler is now pinned to version 5.4.0~beta2
2026-03-25 15:10.24 ---> using "6a5005f94ec93c4cfbc555c3d261f1a9e44ce02f7cf737f7e023902aa066afba" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall --update-invariant ocaml-compiler.5.4.0~beta2;\
                        \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-compiler.5.4.0~beta2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
ocaml-compiler.5.4.0~beta2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== remove 1 package
  - remove    ocaml-base-compiler 5.4.0 (pinned)                [conflicts with ocaml-compiler]
=== downgrade 1 package
  - downgrade ocaml-compiler      5.4.0 to 5.4.0~beta2 (pinned)
=== recompile 6 packages
  - recompile base-domains        base                          [uses ocaml]
  - recompile base-effects        base                          [uses ocaml]
  - recompile base-nnp            base                          [uses base-domains]
  - recompile ocaml               5.4.0                         [uses ocaml-base-compiler]
  - recompile ocaml-config        3                             [uses ocaml-base-compiler]
  - recompile opam-depext         1.2.3                         [uses ocaml]
=== install 1 package
  - install   ocaml-variants      5.4.0~beta2+options           [required by ocaml]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-compiler.5.4.0~beta2  (cached)
-> retrieved ocaml-config.3  (cached)
-> retrieved opam-depext.1.2.3  (cached)
-> removed   base-effects.base
-> removed   base-nnp.base
-> removed   base-domains.base
-> removed   opam-depext.1.2.3
-> removed   ocaml.5.4.0
-> removed   ocaml-config.3
-> removed   ocaml-base-compiler.5.4.0
-> removed   ocaml-compiler.5.4.0
-> installed ocaml-compiler.5.4.0~beta2
-> installed ocaml-variants.5.4.0~beta2+options
-> installed ocaml-config.3
-> installed ocaml.5.4.0
-> installed base-domains.base
-> installed base-effects.base
-> installed base-nnp.base
-> installed opam-depext.1.2.3
[NOTE] Switch invariant was updated to ["ocaml-variants" {= "5.4.0~beta2+options"}]
       Use `opam switch set-invariant' to change it.
Done.

<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead
# To update the current shell environment, run: eval $(opam env)
2026-03-25 15:10.24 ---> using "e030a93f7882e2604088ed6928ceb441b94d1a6a8f699222926e1ee68fd1dd8f" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall b0.0.0.5;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-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\" != 'b0.0.0.5' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
b0.0.0.5 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 5 packages
  - install b0         0.0.5
  - install cmdliner   2.1.0  [required by b0]
  - install ocamlbuild 0.16.1 [required by b0]
  - install ocamlfind  1.9.8  [required by b0]
  - install topkg      1.1.1  [required by b0]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved b0.0.0.5  (cached)
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved topkg.1.1.1  (cached)
-> installed ocamlfind.1.9.8
-> installed cmdliner.2.1.0
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed b0.0.0.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 15:11.38 ---> saved as "fd36a30dcbe98dac469b161fd9b486f2f81f19d8038758a976dc90d5b995c6cf"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved b0.0.0.5  (https://opam.ocaml.org/cache)
-> removed   b0.0.0.5
-> installed b0.0.0.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 15:12.38 ---> saved as "9652435f01faf20e8f8f11f65fc45e594943ed9fb7d42a369b1e2c57151bb363"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [b0.0.0.5: extract]
-> retrieved b0.0.0.5  (cached)
Processing  2/4: [b0: ocaml build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "false" (CWD=/home/opam/.opam/5.4/.opam-switch/build/b0.0.0.5)
- + ocamlfind ocamlc -config
- + ocamlfind ocamlopt -I +unix unix.cmxa -I /home/opam/.opam/5.4/lib/ocamlbuild /home/opam/.opam/5.4/lib/ocamlbuild/ocamlbuildlib.cmxa -linkpkg myocamlbuild.ml /home/opam/.opam/5.4/lib/ocamlbuild/ocamlbuild.cmx -o myocamlbuild
- + ocamlfind ocamlc -config
- + ocamlfind ocamlc -g -package cmdliner -package unix -c src/std/b0_stubs_cpu.c
- + ocamlfind ocamlc -g -package cmdliner -package unix -c src/std/b0_stubs_time.c
- + ocamlfind ocamlc -g -package cmdliner -package unix -c src/std/b0_stubs_hash.c
- + ocamlfind ocamlc -g -package cmdliner -package unix -c src/std/b0_stubs_realpath.c
- + mv b0_stubs_realpath.o src/std/b0_stubs_realpath.o
- + ocamlfind ocamlc -g -package cmdliner -package unix -c src/std/vendor/xxhash.c
- + mv b0_stubs_cpu.o src/std/b0_stubs_cpu.o
- + mv b0_stubs_time.o src/std/b0_stubs_time.o
- + mv b0_stubs_hash.o src/std/b0_stubs_hash.o
- + mv xxhash.o src/std/vendor/xxhash.o
- + ocamlfind ocamlmklib -o src/std/b0_stubs -g src/std/b0_stubs_cpu.o src/std/b0_stubs_time.o src/std/b0_stubs_hash.o src/std/b0_stubs_realpath.o src/std/vendor/xxhash.o
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/std/b0_std.ml > src/std/b0_std.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/std/b0_std.mli > src/std/b0_std.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/std -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/b00/kit -o src/std/b0_std.cmi src/std/b0_std.mli
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/std -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/b00/kit -o src/std/b0_std.cmx src/std/b0_std.ml
- + ocamlfind ocamlopt -a -cclib -lb0_stubs -cclib -lrt -package cmdliner -package unix -I src/std src/std/b0_std.cmx -o src/std/b0_std.cmxa
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/std -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/b00/kit -o src/std/b0_std.cmo src/std/b0_std.ml
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/b000.ml > src/b00/b000.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/b000.mli > src/b00/b000.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00 -I examples -I src -I test -I tool-b0 -I tools -I src/kit -I src/std -I src/b00/kit -o src/b00/b000.cmi src/b00/b000.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/b000_conv.ml > src/b00/b000_conv.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/b000_conv.mli > src/b00/b000_conv.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00 -I examples -I src -I test -I tool-b0 -I tools -I src/kit -I src/std -I src/b00/kit -o src/b00/b000_conv.cmi src/b00/b000_conv.mli
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/b00 -I examples -I src -I test -I tool-b0 -I tools -I src/kit -I src/std -I src/b00/kit -o src/b00/b000.cmx src/b00/b000.ml
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/b00.ml > src/b00/b00.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/b00.mli > src/b00/b00.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00 -I examples -I src -I test -I tool-b0 -I tools -I src/kit -I src/std -I src/b00/kit -o src/b00/b00.cmi src/b00/b00.mli
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/b00 -I examples -I src -I test -I tool-b0 -I tools -I src/kit -I src/std -I src/b00/kit -o src/b00/b000_conv.cmx src/b00/b000_conv.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/b00 -I examples -I src -I test -I tool-b0 -I tools -I src/kit -I src/std -I src/b00/kit -o src/b00/b00.cmx src/b00/b00.ml
- + ocamlfind ocamlopt -a -package cmdliner -package unix -I src/b00 src/b00/b000.cmx src/b00/b000_conv.cmx src/b00/b00.cmx -o src/b00/b0_b00.cmxa
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00 -I examples -I src -I test -I tool-b0 -I tools -I src/kit -I src/std -I src/b00/kit -o src/b00/b000.cmo src/b00/b000.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00 -I examples -I src -I test -I tool-b0 -I tools -I src/kit -I src/std -I src/b00/kit -o src/b00/b000_conv.cmo src/b00/b000_conv.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00 -I examples -I src -I test -I tool-b0 -I tools -I src/kit -I src/std -I src/b00/kit -o src/b00/b00.cmo src/b00/b00.ml
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_cli.ml > src/b00/kit/b00_cli.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_cli.mli > src/b00/kit/b00_cli.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_cli.cmi src/b00/kit/b00_cli.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_serialk_json.ml > src/b00/kit/b00_serialk_json.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_serialk_json.mli > src/b00/kit/b00_serialk_json.mli.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_serialk_text.mli > src/b00/kit/b00_serialk_text.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_serialk_text.cmi src/b00/kit/b00_serialk_text.mli
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_serialk_json.cmi src/b00/kit/b00_serialk_json.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_serialk_text.ml > src/b00/kit/b00_serialk_text.ml.depends
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_serialk_text.cmx src/b00/kit/b00_serialk_text.ml
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_trace.ml > src/b00/kit/b00_trace.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_trace.mli > src/b00/kit/b00_trace.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_trace.cmi src/b00/kit/b00_trace.mli
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_serialk_json.cmx src/b00/kit/b00_serialk_json.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_trace.cmx src/b00/kit/b00_trace.ml
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_base64.ml > src/b00/kit/b00_base64.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_base64.mli > src/b00/kit/b00_base64.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_base64.cmi src/b00/kit/b00_base64.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_cmark.ml > src/b00/kit/b00_cmark.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_cmark.mli > src/b00/kit/b00_cmark.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_cmark.cmi src/b00/kit/b00_cmark.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_htmlg.ml > src/b00/kit/b00_htmlg.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_htmlg.mli > src/b00/kit/b00_htmlg.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_htmlg.cmi src/b00/kit/b00_htmlg.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_lines.ml > src/b00/kit/b00_lines.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_lines.mli > src/b00/kit/b00_lines.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_lines.cmi src/b00/kit/b00_lines.mli
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_htmlg.cmx src/b00/kit/b00_htmlg.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_lines.cmx src/b00/kit/b00_lines.ml
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_editor.ml > src/b00/kit/b00_editor.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_editor.mli > src/b00/kit/b00_editor.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_editor.cmi src/b00/kit/b00_editor.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_fexts.ml > src/b00/kit/b00_fexts.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_fexts.mli > src/b00/kit/b00_fexts.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_fexts.cmi src/b00/kit/b00_fexts.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_findex.ml > src/b00/kit/b00_findex.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_findex.mli > src/b00/kit/b00_findex.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_findex.cmi src/b00/kit/b00_findex.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_github.ml > src/b00/kit/b00_github.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_github.mli > src/b00/kit/b00_github.mli.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_http.mli > src/b00/kit/b00_http.mli.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_vcs.mli > src/b00/kit/b00_vcs.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_http.cmi src/b00/kit/b00_http.mli
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_vcs.cmi src/b00/kit/b00_vcs.mli
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_github.cmi src/b00/kit/b00_github.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_http.ml > src/b00/kit/b00_http.ml.depends
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_cli.cmx src/b00/kit/b00_cli.ml
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_vcs.ml > src/b00/kit/b00_vcs.ml.depends
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_http.cmx src/b00/kit/b00_http.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_vcs.cmx src/b00/kit/b00_vcs.ml
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_ocaml.ml > src/b00/kit/b00_ocaml.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_ocaml.mli > src/b00/kit/b00_ocaml.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_ocaml.cmi src/b00/kit/b00_ocaml.mli
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_fexts.cmx src/b00/kit/b00_fexts.ml
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_jsoo.ml > src/b00/kit/b00_jsoo.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_jsoo.mli > src/b00/kit/b00_jsoo.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_jsoo.cmi src/b00/kit/b00_jsoo.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_odoc.ml > src/b00/kit/b00_odoc.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_odoc.mli > src/b00/kit/b00_odoc.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_odoc.cmi src/b00/kit/b00_odoc.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_os.ml > src/b00/kit/b00_os.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_os.mli > src/b00/kit/b00_os.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_os.cmi src/b00/kit/b00_os.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_pager.ml > src/b00/kit/b00_pager.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_pager.mli > src/b00/kit/b00_pager.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_pager.cmi src/b00/kit/b00_pager.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_pdf_viewer.ml > src/b00/kit/b00_pdf_viewer.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_pdf_viewer.mli > src/b00/kit/b00_pdf_viewer.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_pdf_viewer.cmi src/b00/kit/b00_pdf_viewer.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_rsync.ml > src/b00/kit/b00_rsync.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_rsync.mli > src/b00/kit/b00_rsync.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_rsync.cmi src/b00/kit/b00_rsync.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_serialk_sexp.ml > src/b00/kit/b00_serialk_sexp.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_serialk_sexp.mli > src/b00/kit/b00_serialk_sexp.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_serialk_sexp.cmi src/b00/kit/b00_serialk_sexp.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_www_browser.ml > src/b00/kit/b00_www_browser.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b00/kit/b00_www_browser.mli > src/b00/kit/b00_www_browser.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_www_browser.cmi src/b00/kit/b00_www_browser.mli
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_base64.cmx src/b00/kit/b00_base64.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_cmark.cmx src/b00/kit/b00_cmark.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_editor.cmx src/b00/kit/b00_editor.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_findex.cmx src/b00/kit/b00_findex.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_github.cmx src/b00/kit/b00_github.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_ocaml.cmx src/b00/kit/b00_ocaml.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_jsoo.cmx src/b00/kit/b00_jsoo.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_odoc.cmx src/b00/kit/b00_odoc.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_os.cmx src/b00/kit/b00_os.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_pager.cmx src/b00/kit/b00_pager.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_pdf_viewer.cmx src/b00/kit/b00_pdf_viewer.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_rsync.cmx src/b00/kit/b00_rsync.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_serialk_sexp.cmx src/b00/kit/b00_serialk_sexp.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_www_browser.cmx src/b00/kit/b00_www_browser.ml
- + ocamlfind ocamlopt -a -package cmdliner -package unix -I src/b00/kit src/b00/kit/b00_serialk_text.cmx src/b00/kit/b00_serialk_json.cmx src/b00/kit/b00_trace.cmx src/b00/kit/b00_cli.cmx src/b00/kit/b00_base64.cmx src/b00/kit/b00_htmlg.cmx src/b00/kit/b00_lines.cmx src/b00/kit/b00_cmark.cmx src/b00/kit/b00_editor.cmx src/b00/kit/b00_fexts.cmx src/b00/kit/b00_findex.cmx src/b00/kit/b00_http.cmx src/b00/kit/b00_vcs.cmx src/b00/kit/b00_github.cmx src/b00/kit/b00_ocaml.cmx src/b00/kit/b00_jsoo.cmx src/b00/kit/b00_odoc.cmx src/b00/kit/b00_os.cmx src/b00/kit/b00_pager.cmx src/b00/kit/b00_pdf_viewer.cmx src/b00/kit/b00_rsync.cmx src/b00/kit/b00_serialk_sexp.cmx src/b00/kit/b00_www_browser.cmx -o src/b00/kit/b0_b00_kit.cmxa
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_cli.cmo src/b00/kit/b00_cli.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_base64.cmo src/b00/kit/b00_base64.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_cmark.cmo src/b00/kit/b00_cmark.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_editor.cmo src/b00/kit/b00_editor.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_fexts.cmo src/b00/kit/b00_fexts.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_findex.cmo src/b00/kit/b00_findex.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_github.cmo src/b00/kit/b00_github.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_htmlg.cmo src/b00/kit/b00_htmlg.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_http.cmo src/b00/kit/b00_http.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_lines.cmo src/b00/kit/b00_lines.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_ocaml.cmo src/b00/kit/b00_ocaml.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_jsoo.cmo src/b00/kit/b00_jsoo.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_odoc.cmo src/b00/kit/b00_odoc.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_os.cmo src/b00/kit/b00_os.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_pager.cmo src/b00/kit/b00_pager.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_pdf_viewer.cmo src/b00/kit/b00_pdf_viewer.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_rsync.cmo src/b00/kit/b00_rsync.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_serialk_json.cmo src/b00/kit/b00_serialk_json.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_serialk_sexp.cmo src/b00/kit/b00_serialk_sexp.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_serialk_text.cmo src/b00/kit/b00_serialk_text.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_trace.cmo src/b00/kit/b00_trace.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_vcs.cmo src/b00/kit/b00_vcs.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/b00/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -o src/b00/kit/b00_www_browser.cmo src/b00/kit/b00_www_browser.ml
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b0_dir.ml > src/b0_dir.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b0_dir.mli > src/b0_dir.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src -I examples -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o src/b0_dir.cmi src/b0_dir.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b0_meta.ml > src/b0_meta.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b0_meta.mli > src/b0_meta.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src -I examples -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o src/b0_meta.cmi src/b0_meta.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b0_def.ml > src/b0_def.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b0_def.mli > src/b0_def.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src -I examples -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o src/b0_def.cmi src/b0_def.mli
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src -I examples -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o src/b0_meta.cmx src/b0_meta.ml
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b0_build.ml > src/b0_build.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b0_build.mli > src/b0_build.mli.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b0_unit.mli > src/b0_unit.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src -I examples -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o src/b0_unit.cmi src/b0_unit.mli
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src -I examples -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o src/b0_build.cmi src/b0_build.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b0_unit.ml > src/b0_unit.ml.depends
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src -I examples -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o src/b0_def.cmx src/b0_def.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src -I examples -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o src/b0_dir.cmx src/b0_dir.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src -I examples -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o src/b0_unit.cmx src/b0_unit.ml
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b0_pack.ml > src/b0_pack.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b0_pack.mli > src/b0_pack.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src -I examples -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o src/b0_pack.cmi src/b0_pack.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b0_cli.ml > src/b0_cli.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b0_cli.mli > src/b0_cli.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src -I examples -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o src/b0_cli.cmi src/b0_cli.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b0_cmdlet.ml > src/b0_cmdlet.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b0_cmdlet.mli > src/b0_cmdlet.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src -I examples -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o src/b0_cmdlet.cmi src/b0_cmdlet.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b0_file.ml > src/b0_file.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b0_file.mli > src/b0_file.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src -I examples -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o src/b0_file.cmi src/b0_file.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b0_driver.ml > src/b0_driver.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/b0_driver.mli > src/b0_driver.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src -I examples -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o src/b0_driver.cmi src/b0_driver.mli
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src -I examples -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o src/b0_file.cmx src/b0_file.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src -I examples -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o src/b0_build.cmx src/b0_build.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src -I examples -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o src/b0_pack.cmx src/b0_pack.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src -I examples -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o src/b0_cli.cmx src/b0_cli.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src -I examples -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o src/b0_cmdlet.cmx src/b0_cmdlet.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src -I examples -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o src/b0_driver.cmx src/b0_driver.ml
- + ocamlfind ocamlopt -a -package cmdliner -package unix -I src src/b0_dir.cmx src/b0_meta.cmx src/b0_def.cmx src/b0_unit.cmx src/b0_build.cmx src/b0_pack.cmx src/b0_cli.cmx src/b0_cmdlet.cmx src/b0_file.cmx src/b0_driver.cmx -o src/b0.cmxa
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src -I examples -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o src/b0_dir.cmo src/b0_dir.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src -I examples -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o src/b0_meta.cmo src/b0_meta.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src -I examples -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o src/b0_def.cmo src/b0_def.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src -I examples -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o src/b0_build.cmo src/b0_build.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src -I examples -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o src/b0_unit.cmo src/b0_unit.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src -I examples -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o src/b0_pack.cmo src/b0_pack.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src -I examples -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o src/b0_cli.cmo src/b0_cli.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src -I examples -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o src/b0_cmdlet.cmo src/b0_cmdlet.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src -I examples -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o src/b0_file.cmo src/b0_file.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src -I examples -I test -I tool-b0 -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o src/b0_driver.cmo src/b0_driver.ml
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/kit/b0_kit.ml > src/kit/b0_kit.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/kit/b0_kit.mli > src/kit/b0_kit.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/std -I src/b00/kit -o src/kit/b0_kit.cmi src/kit/b0_kit.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/kit/b0_srcs.ml > src/kit/b0_srcs.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/kit/b0_srcs.mli > src/kit/b0_srcs.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/std -I src/b00/kit -o src/kit/b0_srcs.cmi src/kit/b0_srcs.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/kit/b0_ocaml.ml > src/kit/b0_ocaml.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/kit/b0_ocaml.mli > src/kit/b0_ocaml.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/std -I src/b00/kit -o src/kit/b0_ocaml.cmi src/kit/b0_ocaml.mli
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/std -I src/b00/kit -o src/kit/b0_srcs.cmx src/kit/b0_srcs.ml
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/kit/b0_ocaml_eco.ml > src/kit/b0_ocaml_eco.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/kit/b0_ocaml_eco.mli > src/kit/b0_ocaml_eco.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/std -I src/b00/kit -o src/kit/b0_ocaml_eco.cmi src/kit/b0_ocaml_eco.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/kit/b0_jsoo.ml > src/kit/b0_jsoo.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/kit/b0_jsoo.mli > src/kit/b0_jsoo.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/std -I src/b00/kit -o src/kit/b0_jsoo.cmi src/kit/b0_jsoo.mli
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/std -I src/b00/kit -o src/kit/b0_ocaml.cmx src/kit/b0_ocaml.ml
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/kit/b0_opam.ml > src/kit/b0_opam.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/kit/b0_opam.mli > src/kit/b0_opam.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/std -I src/b00/kit -o src/kit/b0_opam.cmi src/kit/b0_opam.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/kit/b0_release.ml > src/kit/b0_release.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/kit/b0_release.mli > src/kit/b0_release.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/std -I src/b00/kit -o src/kit/b0_release.cmi src/kit/b0_release.mli
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/std -I src/b00/kit -o src/kit/b0_release.cmx src/kit/b0_release.ml
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/kit/b0_expect.ml > src/kit/b0_expect.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules src/kit/b0_expect.mli > src/kit/b0_expect.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/std -I src/b00/kit -o src/kit/b0_expect.cmi src/kit/b0_expect.mli
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/std -I src/b00/kit -o src/kit/b0_kit.cmx src/kit/b0_kit.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/std -I src/b00/kit -o src/kit/b0_ocaml_eco.cmx src/kit/b0_ocaml_eco.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/std -I src/b00/kit -o src/kit/b0_jsoo.cmx src/kit/b0_jsoo.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/std -I src/b00/kit -o src/kit/b0_opam.cmx src/kit/b0_opam.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I src/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/std -I src/b00/kit -o src/kit/b0_expect.cmx src/kit/b0_expect.ml
- + ocamlfind ocamlopt -a -package cmdliner -package unix -I src/kit src/kit/b0_kit.cmx src/kit/b0_srcs.cmx src/kit/b0_ocaml.cmx src/kit/b0_ocaml_eco.cmx src/kit/b0_jsoo.cmx src/kit/b0_release.cmx src/kit/b0_opam.cmx src/kit/b0_expect.cmx -o src/kit/b0_kit.cmxa
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/std -I src/b00/kit -o src/kit/b0_kit.cmo src/kit/b0_kit.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/std -I src/b00/kit -o src/kit/b0_srcs.cmo src/kit/b0_srcs.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/std -I src/b00/kit -o src/kit/b0_ocaml.cmo src/kit/b0_ocaml.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/std -I src/b00/kit -o src/kit/b0_ocaml_eco.cmo src/kit/b0_ocaml_eco.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/std -I src/b00/kit -o src/kit/b0_jsoo.cmo src/kit/b0_jsoo.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/std -I src/b00/kit -o src/kit/b0_opam.cmo src/kit/b0_opam.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/std -I src/b00/kit -o src/kit/b0_release.cmo src/kit/b0_release.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I src/kit -I examples -I src -I test -I tool-b0 -I tools -I src/b00 -I src/std -I src/b00/kit -o src/kit/b0_expect.cmo src/kit/b0_expect.ml
- + ocamlfind ocamldep -package cmdliner -package unix -modules tool-b0/b0_b0.ml > tool-b0/b0_b0.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules tool-b0/b0_b0.mli > tool-b0/b0_b0.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_b0.cmi tool-b0/b0_b0.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules tool-b0/b0_cmd_build.ml > tool-b0/b0_cmd_build.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules tool-b0/b0_cmd_build.mli > tool-b0/b0_cmd_build.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_build.cmi tool-b0/b0_cmd_build.mli
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_b0.cmx tool-b0/b0_b0.ml
- + ocamlfind ocamldep -package cmdliner -package unix -modules tool-b0/b0_cmd_cmd.ml > tool-b0/b0_cmd_cmd.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules tool-b0/b0_cmd_cmd.mli > tool-b0/b0_cmd_cmd.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_cmd.cmi tool-b0/b0_cmd_cmd.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules tool-b0/b0_cmd_cmdlet.ml > tool-b0/b0_cmd_cmdlet.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules tool-b0/b0_cmd_cmdlet.mli > tool-b0/b0_cmd_cmdlet.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_cmdlet.cmi tool-b0/b0_cmd_cmdlet.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules tool-b0/b0_cmd_file.ml > tool-b0/b0_cmd_file.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules tool-b0/b0_cmd_file.mli > tool-b0/b0_cmd_file.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_file.cmi tool-b0/b0_cmd_file.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules tool-b0/b0_cmd_unit.ml > tool-b0/b0_cmd_unit.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules tool-b0/b0_cmd_unit.mli > tool-b0/b0_cmd_unit.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_unit.cmi tool-b0/b0_cmd_unit.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules tool-b0/b0_cmd_list.ml > tool-b0/b0_cmd_list.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules tool-b0/b0_cmd_list.mli > tool-b0/b0_cmd_list.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_list.cmi tool-b0/b0_cmd_list.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules tool-b0/b0_cmd_log.ml > tool-b0/b0_cmd_log.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules tool-b0/b0_cmd_log.mli > tool-b0/b0_cmd_log.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_log.cmi tool-b0/b0_cmd_log.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules tool-b0/b0_cmd_pack.ml > tool-b0/b0_cmd_pack.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules tool-b0/b0_cmd_pack.mli > tool-b0/b0_cmd_pack.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_pack.cmi tool-b0/b0_cmd_pack.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules tool-b0/b0_cmd_delete.ml > tool-b0/b0_cmd_delete.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules tool-b0/b0_cmd_delete.mli > tool-b0/b0_cmd_delete.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_delete.cmi tool-b0/b0_cmd_delete.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules tool-b0/b0_cmd_scope.ml > tool-b0/b0_cmd_scope.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules tool-b0/b0_cmd_scope.mli > tool-b0/b0_cmd_scope.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_scope.cmi tool-b0/b0_cmd_scope.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules tool-b0/b0_cmd_root.ml > tool-b0/b0_cmd_root.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules tool-b0/b0_cmd_root.mli > tool-b0/b0_cmd_root.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_root.cmi tool-b0/b0_cmd_root.mli
- + ocamlfind ocamldep -package cmdliner -package unix -modules tool-b0/b0_main.ml > tool-b0/b0_main.ml.depends
- + ocamlfind ocamldep -package cmdliner -package unix -modules tool-b0/b0_main.mli > tool-b0/b0_main.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_main.cmi tool-b0/b0_main.mli
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_build.cmx tool-b0/b0_cmd_build.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_cmd.cmx tool-b0/b0_cmd_cmd.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_cmdlet.cmx tool-b0/b0_cmd_cmdlet.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_delete.cmx tool-b0/b0_cmd_delete.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_file.cmx tool-b0/b0_cmd_file.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_list.cmx tool-b0/b0_cmd_list.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_log.cmx tool-b0/b0_cmd_log.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_pack.cmx tool-b0/b0_cmd_pack.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_root.cmx tool-b0/b0_cmd_root.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_scope.cmx tool-b0/b0_cmd_scope.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_unit.cmx tool-b0/b0_cmd_unit.ml
- + ocamlfind ocamlopt -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_main.cmx tool-b0/b0_main.ml
- + ocamlfind ocamlopt -a -package cmdliner -package unix -I tool-b0 tool-b0/b0_b0.cmx tool-b0/b0_cmd_build.cmx tool-b0/b0_cmd_cmd.cmx tool-b0/b0_cmd_cmdlet.cmx tool-b0/b0_cmd_file.cmx tool-b0/b0_cmd_unit.cmx tool-b0/b0_cmd_list.cmx tool-b0/b0_cmd_log.cmx tool-b0/b0_cmd_pack.cmx tool-b0/b0_cmd_delete.cmx tool-b0/b0_cmd_scope.cmx tool-b0/b0_cmd_root.cmx tool-b0/b0_main.cmx -o tool-b0/b0_b0.cmxa
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_b0.cmo tool-b0/b0_b0.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_build.cmo tool-b0/b0_cmd_build.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_cmd.cmo tool-b0/b0_cmd_cmd.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_cmdlet.cmo tool-b0/b0_cmd_cmdlet.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_file.cmo tool-b0/b0_cmd_file.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_unit.cmo tool-b0/b0_cmd_unit.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_list.cmo tool-b0/b0_cmd_list.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_log.cmo tool-b0/b0_cmd_log.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_pack.cmo tool-b0/b0_cmd_pack.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_delete.cmo tool-b0/b0_cmd_delete.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_scope.cmo tool-b0/b0_cmd_scope.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_cmd_root.cmo tool-b0/b0_cmd_root.ml
- + ocamlfind ocamlc -c -g -bin-annot -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_main.cmo tool-b0/b0_main.ml
- + ocamlfind ocamldep -package cmdliner -package unix -modules tool-b0/b0_main_run.ml > tool-b0/b0_main_run.ml.depends
- + ocamlfind ocamlc -c -g -bin-annot -I src/std -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_main_run.cmo tool-b0/b0_main_run.ml
- + ocamlfind ocamlopt -c -g -bin-annot -I src/std -package cmdliner -package unix -I tool-b0 -I examples -I src -I test -I tools -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tool-b0/b0_main_run.cmx tool-b0/b0_main_run.ml
- + ocamlfind ocamldep -package cmdliner -package unix -modules tools/b00_cache.ml > tools/b00_cache.ml.depends
- + ocamlfind ocamlc -c -g -bin-annot -I src/std -package cmdliner -package unix -I tools -I examples -I src -I test -I tool-b0 -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tools/b00_cache.cmo tools/b00_cache.ml
- + ocamlfind ocamlopt -c -g -bin-annot -I src/std -package cmdliner -package unix -I tools -I examples -I src -I test -I tool-b0 -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tools/b00_cache.cmx tools/b00_cache.ml
- + ocamlfind ocamldep -package cmdliner -package unix -modules tools/b00_log.ml > tools/b00_log.ml.depends
- + ocamlfind ocamlc -c -g -bin-annot -I src/std -package cmdliner -package unix -I tools -I examples -I src -I test -I tool-b0 -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tools/b00_log.cmo tools/b00_log.ml
- + ocamlfind ocamlopt -c -g -bin-annot -I src/std -package cmdliner -package unix -I tools -I examples -I src -I test -I tool-b0 -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tools/b00_log.cmx tools/b00_log.ml
- + ocamlfind ocamldep -package cmdliner -package unix -modules tools/b00_hash.ml > tools/b00_hash.ml.depends
- + ocamlfind ocamlc -c -g -bin-annot -I src/std -package cmdliner -package unix -I tools -I examples -I src -I test -I tool-b0 -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tools/b00_hash.cmo tools/b00_hash.ml
- + ocamlfind ocamlopt -c -g -bin-annot -I src/std -package cmdliner -package unix -I tools -I examples -I src -I test -I tool-b0 -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tools/b00_hash.cmx tools/b00_hash.ml
- + ocamlfind ocamldep -package cmdliner -package unix -modules tools/show_uri.ml > tools/show_uri.ml.depends
- + ocamlfind ocamlc -c -g -bin-annot -I src/std -package cmdliner -package unix -I tools -I examples -I src -I test -I tool-b0 -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tools/show_uri.cmo tools/show_uri.ml
- + ocamlfind ocamlopt -c -g -bin-annot -I src/std -package cmdliner -package unix -I tools -I examples -I src -I test -I tool-b0 -I src/b00 -I src/kit -I src/std -I src/b00/kit -o tools/show_uri.cmx tools/show_uri.ml
- + ocamlfind ocamlopt -shared -linkall src/std/libb0_stubs.a -package cmdliner -package unix -I src/std src/std/b0_std.cmxa -o src/std/b0_std.cmxs
- + ocamlfind ocamlc -a -dllib -lb0_stubs -cclib -lrt -cclib -lb0_stubs -cclib -lrt -package cmdliner -package unix -I src/std src/std/b0_std.cmo -o src/std/b0_std.cma
- + ocamlfind ocamlopt -shared -linkall -package cmdliner -package unix -I src/b00 src/b00/b0_b00.cmxa -o src/b00/b0_b00.cmxs
- + ocamlfind ocamlc -a -package cmdliner -package unix -I src/b00 src/b00/b000.cmo src/b00/b000_conv.cmo src/b00/b00.cmo -o src/b00/b0_b00.cma
- + ocamlfind ocamlopt -shared -linkall -package cmdliner -package unix -I src/b00/kit src/b00/kit/b0_b00_kit.cmxa -o src/b00/kit/b0_b00_kit.cmxs
- + ocamlfind ocamlc -a -package cmdliner -package unix -I src/b00/kit src/b00/kit/b00_serialk_text.cmo src/b00/kit/b00_serialk_json.cmo src/b00/kit/b00_trace.cmo src/b00/kit/b00_cli.cmo src/b00/kit/b00_base64.cmo src/b00/kit/b00_htmlg.cmo src/b00/kit/b00_lines.cmo src/b00/kit/b00_cmark.cmo src/b00/kit/b00_editor.cmo src/b00/kit/b00_fexts.cmo src/b00/kit/b00_findex.cmo src/b00/kit/b00_http.cmo src/b00/kit/b00_vcs.cmo src/b00/kit/b00_github.cmo src/b00/kit/b00_ocaml.cmo src/b00/kit/b00_jsoo.cmo src/b00/kit/b00_odoc.cmo src/b00/kit/b00_os.cmo src/b00/kit/b00_pager.cmo src/b00/kit/b00_pdf_viewer.cmo src/b00/kit/b00_rsync.cmo src/b00/kit/b00_serialk_sexp.cmo src/b00/kit/b00_www_browser.cmo -o src/b00/kit/b0_b00_kit.cma
- + ocamlfind ocamlopt -shared -linkall -package cmdliner -package unix -I src src/b0.cmxa -o src/b0.cmxs
- + ocamlfind ocamlc -a -package cmdliner -package unix -I src src/b0_dir.cmo src/b0_meta.cmo src/b0_def.cmo src/b0_unit.cmo src/b0_build.cmo src/b0_pack.cmo src/b0_cli.cmo src/b0_cmdlet.cmo src/b0_file.cmo src/b0_driver.cmo -o src/b0.cma
- + ocamlfind ocamlopt -shared -linkall -package cmdliner -package unix -I src/kit src/kit/b0_kit.cmxa -o src/kit/b0_kit.cmxs
- + ocamlfind ocamlc -a -package cmdliner -package unix -I src/kit src/kit/b0_kit.cmo src/kit/b0_srcs.cmo src/kit/b0_ocaml.cmo src/kit/b0_ocaml_eco.cmo src/kit/b0_jsoo.cmo src/kit/b0_release.cmo src/kit/b0_opam.cmo src/kit/b0_expect.cmo -o src/kit/b0_kit.cma
- + ocamlfind ocamlopt -shared -linkall -package cmdliner -package unix -I tool-b0 tool-b0/b0_b0.cmxa -o tool-b0/b0_b0.cmxs
- + ocamlfind ocamlc -a -package cmdliner -package unix -I tool-b0 tool-b0/b0_b0.cmo tool-b0/b0_cmd_build.cmo tool-b0/b0_cmd_cmd.cmo tool-b0/b0_cmd_cmdlet.cmo tool-b0/b0_cmd_file.cmo tool-b0/b0_cmd_unit.cmo tool-b0/b0_cmd_list.cmo tool-b0/b0_cmd_log.cmo tool-b0/b0_cmd_pack.cmo tool-b0/b0_cmd_delete.cmo tool-b0/b0_cmd_scope.cmo tool-b0/b0_cmd_root.cmo tool-b0/b0_main.cmo -o tool-b0/b0_b0.cma
- + ocamlfind ocamlopt -linkpkg -g -ccopt -Lsrc/std -package cmdliner -package unix -I src/std -I src/b00 -I src/b00/kit -I src -I tool-b0 src/std/b0_std.cmxa src/b00/b000.cmx src/b00/b00.cmx src/b00/b000_conv.cmx src/b00/kit/b00_serialk_text.cmx src/b00/kit/b00_serialk_json.cmx src/b00/kit/b00_trace.cmx src/b00/kit/b00_cli.cmx src/b00/kit/b00_editor.cmx src/b00/kit/b00_fexts.cmx src/b00/kit/b00_lines.cmx src/b00/kit/b00_ocaml.cmx src/b00/kit/b00_pager.cmx src/b00/kit/b00_vcs.cmx src/b0_meta.cmx src/b0_def.cmx src/b0_dir.cmx src/b0_unit.cmx src/b0_build.cmx src/b0_cli.cmx src/b0_cmdlet.cmx src/b0_file.cmx src/b0_driver.cmx src/b0_pack.cmx tool-b0/b0_b0.cmx tool-b0/b0_cmd_build.cmx tool-b0/b0_cmd_cmd.cmx tool-b0/b0_cmd_cmdlet.cmx tool-b0/b0_cmd_delete.cmx tool-b0/b0_cmd_file.cmx tool-b0/b0_cmd_list.cmx tool-b0/b0_cmd_log.cmx tool-b0/b0_cmd_pack.cmx tool-b0/b0_cmd_root.cmx tool-b0/b0_cmd_scope.cmx tool-b0/b0_cmd_unit.cmx tool-b0/b0_main.cmx tool-b0/b0_main_run.cmx -o tool-b0/b0_main_run.native
- + ocamlfind ocamlopt -linkpkg -g -ccopt -Lsrc/std -package cmdliner -package unix -I src/std -I src/b00 -I src/b00/kit -I tools src/std/b0_std.cmxa src/b00/b000.cmx src/b00/b00.cmx src/b00/b000_conv.cmx src/b00/kit/b00_serialk_text.cmx src/b00/kit/b00_serialk_json.cmx src/b00/kit/b00_trace.cmx src/b00/kit/b00_cli.cmx tools/b00_cache.cmx -o tools/b00_cache.native
- + ocamlfind ocamlopt -linkpkg -g -ccopt -Lsrc/std -package cmdliner -package unix -I src/std -I src/b00 -I src/b00/kit -I tools src/std/b0_std.cmxa src/b00/b000.cmx src/b00/b00.cmx src/b00/b000_conv.cmx src/b00/kit/b00_serialk_text.cmx src/b00/kit/b00_serialk_json.cmx src/b00/kit/b00_trace.cmx src/b00/kit/b00_cli.cmx src/b00/kit/b00_pager.cmx tools/b00_log.cmx -o tools/b00_log.native
- + ocamlfind ocamlopt -linkpkg -g -ccopt -Lsrc/std -package cmdliner -package unix -I src/std -I src/b00 -I src/b00/kit -I tools src/std/b0_std.cmxa src/b00/b000.cmx src/b00/b00.cmx src/b00/b000_conv.cmx src/b00/kit/b00_serialk_text.cmx src/b00/kit/b00_serialk_json.cmx src/b00/kit/b00_trace.cmx src/b00/kit/b00_cli.cmx tools/b00_hash.cmx -o tools/b00_hash.native
- + ocamlfind ocamlopt -linkpkg -g -ccopt -Lsrc/std -package cmdliner -package unix -I src/std -I src/b00 -I src/b00/kit -I tools src/std/b0_std.cmxa src/b00/b000.cmx src/b00/b00.cmx src/b00/b000_conv.cmx src/b00/kit/b00_serialk_text.cmx src/b00/kit/b00_serialk_json.cmx src/b00/kit/b00_trace.cmx src/b00/kit/b00_cli.cmx src/b00/kit/b00_www_browser.cmx tools/show_uri.cmx -o tools/show_uri.native
- # Parallel statistics: { count(total): 14(238), max: 23, min: 2, average(total): 7.929(1.408) }
-> compiled  b0.0.0.5
-> removed   b0.0.0.5
-> installed b0.0.0.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 15:13.49 ---> saved as "83e2825a1e217bde81cd106c50494bb6cfadb707dea708c4bc139b2d5cc2a883"
Job succeeded
2026-03-25 15:13.59: Job succeeded