Build:
- 0
2026-02-27 04:04.22: New job: test b0.0.0.5 with ocaml-secondary-compiler.4.08.1-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-1 4.08.1-1
RUN opam reinstall ocaml-secondary-compiler.4.08.1-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-1' && 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-02-27 04:04.22: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c-ocaml-secondary-compiler.4.08.1-1-b0.0.0.5-09d7830dd4a7cd4cfc1725bd69ec5b222eae677d"
2026-02-27 04:04.22: 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-1 4.08.1-1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocaml-secondary-compiler.4.08.1-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-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 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-02-27 04:04.22: Waiting for resource in pool OCluster
2026-03-02 06:35.30: Waiting for worker…
2026-03-02 06:39.24: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
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 06:39.35 ---> 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 06:39.35 ---> 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.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-02 06:39.35 ---> 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 255
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# invariant ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0
2026-03-02 06:39.35 ---> 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 06:39.35 ---> using "c04e3f046c8eaf07d3d8f4b30debe47a6f7742bcdbfbfeb4d464149613cd35cd" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-02 06:39.36 ---> using "f28d2d55603b70a3956974bde95e68526d52d43abb5c3f086de712d28b994566" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-02 06:39.36 ---> 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 (1904 kB/s)
- Reading package lists...
2026-03-02 06:39.36 ---> using "a6fcf1eb697bb2cbcd49a3ac591b228ed4dfb5d9211b39971561804e137638fa" from cache
/home/opam: (run (shell "opam pin add -k version -yn ocaml-secondary-compiler.4.08.1-1 4.08.1-1"))
ocaml-secondary-compiler is now pinned to version 4.08.1-1
2026-03-02 06:39.36 ---> using "b44739e461a05019571129e607d8f83c09b00ce64ac384037276720e0cfa00bc" 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-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-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-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-1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-secondary-compiler.4.08.1-1 (cached)
-> installed ocaml-secondary-compiler.4.08.1-1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 06:39.36 ---> using "706491e990339b7da27f75607fd0a10bd654feebf3b990f4484bddb57d6a5a74" 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-02 06:40.01 ---> saved as "3ad8a172f2976b6188837f13707d0f4cdddd976b30226cfaffc7af6928996600"
/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-02 06:40.20 ---> saved as "bb7f03a6dc744c3c20a0f7d7b2c38272af5775974e5d72cc1b6a6cd717818acf"
/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_time.o src/std/b0_stubs_time.o
- + mv b0_stubs_cpu.o src/std/b0_stubs_cpu.o
- + 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_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-02 06:40.39 ---> saved as "d702c1a1953a6b4ab3ab728247aa665d109efe955ab0f1dcf4dff677f9b4007d"
Job succeeded
2026-03-02 06:40.46: Job succeeded