Build:
  1. 0
2026-01-23 16:27.16: New job: test topkg-care.1.1.0 with menhirSdk.20260122, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29263/head (1b37faa806f25ffae47a4204ac0b15c79fa5a828)
                              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/29263/head" && git reset --hard 1b37faa8
git fetch origin master
git merge --no-edit 8e1b9a49e880d409b435a16017fd056e29befb09
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:9f4103f7d94b5db36adc57e1243e7aafbc77118b03f3c64c9d783f6875957bd3
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 menhirSdk.20260122 20260122
RUN opam reinstall menhirSdk.20260122; \
    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" != 'menhirSdk.20260122' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall topkg-care.1.1.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'topkg-care.1.1.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test topkg-care.1.1.0) || true
RUN opam reinstall --with-test --verbose topkg-care.1.1.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'topkg-care.1.1.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

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

2026-01-23 16:27.16: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:9f4103f7d94b5db36adc57e1243e7aafbc77118b03f3c64c9d783f6875957bd3-menhirSdk.20260122-topkg-care.1.1.0-1b37faa806f25ffae47a4204ac0b15c79fa5a828"
2026-01-23 16:27.16: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:9f4103f7d94b5db36adc57e1243e7aafbc77118b03f3c64c9d783f6875957bd3)
 (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 menhirSdk.20260122 20260122"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall menhirSdk.20260122;\
             \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\" != 'menhirSdk.20260122' && 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 topkg-care.1.1.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"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\" != 'topkg-care.1.1.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test topkg-care.1.1.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose topkg-care.1.1.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"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\" != 'topkg-care.1.1.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-01-23 16:27.16: Waiting for resource in pool OCluster
2026-01-24 11:11.45: Waiting for worker…
2026-01-24 11:16.16: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 8e1b9a49e8 Merge pull request #29269 from mseri/ocurl
Merge made by the 'ort' strategy.
 packages/menhir/menhir.20260122/opam       | 32 ++++++++++++++++++++++++++++++
 packages/menhirCST/menhirCST.20260122/opam | 30 ++++++++++++++++++++++++++++
 packages/menhirGLR/menhirGLR.20260122/opam | 30 ++++++++++++++++++++++++++++
 packages/menhirLib/menhirLib.20260122/opam | 31 +++++++++++++++++++++++++++++
 packages/menhirSdk/menhirSdk.20260122/opam | 31 +++++++++++++++++++++++++++++
 5 files changed, 154 insertions(+)
 create mode 100644 packages/menhir/menhir.20260122/opam
 create mode 100644 packages/menhirCST/menhirCST.20260122/opam
 create mode 100644 packages/menhirGLR/menhirGLR.20260122/opam
 create mode 100644 packages/menhirLib/menhirLib.20260122/opam
 create mode 100644 packages/menhirSdk/menhirSdk.20260122/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:9f4103f7d94b5db36adc57e1243e7aafbc77118b03f3c64c9d783f6875957bd3)
2026-01-24 11:16.18 ---> using "85f72cf1fe4e2d7307f2dbfaf295ab13f00915a95088b79c0422ecbd77383032" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-01-24 11:16.18 ---> using "b02ad14703d9a6022e6a4ebbb7f55749cd97d344bdad9b05e63eef3edfda1a1f" from cache

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

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

Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-01-24 11:16.18 ---> using "b0edc034279433e01e50abadb20dabe284d5b12533654f8d8acd5a7fc6bacb50" 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-01-24 11:16.18 ---> using "144beff2504a7c5add593a600a2daa80b340c062f26e44c1d24db352dce3c53f" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-01-24 11:16.18 ---> using "4834f93979a713d08a251d8caefbb8a36efb0f41be2636e33defc122c0b7cbae" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-01-24 11:16.18 ---> using "2c84f382fab49314f322ca09229f9a21c85ed5673f5eadbbb1e7c3a5cf2203eb" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-24 11:16.23 ---> saved as "d72ba9120d220591845ddd753b7580573327492ce47af332d43c81c48596376c"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9670 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [97.9 kB]
- Fetched 9999 kB in 1s (10.9 MB/s)
- Reading package lists...
- 
2026-01-24 11:16.25 ---> saved as "48223bbdc9e58650a735dec29e9f3c4112582c298ca1b188be983a9004fd4973"

/home/opam: (run (shell "opam pin add -k version -yn menhirSdk.20260122 20260122"))
menhirSdk is now pinned to version 20260122
2026-01-24 11:16.25 ---> saved as "4087a1a2600a5033e578e7b3d951ea1efb71e9f70998a75a51d44e8ccb761587"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall menhirSdk.20260122;\
                        \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\" != 'menhirSdk.20260122' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
menhirSdk.20260122 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
  - install dune      3.21.0            [required by menhirSdk]
  - install menhirSdk 20260122 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.21.0  (cached)
-> retrieved menhirSdk.20260122  (cached)
-> installed dune.3.21.0
-> installed menhirSdk.20260122
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-24 11:16.48 ---> saved as "4f260396d922af01033a8316b27ef790c04ea541d654c60896bbcb67ff354355"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall topkg-care.1.1.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"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\" != 'topkg-care.1.1.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
topkg-care.1.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 27 packages
  - install astring          0.8.5    [required by bos]
  - install bos              0.2.1    [required by topkg-care]
  - install cmdliner         2.1.0    [required by topkg-care]
  - install fmt              0.11.0   [required by topkg-care]
  - install fpath            0.7.3    [required by bos]
  - install jsonm            1.0.2    [required by opam-core]
  - install logs             0.10.0   [required by topkg-care]
  - install menhir           20260122 [required by opam-file-format]
  - install menhirCST        20260122 [required by menhir]
  - install menhirGLR        20260122 [required by menhir]
  - install menhirLib        20260122 [required by menhir]
  - install ocamlbuild       0.16.1   [required by topkg-care]
  - install ocamlfind        1.9.8    [required by topkg-care]
  - install ocamlgraph       2.2.0    [required by opam-core]
  - install opam-core        2.5.0    [required by opam-format]
  - install opam-file-format 2.2.0    [required by opam-format]
  - install opam-format      2.5.0    [required by topkg-care]
  - install patch            3.1.0    [required by opam-core]
  - install re               1.14.0   [required by opam-format]
  - install rresult          0.7.0    [required by bos, webbrowser]
  - install sha              1.15.4   [required by opam-core]
  - install stdlib-shims     0.3.0    [required by sha]
  - install swhid_core       0.1      [required by opam-core]
  - install topkg            1.1.0    [required by topkg-care]
  - install topkg-care       1.1.0
  - install uutf             1.0.4    [required by opam-core]
  - install webbrowser       0.6.2    [required by topkg-care]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (cached)
-> retrieved bos.0.2.1  (cached)
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved jsonm.1.0.2  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved menhir.20260122, menhirCST.20260122, menhirGLR.20260122, menhirLib.20260122  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> installed menhirCST.20260122
-> retrieved ocamlgraph.2.2.0  (cached)
-> retrieved opam-core.2.5.0, opam-format.2.5.0  (cached)
-> installed menhirGLR.20260122
-> installed menhirLib.20260122
-> retrieved opam-file-format.2.2.0  (cached)
-> retrieved patch.3.1.0  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved sha.1.15.4  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved swhid_core.0.1  (cached)
-> retrieved topkg.1.1.0, topkg-care.1.1.0  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved webbrowser.0.6.2  (cached)
-> installed stdlib-shims.0.3.0
-> installed patch.3.1.0
-> installed swhid_core.0.1
-> installed re.1.14.0
-> installed ocamlgraph.2.2.0
-> installed sha.1.15.4
-> installed cmdliner.2.1.0
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed menhir.20260122
-> installed opam-file-format.2.2.0
-> installed topkg.1.1.0
-> installed rresult.0.7.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed jsonm.1.0.2
-> installed fpath.0.7.3
-> installed logs.0.10.0
-> installed bos.0.2.1
-> installed webbrowser.0.6.2
-> installed opam-core.2.5.0
-> installed opam-format.2.5.0
-> installed topkg-care.1.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-24 11:17.27 ---> saved as "3a8224ba445ca1b9bd93dcd62c439d22125ebeba28d6eb1e14cbef1c978303ca"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved topkg-care.1.1.0  (https://opam.ocaml.org/cache)
-> removed   topkg-care.1.1.0
-> installed topkg-care.1.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-24 11:17.39 ---> saved as "ec100f5dbcb452df4f1ee7db2bc5fca167e8227eb51671a08be92899948fb983"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [topkg-care.1.1.0: extract]
-> retrieved topkg-care.1.1.0  (cached)
Processing  2/4: [topkg-care: ocaml build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "ocaml" "pkg/pkg.ml" "build" "--pkg-name" "topkg-care" "--dev-pkg" "false" (CWD=/home/opam/.opam/5.4/.opam-switch/build/topkg-care.1.1.0)
- + ocamlfind ocamlc -config
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care.ml > src-care/topkg_care.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care.mli > src-care/topkg_care.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care.cmi src-care/topkg_care.mli
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care_archive.ml > src-care/topkg_care_archive.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care_archive.mli > src-care/topkg_care_archive.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_archive.cmi src-care/topkg_care_archive.mli
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care_delegate.ml > src-care/topkg_care_delegate.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care_delegate.mli > src-care/topkg_care_delegate.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care_pkg.mli > src-care/topkg_care_pkg.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care_opam.mli > src-care/topkg_care_opam.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care_text.mli > src-care/topkg_care_text.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_text.cmi src-care/topkg_care_text.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_opam.cmi src-care/topkg_care_opam.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_pkg.cmi src-care/topkg_care_pkg.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_delegate.cmi src-care/topkg_care_delegate.mli
- + ocamlfind ocamldep -modules src/topkg.ml > src/topkg.ml.depends
- + ocamlfind ocamldep -modules src/topkg.mli > src/topkg.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg.cmi src/topkg.mli
- + ocamlfind ocamldep -modules src/topkg_build.ml > src/topkg_build.ml.depends
- + ocamlfind ocamldep -modules src/topkg_build.mli > src/topkg_build.mli.depends
- + ocamlfind ocamldep -modules src/topkg_cmd.mli > src/topkg_cmd.mli.depends
- + ocamlfind ocamldep -modules src/topkg_fpath.mli > src/topkg_fpath.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_fpath.cmi src/topkg_fpath.mli
- + ocamlfind ocamldep -modules src/topkg_codec.mli > src/topkg_codec.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_cmd.cmi src/topkg_cmd.mli
- + ocamlfind ocamldep -modules src/topkg_result.mli > src/topkg_result.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_result.cmi src/topkg_result.mli
- + ocamlfind ocamldep -modules src/topkg_conf.mli > src/topkg_conf.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_codec.cmi src/topkg_codec.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_conf.cmi src/topkg_conf.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_build.cmi src/topkg_build.mli
- + ocamlfind ocamldep -modules src/topkg_cmd.ml > src/topkg_cmd.ml.depends
- + ocamlfind ocamldep -modules src/topkg_fpath.ml > src/topkg_fpath.ml.depends
- + ocamlfind ocamldep -modules src/topkg_string.ml > src/topkg_string.ml.depends
- + ocamlfind ocamldep -modules src/topkg_string.mli > src/topkg_string.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_string.cmi src/topkg_string.mli
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_string.cmx src/topkg_string.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_fpath.cmx src/topkg_fpath.ml
- + ocamlfind ocamldep -modules src/topkg_codec.ml > src/topkg_codec.ml.depends
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_cmd.cmx src/topkg_cmd.ml
- + ocamlfind ocamldep -modules src/topkg_os.ml > src/topkg_os.ml.depends
- + ocamlfind ocamldep -modules src/topkg_os.mli > src/topkg_os.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_os.cmi src/topkg_os.mli
- + ocamlfind ocamldep -modules src/topkg_log.ml > src/topkg_log.ml.depends
- + ocamlfind ocamldep -modules src/topkg_log.mli > src/topkg_log.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_log.cmi src/topkg_log.mli
- + ocamlfind ocamldep -modules src/topkg_result.ml > src/topkg_result.ml.depends
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_result.cmx src/topkg_result.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_log.cmx src/topkg_log.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_os.cmx src/topkg_os.ml
- + ocamlfind ocamldep -modules src/topkg_conf.ml > src/topkg_conf.ml.depends
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_codec.cmx src/topkg_codec.ml
- + ocamlfind ocamldep -modules src/topkg_vcs.ml > src/topkg_vcs.ml.depends
- + ocamlfind ocamldep -modules src/topkg_vcs.mli > src/topkg_vcs.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_vcs.cmi src/topkg_vcs.mli
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_vcs.cmx src/topkg_vcs.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_conf.cmx src/topkg_conf.ml
- + ocamlfind ocamldep -modules src/topkg_distrib.ml > src/topkg_distrib.ml.depends
- + ocamlfind ocamldep -modules src/topkg_distrib.mli > src/topkg_distrib.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_distrib.cmi src/topkg_distrib.mli
- + ocamlfind ocamldep -modules src/topkg_opam.ml > src/topkg_opam.ml.depends
- + ocamlfind ocamldep -modules src/topkg_opam.mli > src/topkg_opam.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_opam.cmi src/topkg_opam.mli
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_opam.cmx src/topkg_opam.ml
- + ocamlfind ocamldep -modules src/topkg_fexts.ml > src/topkg_fexts.ml.depends
- + ocamlfind ocamldep -modules src/topkg_fexts.mli > src/topkg_fexts.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_fexts.cmi src/topkg_fexts.mli
- + ocamlfind ocamldep -modules src/topkg_install.ml > src/topkg_install.ml.depends
- + ocamlfind ocamldep -modules src/topkg_install.mli > src/topkg_install.mli.depends
- + ocamlfind ocamldep -modules src/topkg_test.mli > src/topkg_test.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_test.cmi src/topkg_test.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_install.cmi src/topkg_install.mli
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_fexts.cmx src/topkg_fexts.ml
- + ocamlfind ocamldep -modules src/topkg_test.ml > src/topkg_test.ml.depends
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_test.cmx src/topkg_test.ml
- + ocamlfind ocamldep -modules src/topkg_ipc.ml > src/topkg_ipc.ml.depends
- + ocamlfind ocamldep -modules src/topkg_ipc.mli > src/topkg_ipc.mli.depends
- + ocamlfind ocamldep -modules src/topkg_pkg.mli > src/topkg_pkg.mli.depends
- + ocamlfind ocamldep -modules src/topkg_publish.mli > src/topkg_publish.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_publish.cmi src/topkg_publish.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_pkg.cmi src/topkg_pkg.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_ipc.cmi src/topkg_ipc.mli
- + ocamlfind ocamldep -modules src/topkg_pkg.ml > src/topkg_pkg.ml.depends
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_build.cmx src/topkg_build.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_distrib.cmx src/topkg_distrib.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_install.cmx src/topkg_install.ml
- + ocamlfind ocamldep -modules src/topkg_publish.ml > src/topkg_publish.ml.depends
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_publish.cmx src/topkg_publish.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_pkg.cmx src/topkg_pkg.ml
- + ocamlfind ocamldep -modules src/topkg_main.ml > src/topkg_main.ml.depends
- + ocamlfind ocamldep -modules src/topkg_main.mli > src/topkg_main.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_main.cmi src/topkg_main.mli
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_ipc.cmx src/topkg_ipc.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg_main.cmx src/topkg_main.ml
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care_pkg.ml > src-care/topkg_care_pkg.ml.depends
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -I src-bin -I src-care -I test -o src/topkg.cmx src/topkg.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_archive.cmx src-care/topkg_care_archive.ml
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care_ipc.ml > src-care/topkg_care_ipc.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care_ipc.mli > src-care/topkg_care_ipc.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_ipc.cmi src-care/topkg_care_ipc.mli
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care_ocamlbuild.ml > src-care/topkg_care_ocamlbuild.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care_ocamlbuild.mli > src-care/topkg_care_ocamlbuild.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_ocamlbuild.cmi src-care/topkg_care_ocamlbuild.mli
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care_ocamlfind.ml > src-care/topkg_care_ocamlfind.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care_ocamlfind.mli > src-care/topkg_care_ocamlfind.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_ocamlfind.cmi src-care/topkg_care_ocamlfind.mli
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care_opam.ml > src-care/topkg_care_opam.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-care/topkg_care_text.ml > src-care/topkg_care_text.ml.depends
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_text.cmx src-care/topkg_care_text.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_ipc.cmx src-care/topkg_care_ipc.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_ocamlbuild.cmx src-care/topkg_care_ocamlbuild.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_ocamlfind.cmx src-care/topkg_care_ocamlfind.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_opam.cmx src-care/topkg_care_opam.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_pkg.cmx src-care/topkg_care_pkg.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_delegate.cmx src-care/topkg_care_delegate.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care.cmx src-care/topkg_care.ml
- + ocamlfind ocamlopt -a -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care src-care/topkg_care_archive.cmx src-care/topkg_care_ipc.cmx src-care/topkg_care_ocamlbuild.cmx src-care/topkg_care_ocamlfind.cmx src-care/topkg_care_text.cmx src-care/topkg_care_opam.cmx src-care/topkg_care_pkg.cmx src-care/topkg_care_delegate.cmx src-care/topkg_care.cmx -o src-care/topkg_care.cmxa
- + ocamlfind ocamlopt -shared -linkall -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care src-care/topkg_care.cmxa -o src-care/topkg_care.cmxs
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care.cmo src-care/topkg_care.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_archive.cmo src-care/topkg_care_archive.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_delegate.cmo src-care/topkg_care_delegate.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_ipc.cmo src-care/topkg_care_ipc.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_ocamlbuild.cmo src-care/topkg_care_ocamlbuild.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_ocamlfind.cmo src-care/topkg_care_ocamlfind.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_opam.cmo src-care/topkg_care_opam.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_pkg.cmo src-care/topkg_care_pkg.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin -I test -o src-care/topkg_care_text.cmo src-care/topkg_care_text.ml
- + ocamlfind ocamlc -a -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care src-care/topkg_care_archive.cmo src-care/topkg_care_ipc.cmo src-care/topkg_care_ocamlbuild.cmo src-care/topkg_care_ocamlfind.cmo src-care/topkg_care_text.cmo src-care/topkg_care_opam.cmo src-care/topkg_care_pkg.cmo src-care/topkg_care_delegate.cmo src-care/topkg_care.cmo -o src-care/topkg_care.cma
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/topkg_bin.ml > src-bin/topkg_bin.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/bistro.mli > src-bin/bistro.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/browse.mli > src-bin/browse.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/build.mli > src-bin/build.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/clean.mli > src-bin/clean.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/cli.mli > src-bin/cli.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/distrib.mli > src-bin/distrib.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/doc.mli > src-bin/doc.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/help.mli > src-bin/help.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/ipc.mli > src-bin/ipc.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/issue.mli > src-bin/issue.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/lint.mli > src-bin/lint.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/log.mli > src-bin/log.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/opam.mli > src-bin/opam.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/publish.mli > src-bin/publish.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/run.mli > src-bin/run.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/status.mli > src-bin/status.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/tag.mli > src-bin/tag.mli.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/test.mli > src-bin/test.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/bistro.cmi src-bin/bistro.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/browse.cmi src-bin/browse.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/build.cmi src-bin/build.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/clean.cmi src-bin/clean.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/cli.cmi src-bin/cli.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/distrib.cmi src-bin/distrib.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/doc.cmi src-bin/doc.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/help.cmi src-bin/help.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/ipc.cmi src-bin/ipc.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/issue.cmi src-bin/issue.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/lint.cmi src-bin/lint.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/log.cmi src-bin/log.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/opam.cmi src-bin/opam.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/publish.cmi src-bin/publish.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/run.cmi src-bin/run.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/status.cmi src-bin/status.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/tag.cmi src-bin/tag.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/test.cmi src-bin/test.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/topkg_bin.cmo src-bin/topkg_bin.ml
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/bistro.ml > src-bin/bistro.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/cli.ml > src-bin/cli.ml.depends
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/cli.cmx src-bin/cli.ml
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/browse.ml > src-bin/browse.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/build.ml > src-bin/build.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/clean.ml > src-bin/clean.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/distrib.ml > src-bin/distrib.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/doc.ml > src-bin/doc.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/help.ml > src-bin/help.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/ipc.ml > src-bin/ipc.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/opam.ml > src-bin/opam.ml.depends
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/opam.cmx src-bin/opam.ml
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/issue.ml > src-bin/issue.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/lint.ml > src-bin/lint.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/log.ml > src-bin/log.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/publish.ml > src-bin/publish.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/run.ml > src-bin/run.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/status.ml > src-bin/status.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/tag.ml > src-bin/tag.ml.depends
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/test.ml > src-bin/test.ml.depends
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/bistro.cmx src-bin/bistro.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/browse.cmx src-bin/browse.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/build.cmx src-bin/build.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/clean.cmx src-bin/clean.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/distrib.cmx src-bin/distrib.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/doc.cmx src-bin/doc.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/help.cmx src-bin/help.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/ipc.cmx src-bin/ipc.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/issue.cmx src-bin/issue.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/lint.cmx src-bin/lint.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/log.cmx src-bin/log.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/publish.cmx src-bin/publish.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/run.cmx src-bin/run.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/status.cmx src-bin/status.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/tag.cmx src-bin/tag.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/test.cmx src-bin/test.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/topkg_bin.cmx src-bin/topkg_bin.ml
- + ocamlfind ocamlopt -linkpkg -g -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin src-care/topkg_care_archive.cmx src/topkg_string.cmx src/topkg_fpath.cmx src/topkg_cmd.cmx src/topkg_result.cmx src/topkg_log.cmx src/topkg_os.cmx src/topkg_codec.cmx src/topkg_vcs.cmx src/topkg_conf.cmx src/topkg_build.cmx src/topkg_opam.cmx src/topkg_distrib.cmx src/topkg_fexts.cmx src/topkg_test.cmx src/topkg_install.cmx src/topkg_publish.cmx src/topkg_pkg.cmx src/topkg_ipc.cmx src/topkg_main.cmx src/topkg.cmx src-care/topkg_care_ipc.cmx src-care/topkg_care_ocamlbuild.cmx src-care/topkg_care_ocamlfind.cmx src-care/topkg_care_text.cmx src-care/topkg_care_opam.cmx src-care/topkg_care_pkg.cmx src-care/topkg_care_delegate.cmx src-care/topkg_care.cmx src-bin/cli.cmx src-bin/bistro.cmx src-bin/browse.cmx src-bin/build.cmx src-bin/clean.cmx src-bin/distrib.cmx src-bin/doc.cmx src-bin/help.cmx src-bin/opam.cmx src-bin/ipc.cmx src-bin/issue.cmx src-bin/lint.cmx src-bin/log.cmx src-bin/publish.cmx src-bin/run.cmx src-bin/status.cmx src-bin/tag.cmx src-bin/test.cmx src-bin/topkg_bin.cmx -o src-bin/topkg_bin.native
- + ocamlfind ocamldep -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -modules src-bin/toy_github_delegate.ml > src-bin/toy_github_delegate.ml.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/toy_github_delegate.cmo src-bin/toy_github_delegate.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-bin -I src -I src-care -I test -o src-bin/toy_github_delegate.cmx src-bin/toy_github_delegate.ml
- + ocamlfind ocamlopt -linkpkg -g -package 'opam-format cmdliner fmt.cli logs.cli bos.setup' -package 'webbrowser webbrowser.cli' -I src-care -I src -I src-bin src-care/topkg_care_archive.cmx src/topkg_string.cmx src/topkg_fpath.cmx src/topkg_cmd.cmx src/topkg_result.cmx src/topkg_log.cmx src/topkg_os.cmx src/topkg_codec.cmx src/topkg_vcs.cmx src/topkg_conf.cmx src/topkg_build.cmx src/topkg_opam.cmx src/topkg_distrib.cmx src/topkg_fexts.cmx src/topkg_test.cmx src/topkg_install.cmx src/topkg_publish.cmx src/topkg_pkg.cmx src/topkg_ipc.cmx src/topkg_main.cmx src/topkg.cmx src-care/topkg_care_ipc.cmx src-care/topkg_care_ocamlbuild.cmx src-care/topkg_care_ocamlfind.cmx src-care/topkg_care_text.cmx src-care/topkg_care_opam.cmx src-care/topkg_care_pkg.cmx src-care/topkg_care_delegate.cmx src-care/topkg_care.cmx src-bin/toy_github_delegate.cmx -o src-bin/toy_github_delegate.native
- # Parallel statistics: { count(total): 5(164), max: 18, min: 2, average(total): 9.800(1.268) }
-> compiled  topkg-care.1.1.0
-> removed   topkg-care.1.1.0
-> installed topkg-care.1.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-24 11:17.51 ---> saved as "cae86ae6eb7a78780b9d0b9d4ea10a2001d622cb4ec94acc48dcecc0abd8f5b0"
Job succeeded
2026-01-24 11:17.57: Job succeeded